index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /* 数据展示 */
  2. .data-display {
  3. display: flex;
  4. justify-content: space-around;
  5. width: 100vw;
  6. height: 142rpx;
  7. background-color: #FFFFFF;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. text-align: center;
  11. }
  12. .data-display-title {
  13. font-size: 24rpx;
  14. color: #333333;
  15. line-height: 34rpx;
  16. opacity: .7;
  17. margin-top: 20rpx;
  18. }
  19. .data-display-num {
  20. font-size: 42rpx;
  21. font-weight: 500;
  22. color: #4DC2D4;
  23. line-height: 58rpx;
  24. margin-top: 10rpx;
  25. }
  26. .display-title_image {
  27. width: 32rpx;
  28. height: 32rpx;
  29. margin: 0 6rpx;
  30. }
  31. /* 直播大厅和热门展商 */
  32. .exhibition-swiper {
  33. height: 700rpx;
  34. }
  35. .exhibition-swiper-item {
  36. display: flex;
  37. flex-wrap: wrap;
  38. height: 650rpx !important;
  39. }
  40. /* 盒子 */
  41. .exhibition {
  42. position: relative;
  43. display: flex;
  44. flex-direction: column;
  45. width: 322rpx;
  46. height: 308rpx;
  47. background: #FFFFFF;
  48. box-shadow: 0px 4rpx 8rpx 0px rgba(170, 170, 170, 0.1);
  49. border-radius: 10rpx;
  50. border: 2rpx solid rgba(0, 0, 0, 0.05);
  51. overflow: hidden;
  52. margin-right: 10rpx;
  53. }
  54. /* 热门展商门牌号 */
  55. .showLocation {
  56. position: absolute;
  57. font-size: 20rpx;
  58. color: #FFFFFF;
  59. max-width: 120rpx;
  60. height: 32rpx;
  61. line-height: 32rpx;
  62. background: #4DC2D4;
  63. border-radius: 10rpx 0px 10rpx 0px;
  64. padding: 0 10rpx;
  65. top: 0;
  66. left: 0;
  67. }
  68. .exhibition:nth-child(2n) {
  69. margin-right: 0;
  70. }
  71. .exhibition-img {
  72. width: 100%;
  73. height: 240rpx;
  74. }
  75. .exhibition-bottom {
  76. flex: 1;
  77. width: 100%;
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. padding: 0 12rpx;
  82. box-sizing: border-box;
  83. }
  84. .exhibition-bottom-title {
  85. font-size: 28rpx;
  86. color: #000000;
  87. }
  88. .exhibition-bottom-data {
  89. display: flex;
  90. align-items: center;
  91. text-align: right;
  92. }
  93. .exhibition-bottom-data-text {
  94. max-width: 110rpx;
  95. margin-left: 4rpx;
  96. font-size: 24rpx;
  97. font-weight: 550;
  98. color: #4DC2D4;
  99. }
  100. .exhibition-bottom image {
  101. width: 18rpx;
  102. height: 18rpx;
  103. }
  104. /* 分类和搜索盒子 */
  105. .classify-and-search {
  106. position: relative;
  107. display: flex;
  108. justify-content: space-between;
  109. height: 40rpx;
  110. margin-bottom: 20rpx;
  111. padding: 0 3rpx;
  112. }
  113. /* 分类 */
  114. .classify {
  115. display: flex;
  116. align-items: center;
  117. justify-content: space-between;
  118. min-width: 120rpx;
  119. height: 100%;
  120. border-radius: 40rpx;
  121. border: 2rpx solid #4DC2D4;
  122. font-size: 20rpx;
  123. color: #4DC2D4;
  124. padding: 0 12rpx;
  125. box-sizing: border-box;
  126. overflow: hidden;
  127. }
  128. .liveSearch {
  129. display: flex;
  130. justify-content: space-between;
  131. width: 176rpx;
  132. height: 100%;
  133. background: #FFFFFF;
  134. border-radius: 49rpx;
  135. opacity: 0.7;
  136. border: 2rpx solid #979797;
  137. padding: 0 12rpx 0 16rpx;
  138. }
  139. .liveSearch-input {
  140. height: 100%;
  141. min-height: 100%;
  142. font-size: 20rpx;
  143. color: #000000;
  144. }
  145. .liveSearch-icon {
  146. height: 100%;
  147. margin-left: 10rpx;
  148. }
  149. /* 热门展品 */
  150. .show-prod-list {
  151. height: 600rpx;
  152. }
  153. .show-prod-list swiper-item {
  154. height: 570rpx !important;
  155. }
  156. /* 下拉 */
  157. .pattern-item-box {
  158. position: absolute;
  159. top: 60rpx;
  160. }
  161. .pattern-item {
  162. font-size: 24rpx;
  163. background-color: #ffffff;
  164. border: 2rpx solid #e8e8e8;
  165. border-radius: 8rpx;
  166. bottom: -70rpx;
  167. box-shadow: 0 0 8rpx 0 rgba(0, 0, 0, 0.1);
  168. }
  169. .pattern-item>view {
  170. position: relative;
  171. line-height: 60rpx;
  172. padding: 0 30rpx;
  173. text-align: center;
  174. color: rgba(0, 0, 0, 0.5);
  175. z-index: 999;
  176. }
  177. .pattern-item .square {
  178. position: absolute;
  179. display: block;
  180. width: 15rpx;
  181. height: 15rpx;
  182. background-color: #fff;
  183. transform: rotate(45deg);
  184. border: 2rpx solid #e8e8e8;
  185. border-bottom: 0;
  186. border-right: 0;
  187. top: 0;
  188. margin-top: -9rpx;
  189. left: 35%;
  190. z-index: 0;
  191. }
  192. /* 选中项 */
  193. .SelectClassify {
  194. color: #4DC2D4 !important;
  195. font-weight: 550;
  196. z-index: 9999 !important;
  197. }