add.wxss 574 B

12345678910111213141516171819202122232425262728293031323334
  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. margin: 0 10px;
  13. padding: 10px 5px;
  14. border-bottom: 1px solid #cccccc;
  15. }
  16. .main .one .content .label {
  17. font-size: 15px;
  18. }
  19. .main .one .content .value {
  20. color: #666;
  21. font-size: 16px;
  22. text-align: right;
  23. }
  24. .main .one .content .value textarea {
  25. max-width: 220px;
  26. }
  27. .main .one .btn {
  28. width: 96vw;
  29. margin: 2vw 0 0 0;
  30. text-align: center;
  31. }
  32. .main .one .btn button {
  33. font-size: 14px;
  34. }