index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .main {
  2. height: 80.8vh;
  3. }
  4. .main .one {
  5. width: 100%;
  6. }
  7. .main .two {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: space-around;
  11. width: 96vw;
  12. background-color: #ffffff;
  13. margin-bottom: 1px;
  14. padding: 10px 0;
  15. }
  16. .main .two text {
  17. font-size: 14px;
  18. }
  19. .main .thr {
  20. width: 96vw;
  21. flex-grow: 1;
  22. position: relative;
  23. background-color: #ffffff;
  24. }
  25. .main .thr .scroll-view {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. bottom: 0;
  31. }
  32. .main .thr .scroll-view .list-scroll-view {
  33. display: flex;
  34. flex-wrap: wrap;
  35. align-content: flex-start;
  36. justify-content: space-between;
  37. }
  38. .main .thr .scroll-view .list-scroll-view .list {
  39. display: flex;
  40. width: 96vw;
  41. margin: 10px 0;
  42. border-bottom: 0.1px solid #D1CFCF;
  43. }
  44. .main .thr .scroll-view .list-scroll-view .list .image {
  45. display: flex;
  46. justify-content: center;
  47. align-items: center;
  48. width: 30vw;
  49. }
  50. .main .thr .scroll-view .list-scroll-view .list .image image {
  51. width: 20vw;
  52. height: 20vw;
  53. border-radius: 5px;
  54. }
  55. .main .thr .scroll-view .list-scroll-view .list .content {
  56. padding: 5px;
  57. }
  58. .main .thr .scroll-view .list-scroll-view .list .content .name {
  59. font-size: 14px;
  60. font-weight: bold;
  61. padding: 2px 0;
  62. }
  63. .main .thr .scroll-view .list-scroll-view .list .content .name .color {
  64. font-size: 11px;
  65. color: #FFFFFF;
  66. border-radius: 2px;
  67. background-color: #b3ab3c;
  68. padding: 0 5px;
  69. margin-right: 2px;
  70. }
  71. .main .thr .scroll-view .list-scroll-view .list .content .name .color0 {
  72. font-size: 11px;
  73. color: #FFFFFF;
  74. border-radius: 2px;
  75. background-color: #da2525;
  76. padding: 0 5px;
  77. margin-right: 2px;
  78. }
  79. .main .thr .scroll-view .list-scroll-view .list .content .name .color1 {
  80. font-size: 11px;
  81. color: #FFFFFF;
  82. border-radius: 2px;
  83. background-color: #3c87b3;
  84. padding: 0 5px;
  85. margin-right: 2px;
  86. }
  87. .main .thr .scroll-view .list-scroll-view .list .content .name .color2 {
  88. font-size: 11px;
  89. color: #FFFFFF;
  90. border-radius: 2px;
  91. background-color: #b33c6e;
  92. padding: 0 5px;
  93. margin-right: 2px;
  94. }
  95. .main .thr .scroll-view .list-scroll-view .list .content .name .color3 {
  96. font-size: 11px;
  97. color: #FFFFFF;
  98. border-radius: 2px;
  99. background-color: #3cb3b3;
  100. padding: 0 5px;
  101. margin-right: 2px;
  102. }
  103. .main .thr .scroll-view .list-scroll-view .list .content .name .color4 {
  104. font-size: 11px;
  105. color: #FFFFFF;
  106. border-radius: 2px;
  107. background-color: #3CB371;
  108. padding: 0 5px;
  109. margin-right: 2px;
  110. }
  111. .main .thr .scroll-view .list-scroll-view .list .content .name .color5 {
  112. font-size: 11px;
  113. color: #FFFFFF;
  114. border-radius: 2px;
  115. background-color: #DA70D6;
  116. padding: 0 5px;
  117. margin-right: 2px;
  118. }
  119. .main .thr .scroll-view .list-scroll-view .list .content .title {
  120. font-size: 12px;
  121. color: #666;
  122. padding: 2px 0;
  123. }