common.css 17 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. -webkit-text-size-adjust: 100%;
  7. -ms-text-size-adjust: 100%;
  8. /* 解决IOS默认滑动很卡的情况 */
  9. -webkit-overflow-scrolling: touch;
  10. }
  11. body {
  12. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  13. font-size: .16rem;
  14. }
  15. /* 禁止缩放表单 */
  16. input[type="submit"], input[type="reset"], input[type="button"], input {
  17. resize: none;
  18. border: none;
  19. }
  20. ol, li, ul, dl, dt, dd {
  21. list-style: none;
  22. }
  23. img {
  24. height: auto;
  25. object-fit: cover;
  26. }
  27. em, i {
  28. font-style: normal;
  29. }
  30. textarea {
  31. resize: none;
  32. }
  33. p {
  34. word-wrap: break-word;
  35. }
  36. a {
  37. text-decoration: none;
  38. color: inherit;
  39. outline: none;
  40. -moz-outline-style: none;
  41. }
  42. a:active, a:focus {
  43. outline: none;
  44. }
  45. .textEllipsis {
  46. text-overflow: ellipsis;
  47. white-space: nowrap;
  48. overflow: hidden;
  49. }
  50. .sectionContainer {
  51. display: flex;
  52. justify-content: center;
  53. }
  54. .elementorContainer {
  55. max-width: 13.2rem;
  56. flex: 1;
  57. -moz-box-sizing: border-box;
  58. -webkit-box-sizing: border-box;
  59. box-sizing: border-box;
  60. }
  61. /* <-- start 头部模块 */
  62. .headerContainer {
  63. width: 100%;
  64. background-color: #FFF;
  65. position: sticky;
  66. top: 0;
  67. left: 0;
  68. right: 0;
  69. z-index: 99;
  70. -webkit-box-shadow: 0 .02rem .05rem rgba(0, 0, 0, .03);
  71. box-shadow: 0 .02rem .05rem rgba(0, 0, 0, .03);
  72. }
  73. .warnContainer {
  74. background-color: #434344;
  75. width: 100%;
  76. height: .5rem;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. }
  81. .warnContainer .warnText {
  82. max-width: 13.2rem;
  83. word-break: break-all;
  84. line-height: 1.4;
  85. font-weight: bold;
  86. font-size: .16rem;
  87. color: rgba(255, 255, 255, .7);
  88. }
  89. /* PC端头部 */
  90. #computerEndHeader {
  91. width: 13.2rem;
  92. height: .7rem;
  93. margin: 0 auto;
  94. display: flex;
  95. justify-content: space-between;
  96. align-items: center;
  97. cursor: pointer;
  98. }
  99. #computerEndHeader .computerLogo {
  100. color: rgba(79, 73, 222, 1);
  101. font-weight: bold;
  102. font-size: .28rem;
  103. padding-right: .5rem;
  104. }
  105. #computerEndHeader .computerLogo img {
  106. height: .36rem;
  107. width: auto;
  108. }
  109. .headNavContainer {
  110. flex: 1;
  111. display: flex;
  112. align-items: center;
  113. height: 100%;
  114. overflow: hidden;
  115. }
  116. .headNavItem {
  117. height: .7rem;
  118. display: flex;
  119. align-items: center;
  120. justify-content: center;
  121. position: relative;
  122. margin-right: .36rem;
  123. }
  124. .headNavItem .headNavTitle {
  125. padding: 0 .28rem;
  126. font-weight: bold;
  127. color: #333333;
  128. font-size: .22rem;
  129. position: relative;
  130. z-index: 2;
  131. letter-spacing: .02rem;
  132. min-width: 1.5rem;
  133. }
  134. .headNavItem.active .headNavTitle {
  135. color: #FFFFFF;
  136. font-size: .24rem;
  137. }
  138. .headNavItem.active .back {
  139. position: absolute;
  140. width: 100%;
  141. height: 116%;
  142. top: -8%;
  143. left: 0;
  144. border-radius: .04rem;
  145. background-color: rgba(79, 73, 222, 1);
  146. z-index: 1;
  147. }
  148. .headIconContainer {
  149. display: flex;
  150. align-items: center;
  151. height: 100%;
  152. }
  153. .headIconContainer .headIconItem {
  154. padding: 0 .2rem;
  155. height: .7rem;
  156. display: flex;
  157. align-items: center;
  158. justify-content: center;
  159. }
  160. .headIconContainer .headIconItem img {
  161. height: .24rem;
  162. }
  163. .headIconContainer .headIconItem .cart img {
  164. height: .28rem;
  165. }
  166. /* 移动端头部 */
  167. #mobileEndHeader {
  168. display: none;
  169. position: relative;
  170. }
  171. .mobileEndHeaderConten {
  172. padding: 0 .24rem;
  173. height: .9rem;
  174. display: flex;
  175. flex: 1;
  176. align-items: center;
  177. justify-content: space-between;
  178. }
  179. .mobileEndHeaderConten .mobileLogo {
  180. color: rgba(79, 73, 222, 1);
  181. font-weight: bold;
  182. font-size: .28rem;
  183. padding-right: .5rem;
  184. }
  185. .mobileEndHeaderConten .mobileLogo img {
  186. height: .4rem;
  187. width: auto;
  188. }
  189. .mobileUserIconList {
  190. display: flex;
  191. flex: 1;
  192. align-items: center;
  193. justify-content: flex-end;
  194. padding-right: .24rem;
  195. }
  196. .mobileUserIcon img {
  197. height: .3rem;
  198. }
  199. #mobileMenuBot {
  200. height: .4rem;
  201. display: flex;
  202. align-items: center;
  203. }
  204. #mobileMenuLink {
  205. display: block;
  206. position: relative;
  207. width: .42rem;
  208. height: .06rem;
  209. background-color: #666666;
  210. border-radius: .08rem;
  211. }
  212. #mobileMenuLink:before,
  213. #mobileMenuLink:after {
  214. content: '';
  215. display: block;
  216. width: 100%;
  217. height: 100%;
  218. border-radius: .08rem;
  219. margin-top: .13rem;
  220. position: absolute;
  221. background: #666666;
  222. -webkit-transition-property: margin, -webkit-transform;
  223. transition-property: margin, -webkit-transform;
  224. transition-property: margin, transform;
  225. transition-property: margin, transform, -webkit-transform;
  226. -webkit-transition-duration: 200ms;
  227. transition-duration: 200ms;
  228. }
  229. #mobileMenuLink:before {
  230. margin-top: -.13rem;
  231. }
  232. #mobileMenuLink:after {
  233. margin-top: .13rem;
  234. }
  235. .open #mobileMenuLink {
  236. background: none
  237. }
  238. .open #mobileMenuLink:before {
  239. margin-top: 0;
  240. transform: rotate(45deg);
  241. -moz-transform: rotate(45deg);
  242. -webkit-transform: rotate(45deg);
  243. -o-transform: rotate(45deg);
  244. }
  245. .open #mobileMenuLink:after {
  246. margin-top: 0;
  247. transform: rotate(-45deg);
  248. -moz-transform: rotate(-45deg);
  249. -webkit-transform: rotate(-45deg);
  250. -o-transform: rotate(-45deg);
  251. }
  252. .open #mobileMenuLink:before,
  253. .open #mobileMenuLink:after {
  254. background: #666666;
  255. }
  256. .mobileMenuFixed {
  257. position: absolute;
  258. background: white;
  259. border-radius: .12rem;
  260. min-width: 3rem;
  261. max-width: 5rem;
  262. padding: .12rem .24rem;
  263. top: 1rem;
  264. right: .08rem;
  265. z-index: 999;
  266. display: none;
  267. }
  268. .mobileMenuItem {
  269. border-bottom: .01rem solid #dfdfdf;
  270. }
  271. .mobileMenuFixed .mobileMenuItem:last-child {
  272. border: none;
  273. }
  274. .mobileMenuItem .menuItemTitle {
  275. height: .8rem;
  276. display: flex;
  277. align-items: center;
  278. font-size: .22rem;
  279. overflow: hidden;
  280. text-overflow: ellipsis;
  281. white-space: nowrap;
  282. color: #434343;
  283. }
  284. .mobileMenuItem.active .menuItemTitle {
  285. color: rgba(79, 73, 222, 1);
  286. }
  287. /* end 头部模块 --> */
  288. /* start 年龄提示模块 --> */
  289. .maskContainer {
  290. position: fixed;
  291. width: 100vw;
  292. height: 100vh;
  293. z-index: 999;
  294. top: 0;
  295. right: 0;
  296. bottom: 0;
  297. left: 0;
  298. background-color: rgba(0, 0, 0, .5);
  299. display: none;
  300. }
  301. .ageReminderBox {
  302. width: 7rem;
  303. background-color: #FFF;
  304. height: 3.8rem;
  305. left: 50%;
  306. transform: translateX(-50%);
  307. top: 30%;
  308. position: absolute;
  309. }
  310. .ageReminderBack {
  311. position: absolute;
  312. z-index: 1;
  313. height: 100%;
  314. width: 100%;
  315. top: 0;
  316. left: 0;
  317. }
  318. .ageReminderInfo {
  319. position: relative;
  320. z-index: 2;
  321. margin-left: .32rem;
  322. padding-top: 1rem;
  323. color: #fff;
  324. }
  325. .ageReminderInfo h3 {
  326. line-height: 1.4;
  327. font-size: .36rem;
  328. max-width: 60%;
  329. font-weight: bold;
  330. }
  331. .ageReminderInfo .ageReminderButBox {
  332. display: flex;
  333. align-items: center;
  334. padding-top: .32rem;
  335. }
  336. .ageReminderInfo .ageReminderButBox .ageRBut {
  337. color: rgba(237, 109, 244, 1);
  338. background-color: #fff;
  339. display: flex;
  340. align-items: center;
  341. justify-content: center;
  342. height: .56rem;
  343. border-radius: .08rem;
  344. font-size: .22rem;
  345. font-weight: bold;
  346. min-width: 1.6rem;
  347. padding: 0 .12rem;
  348. margin-right: .32rem;
  349. cursor: pointer;
  350. }
  351. /* end 年龄提示模块 --> */
  352. /* <-- start 底部模块 */
  353. .footerContainer {
  354. width: 100%;
  355. background-color: rgba(32, 32, 32, 1);
  356. position: relative;
  357. z-index: 10;
  358. }
  359. .warningContainer {
  360. background-color: gray;
  361. }
  362. .warningBox {
  363. padding: .16rem 0;
  364. color: rgba(255, 255, 255, .8);
  365. font-size: .15rem;
  366. line-height: 1.4;
  367. }
  368. .footerConter {
  369. color: #FFF;
  370. padding-top: .3rem;
  371. padding-bottom: .24rem;
  372. display: flex;
  373. }
  374. .leftText {
  375. max-width: 7rem;
  376. margin-right: .8rem;
  377. }
  378. .leftText .ltK {
  379. font-weight: bold;
  380. font-size: .18rem;
  381. word-break: break-all;
  382. padding-bottom: .06rem;
  383. }
  384. .leftText .ltV {
  385. font-size: .14rem;
  386. color: rgba(255, 255, 255, .6);
  387. word-break: break-all;
  388. }
  389. .footerInuptBox {
  390. background: #FFF;
  391. flex: 1;
  392. height: .5rem;
  393. display: flex;
  394. justify-content: space-between;
  395. align-items: center;
  396. padding: 0 .16rem 0 .12rem;
  397. max-width: 5rem;
  398. margin-right: 1.5rem;
  399. }
  400. .footerInuptBox .mailIcon {
  401. width: .38rem;
  402. height: .38rem;
  403. }
  404. .footerInupt {
  405. flex: 1;
  406. height: 100%;
  407. outline: none;
  408. font-size: .18rem;
  409. margin: 0 .12rem;
  410. }
  411. .footerInuptBox .arrowIcon {
  412. height: .19rem;
  413. width: auto;
  414. }
  415. .fLinkContainer {
  416. flex: 1;
  417. display: flex;
  418. justify-content: flex-end;
  419. padding-right: .5rem;
  420. }
  421. .fLinkBox {
  422. padding: 0 .24rem;
  423. }
  424. .fLinkTitle {
  425. font-size: .15rem;
  426. color: #666666;
  427. font-weight: 400;
  428. margin-bottom: .04rem;
  429. }
  430. .fLinkTitle span {
  431. display: none;
  432. }
  433. .fLinkItem {
  434. font-size: .14rem;
  435. color: #fff;
  436. padding: .02rem 0;
  437. cursor: pointer;
  438. }
  439. .footerIconContainer {
  440. max-width: 4rem;
  441. }
  442. .footerIconList {
  443. overflow-x: scroll;
  444. white-space: nowrap;
  445. }
  446. .footerIconList::-webkit-scrollbar {
  447. display: none;
  448. }
  449. .footerIconItem {
  450. margin-right: .1rem;
  451. display: inline-flex;
  452. }
  453. .footerIconItem img {
  454. width: .48rem;
  455. height: .48rem;
  456. border-radius: 50%;
  457. }
  458. .footerVlsaImg {
  459. display: flex;
  460. flex-wrap: wrap;
  461. padding-top: .1rem;
  462. }
  463. .footerVlsaItem {
  464. font-size: 0;
  465. }
  466. .footerVlsaImg img {
  467. width: .4rem;
  468. height: .26rem;
  469. }
  470. .acceptContainer {
  471. background-color: #fff;
  472. }
  473. .acceptBox {
  474. display: flex;
  475. justify-content: space-between;
  476. padding: .16rem 0;
  477. }
  478. .acceptLeftInfo {
  479. max-width: 3.6rem;
  480. }
  481. .acceptLeftInfo .weAcc {
  482. font-size: .14rem;
  483. color: #434343;
  484. }
  485. .aLImgBox {
  486. display: flex;
  487. flex-wrap: wrap;
  488. gap: .08rem;
  489. padding-top: .08rem;
  490. }
  491. .aLImgItem {
  492. font-size: 0;
  493. }
  494. .aLImgItem img {
  495. width: 2.5rem;
  496. height: .3rem;
  497. }
  498. .weText {
  499. font-size: .14rem;
  500. color: #434343;
  501. line-height: 1.4;
  502. word-break: break-all;
  503. padding-top: .3rem;
  504. }
  505. .acceptRightInfo {
  506. display: flex;
  507. flex-wrap: wrap;
  508. justify-content: flex-end;
  509. gap: .16rem;
  510. flex: 1;
  511. padding-left: .24rem;
  512. }
  513. .aRImgItem {
  514. font-size: 0;
  515. }
  516. .aRImgItem img {
  517. width: 1.3rem;
  518. height: .7rem;
  519. }
  520. #toastContainer {
  521. position: fixed;
  522. top: 40%;
  523. left: 50%;
  524. transform: translateX(-50%);
  525. background-color: #333;
  526. color: #fff;
  527. padding: .08rem .12rem;
  528. border-radius: .04rem;
  529. word-break: break-all;
  530. z-index: 9999;
  531. display: none;
  532. font-size: .18rem;
  533. max-width: 70%;
  534. text-align: center;
  535. line-height: 1.4;
  536. }
  537. /* <-- start 个人中心菜单 */
  538. .navContainer {
  539. background-color: #E8EEF6;
  540. width: 3.4rem;
  541. padding-bottom: 1rem;
  542. -moz-box-sizing: border-box;
  543. -webkit-box-sizing: border-box;
  544. box-sizing: border-box;
  545. }
  546. .navItem {
  547. padding-left: .24rem;
  548. cursor: pointer;
  549. }
  550. .navItem .navItemFlex {
  551. display: flex;
  552. align-items: center;
  553. height: .6rem;
  554. padding-right: .22rem;
  555. }
  556. .navItem .navItemFlex.active .navTitle {
  557. color: #fff;
  558. background-color: rgba(79, 73, 222, 1);
  559. }
  560. .navItem .navItemFlex img {
  561. width: .4rem;
  562. }
  563. .navItem .navItemFlex .navTitle {
  564. font-weight: 400;
  565. color: #434343;
  566. font-size: .17rem;
  567. padding-left: .08rem;
  568. flex: 1;
  569. height: .5rem;
  570. border-radius: .04rem;
  571. display: flex;
  572. align-items: center;
  573. text-overflow: ellipsis;
  574. white-space: nowrap;
  575. overflow: hidden;
  576. }
  577. .sunNavBox {
  578. margin-left: .4rem;
  579. padding-right: .22rem;
  580. }
  581. .sunNavItem {
  582. height: .5rem;
  583. display: flex;
  584. align-items: center;
  585. padding-left: .08rem;
  586. color: #434343;
  587. border-radius: .04rem;
  588. margin: .05rem 0;
  589. }
  590. .sunNavItem .sunNavTitle {
  591. font-weight: 400;
  592. font-size: .17rem;
  593. text-overflow: ellipsis;
  594. white-space: nowrap;
  595. overflow: hidden;
  596. flex: 1;
  597. }
  598. .sunNavItem.active {
  599. color: #fff;
  600. background-color: rgba(79, 73, 222, 1);
  601. }
  602. /* end 个人中心菜单 --> */
  603. @media (max-width: 1499px) {
  604. .navContainer {
  605. width: 3rem;
  606. }
  607. .navItem {
  608. padding-left: .16rem;
  609. }
  610. .navItem .navItemFlex {
  611. padding-right: .16rem;
  612. }
  613. .navItem .navItemFlex img {
  614. width: .34rem;
  615. }
  616. .navItem .navItemFlex .navTitle {
  617. height: .46rem;
  618. font-size: .16rem;
  619. }
  620. .sunNavBox {
  621. margin-left: .34rem;
  622. padding-right: .16rem;
  623. }
  624. .sunNavItem {
  625. height: .46rem;
  626. }
  627. .sunNavItem .sunNavTitle {
  628. font-size: .16rem;
  629. }
  630. .navContainer {
  631. padding-bottom: .5rem;
  632. }
  633. }
  634. @media (max-width: 1320px) {
  635. #computerEndHeader {
  636. width: auto;
  637. }
  638. .computerLogo {
  639. margin-left: .12rem;
  640. }
  641. .headIconContainer {
  642. margin-right: .12rem;
  643. }
  644. .headNavItem .headNavTitle {
  645. font-size: .22rem;
  646. }
  647. .headNavItem.active .headNavTitle {
  648. font-size: .26rem;
  649. }
  650. }
  651. @media (max-width: 1199px) {
  652. .warnContainer {
  653. height: auto;
  654. }
  655. .warnContainer .warnText {
  656. font-size: .2rem;
  657. padding: .06rem .24rem;
  658. }
  659. #computerEndHeader {
  660. display: none;
  661. }
  662. #mobileEndHeader {
  663. display: flex;
  664. }
  665. .footerContainer {
  666. height: auto;
  667. }
  668. .footerConter {
  669. display: block;
  670. padding: .24rem .12rem;
  671. }
  672. .leftText {
  673. max-width: none;
  674. margin-right: 0;
  675. margin-bottom: .32rem;
  676. }
  677. .leftText .ltK {
  678. font-size: .2rem;
  679. }
  680. .leftText .ltV {
  681. font-size: .18rem;
  682. }
  683. .footerInuptBox {
  684. max-width: 6rem;
  685. margin-right: 0;
  686. height: .6rem;
  687. margin-bottom: .32rem;
  688. }
  689. .footerIconContainer {
  690. max-width: none;
  691. }
  692. .footerIconList {
  693. white-space: normal;
  694. overflow-x: hidden;
  695. display: flex;
  696. flex-wrap: wrap;
  697. margin-bottom: .12rem;
  698. }
  699. .footerIconItem {
  700. display: block;
  701. margin-right: .24rem;
  702. }
  703. .acceptBox {
  704. display: block;
  705. }
  706. .acceptLeftInfo {
  707. max-width: none;
  708. }
  709. .acceptLeftInfo .weAcc {
  710. font-size: .16rem;
  711. }
  712. .aLImgItem img {
  713. width: .6rem;
  714. height: .35rem;
  715. }
  716. .weText {
  717. font-size: .16rem;
  718. }
  719. .acceptRightInfo {
  720. justify-content: flex-start;
  721. padding-left: 0.4rem;
  722. padding-top: .4rem;
  723. }
  724. .fLinkContainer {
  725. padding-right: 0;
  726. margin-bottom: .4rem;
  727. display: block;
  728. }
  729. .fLinkBox {
  730. padding: 0;
  731. margin-right: .4rem;
  732. display: flex;
  733. align-items: baseline;
  734. flex-wrap: wrap;
  735. padding-top: .12rem;
  736. gap: .08rem .16rem;
  737. }
  738. .fLinkTitle {
  739. font-size: .2rem;
  740. margin-bottom: 0;
  741. }
  742. .fLinkTitle span {
  743. display: inline-block;
  744. }
  745. .fLinkItem {
  746. font-size: .18rem;
  747. }
  748. }
  749. @media (max-width: 999px) {
  750. .navContainer {
  751. width: 2.4rem;
  752. }
  753. }
  754. @media (max-width: 899px) {
  755. .ageReminderBox {
  756. width: 6rem;
  757. height: 3rem;
  758. }
  759. .ageReminderInfo {
  760. padding-top: .6rem;
  761. }
  762. .ageReminderInfo h3 {
  763. font-size: .3rem;
  764. }
  765. .ageReminderInfo .ageReminderButBox .ageRBut {
  766. font-size: .2rem;
  767. min-width: 1rem;
  768. }
  769. .leftText .ltK {
  770. font-size: .22rem;
  771. }
  772. .leftText .ltV {
  773. font-size: .2rem;
  774. }
  775. .footerIconItem img {
  776. width: .5rem;
  777. height: .5rem;
  778. }
  779. .footerVlsaImg img {
  780. height: .4rem;
  781. }
  782. #toastContainer {
  783. font-size: .24rem;
  784. padding: .1rem .16rem;
  785. }
  786. .footerConter {
  787. padding: .24rem;
  788. }
  789. }
  790. @media (max-width: 750px) {
  791. .navContainer {
  792. width: 2.2rem;
  793. }
  794. .navItem {
  795. padding-left: .12rem;
  796. }
  797. .navItem .navItemFlex {
  798. padding-right: .12rem;
  799. }
  800. .navItem .navItemFlex img {
  801. width: .34rem;
  802. }
  803. .navItem .navItemFlex .navTitle {
  804. height: .6rem;
  805. font-size: .2rem;
  806. }
  807. .sunNavBox {
  808. margin-left: .34rem;
  809. padding-right: .12rem;
  810. }
  811. .sunNavItem {
  812. height: .6rem;
  813. }
  814. .sunNavItem .sunNavTitle {
  815. font-size: .2rem;
  816. }
  817. .warningBox {
  818. font-size: .2rem;
  819. }
  820. .acceptBox {
  821. display: block;
  822. }
  823. .acceptLeftInfo {
  824. max-width: none;
  825. /*margin-left: .5rem;*/
  826. }
  827. .acceptLeftInfo .weAcc {
  828. font-size: .2rem;
  829. text-align: center;
  830. }
  831. .aLImgBox {
  832. justify-content: center;
  833. }
  834. .aLImgItem img {
  835. width: 2.7rem;
  836. height: .4rem;
  837. }
  838. .weText {
  839. font-size: .2rem;
  840. text-align: center;
  841. }
  842. .aRImgItem img {
  843. width: 1.5rem;
  844. height: .75rem;
  845. }
  846. .fLinkTitle {
  847. font-size: .24rem;
  848. }
  849. .fLinkItem {
  850. font-size: .22rem;
  851. }
  852. }