common.css 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  1. /* 主题色 */
  2. /* 内容区宽度 */
  3. /* 偏移 */
  4. /* 大标题 */
  5. /* 移动端大标题 */
  6. * {
  7. margin: 0;
  8. padding: 0;
  9. text-decoration: none;
  10. font-size: 16px;
  11. box-sizing: border-box;
  12. }
  13. a {
  14. cursor: pointer;
  15. }
  16. ul,
  17. li {
  18. list-style: none;
  19. }
  20. body,
  21. html {
  22. overflow-x: hidden;
  23. }
  24. .module .module-inner {
  25. width: 1180px;
  26. margin: 0 auto;
  27. }
  28. .header-module {
  29. position: absolute;
  30. top: 0;
  31. width: 100%;
  32. z-index: 11;
  33. }
  34. .header-module .header-inner {
  35. padding: 0;
  36. height: 74px;
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. }
  41. .header-module .header-inner h1 {
  42. text-indent: -1000px;
  43. overflow: hidden;
  44. font-size: 0;
  45. }
  46. .header-module .header-inner h1 img {
  47. display: block;
  48. height: 39px;
  49. width: 107px;
  50. }
  51. .header-module .header-inner .menu {
  52. display: flex;
  53. justify-content: space-between;
  54. }
  55. .header-module .header-inner .menu li {
  56. margin-right: 60px;
  57. }
  58. .header-module .header-inner .menu a {
  59. display: block;
  60. color: #fff;
  61. padding-bottom: 12px;
  62. border-bottom: 2px solid transparent;
  63. transition: all 0.3s;
  64. }
  65. .header-module .header-inner .menu li.active a {
  66. border-bottom: 2px solid #FFD061;
  67. color: #FFD061;
  68. }
  69. .header-module .header-inner .menu li:hover a {
  70. border-bottom: 2px solid #FFD061;
  71. color: #FFD061;
  72. }
  73. .btn {
  74. border-radius: 3px;
  75. text-align: center;
  76. cursor: pointer;
  77. transition: all 0.3s;
  78. display: block;
  79. }
  80. .btn:hover {
  81. box-shadow: 0 8px 20px 0 #2e6ef3;
  82. transform: scale(1.01) translateY(-2px);
  83. }
  84. .btn.big-btn {
  85. height: 60px;
  86. line-height: 60px;
  87. }
  88. .btn.small-btn {
  89. height: 30px;
  90. line-height: 30px;
  91. font-size: 14px;
  92. }
  93. .btn.empty-yellow-btn {
  94. border: 1px solid #FFD061;
  95. color: #FFD061;
  96. }
  97. .btn.blue-btn {
  98. background: #226ef3;
  99. color: #fff;
  100. }
  101. .btn.yellow-btn {
  102. background: #FFD061;
  103. color: #226ef3;
  104. }
  105. .btn.yellow-btn:hover {
  106. box-shadow: 0 8px 20px 0 #96896b;
  107. }
  108. .btn.empty-yellow-btn:hover {
  109. box-shadow: 0 8px 20px 0 #96896b;
  110. }
  111. .btn.empty-blue-btn {
  112. border: 1px solid #226ef3;
  113. color: #226ef3;
  114. }
  115. .swiper-module {
  116. /*background: url(/source/template/pc/moban1/img/header-bg.png) #226ef3 repeat-x;*/
  117. background: #226ef3;
  118. content: '';
  119. width: 140%;
  120. position: relative;
  121. left: -20%;
  122. top: 0;
  123. border-radius: 0 0 50% 50%;
  124. overflow: hidden;
  125. }
  126. .swiper-module .page-box {
  127. width: 1180px;
  128. margin: 0 auto;
  129. position: relative;
  130. height: 10px;
  131. height: 20px;
  132. bottom: 202px;
  133. z-index: 999;
  134. }
  135. .swiper-module .page-box > div {
  136. right: 0;
  137. transform: rotate(90deg);
  138. }
  139. .swiper-module .page-box > div .swiper-pagination-bullet-active {
  140. background: #fff;
  141. opacity: 0.6;
  142. }
  143. .swiper-module .page-box > div span {
  144. margin-right: 5px;
  145. }
  146. .swiper-module .swiper-slide {
  147. position: relative;
  148. }
  149. .swiper-module .swiper-slide .slide-inner {
  150. background-position-x: calc(80%);
  151. background-size: auto 651px;
  152. position: relative;
  153. left: -10%;
  154. margin-left: 60px;
  155. }
  156. .swiper-module .slide-inner .top-banner-bg {
  157. position: absolute;
  158. top: 0;
  159. right: 0;
  160. left: 0;
  161. bottom: 0;
  162. display: flex;
  163. justify-content: flex-end;
  164. z-index: -1;
  165. }
  166. /* .swiper-module .sign-slide .slide-inner {
  167. background: url(/source/template/pc/moban1/img/sign-hd-bg.png) right no-repeat;
  168. }
  169. .swiper-module .pack-slide .slide-inner {
  170. background: url(/source/template/pc/moban1/img/pack-hd-bg.svg) right no-repeat;
  171. }
  172. .swiper-module .index-slide .slide-inner {
  173. background: url(/source/template/pc/moban1/img/index-hd-bg.png) right no-repeat;
  174. }
  175. .swiper-module .super_sign-slide .slide-inner {
  176. background: url(/source/template/pc/moban1/img/super_sign-hd-bg.png) right no-repeat;
  177. }
  178. .swiper-module .dispatch-slide .slide-inner {
  179. background: url(/source/template/pc/moban1/img/dispatch-hd-bg.svg) right no-repeat;
  180. } */
  181. .swiper-module .content {
  182. left: 10%;
  183. position: relative;
  184. background-size: 100%;
  185. height: 800px;
  186. width: 80%;
  187. margin: 0 auto;
  188. padding-top: 60px;
  189. box-sizing: border-box;
  190. width: 1180px;
  191. padding-top: 190px;
  192. padding-left: 45px;
  193. padding-right: 45px;
  194. }
  195. .swiper-module .btn {
  196. width: 174px;
  197. }
  198. .swiper-module .name {
  199. font-size: 40px;
  200. font-family: PingFangSC-Medium;
  201. font-weight: 500;
  202. color: #fff;
  203. margin-bottom: 15px;
  204. margin-bottom: 10px;
  205. }
  206. .swiper-module .line {
  207. display: block;
  208. width: 20px;
  209. height: 2px;
  210. background: #FFD061;
  211. margin-bottom: 15px;
  212. }
  213. .swiper-module .desc {
  214. font-size: 18px;
  215. color: #fff;
  216. line-height: 25px;
  217. margin-bottom: 30px;
  218. }
  219. /* .swiper-module .slide-inner {
  220. background: url(/source/template/pc/moban1/img/header-bg.png) @topicColor repeat-x;
  221. content: '';  
  222. width: 140%;
  223. position: relative;  
  224. left: -20%;  
  225. top: 0;  
  226. border-radius: 0 0 50% 50%;
  227. overflow: hidden;
  228. } */
  229. .app-wall {
  230. background: #EAF0F9;
  231. padding: 60px 0;
  232. padding-bottom: 130px;
  233. }
  234. .app-wall h3 {
  235. margin-bottom: 66px;
  236. }
  237. .app-wall h3 span {
  238. font-size: 34px;
  239. font-family: PingFangSC-Medium;
  240. font-weight: 500;
  241. }
  242. .app-wall h3 span:last-child {
  243. color: rgba(102, 102, 102, 0.5);
  244. font-size: 34px;
  245. font-family: PingFangSC-Medium;
  246. font-weight: 500;
  247. padding-left: 10px;
  248. }
  249. .app-wall .wall {
  250. display: flex;
  251. flex-wrap: wrap;
  252. }
  253. .app-wall .wall li {
  254. text-align: center;
  255. margin: 35px;
  256. margin-bottom: 35px;
  257. }
  258. .app-wall .wall li:hover div {
  259. background: #226ef3;
  260. transform: scale(1.01) translateY(-2px);
  261. color: #fff;
  262. }
  263. .app-wall .wall li p {
  264. font-size: 20px;
  265. font-family: PingFangSC-Medium;
  266. font-weight: 500;
  267. color: rgba(102, 102, 102, 0.5);
  268. }
  269. .app-wall .wall li div {
  270. width: 140px;
  271. height: 140px;
  272. background: #fff;
  273. box-sizing: border-box;
  274. /*padding: 10px;*/
  275. box-shadow: 2px 2px 10px 0px rgba(34, 110, 243, 0.14);
  276. transition: all 0.3s;
  277. margin-bottom: 18px;
  278. }
  279. .app-wall .wall li div img {
  280. object-fit: contain;
  281. width: 100%;
  282. height: 100%;
  283. }
  284. .cmpy-info .gift-inner {
  285. background: url(/source/template/pc/moban1/img/gift-bg.png) -16px 0 repeat;
  286. height: 200px;
  287. text-align: center;
  288. display: flex;
  289. justify-content: center;
  290. flex-direction: column;
  291. align-items: center;
  292. position: relative;
  293. margin-top: -100px !important;
  294. }
  295. .cmpy-info .gift-inner p {
  296. font-size: 34px;
  297. font-family: PingFangSC-Medium;
  298. font-weight: 500;
  299. color: #ffffff;
  300. margin-bottom: 20px;
  301. }
  302. .cmpy-info .gift-inner > div {
  303. display: flex;
  304. justify-content: center;
  305. }
  306. .cmpy-info .gift-inner .btn {
  307. width: 100px;
  308. margin: 0 20px;
  309. }
  310. .cmpy-info .cmpy-inner {
  311. display: flex;
  312. justify-content: space-between;
  313. padding-bottom: 100px;
  314. border-top: 1px solid #E6E9F6;
  315. padding-top: 80px !important;
  316. margin-top: 80px !important;
  317. }
  318. .cmpy-info .cmpy-inner .logo img {
  319. width: 137px;
  320. height: 50px;
  321. }
  322. .cmpy-info .cmpy-inner .info {
  323. display: flex;
  324. justify-content: space-between;
  325. }
  326. .cmpy-info .cmpy-inner .info > div {
  327. margin-left: 50px;
  328. }
  329. .cmpy-info .cmpy-inner .info p {
  330. font-size: 16px;
  331. font-family: PingFangSC-Medium;
  332. font-weight: 500;
  333. color: #25252a;
  334. margin-bottom: 20px;
  335. }
  336. .cmpy-info .cmpy-inner .info li {
  337. line-height: 30px;
  338. }
  339. .cmpy-info .cmpy-inner .info li a {
  340. display: block;
  341. font-size: 14px;
  342. font-family: PingFangSC-Medium;
  343. font-weight: 500;
  344. color: #666;
  345. }
  346. .cmpy-info .cmpy-inner .info li a:hover {
  347. color: #226ef3;
  348. }
  349. .footer {
  350. height: 68px;
  351. background: #EAF0F9;
  352. }
  353. .footer .module-inner {
  354. height: 68px;
  355. display: flex;
  356. justify-content: space-between;
  357. align-items: center;
  358. }
  359. .footer .module-inner p {
  360. font-size: 14px;
  361. font-family: PingFangSC-Medium;
  362. font-weight: 500;
  363. color: #7C7F86;
  364. margin-bottom: 0;
  365. }
  366. .aq-content {
  367. background-color: #EAF0F9;
  368. padding: 70px 0;
  369. text-align: center;
  370. padding-bottom: 150px;
  371. }
  372. .aq-content h3 {
  373. color: #000200;
  374. font-size: 34px;
  375. }
  376. .aq-content .line {
  377. display: block;
  378. height: 4px;
  379. background-color: #226EF3;
  380. width: 64px;
  381. margin: 20px auto;
  382. }
  383. .aq-content .module-inner > p {
  384. font-size: 18px;
  385. color: #9B9B9B;
  386. margin-bottom: 50px;
  387. }
  388. .aq-content .list {
  389. text-align: left;
  390. display: flex;
  391. justify-content: space-between;
  392. }
  393. .aq-content .list > li {
  394. flex: 1;
  395. }
  396. .aq-content .list > li ul {
  397. padding-top: 20px;
  398. }
  399. .aq-content .list > li ul > li {
  400. line-height: 30px;
  401. margin-bottom: 50px;
  402. }
  403. .aq-content .list .cip-line {
  404. width: 1px;
  405. background-color: #E6E9F6;
  406. flex: none;
  407. margin: 0 66px;
  408. }
  409. .aq-content .list strong {
  410. font-size: 18px;
  411. font-family: PingFangSC-Medium;
  412. font-weight: 500;
  413. color: #000200;
  414. margin-bottom: 10px;
  415. display: block;
  416. }
  417. .aq-content .list p {
  418. font-size: 14px;
  419. font-family: PingFangSC-Medium;
  420. font-weight: 500;
  421. color: #9b9b9b;
  422. }
  423. @media screen and (max-width: 900px) {
  424. .app-wall {
  425. background: #EAF0F9;
  426. padding: 30px 0;
  427. padding-bottom: 60px;
  428. }
  429. .app-wall h3 {
  430. margin-bottom: 33px;
  431. }
  432. .app-wall h3 span {
  433. font-size: 17px;
  434. font-family: PingFangSC-Medium;
  435. font-weight: 500;
  436. }
  437. .app-wall h3 span:last-child {
  438. color: rgba(102, 102, 102, 0.5);
  439. font-size: 17px;
  440. font-family: PingFangSC-Medium;
  441. font-weight: 500;
  442. padding-left: 10px;
  443. }
  444. .app-wall .wall {
  445. display: flex;
  446. flex-wrap: wrap;
  447. }
  448. .app-wall .wall li {
  449. text-align: center;
  450. margin: 7px;
  451. margin-bottom: 17px;
  452. }
  453. .app-wall .wall li:hover div {
  454. background: #226ef3;
  455. transform: scale(1.01) translateY(-2px);
  456. color: #fff;
  457. }
  458. .app-wall .wall li p {
  459. font-size: 12px;
  460. font-family: PingFangSC-Medium;
  461. font-weight: 500;
  462. color: rgba(102, 102, 102, 0.5);
  463. }
  464. .app-wall .wall li div {
  465. width: 70px;
  466. height: 70px;
  467. background: #fff;
  468. box-sizing: border-box;
  469. padding: 10px;
  470. box-shadow: 2px 2px 10px 0px rgba(34, 110, 243, 0.14);
  471. transition: all 0.3s;
  472. margin-bottom: 18px;
  473. }
  474. .app-wall .wall li div img {
  475. object-fit: contain;
  476. width: 100%;
  477. height: 100%;
  478. }
  479. .cmpy-info .gift-inner {
  480. background: url(/source/template/pc/moban1/img/gift-bg.png) -16px 0 repeat;
  481. height: 100px;
  482. text-align: center;
  483. display: flex;
  484. justify-content: center;
  485. flex-direction: column;
  486. align-items: center;
  487. position: relative;
  488. margin-top: -50px !important;
  489. }
  490. .cmpy-info .gift-inner p {
  491. font-size: 17px;
  492. font-family: PingFangSC-Medium;
  493. font-weight: 500;
  494. color: #ffffff;
  495. margin-bottom: 15px;
  496. }
  497. .cmpy-info .gift-inner > div {
  498. display: flex;
  499. justify-content: center;
  500. }
  501. .cmpy-info .gift-inner .btn {
  502. width: 80px;
  503. margin: 0 10px;
  504. font-size: 12px;
  505. }
  506. .cmpy-info .cmpy-inner {
  507. display: block;
  508. padding-bottom: 50px;
  509. border-top: 1px solid #E6E9F6;
  510. padding-top: 40px !important;
  511. margin-top: 40px !important;
  512. }
  513. .cmpy-info .cmpy-inner .logo {
  514. margin-bottom: 20px;
  515. display: none;
  516. }
  517. .cmpy-info .cmpy-inner .logo img {
  518. width: 74px;
  519. height: 25px;
  520. }
  521. .cmpy-info .cmpy-inner .info {
  522. display: block;
  523. }
  524. .cmpy-info .cmpy-inner .info > div {
  525. margin-left: 0;
  526. margin-bottom: 25px;
  527. }
  528. .cmpy-info .cmpy-inner .info > div ul {
  529. display: flex;
  530. }
  531. .cmpy-info .cmpy-inner .info .about ul {
  532. display: block;
  533. }
  534. .cmpy-info .cmpy-inner .info p {
  535. font-size: 14px;
  536. margin-bottom: 10px;
  537. }
  538. .cmpy-info .cmpy-inner .info li {
  539. line-height: 30px;
  540. margin-right: 10px;
  541. }
  542. .cmpy-info .cmpy-inner .info li a {
  543. font-size: 12px;
  544. }
  545. .footer {
  546. height: 34px;
  547. }
  548. .footer .cert-wrap {
  549. display: none;
  550. }
  551. .footer .module-inner {
  552. height: 34px;
  553. display: flex;
  554. }
  555. .footer .module-inner p {
  556. font-size: 12px;
  557. }
  558. .aq-content {
  559. background-color: #EAF0F9;
  560. padding: 30px 0;
  561. text-align: center;
  562. padding-bottom: 70px;
  563. }
  564. .aq-content h3 {
  565. color: #000200;
  566. font-size: 24px;
  567. }
  568. .aq-content .line {
  569. display: block;
  570. height: 4px;
  571. background-color: #226EF3;
  572. width: 64px;
  573. margin: 20px auto;
  574. }
  575. .aq-content .module-inner > p {
  576. font-size: 12px;
  577. color: #9B9B9B;
  578. margin-bottom: 50px;
  579. }
  580. .aq-content .list {
  581. text-align: left;
  582. display: block;
  583. justify-content: space-between;
  584. }
  585. .aq-content .list > li {
  586. flex: 1;
  587. }
  588. .aq-content .list > li ul {
  589. padding-top: 20px;
  590. }
  591. .aq-content .list > li ul > li {
  592. line-height: 30px;
  593. margin-bottom: 20px;
  594. }
  595. .aq-content .list .cip-line {
  596. width: 1px;
  597. background-color: #E6E9F6;
  598. flex: none;
  599. margin: 0 66px;
  600. }
  601. .aq-content .list strong {
  602. font-size: 14px;
  603. font-family: PingFangSC-Medium;
  604. font-weight: 500;
  605. color: #000200;
  606. margin-bottom: 10px;
  607. display: block;
  608. }
  609. .aq-content .list p {
  610. font-size: 12px;
  611. font-family: PingFangSC-Medium;
  612. font-weight: 500;
  613. color: #9b9b9b;
  614. }
  615. }
  616. @media screen and (max-width: 1269px) {
  617. .module .module-inner {
  618. width: auto;
  619. margin: 0 15px;
  620. }
  621. .swiper-module {
  622. padding-left: 20%;
  623. }
  624. }
  625. @media screen and (max-width: 900px) {
  626. .header-module .header-inner .menu {
  627. display: none;
  628. }
  629. .swiper-module {
  630. padding-left: 0;
  631. }
  632. .module .module-inner {
  633. width: auto;
  634. margin: 0 auto;
  635. padding: 0 15px;
  636. }
  637. .btn {
  638. border-radius: 3px;
  639. text-align: center;
  640. cursor: pointer;
  641. transition: all 0.3s;
  642. display: block;
  643. }
  644. .btn:hover {
  645. box-shadow: 0 4px 10px 0 #2e6ef3;
  646. transform: scale(1.01) translateY(-2px);
  647. }
  648. .btn.big-btn {
  649. height: 30px;
  650. line-height: 30px;
  651. font-size: 12px;
  652. }
  653. .btn.small-btn {
  654. height: 20px;
  655. line-height: 20px;
  656. font-size: 14px;
  657. }
  658. .swiper-module {
  659. /*background: url(/source/template/pc/moban1/img/header-bg.png) #226ef3 repeat-x;*/
  660. background: #226ef3;
  661. content: '';
  662. width: 140%;
  663. position: relative;
  664. left: -20%;
  665. top: 0;
  666. border-radius: 0 0 50% 50%;
  667. }
  668. .swiper-module .slide-inner .content {
  669. height: 360px;
  670. padding-top: 80px;
  671. padding-left: 20%;
  672. padding-right: 45px;
  673. }
  674. .swiper-module .swiper-slide .slide-inner {
  675. background-position-x: calc(113%);
  676. background-size: 65% 50%;
  677. margin-left: 10px;
  678. }
  679. /* change */
  680. .swiper-module .slide-inner .top-banner-bg {
  681. display: none;
  682. }
  683. .swiper-module .btn {
  684. width: 87px;
  685. }
  686. .swiper-module .name {
  687. font-size: 20px;
  688. margin-bottom: 15px;
  689. margin-bottom: 10px;
  690. }
  691. .swiper-module .line {
  692. display: block;
  693. width: 20px;
  694. height: 2px;
  695. margin-bottom: 15px;
  696. }
  697. .swiper-module .desc p {
  698. font-size: 12px;
  699. line-height: 20px;
  700. }
  701. }