index.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  1. html,
  2. body,
  3. div,
  4. p,
  5. ul,
  6. li,
  7. h1,
  8. h2,
  9. h3,
  10. h4,
  11. h5,
  12. h6 {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. body {
  17. font-family: -apple-system;
  18. font-size: 12px;
  19. color: #000;
  20. background: #fff;
  21. }
  22. body,
  23. html {
  24. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  25. }
  26. button,
  27. input {
  28. border: none;
  29. background: none;
  30. outline: 0;
  31. }
  32. a {
  33. text-decoration: none;
  34. }
  35. ul,
  36. li {
  37. list-style: none;
  38. }
  39. strong,
  40. b,
  41. em {
  42. font-weight: normal;
  43. font-style: normal;
  44. }
  45. .btn {
  46. display: block;
  47. width: 100%;
  48. padding: 4px 15px;
  49. background: rgba(4, 119, 249, 1);
  50. border: rgba(4, 119, 249, 1) 1px solid;
  51. border-radius: 15px;
  52. text-align: center;
  53. color: #fff;
  54. font-size: 14px;
  55. }
  56. .btn i {
  57. width: .3rem;
  58. height: .3rem;
  59. text-indent: -99999px;
  60. position: relative;
  61. display: inline-block;
  62. vertical-align: middle;
  63. margin: -.06rem .1rem 0 .1rem;
  64. box-sizing: border-box;
  65. border-radius: 15px;
  66. border: 1px solid rgba(225, 225, 225, .2);
  67. border-right-color: #fff;
  68. overflow: hidden;
  69. animation: three-quarters-loader 700ms infinite cubic-bezier(0, 0, .75, .91);
  70. }
  71. .btn.grey {
  72. border-color: #cacaca;
  73. background: #cacaca;
  74. }
  75. .step3 em {
  76. display: none;
  77. }
  78. .download-loading {
  79. position: relative;
  80. background: #dbdde2;
  81. overflow: hidden;
  82. width: 100px !important;
  83. }
  84. .download-loading i {
  85. display: none;
  86. }
  87. .download-loading span {
  88. position: relative;
  89. z-index: 1;
  90. }
  91. .download-loading span b {
  92. display: inline-block;
  93. vertical-align: middle;
  94. margin-top: -2px;
  95. width: 50px;
  96. }
  97. .download-loading em {
  98. display: block;
  99. position: absolute;
  100. display: block;
  101. top: 0;
  102. left: 0;
  103. width: 0;
  104. height: 100%;
  105. background: rgba(4, 119, 249, 1);
  106. }
  107. @keyframes three-quarters-loader {
  108. from {
  109. transform: rotate(0);
  110. }
  111. to {
  112. transform: rotate(360deg)
  113. }
  114. }
  115. .btn-mini {
  116. display: inline-block;
  117. width: auto;
  118. }
  119. .clr:after {
  120. display: table;
  121. clear: both;
  122. overflow: hidden;
  123. }
  124. .clr {
  125. zoom: 1;
  126. }
  127. .blue-color {
  128. color: #0070c9 !important;
  129. }
  130. /* banner */
  131. .contain-page {
  132. max-width: 750px;
  133. margin: 0 auto;
  134. }
  135. .app-banner {
  136. display: none;
  137. }
  138. .app-banner img {
  139. display: block;
  140. width: 100%;
  141. height: 4rem;
  142. }
  143. /* info */
  144. .app-info {
  145. display: flex;
  146. padding: 20px 0;
  147. width: 87.5%;
  148. margin: 0 auto;
  149. background: #fff;
  150. }
  151. .app-logo {
  152. width: 28vw;
  153. margin-right: 10px;
  154. }
  155. .app-logo img {
  156. display: block;
  157. width: 100%;
  158. border-radius: 20px;
  159. }
  160. .app-info-rig {
  161. flex: 1;
  162. }
  163. .app-info-rig strong {
  164. display: block;
  165. margin-top: 6px;
  166. margin-left: 3.28358%;
  167. font-size: 20px;
  168. font-weight: bold;
  169. }
  170. .app-info-rig p {
  171. margin: .3em 0 0 3.28358%;
  172. font-size: 14px;
  173. color: #8A8A90;
  174. }
  175. .app-info-rig .clr {
  176. margin-top: 1.8em;
  177. }
  178. .arouse {
  179. float: right;
  180. height: 30px;
  181. line-height: 30px;
  182. border-radius: 15px;
  183. text-align: center;
  184. font-size: 12px;
  185. color: rgba(6, 122, 254, 1);
  186. }
  187. .arouse b {
  188. display:inline-block;
  189. vertical-align:middle;
  190. width:20px;
  191. height:20px;
  192. line-height:20px;
  193. margin:-2px 5px 0 0;
  194. text-align:center;
  195. background:rgba(6, 122, 254, 1);
  196. color: #fff;
  197. border-radius:100%;
  198. }
  199. /* 评价 */
  200. .app-show {
  201. display: flex;
  202. padding: 0 0 20px;
  203. width: 87.5%;
  204. margin: 0 auto;
  205. background: #fff;
  206. color: #8E8F92;
  207. }
  208. .app-score {
  209. flex: 1;
  210. }
  211. .app-score strong,
  212. .app-age strong {
  213. font-size: 16px;
  214. font-weight: bold;
  215. }
  216. .app-score p,
  217. .app-age p {
  218. color: #d8d8d8;
  219. font-size: 12px;
  220. }
  221. .app-score img {
  222. width: 80px;
  223. margin-left: 5px;
  224. }
  225. .app-age {
  226. text-align: right;
  227. }
  228. /* intro */
  229. .app-intro,.comment-box,.information-box {
  230. margin: 0 auto;
  231. padding: 20px 0;
  232. width: 87.5%;
  233. border-top: 1px solid #e5e5e5;
  234. }
  235. .app-title {
  236. margin-bottom: .85em;
  237. font-size: 20px;
  238. }
  239. .app-intro-con {
  240. position: relative;
  241. line-height: 1.8;
  242. font-size: 14px;
  243. height: 5.4em;
  244. overflow: hidden;
  245. }
  246. .app-intro-con.open {
  247. height: auto;
  248. }
  249. .app-intro-con span {
  250. display: none;
  251. position: absolute;
  252. right: 0;
  253. bottom: 0;
  254. padding-left: 1em;
  255. background: #fff;
  256. color: #067AFE;
  257. }
  258. /* 过程 */
  259. .app-flow {
  260. display: none;
  261. margin: .5rem .4rem 0;
  262. }
  263. .appSteps {
  264. position: relative;
  265. counter-reset: step;
  266. margin: .4rem 0 .5rem;
  267. display: flex;
  268. }
  269. .appSteps li {
  270. list-style-type: none;
  271. font-size: 0.9rem;
  272. text-align: center;
  273. width: 50%;
  274. position: relative;
  275. float: left;
  276. color: rgb(164, 164, 164);
  277. }
  278. .appSteps li .step {
  279. display: block;
  280. width: .54rem;
  281. height: .54rem;
  282. background-color: rgb(233, 239, 245);
  283. line-height: .54rem;
  284. border-radius: 100%;
  285. font-size: .32rem;
  286. color: #fff;
  287. text-align: center;
  288. font-weight: 700;
  289. margin: 0 auto .16rem;
  290. }
  291. .appSteps li p {
  292. font-size: .24rem;
  293. }
  294. .appSteps li::after {
  295. content: '';
  296. width: 60%;
  297. height: 1px;
  298. background-color: rgb(233, 239, 245);
  299. position: absolute;
  300. left: -30%;
  301. top: .27rem;
  302. z-index: -1;
  303. }
  304. .appSteps li:first-child::after {
  305. display: none;
  306. }
  307. .appSteps.step01 li:nth-of-type(1) .step {
  308. background-color: rgb(51, 135, 255);
  309. }
  310. .appSteps.step02 li:nth-of-type(1) .step {
  311. background-color: rgb(233, 239, 245);
  312. text-indent: -9999px;
  313. position: relative;
  314. }
  315. .appSteps.step02 li:nth-of-type(2) .step {
  316. background-color: rgb(51, 135, 255);
  317. }
  318. .appSteps.step02 li:nth-of-type(2)::after {
  319. background-color: rgb(51, 135, 255);
  320. }
  321. .appSteps.step02 li:nth-of-type(1) .step::after {
  322. content: "";
  323. position: absolute;
  324. top: 50%;
  325. left: 50%;
  326. width: .26rem;
  327. height: .21rem;
  328. background-image: url("../images/gou.png");
  329. background-repeat: no-repeat;
  330. background-size: 100% 100%;
  331. transform: translate(-50%, -50%);
  332. }
  333. .appSteps.step03 li:nth-of-type(1) .step {
  334. background-color: rgb(233, 239, 245);
  335. text-indent: -9999px;
  336. position: relative;
  337. }
  338. .appSteps.step03 li:nth-of-type(2) .step {
  339. background-color: rgb(233, 239, 245);
  340. text-indent: -9999px;
  341. position: relative;
  342. }
  343. .appSteps.step03 li:nth-of-type(3) .step {
  344. background-color: rgb(51, 135, 255);
  345. }
  346. .appSteps.step03 li:nth-of-type(2)::after {
  347. background-color: rgb(51, 135, 255);
  348. }
  349. .appSteps.step03 li:nth-of-type(3)::after {
  350. background-color: rgb(51, 135, 255);
  351. }
  352. .appSteps.step03 li:nth-of-type(1) .step::after {
  353. content: "";
  354. position: absolute;
  355. top: 50%;
  356. left: 50%;
  357. width: .26rem;
  358. height: .21rem;
  359. background-image: url("../images/gou.png");
  360. background-repeat: no-repeat;
  361. background-size: 100% 100%;
  362. transform: translate(-50%, -50%);
  363. }
  364. .appSteps.step03 li:nth-of-type(2) .step::after {
  365. content: "";
  366. position: absolute;
  367. top: 50%;
  368. left: 50%;
  369. width: .26rem;
  370. height: .21rem;
  371. background-image: url("../images/gou.png");
  372. background-repeat: no-repeat;
  373. background-size: 100% 100%;
  374. transform: translate(-50%, -50%);
  375. }
  376. .appSteps.step04 li:nth-of-type(1)::after,
  377. .appSteps.step04 li:nth-of-type(2)::after,
  378. .appSteps.step04 li:nth-of-type(3)::after {
  379. background-color: rgb(51, 135, 255);
  380. }
  381. .appSteps.step04 li:nth-of-type(1) .step,
  382. .appSteps.step04 li:nth-of-type(2) .step,
  383. .appSteps.step04 li:nth-of-type(3) .step {
  384. background-color: rgb(233, 239, 245);
  385. text-indent: -9999px;
  386. position: relative;
  387. }
  388. .appSteps.step04 li:nth-of-type(1) .step::after,
  389. .appSteps.step04 li:nth-of-type(2) .step::after,
  390. .appSteps.step04 li:nth-of-type(3) .step::after {
  391. content: "";
  392. position: absolute;
  393. top: 50%;
  394. left: 50%;
  395. width: .26rem;
  396. height: .21rem;
  397. background-image: url("../images/gou.png");
  398. background-repeat: no-repeat;
  399. background-size: 100% 100%;
  400. transform: translate(-50%, -50%);
  401. }
  402. /* 引导 */
  403. .app-guide {
  404. display: none;
  405. margin: .85rem .3rem 1rem .1rem;
  406. }
  407. .app-guide img {
  408. display: block;
  409. width: 100%;
  410. }
  411. .app-guide li {
  412. margin-top: .3rem;
  413. }
  414. .app-guide p {
  415. margin: .15rem .1rem 0 .3rem;
  416. }
  417. .app-guide p em {
  418. font-weight: bold;
  419. }
  420. /* 评分及评论 */
  421. .comment-con {
  422. display: flex;
  423. }
  424. .comment-left {
  425. flex: 1;
  426. }
  427. .comment-left strong {
  428. font-size: 60px;
  429. line-height: 43px;
  430. color: #4A4A4E;
  431. font-weight: bold;
  432. }
  433. .comment-left p {
  434. width: 91px;
  435. text-align: center;
  436. color: #7B7B7B;
  437. margin-top: 10px;
  438. }
  439. .comment-star-list li {
  440. line-height: 1;
  441. }
  442. .comment-right {
  443. width: 63.38308%;
  444. }
  445. .comment-right p {
  446. margin-top: 5px;
  447. color: #7B7B7B;
  448. text-align: right;
  449. }
  450. .comment-star,
  451. .comment-progress {
  452. display: inline-block;
  453. vertical-align: middle;
  454. }
  455. .comment-star {
  456. position: relative;
  457. width: 46px;
  458. height: 7px;
  459. }
  460. .comment-star img {
  461. display: block;
  462. width: 100%;
  463. height: 100%;
  464. }
  465. .comment-star div {
  466. position: absolute;
  467. left: 0;
  468. top: 0;
  469. height: 100%;
  470. background: #fff;
  471. }
  472. .comment-progress {
  473. position: relative;
  474. width: calc(100% - 56px);
  475. height: 2px;
  476. background: #E9E9EC;
  477. border-radius: 2px;
  478. }
  479. .comment-progress div {
  480. position: absolute;
  481. width: 0;
  482. height: 2px;
  483. background: #4A4A4E;
  484. border-radius: 2px;
  485. }
  486. .comment-star-list li:nth-child(1) .comment-progress div {
  487. width: 90%;
  488. }
  489. .comment-star-list li:nth-child(2) .comment-progress div {
  490. width: 10%;
  491. }
  492. .comment-star-list li:nth-child(2) .comment-star div {
  493. width: 20%;
  494. }
  495. .comment-star-list li:nth-child(3) .comment-star div {
  496. width: 40%;
  497. }
  498. .comment-star-list li:nth-child(4) .comment-star div {
  499. width: 60%;
  500. }
  501. .comment-star-list li:nth-child(5) .comment-star div {
  502. width: 80%;
  503. }
  504. /* 信息 */
  505. .information-list li {
  506. display: flex;
  507. line-height: 3.5;
  508. border-bottom: #F2F2F2 1px solid;
  509. ;
  510. }
  511. .information-list li .l {
  512. color: #737379;
  513. }
  514. .information-list li .r {
  515. flex: 1;
  516. text-align: right;
  517. }
  518. .information-list li .r p {
  519. display: inline-block;
  520. vertical-align: middle;
  521. width: 80%;
  522. line-height: 1.2;
  523. }
  524. .information-list li:last-child {
  525. border: none;
  526. }
  527. /* 展开 */
  528. .open-btn {
  529. float: right;
  530. font-size: .26rem;
  531. line-height: .48rem;
  532. color: #067AFE;
  533. }
  534. .hidden {
  535. display: none;
  536. }
  537. .mask {
  538. z-index: 2;
  539. display: none;
  540. position: fixed;
  541. top: 0;
  542. right: 0;
  543. bottom: 0;
  544. left: 0;
  545. background: rgba(0, 0, 0, .5);
  546. }
  547. .mask img {
  548. position: absolute;
  549. top: 0;
  550. right: 0;
  551. width: 80%;
  552. }
  553. .disclaimer {
  554. padding: 10px;
  555. color: rgba(153, 153, 153, 1);
  556. background: rgba(249, 249, 249, 1);
  557. }
  558. /* 弹框流程 */
  559. .mask-box {
  560. z-index: 2;
  561. position: relative;
  562. display: none;
  563. }
  564. .mask-colsed {
  565. z-index: 2;
  566. position: absolute;
  567. right: 15px;
  568. top: 15px;
  569. width: 20px;
  570. }
  571. .mask-colsed img {
  572. display: block;
  573. width: 100%;
  574. }
  575. .mask-bg {
  576. position: fixed;
  577. top: 0;
  578. right: 0;
  579. bottom: 0;
  580. left: 0;
  581. background: rgba(0, 0, 0, .2)
  582. }
  583. .mask-pop {
  584. position: fixed;
  585. top: 50%;
  586. left: 50%;
  587. width: 80%;
  588. max-width: 300px;
  589. transform: translate(-50%, -50%);
  590. background: #fff;
  591. border-radius: 20px;
  592. overflow: hidden;
  593. }
  594. .video-pop {
  595. width: 250px;
  596. background:none;
  597. overflow:visible;
  598. }
  599. .video-pop .prism-player {
  600. background:none;
  601. }
  602. .video-pop .mask-colsed {
  603. right: -25px;
  604. top:0;
  605. }
  606. .video-pop #video {
  607. display: block;
  608. width: 100%;
  609. }
  610. /* */
  611. .copy-url-img {
  612. display: block;
  613. width: 100%;
  614. }
  615. .copy-url {
  616. position: relative;
  617. margin: 20px 30px;
  618. height: 36px;
  619. line-height: 36px;
  620. background: #F1F6F9;
  621. border-radius: 18px;
  622. overflow: hidden;
  623. }
  624. .copy-url input {
  625. padding-left: 20px;
  626. color: #9A9A99;
  627. }
  628. .copy-url button {
  629. position: absolute;
  630. right: 0;
  631. top: 0;
  632. padding: 0 15px;
  633. height: 36px;
  634. line-height: 36px;
  635. background: linear-gradient(90deg, rgba(34, 125, 249, 1), rgba(0, 203, 250, 1));
  636. color: #fff;
  637. border-radius: 0 18px 18px 0;
  638. }
  639. /* */
  640. .file-info {
  641. display: block;
  642. margin: 30px 0 20px;
  643. font-size: 14px;
  644. color: #00B0F9;
  645. text-align: center;
  646. }
  647. .file-box {
  648. z-index: 2;
  649. display: none;
  650. position: fixed;
  651. top: 50%;
  652. left: 50%;
  653. padding: 20px;
  654. width: 70%;
  655. max-width: 300px;
  656. transform: translate(-50%, -50%);
  657. background: #fff;
  658. border-radius: 20px;
  659. }
  660. .file-box h3 {
  661. text-align: center;
  662. font-size: 16px;
  663. color: #3A3A3A;
  664. }
  665. .file-con {
  666. margin: 20px 0;
  667. font-size: 14px;
  668. color: #777;
  669. }
  670. .file-con strong {
  671. display: block;
  672. margin-top: 20px;
  673. color: #333;
  674. }
  675. .file-con p {
  676. margin-top: 8px;
  677. }
  678. .colsed-btn {
  679. display: block;
  680. margin: 0 auto;
  681. width: 80%;
  682. height: 40px;
  683. line-height: 40px;
  684. background: linear-gradient(90deg, rgba(32, 124, 249, 1), rgba(0, 205, 250, 1));
  685. border-radius: 20px;
  686. font-size: 14px;
  687. color: #fff;
  688. text-align: center;
  689. }
  690. /* swiper */
  691. .swiper-container {
  692. width: 100%;
  693. }
  694. .swiper-slide img {
  695. display: block;
  696. width: 100%;
  697. }
  698. .swiper-slide p {
  699. margin: 10px 0;
  700. text-align: center;
  701. font-size: 14px;
  702. color: #0491F7;
  703. }
  704. .mask-pop .swiper-container .swiper-pagination {
  705. position: static;
  706. }
  707. .swiper-pagination-bullet {
  708. background: #DBF0FD;
  709. opacity: 1;
  710. }
  711. .swiper-pagination-bullet-active {
  712. background: #0491F7;
  713. }
  714. /* 加载框 */
  715. .loading-box {
  716. position: fixed;
  717. top: 0;
  718. right: 0;
  719. bottom: 0;
  720. left: 0;
  721. background: rgba(255, 255, 255, .9)
  722. }
  723. .loading-box span {
  724. display: block;
  725. position: absolute;
  726. top: 50%;
  727. left: 50%;
  728. margin: -.8rem 0 0 -.8rem;
  729. width: 1.6rem;
  730. height: 1.6rem;
  731. box-sizing: border-box;
  732. border-radius: 100%;
  733. border: .08rem solid rgba(22, 39, 65, .2);
  734. border-right-color: #2A9FF6;
  735. overflow: hidden;
  736. animation: three-quarters-loader 700ms infinite cubic-bezier(0, 0, .75, .91);
  737. }
  738. /* 电脑展示 */
  739. .pc-box {
  740. display: none;
  741. text-align: center;
  742. }
  743. .pc-box .info {
  744. font-size: 16px;
  745. font-weight: bold;
  746. }
  747. .pc-logo {
  748. width: 160px;
  749. border-radius: 20px;
  750. overflow: hidden;
  751. margin: 20px auto 0;
  752. }
  753. .pc-logo img {
  754. display: block;
  755. width: 100%;
  756. }
  757. .pc-box > p {
  758. font-size: 20px;
  759. font-weight: 400;
  760. line-height: 1.5em;
  761. }
  762. .pc-box .code {
  763. width: 231px;
  764. height: 231px;
  765. }
  766. /* 图片展示 */
  767. .imgs-box {
  768. width: 87.5%;
  769. margin: 0 auto 20px;
  770. }
  771. .imgs-box .swiper-slide {
  772. display: inline-block;
  773. vertical-align: bottom;
  774. width: auto;
  775. margin: 0;
  776. margin-right: 3.3vw;
  777. padding: 0;
  778. padding-bottom: .75em;
  779. white-space: normal;
  780. font-size: 12px;
  781. }
  782. .imgs-box .swiper-slide img {
  783. display: block;
  784. width: auto;
  785. height: auto;
  786. min-width: 52vw;
  787. max-width: 82vw;
  788. max-height: 65vh;
  789. border-radius: 10px;
  790. }