mess.less 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. 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: 60px;
  59. height: 60px;
  60. border-radius: 10px;
  61. }
  62. }
  63. .list_2 {
  64. width: 80vw;
  65. padding: 0 0 0 2vw;
  66. .name {
  67. font-size: 16px;
  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: 14px;
  81. }
  82. }
  83. .other {
  84. .other_1 {
  85. margin: 0 0 1vw 0;
  86. color: #000000a6;
  87. font-size: 12px;
  88. overflow: hidden;
  89. text-overflow: ellipsis;
  90. -webkit-line-clamp: 2;
  91. word-break: break-all;
  92. display: -webkit-box;
  93. -webkit-box-orient: vertical;
  94. }
  95. }
  96. }
  97. }
  98. .btn {
  99. text-align: center;
  100. button {
  101. margin: 0 2vw;
  102. font-size: 14px;
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. }