mess.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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: 14px;
  24. }
  25. }
  26. .one_2 {
  27. button {
  28. font-size: 14px;
  29. }
  30. }
  31. }
  32. .two {
  33. flex-grow: 1;
  34. width: 100%;
  35. position: relative;
  36. .scroll-view {
  37. position: absolute;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. bottom: 0;
  42. .list-scroll-view {
  43. display: flex;
  44. flex-direction: column;
  45. .list {
  46. border-bottom: 1px solid #cccccc;
  47. padding: 2vw 0;
  48. display: flex;
  49. flex-direction: column;
  50. .info {
  51. display: flex;
  52. flex-direction: row;
  53. margin: 0 0 2vw 0;
  54. .list_1 {
  55. padding: 8vw 0 0 0;
  56. .image {
  57. width: 60px;
  58. height: 60px;
  59. border-radius: 10px;
  60. }
  61. }
  62. .list_2 {
  63. width: 80vw;
  64. padding: 0 0 0 2vw;
  65. .name {
  66. font-size: 16px;
  67. font-weight: bold;
  68. margin: 0 0 1vw 0;
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. -webkit-line-clamp: 2;
  72. word-break: break-all;
  73. display: -webkit-box;
  74. -webkit-box-orient: vertical;
  75. .status {
  76. background-color: #ff0000;
  77. color: #fff;
  78. padding: 0 2vw;
  79. font-size: 14px;
  80. }
  81. }
  82. .other {
  83. .other_1 {
  84. margin: 0 0 1vw 0;
  85. color: #000000a6;
  86. font-size: 12px;
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. -webkit-line-clamp: 2;
  90. word-break: break-all;
  91. display: -webkit-box;
  92. -webkit-box-orient: vertical;
  93. }
  94. }
  95. }
  96. }
  97. .btn {
  98. text-align: center;
  99. button {
  100. margin: 0 2vw;
  101. font-size: 14px;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }