index.less 3.5 KB

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