add.wxss 494 B

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