projectadd.less 807 B

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