index.wxss 9.5 KB

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