index.css 15 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274
  1. html,
  2. body,
  3. h1,
  4. h2,
  5. h3,
  6. h4,
  7. h5,
  8. h6,
  9. p,
  10. ul,
  11. li,
  12. div,
  13. section {
  14. padding: 0;
  15. margin: 0;
  16. }
  17. html,
  18. body {
  19. width: 100%;
  20. height: 100%;
  21. font-family: "微软雅黑";
  22. }
  23. .waitting {
  24. z-index: 99;
  25. background-color: #7f943d;
  26. }
  27. .pacman {
  28. position: absolute;
  29. top:50%;
  30. left:50%;
  31. transform: translate(-50%,-50%);
  32. }
  33. @-webkit-keyframes rotate_pacman_half_up {
  34. 0% {
  35. -webkit-transform: rotate(270deg);
  36. transform: rotate(270deg);
  37. }
  38. 50% {
  39. -webkit-transform: rotate(360deg);
  40. transform: rotate(360deg);
  41. }
  42. 100% {
  43. -webkit-transform: rotate(270deg);
  44. transform: rotate(270deg);
  45. }
  46. }
  47. @keyframes rotate_pacman_half_up {
  48. 0% {
  49. -webkit-transform: rotate(270deg);
  50. transform: rotate(270deg);
  51. }
  52. 50% {
  53. -webkit-transform: rotate(360deg);
  54. transform: rotate(360deg);
  55. }
  56. 100% {
  57. -webkit-transform: rotate(270deg);
  58. transform: rotate(270deg);
  59. }
  60. }
  61. @-webkit-keyframes rotate_pacman_half_down {
  62. 0% {
  63. -webkit-transform: rotate(90deg);
  64. transform: rotate(90deg);
  65. }
  66. 50% {
  67. -webkit-transform: rotate(0deg);
  68. transform: rotate(0deg);
  69. }
  70. 100% {
  71. -webkit-transform: rotate(90deg);
  72. transform: rotate(90deg);
  73. }
  74. }
  75. @keyframes rotate_pacman_half_down {
  76. 0% {
  77. -webkit-transform: rotate(90deg);
  78. transform: rotate(90deg);
  79. }
  80. 50% {
  81. -webkit-transform: rotate(0deg);
  82. transform: rotate(0deg);
  83. }
  84. 100% {
  85. -webkit-transform: rotate(90deg);
  86. transform: rotate(90deg);
  87. }
  88. }
  89. @-webkit-keyframes pacman-balls {
  90. 75% {
  91. opacity: 0.7;
  92. }
  93. 100% {
  94. -webkit-transform: translate(-100px, -6.25px);
  95. transform: translate(-100px, -6.25px);
  96. }
  97. }
  98. @keyframes pacman-balls {
  99. 75% {
  100. opacity: 0.7;
  101. }
  102. 100% {
  103. -webkit-transform: translate(-100px, -6.25px);
  104. transform: translate(-100px, -6.25px);
  105. }
  106. }
  107. .pacman>div:nth-child(2) {
  108. -webkit-animation: pacman-balls 1s 0s infinite linear;
  109. animation: pacman-balls 1s 0s infinite linear;
  110. }
  111. .pacman>div:nth-child(3) {
  112. -webkit-animation: pacman-balls 1s 0.33s infinite linear;
  113. animation: pacman-balls 1s 0.33s infinite linear;
  114. }
  115. .pacman>div:nth-child(4) {
  116. -webkit-animation: pacman-balls 1s 0.66s infinite linear;
  117. animation: pacman-balls 1s 0.66s infinite linear;
  118. }
  119. .pacman>div:nth-child(5) {
  120. -webkit-animation: pacman-balls 1s 0.99s infinite linear;
  121. animation: pacman-balls 1s 0.99s infinite linear;
  122. }
  123. .pacman>div:first-of-type {
  124. width: 0px;
  125. height: 0px;
  126. border-right: 25px solid transparent;
  127. border-top: 25px solid #fff;
  128. border-left: 25px solid #fff;
  129. border-bottom: 25px solid #fff;
  130. border-radius: 25px;
  131. -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  132. animation: rotate_pacman_half_up 0.5s 0s infinite;
  133. }
  134. .pacman>div:nth-child(2) {
  135. width: 0px;
  136. height: 0px;
  137. border-right: 25px solid transparent;
  138. border-top: 25px solid #fff;
  139. border-left: 25px solid #fff;
  140. border-bottom: 25px solid #fff;
  141. border-radius: 25px;
  142. -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  143. animation: rotate_pacman_half_down 0.5s 0s infinite;
  144. margin-top: -50px;
  145. }
  146. .pacman>div:nth-child(3),
  147. .pacman>div:nth-child(4),
  148. .pacman>div:nth-child(5),
  149. .pacman>div:nth-child(6) {
  150. background-color: #fff;
  151. width: 15px;
  152. height: 15px;
  153. border-radius: 100%;
  154. margin: 2px;
  155. width: 10px;
  156. height: 10px;
  157. position: absolute;
  158. -webkit-transform: translate(0, -6.25px);
  159. -ms-transform: translate(0, -6.25px);
  160. transform: translate(0, -6.25px);
  161. top: 25px;
  162. left: 100px;
  163. }
  164. .wait-text{
  165. display:block;
  166. color:#fff;
  167. font-size:12px;
  168. margin-top:20px;
  169. }
  170. .all {
  171. position: relative;
  172. width: 100%;
  173. height: 100%;
  174. }
  175. .all section {
  176. position: absolute;
  177. }
  178. .ren-text{
  179. width:20vw;
  180. float:right;
  181. color:#fff;
  182. font-size:14px;
  183. position:absolute;
  184. z-index:2;
  185. right:0;
  186. top:10px;
  187. }
  188. .full {
  189. position: absolute;
  190. top: 0;
  191. left: 0;
  192. bottom: 0;
  193. right: 0;
  194. }
  195. .bg {
  196. background-repeat: repeat-y;
  197. background-size: 100vw 177vw;
  198. background-image: url(../img/bg.png);
  199. background-position-x: center;
  200. animation: bg 6s infinite linear;
  201. }
  202. @keyframes bg {
  203. 0% {
  204. background-position-y: 0;
  205. }
  206. 100% {
  207. background-position-y: -177vw;
  208. }
  209. }
  210. .line {
  211. position: absolute;
  212. width: 1vw;
  213. top: 10%;
  214. bottom: 5%;
  215. background: url(../img/line.png) repeat center top;
  216. background-size: 100% auto;
  217. }
  218. .l2 {
  219. left: 35%;
  220. }
  221. .l3 {
  222. left: 65%;
  223. }
  224. #renBox {
  225. z-index: 11;
  226. }
  227. .ren-box{
  228. bottom:2vh;
  229. }
  230. .ren-num {
  231. position:absolute;
  232. bottom:0;
  233. width: 25vw;
  234. height: 5vw;
  235. text-align: center;
  236. box-sizing: border-box;
  237. line-height: 5vw;
  238. /* background-color: rgba(255, 255, 255, 0.8); */
  239. border-radius: 50%;
  240. font-size: 3vw;
  241. }
  242. .ren-num>span {
  243. font-size: 5vw;
  244. }
  245. .ren1 {
  246. left: 7vw;
  247. }
  248. .ren2 {
  249. left: 42vw;
  250. }
  251. .ren3 {
  252. left: 73vw;
  253. }
  254. .time {
  255. width: 20vw;
  256. height: 20vw;
  257. border: 5px solid #FEDE82;
  258. border-radius: 50%;
  259. background-color: #fff;
  260. top: 1vw;
  261. left: 3vw;
  262. z-index: 3;
  263. line-height: 20vw;
  264. text-align: center;
  265. font-size: 11vw;
  266. color: #ff5216;
  267. }
  268. .question-box {
  269. top: 10vw;
  270. width: 92vw;
  271. background: url(../img/qus-top.png) no-repeat center top;
  272. background-size: auto 11vw;
  273. left: 4vw;
  274. }
  275. #go,
  276. #renBox,
  277. #endBox,
  278. #fail,
  279. #success {
  280. display: none;
  281. }
  282. .question {
  283. box-sizing: border-box;
  284. border: 5px solid #fede82;
  285. border-radius: 5vw;
  286. background-color: rgba(0, 0, 0, 0.8);
  287. width: 100%;
  288. min-height: 30vw;
  289. margin-top: 10vw;
  290. padding: 10px;
  291. padding-bottom: 5vw;
  292. color: #fff;
  293. line-height: 1.8;
  294. }
  295. .question>img {
  296. width: 100%;
  297. height: auto;
  298. display: block;
  299. margin: 0 auto;
  300. }
  301. .text {
  302. position: absolute;
  303. width: 30vw;
  304. height: 9.7vw;
  305. background: url(../img/text-bg.png) no-repeat center center;
  306. background-size: contain;
  307. bottom: -4vw;
  308. left: 31vw;
  309. font-size: 18px;
  310. text-align: center;
  311. line-height: 9.7vw;
  312. }
  313. .box {
  314. position: absolute;
  315. left: 5%;
  316. width: 90%;
  317. top: 10%;
  318. bottom: 20%;
  319. /* padding:0 1vw;
  320. height:119vw;
  321. overflow:hidden; */
  322. }
  323. .answer-box {
  324. width: 90%;
  325. left: 5%;
  326. bottom: 10vw;
  327. z-index: 12;
  328. }
  329. .ans {
  330. position: absolute;
  331. bottom: 0;
  332. width: 20vw;
  333. height: 20vw;
  334. border-radius: 50%;
  335. border: 3px solid #FEDE82;
  336. font-size: 12vw;
  337. text-align: center;
  338. line-height: 20vw;
  339. color: #fff;
  340. font-weight: bold;
  341. overflow: hidden;
  342. }
  343. .ans.active {
  344. transform: translate(3px, 3px);
  345. -webkit-transform: translate(3px, 3px);
  346. }
  347. .ans.active:before {
  348. content: "";
  349. position: absolute;
  350. background: rgba(0, 0, 0, 0.3);
  351. top: 0;
  352. bottom: 0;
  353. left: 0;
  354. right: 0;
  355. }
  356. .ans-1 {
  357. left: 5vw;
  358. background-color: #f27d68;
  359. }
  360. .ans-2 {
  361. left: 35vw;
  362. background-color: #008aa2;
  363. }
  364. .ans-3 {
  365. left: 65vw;
  366. background-color: #be4b46;
  367. }
  368. .trapbox {
  369. display: none;
  370. }
  371. .trap {
  372. position: absolute;
  373. bottom: 5%;
  374. width: 35vw;
  375. height: 32vw;
  376. background-repeat: no-repeat;
  377. background-position: center;
  378. background-size: 95% auto;
  379. animation: ani 2s both linear;
  380. z-index: 11;
  381. }
  382. .trap.r0 {
  383. left: 0
  384. }
  385. .trap.r1 {
  386. left: 35vw;
  387. }
  388. .trap.r2 {
  389. left: 62vw;
  390. }
  391. .trap1 {
  392. background-image: url(../img/trap1.png);
  393. }
  394. .trap2 {
  395. background-image: url(../img/trap2.png);
  396. }
  397. .trap3 {
  398. background-image: url(../img/trap3.png);
  399. }
  400. .trap4 {
  401. background-image: url(../img/trap4.png);
  402. }
  403. @keyframes ani {
  404. 0% {
  405. transform: translateY(0);
  406. }
  407. 100% {
  408. transform: translateY(-200vw);
  409. }
  410. }
  411. .end-box {
  412. z-index: 12;
  413. background: rgba(0, 0, 0, 0.8);
  414. }
  415. .end-box:before {
  416. content: "";
  417. position: absolute;
  418. top: 20vh;
  419. left: 10vw;
  420. width: 80vw;
  421. height: 5vh;
  422. background: url(../img/qus-top.png) no-repeat center top;
  423. background-size: auto 5vh;
  424. }
  425. .end {
  426. margin: 25vh auto 0;
  427. background-color: #fede82;
  428. height: 60vw;
  429. width: 80vw;
  430. border-radius: 5vw;
  431. box-sizing: border-box;
  432. padding: 20vw 5px;
  433. line-height: 10vw;
  434. font-size: 6vw;
  435. text-align: center;
  436. color: #FF5216;
  437. font-weight: bold;
  438. }
  439. .figure {
  440. width: 10vw;
  441. height: 10vw;
  442. background-repeat: no-repeat;
  443. background-image: url(../img/figure.png);
  444. background-size: 50vw auto;
  445. position: absolute;
  446. transition: all 1s;
  447. left: -20vw;
  448. bottom: 100vh;
  449. }
  450. .figure.err {
  451. transform: translateY(-100vh);
  452. -webkit-transform: translateY(-100vh);
  453. transition: all 2s linear;
  454. }
  455. .figure.me {
  456. z-index: 10;
  457. }
  458. .figure.me:before,
  459. .figure.me:after {
  460. z-index: 9;
  461. content: "";
  462. position: absolute;
  463. left: 0vw;
  464. }
  465. .figure.me:before {
  466. content: "me";
  467. top: -12vw;
  468. width: 10vw;
  469. height: 10vw;
  470. background-color: #fff;
  471. border-radius: 50%;
  472. z-index: 10;
  473. font-size: 4.5vw;
  474. line-height: 10vw;
  475. text-align: center;
  476. font-weight: bold;
  477. color: #a8483b;
  478. }
  479. .figure.me:after {
  480. top: -6vw;
  481. border-top: 7vw solid #fff;
  482. border-left: 5vw solid transparent;
  483. border-right: 5vw solid transparent;
  484. }
  485. .f1 {
  486. background-position: 1vw -1.5vw;
  487. }
  488. .f2 {
  489. background-position: -9vw -1.5vw;
  490. }
  491. .f3 {
  492. background-position: -17.5vw 0;
  493. background-size: 45vw auto;
  494. }
  495. .f4 {
  496. background-position: -30vw -1.5vw;
  497. }
  498. .f5 {
  499. background-position: -40.8vw -1.5vw;
  500. }
  501. .f6 {
  502. background-position: 1vw -12vw;
  503. }
  504. .f7 {
  505. background-position: -9vw -12vw;
  506. }
  507. .f8 {
  508. background-position: -20vw -12vw;
  509. }
  510. .f9 {
  511. background-position: -30vw -12vw;
  512. }
  513. .f10 {
  514. background-position: -40.5vw -12vw;
  515. }
  516. .f11 {
  517. background-position: 1vw -22.8vw;
  518. }
  519. .f12 {
  520. background-position: -9vw -22.8vw;
  521. }
  522. .f13 {
  523. background-position: -20vw -22.8vw;
  524. }
  525. .f14 {
  526. background-position: -30vw -22.8vw;
  527. }
  528. .f15 {
  529. background-position: -40.8vw -22.8vw;
  530. }
  531. .f16 {
  532. background-position: 1vw -33vw;
  533. }
  534. .f17 {
  535. background-position: -9vw -33vw;
  536. }
  537. .f18 {
  538. background-position: -20vw -33vw;
  539. }
  540. .f19 {
  541. background-position: -30vw -33vw;
  542. }
  543. .f20 {
  544. background-position: -40.8vw -33vw;
  545. }
  546. .d0-0 {
  547. bottom: 0vw;
  548. left: 20vw;
  549. }
  550. .d0-1 {
  551. bottom: 0vw;
  552. left: 10vw;
  553. }
  554. .d0-2 {
  555. bottom: 0vw;
  556. left: 0vw;
  557. }
  558. .d0-3 {
  559. bottom: 10vw;
  560. left: 20vw;
  561. }
  562. .d0-4 {
  563. bottom: 10vw;
  564. left: 10vw;
  565. }
  566. .d0-5 {
  567. bottom: 10vw;
  568. left: 0vw;
  569. }
  570. .d0-6 {
  571. bottom: 20vw;
  572. left: 20vw;
  573. }
  574. .d0-7 {
  575. bottom: 20vw;
  576. left: 10vw;
  577. }
  578. .d0-8 {
  579. bottom: 20vw;
  580. left: 0vw;
  581. }
  582. .d0-9 {
  583. bottom: 30vw;
  584. left: 20vw;
  585. }
  586. .d0-10 {
  587. bottom: 30vw;
  588. left: 10vw;
  589. }
  590. .d0-11 {
  591. bottom: 30vw;
  592. left: 0vw;
  593. }
  594. .d0-12 {
  595. bottom: 40vw;
  596. left: 20vw;
  597. }
  598. .d0-13 {
  599. bottom: 40vw;
  600. left: 10vw;
  601. }
  602. .d0-14 {
  603. bottom: 40vw;
  604. left: 0vw;
  605. }
  606. .d0-15 {
  607. bottom: 50vw;
  608. left: 20vw;
  609. }
  610. .d0-16 {
  611. bottom: 50vw;
  612. left: 10vw;
  613. }
  614. .d0-17 {
  615. bottom: 50vw;
  616. left: 0vw;
  617. }
  618. .d0-18 {
  619. bottom: 60vw;
  620. left: 20vw;
  621. }
  622. .d0-19 {
  623. bottom: 60vw;
  624. left: 10vw;
  625. }
  626. .d0-20 {
  627. bottom: 60vw;
  628. left: 0vw;
  629. }
  630. .d0-21 {
  631. bottom: 70vw;
  632. left: 20vw;
  633. }
  634. .d0-22 {
  635. bottom: 70vw;
  636. left: 10vw;
  637. }
  638. .d0-23 {
  639. bottom: 70vw;
  640. left: 0vw;
  641. }
  642. .d0-24 {
  643. bottom: 80vw;
  644. left: 20vw;
  645. }
  646. .d0-25 {
  647. bottom: 80vw;
  648. left: 10vw;
  649. }
  650. .d0-26 {
  651. bottom: 80vw;
  652. left: 0vw;
  653. }
  654. .d0-27 {
  655. bottom: 90vw;
  656. left: 20vw;
  657. }
  658. .d0-28 {
  659. bottom: 90vw;
  660. left: 10vw;
  661. }
  662. .d0-29 {
  663. bottom: 90vw;
  664. left: 0vw;
  665. }
  666. .d0-30 {
  667. bottom: 100vw;
  668. left: 20vw;
  669. }
  670. .d0-31 {
  671. bottom: 100vw;
  672. left: 10vw;
  673. }
  674. .d0-32 {
  675. bottom: 100vw;
  676. left: 0vw;
  677. }
  678. .d0-33 {
  679. bottom: 110vw;
  680. left: 20vw;
  681. }
  682. .d0-34 {
  683. bottom: 110vw;
  684. left: 10vw;
  685. }
  686. .d0-35 {
  687. bottom: 110vw;
  688. left: 0vw;
  689. }
  690. .d0-36 {
  691. bottom: 120vw;
  692. left: 20vw;
  693. }
  694. .d0-37 {
  695. bottom: 120vw;
  696. left: 10vw;
  697. }
  698. .d0-38 {
  699. bottom: 120vw;
  700. left: 0vw;
  701. }
  702. .d0-39 {
  703. bottom: 130vw;
  704. left: 20vw;
  705. }
  706. .d0-40 {
  707. bottom: 130vw;
  708. left: 10vw;
  709. }
  710. .d0-41 {
  711. bottom: 130vw;
  712. left: 0vw;
  713. }
  714. .d1-0 {
  715. bottom: 0vw;
  716. left: 50vw;
  717. }
  718. .d1-1 {
  719. bottom: 0vw;
  720. left: 40vw;
  721. }
  722. .d1-2 {
  723. bottom: 0vw;
  724. left: 30vw;
  725. }
  726. .d1-3 {
  727. bottom: 10vw;
  728. left: 50vw;
  729. }
  730. .d1-4 {
  731. bottom: 10vw;
  732. left: 40vw;
  733. }
  734. .d1-5 {
  735. bottom: 10vw;
  736. left: 30vw;
  737. }
  738. .d1-6 {
  739. bottom: 20vw;
  740. left: 50vw;
  741. }
  742. .d1-7 {
  743. bottom: 20vw;
  744. left: 40vw;
  745. }
  746. .d1-8 {
  747. bottom: 20vw;
  748. left: 30vw;
  749. }
  750. .d1-9 {
  751. bottom: 30vw;
  752. left: 50vw;
  753. }
  754. .d1-10 {
  755. bottom: 30vw;
  756. left: 40vw;
  757. }
  758. .d1-11 {
  759. bottom: 30vw;
  760. left: 30vw;
  761. }
  762. .d1-12 {
  763. bottom: 40vw;
  764. left: 50vw;
  765. }
  766. .d1-13 {
  767. bottom: 40vw;
  768. left: 40vw;
  769. }
  770. .d1-14 {
  771. bottom: 40vw;
  772. left: 30vw;
  773. }
  774. .d1-15 {
  775. bottom: 50vw;
  776. left: 50vw;
  777. }
  778. .d1-16 {
  779. bottom: 50vw;
  780. left: 40vw;
  781. }
  782. .d1-17 {
  783. bottom: 50vw;
  784. left: 30vw;
  785. }
  786. .d1-18 {
  787. bottom: 60vw;
  788. left: 50vw;
  789. }
  790. .d1-19 {
  791. bottom: 60vw;
  792. left: 40vw;
  793. }
  794. .d1-20 {
  795. bottom: 60vw;
  796. left: 30vw;
  797. }
  798. .d1-21 {
  799. bottom: 70vw;
  800. left: 50vw;
  801. }
  802. .d1-22 {
  803. bottom: 70vw;
  804. left: 40vw;
  805. }
  806. .d1-23 {
  807. bottom: 70vw;
  808. left: 30vw;
  809. }
  810. .d1-24 {
  811. bottom: 80vw;
  812. left: 50vw;
  813. }
  814. .d1-25 {
  815. bottom: 80vw;
  816. left: 40vw;
  817. }
  818. .d1-26 {
  819. bottom: 80vw;
  820. left: 30vw;
  821. }
  822. .d1-27 {
  823. bottom: 90vw;
  824. left: 50vw;
  825. }
  826. .d1-28 {
  827. bottom: 90vw;
  828. left: 40vw;
  829. }
  830. .d1-29 {
  831. bottom: 90vw;
  832. left: 30vw;
  833. }
  834. .d1-30 {
  835. bottom: 100vw;
  836. left: 50vw;
  837. }
  838. .d1-31 {
  839. bottom: 100vw;
  840. left: 40vw;
  841. }
  842. .d1-32 {
  843. bottom: 100vw;
  844. left: 30vw;
  845. }
  846. .d1-33 {
  847. bottom: 110vw;
  848. left: 50vw;
  849. }
  850. .d1-34 {
  851. bottom: 110vw;
  852. left: 40vw;
  853. }
  854. .d1-35 {
  855. bottom: 110vw;
  856. left: 30vw;
  857. }
  858. .d1-36 {
  859. bottom: 120vw;
  860. left: 50vw;
  861. }
  862. .d1-37 {
  863. bottom: 120vw;
  864. left: 40vw;
  865. }
  866. .d1-38 {
  867. bottom: 120vw;
  868. left: 30vw;
  869. }
  870. .d1-39 {
  871. bottom: 130vw;
  872. left: 50vw;
  873. }
  874. .d1-40 {
  875. bottom: 130vw;
  876. left: 40vw;
  877. }
  878. .d1-41 {
  879. bottom: 130vw;
  880. left: 30vw;
  881. }
  882. .d2-0 {
  883. bottom: 0vw;
  884. left: 81vw;
  885. }
  886. .d2-1 {
  887. bottom: 0vw;
  888. left: 71vw;
  889. }
  890. .d2-2 {
  891. bottom: 0vw;
  892. left: 61vw;
  893. }
  894. .d2-3 {
  895. bottom: 10vw;
  896. left: 81vw;
  897. }
  898. .d2-4 {
  899. bottom: 10vw;
  900. left: 71vw;
  901. }
  902. .d2-5 {
  903. bottom: 10vw;
  904. left: 61vw;
  905. }
  906. .d2-6 {
  907. bottom: 20vw;
  908. left: 81vw;
  909. }
  910. .d2-7 {
  911. bottom: 20vw;
  912. left: 71vw;
  913. }
  914. .d2-8 {
  915. bottom: 20vw;
  916. left: 61vw;
  917. }
  918. .d2-9 {
  919. bottom: 30vw;
  920. left: 81vw;
  921. }
  922. .d2-10 {
  923. bottom: 30vw;
  924. left: 71vw;
  925. }
  926. .d2-11 {
  927. bottom: 30vw;
  928. left: 61vw;
  929. }
  930. .d2-12 {
  931. bottom: 40vw;
  932. left: 81vw;
  933. }
  934. .d2-13 {
  935. bottom: 40vw;
  936. left: 71vw;
  937. }
  938. .d2-14 {
  939. bottom: 40vw;
  940. left: 61vw;
  941. }
  942. .d2-15 {
  943. bottom: 50vw;
  944. left: 81vw;
  945. }
  946. .d2-16 {
  947. bottom: 50vw;
  948. left: 71vw;
  949. }
  950. .d2-17 {
  951. bottom: 50vw;
  952. left: 61vw;
  953. }
  954. .d2-18 {
  955. bottom: 60vw;
  956. left: 81vw;
  957. }
  958. .d2-19 {
  959. bottom: 60vw;
  960. left: 71vw;
  961. }
  962. .d2-20 {
  963. bottom: 60vw;
  964. left: 61vw;
  965. }
  966. .d2-21 {
  967. bottom: 70vw;
  968. left: 81vw;
  969. }
  970. .d2-22 {
  971. bottom: 70vw;
  972. left: 71vw;
  973. }
  974. .d2-23 {
  975. bottom: 70vw;
  976. left: 61vw;
  977. }
  978. .d2-24 {
  979. bottom: 80vw;
  980. left: 81vw;
  981. }
  982. .d2-25 {
  983. bottom: 80vw;
  984. left: 71vw;
  985. }
  986. .d2-26 {
  987. bottom: 80vw;
  988. left: 61vw;
  989. }
  990. .d2-27 {
  991. bottom: 90vw;
  992. left: 81vw;
  993. }
  994. .d2-28 {
  995. bottom: 90vw;
  996. left: 71vw;
  997. }
  998. .d2-29 {
  999. bottom: 90vw;
  1000. left: 61vw;
  1001. }
  1002. .d2-30 {
  1003. bottom: 100vw;
  1004. left: 81vw;
  1005. }
  1006. .d2-31 {
  1007. bottom: 100vw;
  1008. left: 71vw;
  1009. }
  1010. .d2-32 {
  1011. bottom: 100vw;
  1012. left: 61vw;
  1013. }
  1014. .d2-33 {
  1015. bottom: 110vw;
  1016. left: 81vw;
  1017. }
  1018. .d2-34 {
  1019. bottom: 110vw;
  1020. left: 71vw;
  1021. }
  1022. .d2-35 {
  1023. bottom: 110vw;
  1024. left: 61vw;
  1025. }
  1026. .d2-36 {
  1027. bottom: 120vw;
  1028. left: 81vw;
  1029. }
  1030. .d2-37 {
  1031. bottom: 120vw;
  1032. left: 71vw;
  1033. }
  1034. .d2-38 {
  1035. bottom: 120vw;
  1036. left: 61vw;
  1037. }
  1038. .d2-39 {
  1039. bottom: 130vw;
  1040. left: 81vw;
  1041. }
  1042. .d2-40 {
  1043. bottom: 130vw;
  1044. left: 71vw;
  1045. }
  1046. .d2-41 {
  1047. bottom: 130vw;
  1048. left: 61vw;
  1049. }