index.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899
  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: fill;
  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. color: #FFF;
  371. background-color: rgba(74, 134, 98, 1);
  372. border-radius: 0 0 .1rem 0;
  373. padding: .02rem .08rem;
  374. max-width: 1rem;
  375. font-size: .12rem;
  376. }
  377. .goodsImgBox{
  378. height: 3rem;
  379. margin-bottom: .1rem;
  380. }
  381. .goodsImgBox img{
  382. width: 100%;
  383. height: 100%;
  384. }
  385. .goodsCoverImg{
  386. width: 100%;
  387. height: 100%;
  388. }
  389. .goodsInfo{
  390. flex: 1;
  391. padding: .02rem .2rem 0 .2rem;
  392. display: flex;
  393. flex-direction: column;
  394. }
  395. .goodsTitleBox{
  396. height: .58rem;
  397. }
  398. .goodsTitle{
  399. display: -webkit-box;
  400. -webkit-line-clamp: 2;
  401. -webkit-box-orient: vertical;
  402. overflow: hidden;
  403. font-size: .17rem;
  404. word-break: break-all;
  405. color: #666666;
  406. }
  407. .goodsTitle .preTag{
  408. border-radius: .06rem;
  409. color: #FFF;
  410. background-color: rgba(61, 121, 246, 1);
  411. font-size: .12rem;
  412. padding: .02rem .04rem;
  413. vertical-align: middle;
  414. }
  415. .goodsPriceInfo{
  416. display: flex;
  417. align-items: center;
  418. justify-content: space-between;
  419. height: 1;
  420. }
  421. .gPriceBox{
  422. display: flex;
  423. align-items: center;
  424. flex: 1;
  425. }
  426. .goodsPriceInfo .goodsPrice{
  427. color: rgba(220, 90, 77, 1);
  428. font-weight: bold;
  429. font-size: .22rem;
  430. }
  431. .goodsScribe{
  432. font-size: .16rem;
  433. color: #999999;
  434. flex: 1;
  435. padding-left: .12rem;
  436. text-decoration: line-through;
  437. }
  438. .goodsCollect{
  439. display: flex;
  440. align-items: center;
  441. }
  442. .goodsCollect .collectNumber{
  443. color: #999999;
  444. font-size: .14rem;
  445. max-width: .8rem;
  446. padding-left: .04rem;
  447. }
  448. .goodsCollect img{
  449. height: .12rem;
  450. }
  451. .goodsReviews{
  452. display: flex;
  453. align-items: center;
  454. padding-top: .12rem;
  455. }
  456. .goodsStarContainer{
  457. display: flex;
  458. align-items: center;
  459. gap: .04rem;
  460. margin-right: .12rem;
  461. padding-bottom: .04rem;
  462. }
  463. .goodsStarItem{
  464. font-size: 0;
  465. }
  466. .goodsStarItem img{
  467. width: .15rem;
  468. height: .15rem;
  469. vertical-align: middle;
  470. }
  471. .reviewsNumber{
  472. display: flex;
  473. flex: 1;
  474. color: #999999;
  475. font-size: .14rem;
  476. }
  477. .reviewsNumber .number{
  478. padding-right: .04rem;
  479. max-width: 1rem;
  480. }
  481. .reviewsNumber .text{
  482. flex: 1;
  483. }
  484. /* end 新的商品模块 --> */
  485. /* <-- start 新闻中心模块 */
  486. .newConterItem{
  487. border: .02rem solid rgba(0, 0, 0, .1);
  488. display: flex;
  489. align-items: center;
  490. padding: .2rem .2rem .2rem .14rem;
  491. margin-bottom: .26rem;
  492. }
  493. .newsDateBox{
  494. margin-left: .6rem;
  495. width: 1.4rem;
  496. }
  497. .newsDateBox p{
  498. font-size: .34rem;
  499. font-weight: bold;
  500. color: #000;
  501. line-height: 1;
  502. }
  503. .newsDateBox p.year{
  504. font-size: .18rem;
  505. color: #999999;
  506. padding-top: .04rem;
  507. }
  508. .newConterImg{
  509. font-size: 0;
  510. }
  511. .newConterImg img{
  512. width: 1.52rem;
  513. height: 1rem;
  514. }
  515. .newConterInfo{
  516. flex: 1;
  517. display: flex;
  518. align-items: center;
  519. padding-left: .32rem;
  520. }
  521. .newConterInfo .newConterTitle{
  522. font-size: .18rem;
  523. color: #000;
  524. display: -webkit-box;
  525. -webkit-line-clamp: 2;
  526. -webkit-box-orient: vertical;
  527. overflow: hidden;
  528. word-break: break-all;
  529. flex: 1;
  530. padding-right: .24rem;
  531. line-height: 1.4;
  532. }
  533. .newsInfoRl{
  534. display: flex;
  535. align-items: center;
  536. }
  537. .newsInfoRl .rlDate{
  538. font-size: .2rem;
  539. color: #999999;
  540. display: none;
  541. }
  542. .newsInfoRl .newsMore{
  543. border: .02rem solid rgba(0, 0, 0, .1);
  544. border-radius: .22rem;
  545. height: .46rem;
  546. min-width: 1.5rem;
  547. max-width: 2rem;
  548. box-sizing: border-box;
  549. padding: 0 .32rem;
  550. display: flex;
  551. align-items: center;
  552. justify-content: space-between;
  553. color: #999999;
  554. font-size: .18rem;
  555. }
  556. .newsInfoRl .newsMore.active{
  557. color: #FFF;
  558. background-color: rgba(79, 73, 222, 1);
  559. }
  560. .newsInfoRl .newsMore p{
  561. flex: 1;
  562. }
  563. /* end 新闻中心模块 --> */
  564. /* <-- start 超级交易模块 */
  565. .superDealContainer{
  566. margin-bottom: .5rem;
  567. }
  568. .superDealTitle{
  569. font-size: .26rem;
  570. font-weight: bold;
  571. color: #000000;
  572. text-align: center;
  573. padding-bottom: .16rem;
  574. padding-top: .3rem;
  575. }
  576. .superDealContainer .newGoodsContainer{
  577. grid-gap: .24rem .2rem;
  578. margin-bottom: .36rem;
  579. }
  580. /* end 超级交易模块 --> */
  581. /* <-- start 盟友模块 */
  582. .partnersTitle{
  583. font-weight: bold;
  584. font-size: .36rem;
  585. color: #000;
  586. margin-bottom: .24rem;
  587. }
  588. .partnersList{
  589. display: -ms-grid;
  590. display: grid;
  591. grid-template-columns: repeat(6, 2rem);
  592. grid-gap: .24rem .24rem;
  593. margin-bottom: 0.4rem;
  594. }
  595. .partnersItem{
  596. height: .8rem;
  597. font-size: 0;
  598. display: flex;
  599. align-items: center;
  600. justify-content: center;
  601. }
  602. .partnersItem .partnersLogo{
  603. object-fit: contain;
  604. height: 100%;
  605. width: 100%;
  606. }
  607. /* end 盟友模块 --> */
  608. @media (min-width: 1920px) {
  609. .swiperContainer{
  610. height: 8rem !important;
  611. }
  612. }
  613. @media (max-width: 1320px) {
  614. #main{
  615. -moz-box-sizing: border-box;
  616. -webkit-box-sizing: border-box;
  617. box-sizing: border-box;
  618. }
  619. .sectionContainer{
  620. padding: 0 .12rem 0 .12rem;
  621. }
  622. .newGoodsContainer{
  623. grid-template-columns: repeat(3, 1fr);
  624. grid-gap: .3rem .24rem;
  625. }
  626. .newGoodsItem{
  627. height: 6rem;
  628. }
  629. .goodsImgBox{
  630. height: 4.3rem;
  631. }
  632. .goodsTitleBox{
  633. height: .7rem;
  634. }
  635. .goodsTitle{
  636. font-size: .2rem;
  637. }
  638. .newGoodsTag{
  639. font-size: .2rem;
  640. }
  641. .goodsTitle .preTag{
  642. font-size: .14rem;
  643. }
  644. .goodsPriceInfo .goodsPrice{
  645. font-size: .24rem;
  646. }
  647. .goodsScribe{
  648. font-size: .16rem;
  649. }
  650. .goodsCollect img{
  651. height: .14rem;
  652. }
  653. .goodsCollect .collectNumber{
  654. font-size: .16rem;
  655. }
  656. .goodsStarItem img{
  657. width: .18rem;
  658. height: .18rem;
  659. }
  660. .reviewsNumber{
  661. font-size: .16rem;
  662. }
  663. .partnersList{
  664. grid-template-columns: repeat(5, 1fr);
  665. }
  666. .goodsShareBotton img{
  667. width: .4rem;
  668. }
  669. }
  670. @media (max-width: 1024px) {
  671. .newGoodsContainer{
  672. grid-template-columns: repeat(2, 1fr);
  673. grid-gap: .2rem .14rem !important;
  674. }
  675. .tabContainer .tabItem{
  676. width: 36% !important;
  677. }
  678. .newGoodsItem{
  679. height: 6.1rem;
  680. }
  681. .newGoodsTag{
  682. padding: 0 .1rem;
  683. line-height: 1;
  684. max-width: 1.5rem;
  685. font-size: .2rem;
  686. border-radius: 0 0 .18rem 0;
  687. }
  688. .newGoodsTag{
  689. font-size: .24rem;
  690. }
  691. .goodsTitleBox{
  692. height: .78rem;
  693. }
  694. .goodsTitle{
  695. font-size: .22rem;
  696. line-height: 1.4;
  697. }
  698. .goodsTitle .preTag{
  699. font-size: .2rem;
  700. padding: .02rem .06rem;
  701. }
  702. .goodsPriceInfo .goodsPrice{
  703. font-size: .28rem;
  704. }
  705. .goodsScribe{
  706. font-size: .22rem;
  707. }
  708. .goodsCollect .collectNumber{
  709. font-size: .20rem;
  710. padding-left: .08rem;
  711. }
  712. .goodsCollect img{
  713. height: .24rem;
  714. }
  715. .superDealTitle{
  716. font-size: .3rem;
  717. padding-bottom: .32rem;
  718. }
  719. .superDealContainer .newGoodsContainer{
  720. margin-bottom: .3rem;
  721. }
  722. .reviewsNumber{
  723. font-size: .20rem;
  724. }
  725. .goodsShareBotton{
  726. bottom: .02rem;
  727. }
  728. .goodsShareBotton img{
  729. width: .8rem;
  730. }
  731. }
  732. @media (max-width: 899px) {
  733. .swiperContainer{
  734. height: 3.5rem;
  735. }
  736. .superDealContainer{
  737. margin-bottom: .3rem;
  738. }
  739. .partnersList{
  740. grid-template-columns: repeat(4, 1fr);
  741. }
  742. .newConterItem{
  743. padding: .16rem .2rem .16rem .14rem;
  744. }
  745. .newConterItem .newsDateBox{
  746. display: none;
  747. }
  748. .newsInfoRl .rlDate{
  749. display: block;
  750. }
  751. .newConterItem .newConterImg img{
  752. width: 1.8rem;
  753. height: 1.3rem;
  754. }
  755. .newConterItem .newConterInfo{
  756. flex-direction: column;
  757. justify-content: space-between;
  758. align-items: flex-start;
  759. min-height: 1.4rem;
  760. }
  761. .newConterInfo .newConterTitle{
  762. flex: none;
  763. font-size: .24rem;
  764. line-height: 1.3;
  765. }
  766. .newConterItem .newsInfoRl{
  767. justify-content: space-between;
  768. width: 100%;
  769. }
  770. .newsInfoRl .newsMore{
  771. min-width: 1.2rem;
  772. max-width: 1.6rem;
  773. padding: 0 .2rem;
  774. font-size: .2rem;
  775. }
  776. .superDealTitle{
  777. padding-top: .3rem;
  778. }
  779. }
  780. @media (max-width: 750px) {
  781. .swiperContainer{
  782. height: 3.12rem;
  783. }
  784. .tabContainer{
  785. height: 1.3rem;
  786. }
  787. .tabContainer .tabItem{
  788. padding: 0 !important;
  789. height: .66rem;
  790. max-width: 33%;
  791. border-radius: .12rem;
  792. width: 28% !important;
  793. }
  794. .tabItem .tabName{
  795. font-size: .24rem;
  796. }
  797. .tabItem .tabUnderline{
  798. width: .6rem;
  799. }
  800. .newGoodsContainer{
  801. grid-gap: .12rem .12rem !important;
  802. }
  803. .superDealTitle{
  804. font-size: .28rem;
  805. }
  806. .partnersTitle{
  807. font-size: .28rem;
  808. margin-bottom: .12rem;
  809. }
  810. .partnersList{
  811. grid-template-columns: repeat(3, 1fr);
  812. }
  813. .partnersItem{
  814. height: .8rem;
  815. }
  816. .goodsCollect .collectNumber{
  817. font-size: .18rem;
  818. padding-left: .06rem;
  819. }
  820. .goodsCollect img{
  821. height: .2rem;
  822. }
  823. .goodsStarItem img{
  824. width: .16rem;
  825. height: .16rem;
  826. }
  827. .reviewsNumber{
  828. font-size: .2rem;
  829. }
  830. .shareBox{
  831. top: 30%;
  832. padding: .54rem .24rem .36rem .24rem;
  833. width: 5rem;
  834. }
  835. .modelItem{
  836. width: 100%;
  837. height: .8rem;
  838. margin-bottom: .32rem;
  839. }
  840. .modelItem .miTitle{
  841. font-size: .2rem;
  842. }
  843. .modelItem .input{
  844. font-size: .24rem;
  845. }
  846. #confirmShare{
  847. height: .8rem;
  848. font-size: .26rem;
  849. }
  850. .tabLink{
  851. height: .4rem;
  852. margin: 0 .48rem;
  853. }
  854. }