index.wxss 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. page {
  2. background-color: #ffffff;
  3. }
  4. /* 搜索 */
  5. .search {
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. width: 702rpx;
  10. height: 60rpx;
  11. background: rgba(0, 0, 0, 0.05);
  12. border-radius: 30rpx;
  13. margin: 20rpx auto 0;
  14. font-size: 28rpx;
  15. color: rgba(0, 0, 0, 0.3);
  16. }
  17. .search image {
  18. width: 26rpx;
  19. height: 26rpx;
  20. margin-right: 8rpx;
  21. }
  22. /* 通告 */
  23. .annunciate {
  24. width: 100vw;
  25. background-color: #ffffff;
  26. padding-top: 20rpx;
  27. overflow: hidden;
  28. }
  29. .annunciate_title {
  30. display: flex;
  31. align-items: center;
  32. height: 48rpx;
  33. line-height: 48rpx;
  34. }
  35. .annunciate_decorate {
  36. width: 8rpx;
  37. height: 36rpx;
  38. background: #57C7D3;
  39. border-radius: 4rpx;
  40. margin-left: 30rpx;
  41. }
  42. .annunciate_text {
  43. font-size: 32rpx;
  44. font-family: PingFangSC-Medium, PingFang SC;
  45. font-weight: 550;
  46. color: #000000;
  47. margin-left: 10rpx;
  48. }
  49. .annunciate_content {
  50. display: flex;
  51. width: 100%;
  52. padding: 0 26rpx 0 40rpx;
  53. margin-top: 20rpx;
  54. }
  55. .annunciate_content_swiper {
  56. width: 162rpx;
  57. height: 162rpx;
  58. border-radius: 10rpx;
  59. overflow: hidden;
  60. flex-shrink: 0;
  61. }
  62. .annunciate_content_swiper image {
  63. width: 100%;
  64. height: 100%;
  65. }
  66. .annunciate_show {
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: space-between;
  70. margin-left: 20rpx;
  71. }
  72. .annunciate_item {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. height: 40rpx;
  77. font-size: 28rpx;
  78. color: #000000;
  79. }
  80. .annunciate_item_title {
  81. width: 380rpx;
  82. }
  83. .annunciate_item_count {
  84. height: 28rpx;
  85. font-size: 20rpx;
  86. color: #333333;
  87. line-height: 28rpx;
  88. flex-shrink: 0;
  89. }
  90. .annunciate_item_count image {
  91. width: 16rpx;
  92. height: 14rpx;
  93. }
  94. /* 新 品牌关注 */
  95. .concerns-box {
  96. width: 670rpx;
  97. border-radius: 10rpx;
  98. overflow: hidden;
  99. margin: 30rpx auto 0;
  100. }
  101. .concerns-head {
  102. display: flex;
  103. width: 100%;
  104. }
  105. .concerns-head .label {
  106. width: 50%;
  107. height: 76rpx;
  108. line-height: 76rpx;
  109. text-align: center;
  110. background-color: #F5F5F5;
  111. font-size: 32rpx;
  112. color: #333333;
  113. }
  114. .concerns-head .active {
  115. background: #55C3D0 !important;
  116. font-family: PingFangSC-Medium, PingFang SC !important;
  117. color: #FFFFFF !important;
  118. }
  119. .concerns-content {
  120. float: left;
  121. width: 100%;
  122. height: 340rpx;
  123. box-sizing: border-box;
  124. border: 4rpx solid #55C3D0;
  125. border-radius: 0px 0px 10rpx 10rpx;
  126. padding-top: 6rpx;
  127. }
  128. .concerns-content-item {
  129. float: left;
  130. width: 50%;
  131. height: 40rpx;
  132. line-height: 40rpx;
  133. padding-left: 40rpx;
  134. box-sizing: border-box;
  135. font-size: 28rpx;
  136. color: #333333;
  137. margin-top: 20rpx;
  138. }
  139. .concerns-content-item .img {
  140. float: left;
  141. width: 46rpx;
  142. height: 32rpx;
  143. margin-right: 20rpx;
  144. margin-top: 4rpx;
  145. text-align: center;
  146. }
  147. .concerns-content-item .img image {
  148. height: 32rpx;
  149. }
  150. /* 新品推荐 */
  151. .new-product {
  152. display: flex;
  153. justify-content: space-between;
  154. width: 100vw;
  155. padding: 0 40rpx;
  156. box-sizing: border-box;
  157. margin-top: 30rpx;
  158. }
  159. .new-product>view {
  160. width: 320rpx;
  161. height: 406rpx;
  162. margin-top: 0px;
  163. }
  164. .new-product-title {
  165. display: flex;
  166. justify-content: center;
  167. align-items: center;
  168. height: 74rpx;
  169. width: 316rpx;
  170. background-color: #333333;
  171. font-size: 32rpx;
  172. color: #FFFFFF;
  173. border: 2rpx solid #000000;
  174. border-bottom: 0;
  175. border-radius: 10rpx 10rpx 0 0;
  176. }
  177. .new-product-title>view {
  178. width: 12rpx;
  179. height: 12rpx;
  180. background: #FFFFFF;
  181. border-radius: 50%;
  182. margin: 0 10rpx;
  183. }
  184. .new-product-swiper {
  185. width: 316rpx;
  186. height: 264rpx;
  187. border: 2rpx solid #000000;
  188. border-top: 0;
  189. border-bottom: 0;
  190. }
  191. .new-product-swiper swiper-item,
  192. .new-product-swiper image {
  193. width: 100%;
  194. height: 100%;
  195. }
  196. .new-product-name {
  197. width: 316rpx !important;
  198. height: 60rpx;
  199. line-height: 60rpx;
  200. font-size: 28rpx;
  201. color: #000000;
  202. background-color: #F5F5F5;
  203. text-align: center;
  204. border: 2rpx solid #000000;
  205. border-top: 0;
  206. border-radius: 0 0 10rpx 10rpx;
  207. }
  208. /* tabs */
  209. .tabs-custom-class {
  210. margin-top: 20rpx;
  211. }
  212. .tabs-tab-class {
  213. min-width: 170rpx !important;
  214. font-size: 32rpx !important;
  215. color: #000000 !important;
  216. }
  217. .tabs-tab-active-class {
  218. font-size: 36rpx !important;
  219. font-family: PingFangSC-Medium, PingFang SC !important;
  220. font-weight: 550 !important;
  221. color: #00C1D2 !important;
  222. }
  223. /* 展厅照片 */
  224. .exhibition-hall,
  225. .attract-investment {
  226. width: 702rpx;
  227. height: 392rpx;
  228. margin: 30rpx auto 0;
  229. border-radius: 10rpx;
  230. overflow: hidden;
  231. }
  232. .exhibition-hall image,
  233. .attract-investment image {
  234. width: 100%;
  235. height: 100%;
  236. }
  237. .attract-investment {
  238. height: 294rpx;
  239. margin-top: 40rpx;
  240. }
  241. /* 品牌关注榜选项 */
  242. .option-box {
  243. position: absolute;
  244. height: 280rpx;
  245. width: 162rpx;
  246. top: 66rpx;
  247. left: 46rpx;
  248. overflow: hidden;
  249. }
  250. .option {
  251. position: absolute;
  252. width: 180rpx;
  253. height: 450rpx;
  254. background-color: #F7F8F8;
  255. transform: rotate(30deg);
  256. }
  257. .op-top {
  258. top: -78rpx;
  259. left: -129rpx;
  260. }
  261. .op-bot {
  262. bottom: -78rpx;
  263. right: -129rpx;
  264. }
  265. .opavtion {
  266. background-color: #4DC2D4 !important;
  267. }
  268. /*品牌类型 */
  269. .brand-type {
  270. position: absolute;
  271. width: 64rpx;
  272. height: 88rpx;
  273. font-size: 32rpx;
  274. color: rgba(0, 0, 0, .2);
  275. z-index: 99;
  276. pointer-events: none;
  277. }
  278. .type-top {
  279. top: 20rpx;
  280. left: 20rpx;
  281. }
  282. .type-bot {
  283. display: flex;
  284. flex-wrap: wrap;
  285. align-items: flex-end;
  286. bottom: 20rpx;
  287. right: 20rpx;
  288. }
  289. .typeavtion {
  290. font-family: PingFangSC-Medium, PingFang SC;
  291. font-weight: 550;
  292. color: #FFFFFF;
  293. }
  294. /* 轮播 */
  295. .option-swiper {
  296. position: absolute;
  297. width: 380rpx;
  298. height: 280rpx;
  299. top: 66rpx;
  300. left: 240rpx;
  301. }
  302. .option-swiper swiper-item {
  303. display: flex;
  304. flex-wrap: wrap;
  305. flex-direction: column;
  306. align-items: space-between;
  307. width: 100%;
  308. height: 100%;
  309. }
  310. .brand-item {
  311. width: 47%;
  312. height: 40rpx;
  313. font-size: 28rpx;
  314. font-family: PingFangSC-Regular, PingFang SC;
  315. color: #333333;
  316. line-height: 40rpx;
  317. margin-bottom: 20rpx;
  318. }
  319. .brand-item>text {
  320. font-size: 32rpx;
  321. font-family: PangMenZhengDao !important;
  322. margin-right: 5rpx;
  323. }
  324. .brand-item:nth-of-type(5n) {
  325. margin-bottom: 0;
  326. }
  327. .brand-item:nth-of-type(n+6) {
  328. margin-left: 20rpx;
  329. }
  330. /* 招商表单 */
  331. .recruit-box {
  332. width: 702rpx;
  333. height: 434rpx;
  334. background: #FFFFFF;
  335. box-shadow: 0px 0px 10rpx 0rpx rgba(170, 170, 170, 0.1);
  336. border-radius: 10rpx;
  337. border: 2rpx solid rgba(151, 151, 151, 0.2);
  338. margin: 30rpx auto 0;
  339. padding: 40rpx 0 0 30rpx;
  340. box-sizing: border-box;
  341. }
  342. .recruit-row {
  343. display: flex;
  344. height: 52rpx;
  345. line-height: 52rpx;
  346. font-size: 24rpx;
  347. color: rgba(0, 0, 0, 0.45);
  348. }
  349. .recruit-row-title {
  350. width: 96rpx;
  351. height: 44rpx;
  352. text-align: right;
  353. margin-right: 8rpx;
  354. }
  355. .recruit-row-input {
  356. width: 206rpx;
  357. height: 52rpx;
  358. background: #FFFFFF;
  359. border-radius: 4rpx;
  360. border: 2rpx solid #D9D9D9;
  361. box-sizing: border-box;
  362. padding-left: 8rpx;
  363. }
  364. .placeholder-class {
  365. font-size: 24rpx !important;
  366. color: rgba(0, 0, 0, 0.25);
  367. line-height: 46rpx !important;
  368. }
  369. .recruit-row-picker {
  370. min-width: 206rpx;
  371. max-width: 538rpx;
  372. height: 52rpx;
  373. line-height: 51rpx;
  374. background: #FFFFFF;
  375. border-radius: 4rpx;
  376. border: 2rpx solid #D9D9D9;
  377. font-size: 24rpx;
  378. font-family: PingFangSC-Regular, PingFang SC;
  379. color: rgba(0, 0, 0, 0.25);
  380. text-indent: 0.5em;
  381. padding-right: 10rpx;
  382. box-sizing: border-box;
  383. }
  384. .recruit-row .textarea {
  385. width: 528rpx;
  386. height: 134rpx;
  387. line-height: 24rpx;
  388. background: #FFFFFF;
  389. border-radius: 4rpx;
  390. border: 2rpx solid #D9D9D9;
  391. padding: 4rpx 0 0 8rpx;
  392. }
  393. .recruit-row .textarea textarea {
  394. width: 100%;
  395. height: 100%;
  396. }
  397. .submit-custom-class {
  398. width: 164rpx !important;
  399. height: 56rpx !important;
  400. background: #4DC2D4 !important;
  401. border-radius: 10rpx !important;
  402. font-size: 28rpx !important;
  403. font-family: PingFangSC-Medium, PingFang SC !important;
  404. font-weight: 500;
  405. color: #FFFFFF !important;
  406. padding: 0 !important;
  407. }
  408. /* 吸底 */
  409. .footer {
  410. display: flex;
  411. justify-content: center;
  412. position: fixed;
  413. width: 100vw;
  414. padding: 30rpx 0;
  415. background-color: #ffffff;
  416. z-index: 9999;
  417. bottom: 0;
  418. left: 0;
  419. box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.05);
  420. }
  421. .footer .footer-button {
  422. width: 356rpx !important;
  423. height: 78rpx !important;
  424. background: linear-gradient(180deg, #FFDC00 0%, #FFB600 100%) !important;
  425. box-shadow: 2rpx 2rpx 8rpx 0px rgba(0, 0, 0, 0.12) !important;
  426. border-radius: 39rpx;
  427. font-size: 36rpx !important;
  428. font-family: PingFangSC-Medium, PingFang SC !important;
  429. font-weight: 550 !important;
  430. color: #FFFFFF;
  431. }