index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. width: 48%;
  69. margin: 0 0 10px 0;
  70. }
  71. .main .two .two_0 .info .list .image {
  72. width: 100%;
  73. height: 100px;
  74. overflow: hidden;
  75. border-radius: 5px;
  76. }
  77. .main .two .two_0 .info .list .name {
  78. font-size: 14px;
  79. color: var(--rgbfff);
  80. }
  81. .main .two .two_0 .info .list .other {
  82. display: flex;
  83. color: var(--rgbfff);
  84. font-size: 12px;
  85. justify-content: space-between;
  86. }
  87. .main .two .two_0 .btn button {
  88. border-radius: 25px;
  89. background-color: var(--rgbfa4);
  90. color: var(--rgbfff);
  91. font-size: 14px;
  92. }
  93. .main .two .two_1 .swiper {
  94. height: 200px;
  95. overflow: hidden;
  96. }
  97. .main .two .two_1 .list .image {
  98. width: 100%;
  99. height: 100%;
  100. }
  101. .main .two .two_2 {
  102. display: flex;
  103. flex-direction: row;
  104. flex-wrap: wrap;
  105. justify-content: space-between;
  106. }
  107. .main .two .two_2 .list {
  108. text-align: center;
  109. width: 18%;
  110. margin: 0 0 10px 0;
  111. }
  112. .main .two .two_2 .list .image {
  113. width: 100%;
  114. height: 64px;
  115. border-radius: 90%;
  116. margin: 0 0 5px 0;
  117. }
  118. .main .two .two_2 .list .name {
  119. font-size: 12px;
  120. color: #ffffff;
  121. }
  122. .scroll-view {
  123. position: absolute;
  124. top: 0;
  125. left: 0;
  126. right: 0;
  127. bottom: 0;
  128. }
  129. .scroll-view .list-scroll-view {
  130. display: flex;
  131. flex-direction: column;
  132. }