index.wxss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. page {
  2. background-color: #ffffff;
  3. }
  4. /* 通告 */
  5. .annunciate {
  6. width: 100vw;
  7. background-color: #ffffff;
  8. padding-top: 20rpx;
  9. overflow: hidden;
  10. }
  11. .annunciate_title {
  12. display: flex;
  13. align-items: center;
  14. height: 48rpx;
  15. line-height: 48rpx;
  16. }
  17. .annunciate_decorate {
  18. width: 8rpx;
  19. height: 36rpx;
  20. background: #57C7D3;
  21. border-radius: 4rpx;
  22. margin-left: 30rpx;
  23. }
  24. .annunciate_text {
  25. font-size: 32rpx;
  26. font-family: PingFangSC-Medium, PingFang SC;
  27. font-weight: 550;
  28. color: #000000;
  29. margin-left: 10rpx;
  30. }
  31. .annunciate_content {
  32. display: flex;
  33. width: 100%;
  34. padding: 0 26rpx 0 40rpx;
  35. margin-top: 20rpx;
  36. }
  37. .annunciate_content_swiper {
  38. width: 162rpx;
  39. height: 162rpx;
  40. border-radius: 10rpx;
  41. overflow: hidden;
  42. background-color: #000000;
  43. flex-shrink: 0;
  44. }
  45. .annunciate_show {
  46. display: flex;
  47. flex-direction: column;
  48. justify-content: space-between;
  49. margin-left: 20rpx;
  50. }
  51. .annunciate_item {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. height: 40rpx;
  56. font-size: 28rpx;
  57. color: #000000;
  58. }
  59. .annunciate_item_title {
  60. width: 380rpx;
  61. }
  62. .annunciate_item_count {
  63. height: 28rpx;
  64. font-size: 20rpx;
  65. color: #333333;
  66. line-height: 28rpx;
  67. flex-shrink: 0;
  68. }
  69. .annunciate_item_count image {
  70. width: 16rpx;
  71. height: 14rpx;
  72. }
  73. /* 广告位 */
  74. .ad-box {
  75. width: 100vw;
  76. padding: 0 24rpx;
  77. box-sizing: border-box;
  78. }
  79. .ad-swiper {
  80. width: 702rpx;
  81. height: 140rpx;
  82. border-radius: 70rpx;
  83. background-color: aqua;
  84. }
  85. /* 品牌关注榜 */
  86. .concerns-box {
  87. position: relative;
  88. width: 670rpx;
  89. height: 412rpx;
  90. margin: 48rpx auto 0;
  91. }
  92. .concerns-con {
  93. position: absolute;
  94. width: 100%;
  95. height: 100%;
  96. z-index: 9;
  97. top: 0;
  98. left: 0;
  99. }
  100. .concerns-title {
  101. position: absolute;
  102. display: inline-block;
  103. height: 44rpx;
  104. font-size: 32rpx;
  105. font-family: PingFangSC-Medium, PingFang SC;
  106. font-weight: 550;
  107. color: #000000;
  108. padding: 0 8rpx 0 20rpx;
  109. background-color: #ffffff;
  110. margin-left: 46rpx;
  111. top: -10rpx;
  112. }
  113. .concerns-bg {
  114. position: absolute;
  115. width: 100%;
  116. height: 100%;
  117. z-index: 1;
  118. top: 0;
  119. left: 0;
  120. }
  121. /* 新品推荐 */
  122. .new-product {
  123. display: flex;
  124. justify-content: space-between;
  125. width: 100vw;
  126. padding: 0 40rpx;
  127. box-sizing: border-box;
  128. margin-top: 30rpx;
  129. }
  130. .new-product>view {
  131. width: 320rpx;
  132. height: 406rpx;
  133. margin-top: 0px;
  134. }
  135. .new-product-title {
  136. display: flex;
  137. justify-content: center;
  138. align-items: center;
  139. height: 74rpx;
  140. width: 316rpx;
  141. background-color: #333333;
  142. font-size: 32rpx;
  143. color: #FFFFFF;
  144. border: 2rpx solid #000000;
  145. border-bottom: 0;
  146. border-radius: 10rpx 10rpx 0 0;
  147. }
  148. .new-product-title>view {
  149. width: 12rpx;
  150. height: 12rpx;
  151. background: #FFFFFF;
  152. border-radius: 50%;
  153. margin: 0 10rpx;
  154. }
  155. .new-product-swiper {
  156. width: 316rpx;
  157. height: 264rpx;
  158. background-color: aqua;
  159. border: 2rpx solid #000000;
  160. border-top: 0;
  161. border-bottom: 0;
  162. }
  163. .new-product-name {
  164. width: 316rpx !important;
  165. height: 60rpx;
  166. line-height: 60rpx;
  167. font-size: 28rpx;
  168. color: #000000;
  169. background-color: #F5F5F5;
  170. text-align: center;
  171. border: 2rpx solid #000000;
  172. border-top: 0;
  173. border-radius: 0 0 10rpx 10rpx;
  174. }
  175. /* tabs */
  176. .tabs-custom-class {
  177. margin-top: 20rpx;
  178. }
  179. .tabs-tab-class {
  180. min-width: 170rpx !important;
  181. font-size: 32rpx !important;
  182. color: #000000 !important;
  183. }
  184. .tabs-tab-active-class {
  185. font-size: 36rpx !important;
  186. font-family: PingFangSC-Medium, PingFang SC !important;
  187. font-weight: 550 !important;
  188. color: #00C1D2 !important;
  189. }
  190. /* 供需 */
  191. @import"/pages/annunciate/index.wxss";
  192. /* 展厅照片 */
  193. .exhibition-hall,
  194. .attract-investment {
  195. width: 702rpx;
  196. height: 392rpx;
  197. margin: 30rpx auto 0;
  198. border-radius: 10rpx;
  199. overflow: hidden;
  200. }
  201. .exhibition-hall image,
  202. .attract-investment image {
  203. width: 100%;
  204. height: 100%;
  205. }
  206. .attract-investment {
  207. height: 294rpx;
  208. margin-top: 40rpx;
  209. }