basic.wxss 579 B

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