index.less 3.5 KB

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