index.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  1. body{
  2. background-color: #F8F8F8;
  3. /*background-color: rgba(248, 162, 49, 0.96);*/
  4. /*background-color: rgba(253, 162, 44, 0.96);*/
  5. /*background-color: rgba(211, 69, 211, 0.96);*/
  6. /*background-color: rgba(26, 25, 25, 0.96);*/
  7. }
  8. #main{
  9. padding-bottom: .32rem;
  10. }
  11. /* 板心 */
  12. .sectionContainer{
  13. display: flex;
  14. justify-content: center;
  15. }
  16. .elementorContainer{
  17. max-width: 13.2rem;
  18. flex: 1;
  19. -moz-box-sizing: border-box;
  20. -webkit-box-sizing: border-box;
  21. box-sizing: border-box;
  22. }
  23. /* 轮播图 */
  24. .swiperContainer {
  25. position: relative;
  26. z-index: 2;
  27. width: 100%;
  28. overflow: hidden;
  29. height: 5.62rem;
  30. }
  31. .swiperContainer img {
  32. vertical-align: middle;
  33. width: 100%;
  34. height: 100%;
  35. object-fit: cover;
  36. }
  37. .swiperContainer .swiperBox {
  38. position: relative;
  39. z-index: 0;
  40. width: 100%;
  41. height: 100%;
  42. margin: auto;
  43. overflow: hidden;
  44. }
  45. .swiperContainer .swiperItem {
  46. position: absolute;
  47. z-index: 1;
  48. left: 0;
  49. top: 0;
  50. width: 100%;
  51. height: 100%;
  52. text-align: center;
  53. }
  54. .swiperContainer .swiperItem div{
  55. height: 100%;
  56. }
  57. .swiperContainer .swiperItem~.swiperItem {
  58. z-index: 0;
  59. }
  60. .swiperContainer .swiperItem.icur {
  61. position: relative;
  62. z-index: 2;
  63. }
  64. .swiperContainer .swiperItem.prev {
  65. position: absolute;
  66. left: -100%;
  67. z-index: 2;
  68. }
  69. .swiperContainer .swiperItem.next {
  70. position: absolute;
  71. left: 100%;
  72. z-index: 2;
  73. }
  74. .swiperContainer .swiperNav {
  75. position: absolute;
  76. z-index: 20;
  77. left: 0;
  78. bottom: .1rem;
  79. width: 100%;
  80. text-align: center;
  81. }
  82. .swiperContainer .swiperNav center {
  83. display: inline-block;
  84. }
  85. .swiperContainer .swiperNav span {
  86. display: inline-block;
  87. width: .14rem;
  88. height: .14rem;
  89. border-radius: 50%;
  90. background-color: #FFF;
  91. cursor: pointer;
  92. }
  93. .swiperContainer .swiperNav span~span {
  94. margin-left: .12rem;
  95. }
  96. .swiperContainer .swiperNav span.icur {
  97. background-color: rgba(79, 73, 222, 1);
  98. }
  99. .adFixed{
  100. position: fixed;
  101. bottom: .8rem;
  102. right: .1rem;
  103. width: 1.2rem;
  104. height: 1.2rem;
  105. object-fit: contain;
  106. z-index: 999;
  107. /*border: 1px solid red;*/
  108. }
  109. .adFixed1{
  110. position: fixed;
  111. bottom: 3.2rem;
  112. right: .1rem;
  113. width: 1.2rem;
  114. height: 1.2rem;
  115. object-fit: contain;
  116. z-index: 999;
  117. /*//border: 1px solid red;*/
  118. }
  119. .adFixed2{
  120. position: fixed;
  121. bottom: .8rem;
  122. left: .1rem;
  123. width: 1.8rem;
  124. height: 1.2rem;
  125. object-fit: contain;
  126. z-index: 999;
  127. /*//border: 1px solid red;*/
  128. }
  129. .adFixed3{
  130. position: fixed;
  131. bottom: 4.8rem;
  132. right: .1rem;
  133. width: 1.2rem;
  134. height: 1.2rem;
  135. object-fit: contain;
  136. z-index: 999;
  137. //border: 1px solid red;
  138. }
  139. .adFloatImage {
  140. width: 100%;
  141. height: 100%;
  142. object-fit: cover;
  143. }
  144. .tabContainer{
  145. height: 1.5rem;
  146. display: flex;
  147. align-items: center;
  148. justify-content: center;
  149. }
  150. .tabContainer .tabItem{
  151. position: relative;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. height: .48rem;
  156. /*padding: 0 .52rem;*/
  157. cursor: pointer;
  158. width: 25%;
  159. }
  160. .tabItem .tabName{
  161. font-size: .26rem;
  162. color: #333333;
  163. font-weight: 400;
  164. text-overflow: ellipsis;
  165. overflow: hidden;
  166. white-space: nowrap;
  167. }
  168. .tabItem.active .tabName{
  169. font-weight: bold;
  170. color: rgba(79, 73, 222, 1);
  171. }
  172. .tabItem .tabUnderline{
  173. background-color: rgba(209, 75, 241, 1);
  174. width: .82rem;
  175. height: .06rem;
  176. position: absolute;
  177. bottom: -.02rem;
  178. display: none;
  179. }
  180. .tabItem.active .tabUnderline{
  181. display: block;
  182. }
  183. .tabLink{
  184. width: .02rem;
  185. height: .5rem;
  186. }
  187. /* <-- start 新的商品模块 */
  188. .newGoodsContainer{
  189. display: -ms-grid;
  190. display: grid;
  191. grid-template-columns: repeat(4, 1fr);
  192. grid-gap: .4rem .34rem;
  193. height: auto;
  194. }
  195. #bestGoodsModel{
  196. display: none;
  197. }
  198. .newGoodsItem{
  199. height: 4.54rem;
  200. display: flex;
  201. flex-direction: column;
  202. background-color: #fff;
  203. -moz-box-sizing: border-box;
  204. -webkit-box-sizing: border-box;
  205. box-sizing: border-box;
  206. position: relative;
  207. overflow: hidden;
  208. border-radius: .04rem;
  209. font-size: 0;
  210. cursor: pointer;
  211. }
  212. .goodsShareBotton{
  213. position: absolute;
  214. z-index: 1;
  215. right: 0;
  216. bottom: .12rem;
  217. padding: .08rem;
  218. font-size: 0;
  219. cursor: pointer;
  220. display: flex;
  221. align-items: center;
  222. }
  223. .goodsShareBotton img{
  224. width: .74rem;
  225. }
  226. #shareModal{
  227. position: fixed;
  228. width: 100vw;
  229. height: 100vh;
  230. z-index: 999;
  231. top: 0;
  232. right: 0;
  233. bottom: 0;
  234. left: 0;
  235. background-color: rgba(0, 0, 0, .5);
  236. display: none;
  237. }
  238. #closeShareModal{
  239. position: absolute;
  240. z-index: 1;
  241. top: 0;
  242. right: 0;
  243. bottom: 0;
  244. left: 0;
  245. }
  246. .shareBox{
  247. width: 4rem;
  248. background-color: #f8f8f8;
  249. left: 50%;
  250. transform: translateX(-50%);
  251. top: 40%;
  252. position: absolute;
  253. border-radius: .12rem;
  254. padding: .36rem .24rem .24rem .24rem;
  255. z-index: 100;
  256. }
  257. #shareModalQrcode{
  258. position: fixed;
  259. width: 100vw;
  260. height: 100vh;
  261. z-index: 999;
  262. top: 0;
  263. right: 0;
  264. bottom: 0;
  265. left: 0;
  266. background-color: rgba(0, 0, 0, .5);
  267. display: none;
  268. }
  269. .shareBoxQrcode{
  270. width: 4rem;
  271. height: 4.5rem;
  272. background-color: #f8f8f8;
  273. left: 50%;
  274. transform: translateX(-50%);
  275. top: 15%;
  276. position: absolute;
  277. border-radius: .12rem;
  278. padding: .16rem .24rem .24rem .24rem;
  279. z-index: 80;
  280. /* 增加 */
  281. display: flex;
  282. align-items: center;
  283. justify-content: center;
  284. }
  285. #closeBtn {
  286. color: #aaa;
  287. font-size: 28px;
  288. font-weight: bold;
  289. position: absolute;
  290. right: 0.16rem;
  291. top: .16rem;
  292. }
  293. .closeBtnIcon {
  294. height: 0.32rem;
  295. width: 0.32rem;
  296. }
  297. .modelItemQrcode {
  298. font-size: 0;
  299. }
  300. #qrcodeImgItem {
  301. width: 3.8rem;
  302. height: auto;
  303. }
  304. .modelItem{
  305. border-radius: .08rem;
  306. height: .58rem;
  307. width: 100%;
  308. border: .02rem solid rgba(0, 0, 0, .05);
  309. margin-bottom: .24rem;
  310. position: relative;
  311. display: flex;
  312. justify-content: space-between;
  313. align-items: center;
  314. transition: border .1s;
  315. background-color: #FFFFFF;
  316. }
  317. .modelItem .miTitle{
  318. position: absolute;
  319. z-index: 1;
  320. background: #FFF;
  321. line-height: 1;
  322. color: #666666;
  323. font-size: .14rem;
  324. left: .12rem;
  325. top: 0;
  326. transform: translateY(-50%);
  327. padding: 0 .08rem;
  328. transition: color .1s;
  329. }
  330. .modelItem.active{
  331. border-color: rgba(79, 73, 222, 1);
  332. }
  333. .modelItem.active .miTitle{
  334. color: rgba(79, 73, 222, 1);
  335. }
  336. .modelItem .input{
  337. flex: 1;
  338. height: 100%;
  339. outline: none;
  340. font-size: .18rem;
  341. padding-left: .12rem;
  342. padding: .12rem;
  343. padding-top: .1rem;
  344. box-sizing: border-box;
  345. border: none;
  346. background-color: transparent;
  347. }
  348. .shareNotice {
  349. padding-bottom: .15rem;
  350. }
  351. #confirmShare{
  352. width: 100%;
  353. height: .5rem;
  354. background-color: rgba(79, 73, 222, 1);
  355. border-radius: .08rem;
  356. font-size: .2rem;
  357. letter-spacing: .02rem;
  358. font-weight: bold;
  359. display: flex;
  360. align-items: center;
  361. justify-content: center;
  362. color: #fff;
  363. cursor: pointer;
  364. }
  365. .newGoodsTag{
  366. position: absolute;
  367. z-index: 1;
  368. top: 0;
  369. /*left: 0;*/
  370. right: 0;
  371. color: #FFF;
  372. background-color: rgba(74, 134, 98, 1);
  373. border-radius: 0 0 .1rem 0;
  374. padding: .02rem .08rem;
  375. max-width: 1rem;
  376. font-size: .12rem;
  377. }
  378. .goodsImgBox{
  379. height: 3rem;
  380. margin-bottom: .1rem;
  381. }
  382. .goodsImgBox img{
  383. width: 100%;
  384. height: 100%;
  385. }
  386. .goodsCoverImg{
  387. width: 100%;
  388. height: 100%;
  389. }
  390. .goodsInfo{
  391. flex: 1;
  392. padding: .02rem .2rem 0 .2rem;
  393. display: flex;
  394. flex-direction: column;
  395. }
  396. .goodsTitleBox{
  397. height: .58rem;
  398. }
  399. .goodsTitle{
  400. display: -webkit-box;
  401. -webkit-line-clamp: 2;
  402. -webkit-box-orient: vertical;
  403. overflow: hidden;
  404. font-size: .17rem;
  405. word-break: break-all;
  406. color: #666666;
  407. }
  408. .goodsTitle .preTag{
  409. border-radius: .06rem;
  410. color: #FFF;
  411. background-color: rgba(61, 121, 246, 1);
  412. font-size: .12rem;
  413. padding: .02rem .04rem;
  414. vertical-align: middle;
  415. }
  416. .goodsPriceInfo{
  417. display: flex;
  418. align-items: center;
  419. justify-content: space-between;
  420. height: 1;
  421. }
  422. .gPriceBox{
  423. display: flex;
  424. align-items: center;
  425. flex: 1;
  426. }
  427. .goodsPriceInfo .goodsPrice{
  428. color: rgba(220, 90, 77, 1);
  429. font-weight: bold;
  430. font-size: .22rem;
  431. }
  432. .goodsScribe{
  433. font-size: .16rem;
  434. color: #999999;
  435. flex: 1;
  436. padding-left: .12rem;
  437. text-decoration: line-through;
  438. }
  439. .goodsCollect{
  440. display: flex;
  441. align-items: center;
  442. }
  443. .goodsCollect .collectNumber{
  444. color: #999999;
  445. font-size: .14rem;
  446. max-width: .8rem;
  447. padding-left: .04rem;
  448. }
  449. .goodsCollect img{
  450. height: .12rem;
  451. }
  452. .goodsReviews{
  453. display: flex;
  454. align-items: center;
  455. padding-top: .12rem;
  456. }
  457. .goodsStarContainer{
  458. display: flex;
  459. align-items: center;
  460. gap: .04rem;
  461. margin-right: .12rem;
  462. padding-bottom: .04rem;
  463. }
  464. .goodsStarItem{
  465. font-size: 0;
  466. }
  467. .goodsStarItem img{
  468. width: .15rem;
  469. height: .15rem;
  470. vertical-align: middle;
  471. }
  472. .reviewsNumber{
  473. display: flex;
  474. flex: 1;
  475. color: #999999;
  476. font-size: .14rem;
  477. }
  478. .reviewsNumber .number{
  479. padding-right: .04rem;
  480. max-width: 1rem;
  481. }
  482. .reviewsNumber .text{
  483. flex: 1;
  484. }
  485. /* end 新的商品模块 --> */
  486. /* <-- start 新闻中心模块 */
  487. .newConterItem{
  488. border: .02rem solid rgba(0, 0, 0, .1);
  489. display: flex;
  490. align-items: center;
  491. padding: .2rem .2rem .2rem .14rem;
  492. margin-bottom: .26rem;
  493. }
  494. .newsDateBox{
  495. margin-left: .6rem;
  496. width: 1.4rem;
  497. }
  498. .newsDateBox p{
  499. font-size: .34rem;
  500. font-weight: bold;
  501. color: #000;
  502. line-height: 1;
  503. }
  504. .newsDateBox p.year{
  505. font-size: .18rem;
  506. color: #999999;
  507. padding-top: .04rem;
  508. }
  509. .newConterImg{
  510. font-size: 0;
  511. }
  512. .newConterImg img{
  513. width: 1.52rem;
  514. height: 1rem;
  515. }
  516. .newConterInfo{
  517. flex: 1;
  518. display: flex;
  519. align-items: center;
  520. padding-left: .32rem;
  521. }
  522. .newConterInfo .newConterTitle{
  523. font-size: .18rem;
  524. color: #000;
  525. display: -webkit-box;
  526. -webkit-line-clamp: 2;
  527. -webkit-box-orient: vertical;
  528. overflow: hidden;
  529. word-break: break-all;
  530. flex: 1;
  531. padding-right: .24rem;
  532. line-height: 1.4;
  533. }
  534. .newsInfoRl{
  535. display: flex;
  536. align-items: center;
  537. }
  538. .newsInfoRl .rlDate{
  539. font-size: .2rem;
  540. color: #999999;
  541. display: none;
  542. }
  543. .newsInfoRl .newsMore{
  544. border: .02rem solid rgba(0, 0, 0, .1);
  545. border-radius: .22rem;
  546. height: .46rem;
  547. min-width: 1.5rem;
  548. max-width: 2rem;
  549. box-sizing: border-box;
  550. padding: 0 .32rem;
  551. display: flex;
  552. align-items: center;
  553. justify-content: space-between;
  554. color: #999999;
  555. font-size: .18rem;
  556. }
  557. .newsInfoRl .newsMore.active{
  558. color: #FFF;
  559. background-color: rgba(79, 73, 222, 1);
  560. }
  561. .newsInfoRl .newsMore p{
  562. flex: 1;
  563. }
  564. /* end 新闻中心模块 --> */
  565. /* <-- start 超级交易模块 */
  566. .superDealContainer{
  567. margin-bottom: .5rem;
  568. }
  569. .superDealTitle{
  570. font-size: .26rem;
  571. font-weight: bold;
  572. color: #000000;
  573. text-align: center;
  574. padding-bottom: .16rem;
  575. padding-top: .3rem;
  576. }
  577. .superDealContainer .newGoodsContainer{
  578. grid-gap: .24rem .2rem;
  579. margin-bottom: .36rem;
  580. }
  581. /* end 超级交易模块 --> */
  582. /* <-- start 盟友模块 */
  583. .partnersTitle{
  584. font-weight: bold;
  585. font-size: .36rem;
  586. color: #000;
  587. margin-bottom: .24rem;
  588. }
  589. .partnersList{
  590. display: -ms-grid;
  591. display: grid;
  592. grid-template-columns: repeat(6, 2rem);
  593. grid-gap: .24rem .24rem;
  594. margin-bottom: 0.4rem;
  595. }
  596. .partnersItem{
  597. height: .8rem;
  598. font-size: 0;
  599. display: flex;
  600. align-items: center;
  601. justify-content: center;
  602. }
  603. .partnersItem .partnersLogo{
  604. object-fit: contain;
  605. height: 100%;
  606. width: 100%;
  607. }
  608. /* end 盟友模块 --> */
  609. @media (min-width: 1920px) {
  610. .swiperContainer{
  611. height: 8rem !important;
  612. }
  613. }
  614. @media (max-width: 1320px) {
  615. #main{
  616. -moz-box-sizing: border-box;
  617. -webkit-box-sizing: border-box;
  618. box-sizing: border-box;
  619. }
  620. .sectionContainer{
  621. padding: 0 .12rem 0 .12rem;
  622. }
  623. .newGoodsContainer{
  624. grid-template-columns: repeat(3, 1fr);
  625. grid-gap: .3rem .24rem;
  626. }
  627. .newGoodsItem{
  628. height: 6rem;
  629. }
  630. .goodsImgBox{
  631. height: 4.3rem;
  632. }
  633. .goodsTitleBox{
  634. height: .7rem;
  635. }
  636. .goodsTitle{
  637. font-size: .2rem;
  638. }
  639. .newGoodsTag{
  640. font-size: .2rem;
  641. }
  642. .goodsTitle .preTag{
  643. font-size: .14rem;
  644. }
  645. .goodsPriceInfo .goodsPrice{
  646. font-size: .24rem;
  647. }
  648. .goodsScribe{
  649. font-size: .16rem;
  650. }
  651. .goodsCollect img{
  652. height: .14rem;
  653. }
  654. .goodsCollect .collectNumber{
  655. font-size: .16rem;
  656. }
  657. .goodsStarItem img{
  658. width: .18rem;
  659. height: .18rem;
  660. }
  661. .reviewsNumber{
  662. font-size: .16rem;
  663. }
  664. .partnersList{
  665. grid-template-columns: repeat(5, 1fr);
  666. }
  667. .goodsShareBotton img{
  668. width: .4rem;
  669. }
  670. }
  671. @media (max-width: 1024px) {
  672. .newGoodsContainer{
  673. grid-template-columns: repeat(2, 1fr);
  674. grid-gap: .2rem .14rem !important;
  675. }
  676. .tabContainer .tabItem{
  677. width: 36% !important;
  678. }
  679. .newGoodsItem{
  680. height: 6.1rem;
  681. }
  682. .newGoodsTag{
  683. padding: 0 .1rem;
  684. line-height: 1;
  685. max-width: 1.5rem;
  686. font-size: .2rem;
  687. border-radius: 0 0 .18rem 0;
  688. }
  689. .newGoodsTag{
  690. font-size: .24rem;
  691. }
  692. .goodsTitleBox{
  693. height: .78rem;
  694. }
  695. .goodsTitle{
  696. font-size: .22rem;
  697. line-height: 1.4;
  698. }
  699. .goodsTitle .preTag{
  700. font-size: .2rem;
  701. padding: .02rem .06rem;
  702. }
  703. .goodsPriceInfo .goodsPrice{
  704. font-size: .28rem;
  705. }
  706. .goodsScribe{
  707. font-size: .22rem;
  708. }
  709. .goodsCollect .collectNumber{
  710. font-size: .20rem;
  711. padding-left: .08rem;
  712. }
  713. .goodsCollect img{
  714. height: .24rem;
  715. }
  716. .superDealTitle{
  717. font-size: .3rem;
  718. padding-bottom: .32rem;
  719. }
  720. .superDealContainer .newGoodsContainer{
  721. margin-bottom: .3rem;
  722. }
  723. .reviewsNumber{
  724. font-size: .20rem;
  725. }
  726. .goodsShareBotton{
  727. bottom: .02rem;
  728. }
  729. .goodsShareBotton img{
  730. width: .8rem;
  731. }
  732. }
  733. @media (max-width: 899px) {
  734. .swiperContainer{
  735. height: 3.5rem;
  736. }
  737. .superDealContainer{
  738. margin-bottom: .3rem;
  739. }
  740. .partnersList{
  741. grid-template-columns: repeat(4, 1fr);
  742. }
  743. .newConterItem{
  744. padding: .16rem .2rem .16rem .14rem;
  745. }
  746. .newConterItem .newsDateBox{
  747. display: none;
  748. }
  749. .newsInfoRl .rlDate{
  750. display: block;
  751. }
  752. .newConterItem .newConterImg img{
  753. width: 1.8rem;
  754. height: 1.3rem;
  755. }
  756. .newConterItem .newConterInfo{
  757. flex-direction: column;
  758. justify-content: space-between;
  759. align-items: flex-start;
  760. min-height: 1.4rem;
  761. }
  762. .newConterInfo .newConterTitle{
  763. flex: none;
  764. font-size: .24rem;
  765. line-height: 1.3;
  766. }
  767. .newConterItem .newsInfoRl{
  768. justify-content: space-between;
  769. width: 100%;
  770. }
  771. .newsInfoRl .newsMore{
  772. min-width: 1.2rem;
  773. max-width: 1.6rem;
  774. padding: 0 .2rem;
  775. font-size: .2rem;
  776. }
  777. .superDealTitle{
  778. padding-top: .3rem;
  779. }
  780. }
  781. @media (max-width: 750px) {
  782. .swiperContainer{
  783. height: 3.12rem;
  784. }
  785. .tabContainer{
  786. height: 1.3rem;
  787. }
  788. .tabContainer .tabItem{
  789. padding: 0 !important;
  790. height: .66rem;
  791. max-width: 33%;
  792. border-radius: .12rem;
  793. width: 28% !important;
  794. }
  795. .tabItem .tabName{
  796. font-size: .24rem;
  797. }
  798. .tabItem .tabUnderline{
  799. width: .6rem;
  800. }
  801. .newGoodsContainer{
  802. grid-gap: .12rem .12rem !important;
  803. }
  804. .superDealTitle{
  805. font-size: .28rem;
  806. }
  807. .partnersTitle{
  808. font-size: .28rem;
  809. margin-bottom: .12rem;
  810. }
  811. .partnersList{
  812. grid-template-columns: repeat(3, 1fr);
  813. }
  814. .partnersItem{
  815. height: .8rem;
  816. }
  817. .goodsCollect .collectNumber{
  818. font-size: .18rem;
  819. padding-left: .06rem;
  820. }
  821. .goodsCollect img{
  822. height: .2rem;
  823. }
  824. .goodsStarItem img{
  825. width: .16rem;
  826. height: .16rem;
  827. }
  828. .reviewsNumber{
  829. font-size: .2rem;
  830. }
  831. .shareBox{
  832. top: 30%;
  833. padding: .54rem .24rem .36rem .24rem;
  834. width: 5rem;
  835. }
  836. .modelItem{
  837. width: 100%;
  838. height: .8rem;
  839. margin-bottom: .32rem;
  840. }
  841. .modelItem .miTitle{
  842. font-size: .2rem;
  843. }
  844. .modelItem .input{
  845. font-size: .24rem;
  846. }
  847. #confirmShare{
  848. height: .8rem;
  849. font-size: .26rem;
  850. }
  851. .tabLink{
  852. height: .4rem;
  853. margin: 0 .48rem;
  854. }
  855. }