common.css 19 KB

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