index.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:nth-child(2) {
  8. margin: 0;
  9. }
  10. .one {
  11. width: 92vw;
  12. padding: 2vw;
  13. background-color: #f1f1f1;
  14. text-align: center;
  15. button {
  16. width: 50%;
  17. }
  18. }
  19. .two {
  20. flex-grow: 1;
  21. position: relative;
  22. width: 96vw;
  23. .scroll-view {
  24. position: absolute;
  25. top: 0;
  26. left: 0;
  27. right: 0;
  28. bottom: 0;
  29. .list-scroll-view {
  30. display: flex;
  31. flex-wrap: wrap;
  32. align-content: flex-start;
  33. justify-content: space-between;
  34. .list {
  35. background-color: #ffffff;
  36. margin: 0 0 2vw 0;
  37. padding: 2vw;
  38. display: flex;
  39. flex-direction: column;
  40. width: 96vw;
  41. .name {
  42. font-size: 18px;
  43. font-weight: bold;
  44. margin: 0 0 1vw 0;
  45. }
  46. .other {
  47. margin: 0 0 1vw 0;
  48. .other_1 {
  49. color: #858585;
  50. font-size: 15px;
  51. margin: 0 0 1vw 0;
  52. text:nth-child(1) {
  53. color: #000000;
  54. }
  55. }
  56. }
  57. .btn {
  58. text-align: center;
  59. button {
  60. margin: 0 2vw;
  61. font-size: 14px;
  62. }
  63. }
  64. }
  65. .list:last-child {
  66. margin: 0;
  67. }
  68. }
  69. }
  70. }
  71. }
  72. .dialog_one {
  73. display: flex;
  74. flex-direction: column;
  75. .one_1 {
  76. border-bottom: 1px solid #ccc;
  77. padding: 2vw 0;
  78. text {
  79. font-size: 16px;
  80. color: #858585;
  81. }
  82. text:nth-child(1) {
  83. color: #000000;
  84. }
  85. }
  86. }
  87. .dialog_two {
  88. .content {
  89. background-color: #ffffff;
  90. border-bottom: 1px solid #cccccc;
  91. display: flex;
  92. flex-direction: row;
  93. justify-content: space-between;
  94. padding: 2vw;
  95. width: 76vw;
  96. .label {
  97. width: 20vw;
  98. text-align: left;
  99. font-size: 16px;
  100. }
  101. .value {
  102. width: 55vw;
  103. text-align: right;
  104. font-size: 16px;
  105. textarea {
  106. width: 55vw;
  107. }
  108. }
  109. }
  110. .btn {
  111. margin: 2vw 0 0 0;
  112. text-align: center;
  113. }
  114. }