style.less 41 KB

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