index.css 16 KB

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