mess.less 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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 0 0 0;
  9. }
  10. .one {
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-between;
  14. padding: 2vw;
  15. width: 92vw;
  16. background-color: #fff;
  17. .one_1 {
  18. width: 76vw;
  19. background-color: #f1f1f1;
  20. padding: 0 0 0 2vw;
  21. input {
  22. padding: 1vw 2px;
  23. font-size: 16px;
  24. }
  25. }
  26. .one_2 {
  27. text-align: center;
  28. button {
  29. font-size: 14px;
  30. }
  31. }
  32. }
  33. .two {
  34. flex-grow: 1;
  35. width: 100%;
  36. position: relative;
  37. .scroll-view {
  38. position: absolute;
  39. top: 0;
  40. left: 0;
  41. right: 0;
  42. bottom: 0;
  43. .list-scroll-view {
  44. display: flex;
  45. flex-direction: column;
  46. .list {
  47. border-bottom: 1px solid #cccccc;
  48. padding: 2vw 0;
  49. display: flex;
  50. flex-direction: column;
  51. .info {
  52. display: flex;
  53. flex-direction: row;
  54. margin: 0 0 2vw 0;
  55. .list_1 {
  56. padding: 8vw 0 0 0;
  57. .image {
  58. width: 75px;
  59. height: 75px;
  60. border-radius: 10px;
  61. }
  62. }
  63. .list_2 {
  64. width: 70vw;
  65. padding: 0 0 0 2vw;
  66. .name {
  67. font-size: 18px;
  68. font-weight: bold;
  69. margin: 0 0 1vw 0;
  70. overflow: hidden;
  71. text-overflow: ellipsis;
  72. -webkit-line-clamp: 2;
  73. word-break: break-all;
  74. display: -webkit-box;
  75. -webkit-box-orient: vertical;
  76. .status {
  77. background-color: #ff0000;
  78. color: #fff;
  79. padding: 0 2vw;
  80. font-size: 16px;
  81. margin: 0 2vw 0 0;
  82. border-radius: 5px;
  83. }
  84. }
  85. .other {
  86. .other_1 {
  87. margin: 0 0 1vw 0;
  88. color: #000000a6;
  89. font-size: 14px;
  90. overflow: hidden;
  91. text-overflow: ellipsis;
  92. -webkit-line-clamp: 2;
  93. word-break: break-all;
  94. display: -webkit-box;
  95. -webkit-box-orient: vertical;
  96. }
  97. }
  98. }
  99. }
  100. .btn {
  101. text-align: center;
  102. button {
  103. margin: 0 2vw 2vw 2vw;
  104. font-size: 14px;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. }
  111. }
  112. .dialog_1 {
  113. width: 80vw;
  114. .content {
  115. background-color: #ffffff;
  116. border-bottom: 1px solid #cccccc;
  117. display: flex;
  118. flex-direction: row;
  119. justify-content: space-between;
  120. padding: 2vw;
  121. width: 76vw;
  122. .label {
  123. width: 25vw;
  124. text-align: left;
  125. font-size: 16px;
  126. }
  127. .value {
  128. width: 65vw;
  129. text-align: right;
  130. font-size: 16px;
  131. textarea {
  132. width: 65vw;
  133. }
  134. }
  135. }
  136. .btn {
  137. margin: 2vw 0 0 0;
  138. text-align: center;
  139. }
  140. }
  141. .dialog_2 {
  142. .name {
  143. text-align: center;
  144. font-size: 18px;
  145. font-weight: bold;
  146. margin: 3vw 0;
  147. }
  148. .image {
  149. text-align: center;
  150. height: 18vh;
  151. overflow: hidden;
  152. .qrcode {
  153. height: 22vh;
  154. position: absolute;
  155. left: 30vw;
  156. }
  157. }
  158. .remark {
  159. text-align: center;
  160. font-size: 15px;
  161. margin: 0 0 4vw 0;
  162. }
  163. }