index.wxss 2.2 KB

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