add.less 696 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .main {
  2. height: 88.8vh;
  3. .one {
  4. width: 96vw;
  5. .content {
  6. display: flex;
  7. flex-direction: row;
  8. justify-content: space-between;
  9. align-items: center;
  10. padding: 10px 0;
  11. border-bottom: 1px solid #cccccc;
  12. .label {
  13. font-size: 15px;
  14. }
  15. .value {
  16. color: #666;
  17. font-size: 16px;
  18. text-align: right;
  19. }
  20. }
  21. .btn {
  22. width: 96vw;
  23. margin: 2vw 0 0 0;
  24. text-align: center;
  25. button {
  26. font-size: 14px;
  27. }
  28. }
  29. }
  30. }