style.css 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. ol,
  6. ul,
  7. li {
  8. list-style: none;
  9. }
  10. html,
  11. body {
  12. width: 100%;
  13. height: 100%;
  14. overflow: hidden;
  15. }
  16. body {
  17. background: url(../images/background.png) no-repeat center;
  18. background-size: 100%;
  19. }
  20. @font-face {
  21. font-family: '液晶数字字体';
  22. src: url('../fonts/液晶数字字体.TTF');
  23. }
  24. .header {
  25. width: 75%;
  26. height: 10%;
  27. margin: auto;
  28. }
  29. .header > div {
  30. float: left;
  31. }
  32. .header .title {
  33. height: 100%;
  34. width: 40%;
  35. text-align: center;
  36. color: #fff;
  37. font-size: 1.4rem;
  38. display: table;
  39. opacity: 0;
  40. animation: zoomIn 0.5s linear forwards 0.8s;
  41. }
  42. .header .title span {
  43. display: table-cell;
  44. vertical-align: middle;
  45. }
  46. .header .left,
  47. .header .right {
  48. width: 30%;
  49. height: 100%;
  50. float: left;
  51. }
  52. .header .left li,
  53. .header .right li {
  54. width: 3.5rem;
  55. height: 1rem;
  56. background-color: #02b687;
  57. opacity: 0;
  58. margin: 0 2%;
  59. float: left;
  60. border-radius: 1rem;
  61. margin-top: 10%;
  62. }
  63. .header .left li:nth-of-type(1) {
  64. animation: show1 0.2s linear forwards;
  65. }
  66. .header .left li:nth-of-type(2) {
  67. animation: show2 0.2s linear forwards 0.2s;
  68. }
  69. .header .left li:nth-of-type(3) {
  70. animation: show3 0.2s linear forwards 0.4s;
  71. }
  72. .header .left li:nth-of-type(4) {
  73. animation: show4 0.2s linear forwards 0.6s;
  74. }
  75. .header .right li {
  76. float: right;
  77. }
  78. .header .right li:nth-of-type(1) {
  79. animation: show1 0.2s linear forwards;
  80. }
  81. .header .right li:nth-of-type(2) {
  82. animation: show2 0.2s linear forwards 0.2s;
  83. }
  84. .header .right li:nth-of-type(3) {
  85. animation: show3 0.2s linear forwards 0.4s;
  86. }
  87. .header .right li:nth-of-type(4) {
  88. animation: show4 0.2s linear forwards 0.6s;
  89. }
  90. .main {
  91. width: 100%;
  92. height: 60%;
  93. }
  94. .main > div {
  95. float: left;
  96. }
  97. .main .main-left {
  98. width: 22.5%;
  99. height: 100%;
  100. }
  101. .main .main-left .completion {
  102. width: 100%;
  103. height: 30%;
  104. position: relative;
  105. }
  106. .main .main-left .completion .completion-content {
  107. width: 7rem;
  108. height: 7rem;
  109. background: url(../images/border.png) no-repeat center;
  110. background-size: contain;
  111. position: absolute;
  112. left: -50%;
  113. top: 50%;
  114. transform: translate(-50%, -50%);
  115. animation: animate1 1s linear forwards 7s;
  116. }
  117. .main .main-left .completion .completion-content .rate {
  118. width: 4rem;
  119. height: 4rem;
  120. position: absolute;
  121. left: 17%;
  122. top: 51%;
  123. transform: translateY(-50%);
  124. background: url(../images/cricle.png) no-repeat center;
  125. background-size: contain;
  126. animation: rotate1 5s ease infinite;
  127. }
  128. .main .main-left .completion .completion-content .rate h5 {
  129. text-align: center;
  130. height: 50%;
  131. width: 100%;
  132. color: #fff;
  133. display: table;
  134. }
  135. .main .main-left .completion .completion-content .rate h5 span {
  136. display: table-cell;
  137. vertical-align: bottom;
  138. font-size: 0.8rem;
  139. }
  140. .main .main-left .completion .completion-content .rate p {
  141. text-align: center;
  142. height: 50%;
  143. width: 100%;
  144. color: #fff;
  145. display: table;
  146. }
  147. .main .main-left .completion .completion-content .rate p span {
  148. display: table-cell;
  149. vertical-align: middle;
  150. }
  151. .main .main-left .lightning {
  152. width: 100%;
  153. height: 40%;
  154. }
  155. .main .main-left .lightning .lightning1,
  156. .main .main-left .lightning .lightning2 {
  157. width: 100%;
  158. height: 50%;
  159. }
  160. .main .main-left .lightning .lightning1 > div {
  161. float: left;
  162. }
  163. .main .main-left .lightning .lightning1 .sd1 {
  164. width: 55%;
  165. height: 100%;
  166. }
  167. .main .main-left .lightning .lightning1 .jd1 {
  168. width: 45%;
  169. height: 100%;
  170. }
  171. .main .main-left .lightning .lightning1 .jd1 > div {
  172. float: left;
  173. }
  174. .main .main-left .lightning .lightning1 .jd1 ul {
  175. float: left;
  176. margin-top: 30%;
  177. }
  178. .main .main-left .lightning .lightning1 .jd1 ul li {
  179. float: left;
  180. margin-right: 0.15rem;
  181. background-color: #00e4c8;
  182. border-radius: 50%;
  183. opacity: 0;
  184. }
  185. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(1) {
  186. width: 0.5rem;
  187. height: 0.5rem;
  188. animation: show4 0.1s linear forwards 2.5s;
  189. }
  190. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(2) {
  191. width: 0.54rem;
  192. height: 0.54rem;
  193. animation: show4 0.1s linear forwards 2.6s;
  194. }
  195. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(3) {
  196. width: 0.58rem;
  197. height: 0.58rem;
  198. animation: show4 0.1s linear forwards 2.7s;
  199. }
  200. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(4) {
  201. width: 0.62rem;
  202. height: 0.62rem;
  203. animation: show4 0.1s linear forwards 2.8s;
  204. }
  205. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(5) {
  206. width: 0.66rem;
  207. height: 0.66rem;
  208. animation: show4 0.1s linear forwards 2.9s;
  209. }
  210. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(6) {
  211. width: 0.7rem;
  212. height: 0.7rem;
  213. animation: show4 0.1s linear forwards 3s;
  214. }
  215. .main .main-left .lightning .lightning1 .jd1 ul li:nth-of-type(7) {
  216. width: 0.74rem;
  217. height: 0.74rem;
  218. animation: show4 0.1s linear forwards 3.1s;
  219. }
  220. .main .main-left .lightning .lightning1 .jd1 .box1 {
  221. width: 0.8rem;
  222. height: 40%;
  223. background-color: #00e4c8;
  224. margin-left: 5%;
  225. margin-top: 20%;
  226. border-radius: 0.8rem;
  227. opacity: 0;
  228. animation: show4 0.1s linear forwards 3.2s;
  229. }
  230. .main .main-left .lightning .lightning1 .jd1 .box2 {
  231. width: 0.8rem;
  232. height: 60%;
  233. background-color: #00e4c8;
  234. margin-top: 15%;
  235. margin-left: 5%;
  236. border-radius: 0.8rem;
  237. opacity: 0;
  238. animation: show4 0.1s linear forwards 3.3s;
  239. }
  240. .main .main-left .lightning .lightning2 > div {
  241. float: left;
  242. }
  243. .main .main-left .lightning .lightning2 .sd2 {
  244. width: 55%;
  245. height: 100%;
  246. }
  247. .main .main-left .lightning .lightning2 .jd2 {
  248. width: 45%;
  249. height: 100%;
  250. }
  251. .main .main-left .lightning .lightning2 .jd2 > div {
  252. float: left;
  253. }
  254. .main .main-left .lightning .lightning2 .jd2 ul {
  255. float: left;
  256. margin-top: 30%;
  257. }
  258. .main .main-left .lightning .lightning2 .jd2 ul li {
  259. float: left;
  260. margin-right: 0.15rem;
  261. background-color: #00e4c8;
  262. border-radius: 50%;
  263. opacity: 0;
  264. }
  265. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(1) {
  266. width: 0.5rem;
  267. height: 0.5rem;
  268. animation: show4 0.1s linear forwards 2.5s;
  269. }
  270. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(2) {
  271. width: 0.54rem;
  272. height: 0.54rem;
  273. animation: show4 0.1s linear forwards 2.6s;
  274. }
  275. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(3) {
  276. width: 0.58rem;
  277. height: 0.58rem;
  278. animation: show4 0.1s linear forwards 2.7s;
  279. }
  280. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(4) {
  281. width: 0.62rem;
  282. height: 0.62rem;
  283. animation: show4 0.1s linear forwards 2.8s;
  284. }
  285. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(5) {
  286. width: 0.66rem;
  287. height: 0.66rem;
  288. animation: show4 0.1s linear forwards 2.9s;
  289. }
  290. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(6) {
  291. width: 0.7rem;
  292. height: 0.7rem;
  293. animation: show4 0.1s linear forwards 3s;
  294. }
  295. .main .main-left .lightning .lightning2 .jd2 ul li:nth-of-type(7) {
  296. width: 0.74rem;
  297. height: 0.74rem;
  298. animation: show4 0.1s linear forwards 3.1s;
  299. }
  300. .main .main-left .lightning .lightning2 .jd2 .box1 {
  301. width: 0.8rem;
  302. height: 40%;
  303. background-color: #00e4c8;
  304. margin-left: 5%;
  305. margin-top: 20%;
  306. border-radius: 0.8rem;
  307. opacity: 0;
  308. animation: show4 0.1s linear forwards 3.2s;
  309. }
  310. .main .main-left .lightning .lightning2 .jd2 .box2 {
  311. width: 0.8rem;
  312. height: 60%;
  313. background-color: #00e4c8;
  314. margin-top: 15%;
  315. margin-left: 5%;
  316. border-radius: 0.8rem;
  317. opacity: 0;
  318. animation: show4 0.1s linear forwards 3.3s;
  319. }
  320. .main .main-left .top3 {
  321. width: 100%;
  322. height: 30%;
  323. position: relative;
  324. }
  325. .main .main-left .top3 ul {
  326. width: 60%;
  327. height: 100%;
  328. position: absolute;
  329. left: -50%;
  330. top: 0;
  331. transform: translateX(-50%);
  332. animation: animate1 1s linear forwards 7s;
  333. }
  334. .main .main-left .top3 ul li {
  335. float: left;
  336. width: 30%;
  337. height: 100%;
  338. margin: 0 1.5%;
  339. }
  340. .main .main-left .top3 ul li:nth-of-type(1) {
  341. background: url(../images/1.png) no-repeat center bottom;
  342. background-size: 70%;
  343. }
  344. .main .main-left .top3 ul li:nth-of-type(1) .title {
  345. width: 100%;
  346. text-align: center;
  347. color: #ff7a9a;
  348. font-size: 0.8rem;
  349. margin-top: -5%;
  350. }
  351. .main .main-left .top3 ul li:nth-of-type(1) .content {
  352. width: 100%;
  353. text-align: center;
  354. color: #fff;
  355. margin-top: 10%;
  356. }
  357. .main .main-left .top3 ul li:nth-of-type(1) .content p {
  358. font-size: 0.3rem;
  359. }
  360. .main .main-left .top3 ul li:nth-of-type(1) .content span {
  361. font-size: 0.5rem;
  362. display: block;
  363. }
  364. .main .main-left .top3 ul li:nth-of-type(2) {
  365. background: url(../images/2.png) no-repeat center bottom;
  366. background-size: 70%;
  367. }
  368. .main .main-left .top3 ul li:nth-of-type(2) .title {
  369. width: 100%;
  370. text-align: center;
  371. color: #01c793;
  372. font-size: 0.8rem;
  373. margin-top: 20%;
  374. }
  375. .main .main-left .top3 ul li:nth-of-type(2) .content {
  376. width: 100%;
  377. text-align: center;
  378. color: #fff;
  379. margin-top: 10%;
  380. }
  381. .main .main-left .top3 ul li:nth-of-type(2) .content p {
  382. font-size: 0.3rem;
  383. }
  384. .main .main-left .top3 ul li:nth-of-type(2) .content span {
  385. font-size: 0.5rem;
  386. display: block;
  387. }
  388. .main .main-left .top3 ul li:nth-of-type(3) {
  389. background: url(../images/3.png) no-repeat center bottom;
  390. background-size: 70%;
  391. }
  392. .main .main-left .top3 ul li:nth-of-type(3) .title {
  393. width: 100%;
  394. text-align: center;
  395. color: #01c2aa;
  396. font-size: 0.8rem;
  397. margin-top: 43%;
  398. }
  399. .main .main-left .top3 ul li:nth-of-type(3) .content {
  400. width: 100%;
  401. text-align: center;
  402. color: #fff;
  403. margin-top: 10%;
  404. }
  405. .main .main-left .top3 ul li:nth-of-type(3) .content p {
  406. font-size: 0.3rem;
  407. }
  408. .main .main-left .top3 ul li:nth-of-type(3) .content span {
  409. font-size: 0.3rem;
  410. display: block;
  411. }
  412. .main .main-middle {
  413. width: 55%;
  414. height: 100%;
  415. position: relative;
  416. }
  417. .main .main-middle .external1 {
  418. width: 15%;
  419. height: 100%;
  420. background: url(../images/border1.png) no-repeat left;
  421. background-size: contain;
  422. position: absolute;
  423. left: 40%;
  424. top: 0;
  425. opacity: 0;
  426. animation: come1 0.5s linear forwards 3.4s;
  427. }
  428. .main .main-middle .external2 {
  429. width: 15%;
  430. height: 100%;
  431. background: url(../images/border2.png) no-repeat right;
  432. background-size: contain;
  433. position: absolute;
  434. right: 40%;
  435. top: 0;
  436. opacity: 0;
  437. animation: come2 0.5s linear forwards 3.4s;
  438. }
  439. .main .main-middle .external3 {
  440. width: 60%;
  441. height: 10%;
  442. background: url(../images/border3.png) no-repeat center top;
  443. background-size: contain;
  444. position: absolute;
  445. left: 50%;
  446. transform: translateX(-50%);
  447. top: 15%;
  448. opacity: 0;
  449. animation: come3 0.5s linear forwards 3.4s;
  450. }
  451. .main .main-middle .external4 {
  452. width: 60%;
  453. height: 10%;
  454. background: url(../images/border4.png) no-repeat center bottom;
  455. background-size: contain;
  456. position: absolute;
  457. left: 50%;
  458. transform: translateX(-50%);
  459. opacity: 0;
  460. bottom: 10%;
  461. animation: come4 0.5s linear forwards 3.4s;
  462. }
  463. .main .main-middle .jz1,
  464. .main .main-middle .jz2 {
  465. opacity: 0;
  466. animation: show4 0.1s linear forwards 3.8s;
  467. }
  468. .main .main-middle .jz1 ul,
  469. .main .main-middle .jz2 ul {
  470. width: 30%;
  471. height: 38%;
  472. position: absolute;
  473. top: 50%;
  474. left: 50%;
  475. transform: translate(-50%, -50%);
  476. overflow: hidden;
  477. }
  478. .main .main-middle .jz1 ul li,
  479. .main .main-middle .jz2 ul li {
  480. width: 100%;
  481. height: 8%;
  482. margin: 40% 0;
  483. background-color: #ff7a9a;
  484. }
  485. .main .main-middle .jz1 {
  486. width: 4%;
  487. height: 100%;
  488. background-color: red;
  489. background: url(../images/jz.png) no-repeat center;
  490. background-size: contain;
  491. position: absolute;
  492. left: 5%;
  493. top: 0;
  494. }
  495. .main .main-middle .jz2 {
  496. width: 4%;
  497. height: 100%;
  498. background-color: red;
  499. background: url(../images/jz.png) no-repeat center;
  500. background-size: contain;
  501. position: absolute;
  502. right: 5%;
  503. top: 0;
  504. }
  505. .main .main-middle .inner1 {
  506. width: 10%;
  507. height: 100%;
  508. position: absolute;
  509. left: 10%;
  510. top: 0;
  511. opacity: 0;
  512. background: url(../images/leftBorder.png) no-repeat center;
  513. background-size: 100%;
  514. animation: inner1 0.3s linear forwards 3.9s;
  515. }
  516. .main .main-middle .inner2 {
  517. width: 10%;
  518. height: 100%;
  519. position: absolute;
  520. right: 10%;
  521. top: 0;
  522. opacity: 0;
  523. background: url(../images/rightBorder.png) no-repeat center;
  524. background-size: 100%;
  525. animation: inner2 0.3s linear forwards 3.9s;
  526. }
  527. .main .main-middle .arrow-l {
  528. position: absolute;
  529. width: 10%;
  530. height: 20%;
  531. left: 15%;
  532. top: 40%;
  533. opacity: 0;
  534. animation: arrow1 1.5s linear infinite 4s;
  535. }
  536. .main .main-middle .arrow-l ol {
  537. width: 100%;
  538. height: 100%;
  539. }
  540. .main .main-middle .arrow-l ol li {
  541. width: 33%;
  542. height: 100%;
  543. float: left;
  544. background: url(../images/yuan.png) no-repeat center;
  545. background-size: 60%;
  546. }
  547. .main .main-middle .arrow-l ol li:nth-of-type(3) {
  548. background: url(../images/arrow-l.png) no-repeat center;
  549. background-size: 80%;
  550. }
  551. .main .main-middle .arrow-r {
  552. position: absolute;
  553. width: 10%;
  554. height: 20%;
  555. right: 15%;
  556. top: 40%;
  557. opacity: 0;
  558. animation: arrow2 1.5s linear infinite 4s;
  559. }
  560. .main .main-middle .arrow-r ol {
  561. width: 100%;
  562. height: 100%;
  563. }
  564. .main .main-middle .arrow-r ol li {
  565. width: 33%;
  566. height: 100%;
  567. float: right;
  568. background: url(../images/yuan.png) no-repeat center;
  569. background-size: 60%;
  570. }
  571. .main .main-middle .arrow-r ol li:nth-of-type(3) {
  572. background: url(../images/arrow-r.png) no-repeat center;
  573. background-size: 80%;
  574. }
  575. .main .main-middle .meter {
  576. width: 50%;
  577. height: 60%;
  578. background-color: rgba(255, 255, 255, 0.2);
  579. background: url(../images/huan.png) no-repeat center;
  580. background-size: 100%;
  581. position: absolute;
  582. left: 50%;
  583. top: 50%;
  584. opacity: 0;
  585. transform: translate(-50%, -50%);
  586. animation: meter 3s linear forwards 4.1s;
  587. }
  588. .main .main-middle .animate {
  589. width: 70%;
  590. height: 70%;
  591. z-index: -1;
  592. position: absolute;
  593. left: 50%;
  594. top: 50%;
  595. transform: translate(-50%, -50%);
  596. opacity: 0;
  597. animation: animate 1s linear forwards 6s;
  598. }
  599. .main .main-middle .animate canvas {
  600. transform-origin: 0 0;
  601. position: absolute;
  602. left: 0;
  603. top: 0;
  604. border-radius: 40%;
  605. }
  606. .main .main-middle .sale {
  607. width: 16rem;
  608. height: 16rem;
  609. background: url(../images/cicle.png) no-repeat center;
  610. background-size: contain;
  611. position: absolute;
  612. left: 50%;
  613. top: 50%;
  614. margin-left: -8rem;
  615. margin-top: -8rem;
  616. opacity: 0;
  617. animation: sale 1s linear forwards 8s;
  618. }
  619. .main .main-middle .sale p {
  620. width: 100%;
  621. height: 20%;
  622. text-align: center;
  623. color: #fff;
  624. display: table;
  625. font-size: 1.7rem;
  626. }
  627. .main .main-middle .sale p span {
  628. display: table-cell;
  629. vertical-align: middle;
  630. }
  631. .main .main-middle .sale p:nth-of-type(1) {
  632. margin-top: 30%;
  633. }
  634. .main .main-middle .sale p:nth-of-type(2) {
  635. font-family: '液晶数字字体';
  636. font-size: 2rem;
  637. }
  638. .main .main-right {
  639. width: 22.5%;
  640. height: 100%;
  641. }
  642. .main .main-right .compare {
  643. width: 100%;
  644. height: 30%;
  645. position: relative;
  646. }
  647. .main .main-right .compare .compare-content {
  648. width: 7rem;
  649. height: 7rem;
  650. background: url(../images/border02.png) no-repeat center;
  651. background-size: contain;
  652. position: absolute;
  653. left: 150%;
  654. top: 50%;
  655. transform: translate(-50%, -50%);
  656. animation: animate2 1s linear forwards 7s;
  657. }
  658. .main .main-right .compare .compare-content .rate2 {
  659. width: 4rem;
  660. height: 4rem;
  661. position: absolute;
  662. left: 27%;
  663. top: 51%;
  664. transform: translateY(-50%);
  665. background: url(../images/cricle.png) no-repeat center;
  666. background-size: contain;
  667. animation: rotate1 5s ease infinite;
  668. }
  669. .main .main-right .compare .compare-content .rate2 h5 {
  670. text-align: center;
  671. height: 50%;
  672. width: 100%;
  673. color: #fff;
  674. display: table;
  675. }
  676. .main .main-right .compare .compare-content .rate2 h5 span {
  677. display: table-cell;
  678. vertical-align: bottom;
  679. font-size: 0.8rem;
  680. }
  681. .main .main-right .compare .compare-content .rate2 p {
  682. text-align: center;
  683. height: 50%;
  684. width: 100%;
  685. color: #fff;
  686. display: table;
  687. }
  688. .main .main-right .compare .compare-content .rate2 p span {
  689. display: table-cell;
  690. vertical-align: middle;
  691. }
  692. .main .main-right .lightning {
  693. width: 100%;
  694. height: 40%;
  695. }
  696. .main .main-right .lightning .lightning3,
  697. .main .main-right .lightning .lightning4 {
  698. width: 100%;
  699. height: 50%;
  700. }
  701. .main .main-right .lightning .lightning3 > div {
  702. float: left;
  703. }
  704. .main .main-right .lightning .lightning3 .jd3 {
  705. width: 45%;
  706. height: 100%;
  707. }
  708. .main .main-right .lightning .lightning3 .jd3 > div {
  709. float: right;
  710. }
  711. .main .main-right .lightning .lightning3 .jd3 ul {
  712. float: right;
  713. margin-top: 30%;
  714. }
  715. .main .main-right .lightning .lightning3 .jd3 ul li {
  716. float: right;
  717. margin-left: 0.15rem;
  718. background-color: #00e4c8;
  719. border-radius: 50%;
  720. opacity: 0;
  721. }
  722. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(1) {
  723. width: 0.5rem;
  724. height: 0.5rem;
  725. animation: show4 0.1s linear forwards 2.5s;
  726. }
  727. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(2) {
  728. width: 0.54rem;
  729. height: 0.54rem;
  730. animation: show4 0.1s linear forwards 2.6s;
  731. }
  732. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(3) {
  733. width: 0.58rem;
  734. height: 0.58rem;
  735. animation: show4 0.1s linear forwards 2.7s;
  736. }
  737. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(4) {
  738. width: 0.62rem;
  739. height: 0.62rem;
  740. animation: show4 0.1s linear forwards 2.8s;
  741. }
  742. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(5) {
  743. width: 0.66rem;
  744. height: 0.66rem;
  745. animation: show4 0.1s linear forwards 2.9s;
  746. }
  747. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(6) {
  748. width: 0.7rem;
  749. height: 0.7rem;
  750. animation: show4 0.1s linear forwards 3s;
  751. }
  752. .main .main-right .lightning .lightning3 .jd3 ul li:nth-of-type(7) {
  753. width: 0.74rem;
  754. height: 0.74rem;
  755. animation: show4 0.1s linear forwards 3.1s;
  756. }
  757. .main .main-right .lightning .lightning3 .jd3 .box1 {
  758. width: 0.8rem;
  759. height: 40%;
  760. background-color: #00e4c8;
  761. margin-right: 5%;
  762. margin-top: 20%;
  763. border-radius: 0.8rem;
  764. opacity: 0;
  765. animation: show4 0.1s linear forwards 3.2s;
  766. }
  767. .main .main-right .lightning .lightning3 .jd3 .box2 {
  768. width: 0.8rem;
  769. height: 60%;
  770. background-color: #00e4c8;
  771. margin-top: 15%;
  772. margin-right: 5%;
  773. border-radius: 0.8rem;
  774. opacity: 0;
  775. animation: show4 0.1s linear forwards 3.3s;
  776. }
  777. .main .main-right .lightning .lightning3 .sd3 {
  778. width: 55%;
  779. height: 100%;
  780. }
  781. .main .main-right .lightning .lightning4 > div {
  782. float: left;
  783. }
  784. .main .main-right .lightning .lightning4 .jd4 {
  785. width: 45%;
  786. height: 100%;
  787. }
  788. .main .main-right .lightning .lightning4 .jd4 > div {
  789. float: right;
  790. }
  791. .main .main-right .lightning .lightning4 .jd4 ul {
  792. float: right;
  793. margin-top: 30%;
  794. }
  795. .main .main-right .lightning .lightning4 .jd4 ul li {
  796. float: right;
  797. margin-left: 0.15rem;
  798. background-color: #00e4c8;
  799. border-radius: 50%;
  800. opacity: 0;
  801. }
  802. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(1) {
  803. width: 0.5rem;
  804. height: 0.5rem;
  805. animation: show4 0.1s linear forwards 2.5s;
  806. }
  807. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(2) {
  808. width: 0.54rem;
  809. height: 0.54rem;
  810. animation: show4 0.1s linear forwards 2.6s;
  811. }
  812. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(3) {
  813. width: 0.58rem;
  814. height: 0.58rem;
  815. animation: show4 0.1s linear forwards 2.7s;
  816. }
  817. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(4) {
  818. width: 0.62rem;
  819. height: 0.62rem;
  820. animation: show4 0.1s linear forwards 2.8s;
  821. }
  822. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(5) {
  823. width: 0.66rem;
  824. height: 0.66rem;
  825. animation: show4 0.1s linear forwards 2.9s;
  826. }
  827. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(6) {
  828. width: 0.7rem;
  829. height: 0.7rem;
  830. animation: show4 0.1s linear forwards 3s;
  831. }
  832. .main .main-right .lightning .lightning4 .jd4 ul li:nth-of-type(7) {
  833. width: 0.74rem;
  834. height: 0.74rem;
  835. animation: show4 0.1s linear forwards 3.1s;
  836. }
  837. .main .main-right .lightning .lightning4 .jd4 .box1 {
  838. width: 0.8rem;
  839. height: 40%;
  840. background-color: #00e4c8;
  841. margin-right: 5%;
  842. margin-top: 20%;
  843. border-radius: 0.8rem;
  844. opacity: 0;
  845. animation: show4 0.1s linear forwards 3.2s;
  846. }
  847. .main .main-right .lightning .lightning4 .jd4 .box2 {
  848. width: 0.8rem;
  849. height: 60%;
  850. background-color: #00e4c8;
  851. margin-top: 15%;
  852. margin-right: 5%;
  853. border-radius: 0.8rem;
  854. opacity: 0;
  855. animation: show4 0.1s linear forwards 3.3s;
  856. }
  857. .main .main-right .lightning .lightning4 .sd4 {
  858. width: 55%;
  859. height: 100%;
  860. }
  861. .main .main-right .top6 {
  862. width: 100%;
  863. height: 30%;
  864. position: relative;
  865. }
  866. .main .main-right .top6 ul {
  867. width: 60%;
  868. height: 100%;
  869. position: absolute;
  870. left: 150%;
  871. top: 0;
  872. transform: translateX(-50%);
  873. animation: animate2 1s linear forwards 7s;
  874. }
  875. .main .main-right .top6 ul li {
  876. float: left;
  877. width: 30%;
  878. height: 100%;
  879. margin: 0 1.5%;
  880. }
  881. .main .main-right .top6 ul li:nth-of-type(1) {
  882. background: url(../images/4.png) no-repeat center bottom;
  883. background-size: 70%;
  884. }
  885. .main .main-right .top6 ul li:nth-of-type(1) .title {
  886. width: 100%;
  887. text-align: center;
  888. color: #cab636;
  889. font-size: 0.8rem;
  890. margin-top: 60%;
  891. }
  892. .main .main-right .top6 ul li:nth-of-type(1) .content {
  893. width: 100%;
  894. text-align: center;
  895. color: #fff;
  896. margin-top: 10%;
  897. }
  898. .main .main-right .top6 ul li:nth-of-type(1) .content p {
  899. font-size: 0.3rem;
  900. }
  901. .main .main-right .top6 ul li:nth-of-type(1) .content span {
  902. font-size: 0.5rem;
  903. display: block;
  904. }
  905. .main .main-right .top6 ul li:nth-of-type(2) {
  906. background: url(../images/5.png) no-repeat center bottom;
  907. background-size: 70%;
  908. }
  909. .main .main-right .top6 ul li:nth-of-type(2) .title {
  910. width: 100%;
  911. text-align: center;
  912. color: #028e4f;
  913. font-size: 0.8rem;
  914. margin-top: 78%;
  915. }
  916. .main .main-right .top6 ul li:nth-of-type(2) .content {
  917. width: 100%;
  918. text-align: center;
  919. color: #fff;
  920. margin-top: 10%;
  921. }
  922. .main .main-right .top6 ul li:nth-of-type(2) .content p {
  923. font-size: 0.3rem;
  924. }
  925. .main .main-right .top6 ul li:nth-of-type(2) .content span {
  926. font-size: 0.5rem;
  927. display: block;
  928. }
  929. .main .main-right .top6 ul li:nth-of-type(3) {
  930. background: url(../images/6.png) no-repeat center bottom;
  931. background-size: 70%;
  932. }
  933. .main .main-right .top6 ul li:nth-of-type(3) .title {
  934. width: 100%;
  935. text-align: center;
  936. color: #01a893;
  937. font-size: 0.8rem;
  938. margin-top: 95%;
  939. }
  940. .main .main-right .top6 ul li:nth-of-type(3) .content {
  941. width: 100%;
  942. text-align: center;
  943. color: #fff;
  944. margin-top: 10%;
  945. }
  946. .main .main-right .top6 ul li:nth-of-type(3) .content p {
  947. font-size: 0.3rem;
  948. }
  949. .main .main-right .top6 ul li:nth-of-type(3) .content span {
  950. font-size: 0.3rem;
  951. display: block;
  952. }
  953. .bottom {
  954. width: 100%;
  955. height: 30%;
  956. position: relative;
  957. overflow: hidden;
  958. }
  959. .bottom .ul-box {
  960. width: 200%;
  961. height: 100%;
  962. position: relative;
  963. animation: move 10s linear infinite 12s;
  964. }
  965. .bottom .ul-box ul {
  966. float: left;
  967. width: 50%;
  968. height: 100%;
  969. }
  970. .bottom .ul-box ul li {
  971. width: 30%;
  972. height: 100%;
  973. margin: 0 1.5%;
  974. background: url(../images/di.png) no-repeat center bottom;
  975. background-size: 50%;
  976. float: left;
  977. }
  978. .bottom .ul-box ul li .li-content {
  979. opacity: 0;
  980. position: relative;
  981. width: 100%;
  982. height: 60%;
  983. background: url(../images/bg.png) no-repeat center;
  984. background-size: contain;
  985. overflow: hidden;
  986. animation: show5 1s linear forwards 8.5s;
  987. }
  988. .bottom .ul-box ul li .li-content p {
  989. width: 100%;
  990. height: 20%;
  991. text-align: center;
  992. color: #fff;
  993. display: table;
  994. }
  995. .bottom .ul-box ul li .li-content p span {
  996. display: table-cell;
  997. vertical-align: middle;
  998. }
  999. .bottom .ul-box ul li .li-content p:nth-of-type(1) {
  1000. margin-top: 10%;
  1001. }
  1002. .bottom .ul-box ul li .li-content p:nth-of-type(2) {
  1003. font-family: '液晶数字字体';
  1004. font-size: 1.5rem;
  1005. }
  1006. .bottom .ul-box ul li .li-content .li-box {
  1007. position: absolute;
  1008. width: 70%;
  1009. height: 80%;
  1010. left: 50%;
  1011. top: 50%;
  1012. transform: translate(-50%, -50%);
  1013. }
  1014. .bottom .ul-box ul li .li-content .li-box .box1,
  1015. .bottom .ul-box ul li .li-content .li-box .box2,
  1016. .bottom .ul-box ul li .li-content .li-box .box3,
  1017. .bottom .ul-box ul li .li-content .li-box .box4 {
  1018. width: 23%;
  1019. height: 50%;
  1020. position: absolute;
  1021. }
  1022. .bottom .ul-box ul li .li-content .li-box .box1 h5,
  1023. .bottom .ul-box ul li .li-content .li-box .box2 h5,
  1024. .bottom .ul-box ul li .li-content .li-box .box3 h5,
  1025. .bottom .ul-box ul li .li-content .li-box .box4 h5 {
  1026. height: 50%;
  1027. color: #fff;
  1028. font-size: 0.7rem;
  1029. font-weight: normal;
  1030. display: table;
  1031. }
  1032. .bottom .ul-box ul li .li-content .li-box .box1 h5 span,
  1033. .bottom .ul-box ul li .li-content .li-box .box2 h5 span,
  1034. .bottom .ul-box ul li .li-content .li-box .box3 h5 span,
  1035. .bottom .ul-box ul li .li-content .li-box .box4 h5 span {
  1036. display: table-cell;
  1037. vertical-align: middle;
  1038. }
  1039. .bottom .ul-box ul li .li-content .li-box .box1 .pic,
  1040. .bottom .ul-box ul li .li-content .li-box .box2 .pic,
  1041. .bottom .ul-box ul li .li-content .li-box .box3 .pic,
  1042. .bottom .ul-box ul li .li-content .li-box .box4 .pic {
  1043. width: 100%;
  1044. height: 50%;
  1045. color: #fff;
  1046. font-size: 0.7rem;
  1047. }
  1048. .bottom .ul-box ul li .li-content .li-box .box1 .pic img,
  1049. .bottom .ul-box ul li .li-content .li-box .box2 .pic img,
  1050. .bottom .ul-box ul li .li-content .li-box .box3 .pic img,
  1051. .bottom .ul-box ul li .li-content .li-box .box4 .pic img {
  1052. width: 1rem;
  1053. vertical-align: bottom;
  1054. margin-right: 5%;
  1055. }
  1056. .bottom .ul-box ul li .li-content .li-box .box1 {
  1057. left: 0;
  1058. top: 0;
  1059. }
  1060. .bottom .ul-box ul li .li-content .li-box .box2 {
  1061. right: 0;
  1062. top: 0;
  1063. }
  1064. .bottom .ul-box ul li .li-content .li-box .box3 {
  1065. left: 0;
  1066. bottom: 0;
  1067. }
  1068. .bottom .ul-box ul li .li-content .li-box .box4 {
  1069. right: 0;
  1070. bottom: 0;
  1071. }
  1072. .bottom .ul-box ul li:nth-of-type(1) {
  1073. transform: translateY(100%);
  1074. animation: di2 1s linear forwards 7s;
  1075. }
  1076. .bottom .ul-box ul li:nth-of-type(2) {
  1077. transform: translateY(100%);
  1078. animation: di2 1s linear forwards 7s;
  1079. }
  1080. .bottom .ul-box ul li:nth-of-type(3) {
  1081. transform: translateY(100%);
  1082. animation: di2 1s linear forwards 7s;
  1083. }
  1084. @keyframes show1 {
  1085. 0% {
  1086. opacity: 0;
  1087. }
  1088. 100% {
  1089. opacity: 0.25;
  1090. }
  1091. }
  1092. @keyframes show2 {
  1093. 0% {
  1094. opacity: 0;
  1095. }
  1096. 100% {
  1097. opacity: 0.5;
  1098. }
  1099. }
  1100. @keyframes show3 {
  1101. 0% {
  1102. opacity: 0;
  1103. }
  1104. 100% {
  1105. opacity: 0.75;
  1106. }
  1107. }
  1108. @keyframes show4 {
  1109. 0% {
  1110. opacity: 0;
  1111. }
  1112. 100% {
  1113. opacity: 1;
  1114. }
  1115. }
  1116. @keyframes zoomIn {
  1117. 0% {
  1118. opacity: 0;
  1119. -webkit-transform: scale3d(0.3, 0.3, 0.3);
  1120. transform: scale3d(0.3, 0.3, 0.3);
  1121. }
  1122. 100% {
  1123. opacity: 1;
  1124. }
  1125. }
  1126. @keyframes come1 {
  1127. 0% {
  1128. opacity: 0;
  1129. left: 40%;
  1130. }
  1131. 100% {
  1132. opacity: 1;
  1133. left: 0;
  1134. }
  1135. }
  1136. @keyframes come2 {
  1137. 0% {
  1138. opacity: 0;
  1139. right: 40%;
  1140. }
  1141. 100% {
  1142. opacity: 1;
  1143. right: 0;
  1144. }
  1145. }
  1146. @keyframes come3 {
  1147. 0% {
  1148. opacity: 0;
  1149. top: 40%;
  1150. }
  1151. 100% {
  1152. opacity: 1;
  1153. top: 15%;
  1154. }
  1155. }
  1156. @keyframes come4 {
  1157. 0% {
  1158. opacity: 0;
  1159. bottom: 40%;
  1160. }
  1161. 100% {
  1162. opacity: 1;
  1163. bottom: 10%;
  1164. }
  1165. }
  1166. @keyframes rotate1 {
  1167. 0% {
  1168. transform: translateY(-50%) rotateY(0);
  1169. }
  1170. 100% {
  1171. transform: translateY(-50%) rotateY(360deg);
  1172. }
  1173. }
  1174. @keyframes inner1 {
  1175. 0% {
  1176. left: 40%;
  1177. opacity: 0;
  1178. }
  1179. 100% {
  1180. left: 10%;
  1181. opacity: 1;
  1182. }
  1183. }
  1184. @keyframes inner2 {
  1185. 0% {
  1186. right: 40%;
  1187. opacity: 0;
  1188. }
  1189. 100% {
  1190. right: 10%;
  1191. opacity: 1;
  1192. }
  1193. }
  1194. @keyframes arrow1 {
  1195. 0% {
  1196. opacity: 0.2;
  1197. left: 10%;
  1198. }
  1199. 100% {
  1200. opacity: 1;
  1201. left: 15%;
  1202. }
  1203. }
  1204. @keyframes arrow2 {
  1205. 0% {
  1206. opacity: 0.2;
  1207. right: 10%;
  1208. }
  1209. 100% {
  1210. opacity: 1;
  1211. right: 15%;
  1212. }
  1213. }
  1214. @keyframes meter {
  1215. 0% {
  1216. opacity: 0;
  1217. transform: translate(-50%, -50%) scale(0) rotate(0);
  1218. }
  1219. 40% {
  1220. opacity: 1;
  1221. transform: translate(-50%, -50%) scale(0.8) rotate(360deg);
  1222. }
  1223. 80% {
  1224. opacity: 1;
  1225. transform: translate(-50%, -50%) scale(0.8) rotate(540deg);
  1226. }
  1227. 100% {
  1228. opacity: 1;
  1229. transform: translate(-50%, -50%) scale(1) rotate(540deg);
  1230. }
  1231. }
  1232. @keyframes animate {
  1233. 0% {
  1234. opacity: 0;
  1235. }
  1236. 100% {
  1237. opacity: .7;
  1238. }
  1239. }
  1240. @keyframes sale {
  1241. from {
  1242. opacity: 0;
  1243. -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  1244. transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
  1245. -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1246. animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  1247. }
  1248. 60% {
  1249. opacity: 1;
  1250. -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  1251. transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
  1252. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  1253. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  1254. }
  1255. 100% {
  1256. opacity: 1;
  1257. -webkit-transform: scale3d(1, 1, 1) translate3d(0, 60px, 0);
  1258. transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  1259. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  1260. animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  1261. }
  1262. }
  1263. @keyframes animate1 {
  1264. 0% {
  1265. left: -50%;
  1266. }
  1267. 100% {
  1268. left: 50%;
  1269. }
  1270. }
  1271. @keyframes animate2 {
  1272. 0% {
  1273. left: 150%;
  1274. }
  1275. 100% {
  1276. left: 50%;
  1277. }
  1278. }
  1279. @keyframes di2 {
  1280. 0% {
  1281. transform: translateY(100%);
  1282. }
  1283. 100% {
  1284. transform: translateY(0);
  1285. }
  1286. }
  1287. @keyframes show5 {
  1288. 0% {
  1289. opacity: 0;
  1290. transform: translateY(100%) scale(0);
  1291. }
  1292. 100% {
  1293. opacity: 1;
  1294. transform: translateY(0) scale(1);
  1295. }
  1296. }
  1297. @keyframes move {
  1298. 0% {
  1299. transform: translateX(0);
  1300. }
  1301. 100% {
  1302. transform: translateX(-50%);
  1303. }
  1304. }