index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .main {
  9. background-color: var(--rgb000);
  10. display: flex;
  11. flex-direction: column;
  12. width: 100vw;
  13. height: 92vh;
  14. }
  15. .main .one {
  16. background-color: var(--rgb111);
  17. display: flex;
  18. padding: 8px;
  19. }
  20. .main .one .one_1 {
  21. flex-grow: 1;
  22. }
  23. .main .one .one_1 input {
  24. border: 1px solid var(--rgbf1f);
  25. height: 30px;
  26. border-radius: 2px;
  27. padding: 0 5px;
  28. font-size: 12px;
  29. }
  30. .main .one .one_2 button {
  31. height: 100%;
  32. background-color: var(--rgbfa4);
  33. color: var(--rgbfff);
  34. }
  35. .main .two {
  36. position: relative;
  37. flex-grow: 1;
  38. }
  39. .main .two .two_0 {
  40. margin: 0 0 10px 0;
  41. padding: 0 8px;
  42. }
  43. .main .two .two_0 .top {
  44. margin: 0 0 10px 0;
  45. display: flex;
  46. padding: 5px 0;
  47. }
  48. .main .two .two_0 .top .top_1 {
  49. flex-grow: 1;
  50. }
  51. .main .two .two_0 .top .top_1 ._span {
  52. color: var(--rgbfff);
  53. font-size: 20px;
  54. font-family: monospace;
  55. font-weight: bold;
  56. }
  57. .main .two .two_0 .top .top_2 ._span {
  58. color: var(--rgbfff);
  59. font-size: 14px;
  60. }
  61. .main .two .two_0 .info {
  62. margin: 0 0 10px 0;
  63. display: flex;
  64. justify-content: space-between;
  65. flex-wrap: wrap;
  66. }
  67. .main .two .two_0 .info .list {
  68. position: relative;
  69. width: 48%;
  70. margin: 0 0 10px 0;
  71. }
  72. .main .two .two_0 .info .list .image {
  73. width: 100%;
  74. height: 100px;
  75. overflow: hidden;
  76. border-radius: 5px;
  77. }
  78. .main .two .two_0 .info .list .name {
  79. font-size: 14px;
  80. color: var(--rgbfff);
  81. }
  82. .main .two .two_0 .info .list .other {
  83. display: flex;
  84. color: var(--rgbfff);
  85. font-size: 12px;
  86. justify-content: space-between;
  87. }
  88. .main .two .two_0 .info .list .vip {
  89. position: absolute;
  90. top: 0;
  91. left: 1vw;
  92. }
  93. .main .two .two_0 .info .list .vip ._span {
  94. font-size: 14px;
  95. font-weight: bold;
  96. color: var(--rgbffd);
  97. }
  98. .main .two .two_0 .btn button {
  99. border-radius: 25px;
  100. background-color: var(--rgbfa4);
  101. color: var(--rgbfff);
  102. font-size: 14px;
  103. }
  104. .main .two .two_1 .swiper {
  105. height: 200px;
  106. overflow: hidden;
  107. }
  108. .main .two .two_1 .list .image {
  109. width: 100%;
  110. height: 100%;
  111. }
  112. .main .two .two_2 {
  113. display: flex;
  114. flex-direction: row;
  115. flex-wrap: wrap;
  116. justify-content: space-between;
  117. }
  118. .main .two .two_2 .list {
  119. text-align: center;
  120. width: 18%;
  121. margin: 0 0 10px 0;
  122. }
  123. .main .two .two_2 .list .image {
  124. width: 100%;
  125. height: 64px;
  126. border-radius: 90%;
  127. margin: 0 0 5px 0;
  128. }
  129. .main .two .two_2 .list .name {
  130. font-size: 12px;
  131. color: #ffffff;
  132. }
  133. .scroll-view {
  134. position: absolute;
  135. top: 0;
  136. left: 0;
  137. right: 0;
  138. bottom: 0;
  139. }
  140. .scroll-view .list-scroll-view {
  141. display: flex;
  142. flex-direction: column;
  143. }