style.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  1. * {
  2. position: absolute;
  3. background-position: center center;
  4. background-repeat: no-repeat;
  5. background-size: 100%,100%;
  6. -webkit-tap-highlight-color:rgba(0,0,0,0);
  7. -webkit-tap-highlight-color:transparent;
  8. }
  9. html, body {
  10. width: 100%;
  11. height: 100%;
  12. padding: 0;
  13. margin: 0;
  14. overflow: hidden;
  15. font-size: 12px;
  16. }
  17. #content
  18. {
  19. width:100%;
  20. height:100%;
  21. }
  22. #pages {
  23. width: 100%;
  24. height: 100%;
  25. perspective: 500;
  26. -webkit-perspective: 500;
  27. }
  28. #load {
  29. width: 100%;
  30. height: 100%;
  31. background-color: #fbe8ab;
  32. z-index: 999;
  33. }
  34. #load .action1 {
  35. margin: auto;
  36. top: 0;
  37. bottom: 0;
  38. left: 0;
  39. right: 0;
  40. width: 167.5px;
  41. height: 85.5px;
  42. background-image: url(../image/load_1.png);
  43. transform: translate3d(0,-20px,0);
  44. -webkit-transform: translate3d(0,-20px,0);
  45. animation:sixth .1s infinite;
  46. -webkit-animation:sixth .1s infinite;
  47. }
  48. #load .action1.on
  49. {
  50. background-image: url(../image/load_1.png);
  51. }
  52. @keyframes sixth
  53. {
  54. 0%{transform: translate3d(0,-20px,0);background-image: url(../image/load_1.png)}
  55. 50%{transform: translate3d(0,-20px,0);background-image: url(../image/load_2.png)}
  56. 100%{transform: translate3d(0,-20px,0);background-image: url(../image/load_3.png)}
  57. }
  58. @-webkit-keyframes sixth
  59. {
  60. 0%{-webkit-transform: translate3d(0,-20px,0);background-image: url(../image/load_1.png)}
  61. 50%{-webkit-transform: translate3d(0,-20px,0);background-image: url(../image/load_2.png)}
  62. 100%{-webkit-transform: translate3d(0,-20px,0);background-image: url(../image/load_3.png)}
  63. }
  64. #load .action2 {
  65. margin: auto;
  66. top: 0;
  67. bottom: 0;
  68. left: 0;
  69. right: 0;
  70. width: 167.5px;
  71. height: 85.5px;
  72. background-image: url(../image/load_5.png);
  73. transform: translate3d(0,-20px,0);
  74. -webkit-transform: translate3d(0,-20px,0);
  75. animation:seventh .1s infinite;
  76. -webkit-animation:seventh .1s infinite;
  77. }
  78. #load .action2.on
  79. {
  80. background-image: url(../image/load_5.png);
  81. }
  82. @keyframes seventh
  83. {
  84. 0%{transform: translate3d(0,-20px,0) scale(1)}
  85. 25%{transform: translate3d(0,-20px,0) scale(1.03)}
  86. 50%{transform: translate3d(0,-20px,0) scale(1.06)}
  87. 75%{transform: translate3d(0,-20px,0) scale(1.1)}
  88. 100%{transform: translate3d(0,-20px,0) scale(1)}
  89. }
  90. @-webkit-keyframes seventh
  91. {
  92. 0%{-webkit-transform: translate3d(0,-20px,0) scale(1)}
  93. 25%{-webkit-transform: translate3d(0,-20px,0) scale(1.03)}
  94. 50%{-webkit-transform: translate3d(0,-20px,0) scale(1.06)}
  95. 75%{-webkit-transform: translate3d(0,-20px,0) scale(1.1)}
  96. 100%{-webkit-transform: translate3d(0,-20px,0) scale(1)}
  97. }
  98. #load .pic {
  99. margin: auto;
  100. top: 0;
  101. bottom: 0;
  102. left: 0;
  103. right: 0;
  104. width: 80px;
  105. height: 30px;
  106. background-image: url(../image/load_4.png);
  107. transform: translate3d(0,55px,0);
  108. -webkit-transform: translate3d(0,55px,0);
  109. }
  110. #load .text
  111. {
  112. margin: auto;
  113. top: 0;
  114. bottom: 0;
  115. left: 0;
  116. right: 0;
  117. width: 80px;
  118. height: 30px;
  119. color: #09242c;
  120. font-size: 20px;
  121. text-align: center;
  122. line-height: 30px;
  123. font-weight:600;
  124. transform: translate3d(0,35px,0);
  125. -webkit-transform: translate3d(0,35px,0);
  126. }
  127. #load.out {
  128. opacity: 0;
  129. height: 0;
  130. overflow: hidden;
  131. transition: all 0s;
  132. -webkit-transition: all 0s;
  133. }
  134. #bg {
  135. width: 100%;
  136. height: 100%;
  137. background-image: url(../image/bg.jpg);
  138. opacity: 0;
  139. }
  140. #bg.in {
  141. opacity: 1;
  142. transition: all .1s;
  143. -webkit-transition: all .1s;
  144. }
  145. #bgq {
  146. width: 100%;
  147. height: 100%;
  148. background-image: url(../image/bgq.jpg);
  149. display: none;
  150. }
  151. #fpage {
  152. width: 100%;
  153. height: 100%;
  154. opacity: 0;
  155. transform-origin: left;
  156. -webkit-transform-origin: left;
  157. transform-style: preserve-3d;
  158. -webkit-transform-style: preserve-3d;
  159. }
  160. #fpage.in {
  161. opacity: 1;
  162. transform: rotateY(0deg);
  163. -webkit-transform: rotateY(0deg);
  164. transition: all .5s;
  165. -webkit-transition: all .5s;
  166. }
  167. #fpage.out {
  168. opacity: 1;
  169. transform: rotateY(-90deg);
  170. -webkit-transform: rotateY(-90deg);
  171. overflow: hidden;
  172. transition: all 1s;
  173. -webkit-transition: all 1s;
  174. }
  175. #fpage .layer {
  176. width: 100%;
  177. height: 100%;
  178. }
  179. #begin {
  180. margin: auto;
  181. top: 0;
  182. bottom: 0;
  183. left: 0;
  184. right: 0;
  185. transform: translate3d(0,218px,0);
  186. -webkit-transform: translate3d(0,218px,0);
  187. width: 115px;
  188. height: 40px;
  189. background-image: url(../image/fp_8.png);
  190. display: none;
  191. }
  192. /*#fpage.in #begin
  193. {
  194. display:block;
  195. transition:all .5s 4s;
  196. -webkit-transition:all .5s 4s;
  197. }*/
  198. #fpage .foil {
  199. margin: auto;
  200. top: 0;
  201. bottom: 0;
  202. left: 0;
  203. right: 0;
  204. transform: translate3d(0,-95px,0) scale(.1);
  205. -webkit-transform: translate3d(0,-95px,0)scale(.1);
  206. width: 320px;
  207. height: 302px;
  208. background-image: url(../image/fp_1a.png);
  209. opacity: 0;
  210. }
  211. #fpage.in .foil {
  212. opacity: 1;
  213. transform: translate3d(0,-95px,0) scale(1);
  214. -webkit-transform: translate3d(0,-95px,0) scale(1);
  215. transition: all .5s .5s;
  216. -webkit-transition: all .5s .5s;
  217. }
  218. #fpage .foil.in {
  219. background-image: url(../image/fp_1b.png);
  220. transition: all .2s;
  221. -webkit-transition: all .2s;
  222. animation: second .4s .2s forwards;
  223. -webkit-animation: second .4s .2s forwards;
  224. }
  225. @keyframes second {
  226. 0% {
  227. transform: translate3d(0,-95px,0) scale(1) rotate3d(1, 1, 1, 0deg);
  228. }
  229. 10% {
  230. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  231. }
  232. 30% {
  233. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  234. }
  235. 40% {
  236. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 4deg);
  237. }
  238. 50% {
  239. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  240. }
  241. 60% {
  242. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  243. }
  244. 70% {
  245. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  246. }
  247. 80% {
  248. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 4deg);
  249. }
  250. 90% {
  251. transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  252. }
  253. 100% {
  254. transform: translate3d(0,-95px,0) scale(1) rotate3d(1, 1, 1, 0deg);
  255. }
  256. }
  257. @-webkit-keyframes second {
  258. 0% {
  259. -webkit-transform: translate3d(0,-95px,0) scale(1) rotate3d(1, 1, 1, 0deg);
  260. }
  261. 10% {
  262. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  263. }
  264. 30% {
  265. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  266. }
  267. 40% {
  268. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 4deg);
  269. }
  270. 50% {
  271. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  272. }
  273. 60% {
  274. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  275. }
  276. 70% {
  277. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 0deg);
  278. }
  279. 80% {
  280. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, 4deg);
  281. }
  282. 90% {
  283. -webkit-transform: translate3d(0,-95px,0) scale(1.1) rotate3d(1, 1, 1, -4deg);
  284. }
  285. 100% {
  286. -webkit-transform: translate3d(0,-95px,0) scale(1) rotate3d(1, 1, 1, 0deg);
  287. }
  288. }
  289. #fpage.in .men.in {
  290. background-image: url(../image/fp_2b.png);
  291. transition: all .1s;
  292. -webkit-transition: all .1s;
  293. animation: third .1s 0s forwards;
  294. -webkit-animation: third .1s 0s forwards;
  295. }
  296. @keyframes third {
  297. 0% {
  298. opacity: 0;
  299. }
  300. 100% {
  301. opacity: 1;
  302. }
  303. }
  304. @-webkit-keyframes third {
  305. 0% {
  306. opacity: 0;
  307. }
  308. 100% {
  309. opacity: 1;
  310. }
  311. }
  312. #fpage .men {
  313. margin: auto;
  314. top: 0;
  315. bottom: 0;
  316. left: 0;
  317. right: 0;
  318. transform: translate3d(0,-83px,0);
  319. -webkit-transform: translate3d(0,-83px,0);
  320. width: 241px;
  321. height: 217.5px;
  322. background-image: url(../image/fp_2a.png);
  323. opacity: 0;
  324. }
  325. #fpage.in .men {
  326. opacity: 1;
  327. transform: translate3d(0,-83px,0);
  328. -webkit-transform: translate3d(0,-83px,0);
  329. transition: all 1s .3s;
  330. -webkit-transition: all 1s .3s;
  331. }
  332. #fpage .sound {
  333. margin: auto;
  334. top: 0;
  335. bottom: 0;
  336. left: 0;
  337. right: 0;
  338. transform: translate3d(3px,-95px,0);
  339. -webkit-transform: translate3d(3px,-95px,0);
  340. width: 309px;
  341. height: 293px;
  342. opacity: 1;
  343. }
  344. #fpage .no1 {
  345. margin: auto;
  346. top: 0;
  347. bottom: 0;
  348. left: 0;
  349. right: 0;
  350. transform: translate3d(-98px,-69px,0);
  351. -webkit-transform: translate3d(-98px,-69px,0);
  352. width: 109px;
  353. height: 116px;
  354. background-image: url(../image/fp_3a.png);
  355. opacity: 0;
  356. }
  357. #fpage .no2 {
  358. margin: auto;
  359. top: 0;
  360. bottom: 0;
  361. left: 0;
  362. right: 0;
  363. transform: translate3d(-44px,-107px,0);
  364. -webkit-transform: translate3d(-44px,-107px,0);
  365. width: 50.5px;
  366. height: 81px;
  367. background-image: url(../image/fp_3b.png);
  368. opacity: 0;
  369. }
  370. #fpage .no3 {
  371. margin: auto;
  372. top: 0;
  373. bottom: 0;
  374. left: 0;
  375. right: 0;
  376. transform: translate3d(115px,-65px,0);
  377. -webkit-transform: translate3d(115px,-65px,0);
  378. width: 78px;
  379. height: 105px;
  380. background-image: url(../image/fp_3c.png);
  381. opacity: 0;
  382. }
  383. #fpage .no4 {
  384. margin: auto;
  385. top: 0;
  386. bottom: 0;
  387. left: 0;
  388. right: 0;
  389. transform: translate3d(-94px,114px,0);
  390. -webkit-transform: translate3d(-94px,114px,0);
  391. width: 70px;
  392. height: 67px;
  393. background-image: url(../image/fp_3d.png);
  394. opacity: 0;
  395. }
  396. #fpage .no1.in {
  397. opacity: 1;
  398. transition: all .5s .4s;
  399. -webkit-transition: all .5s .4s;
  400. }
  401. #fpage .no2.in {
  402. opacity: 1;
  403. transition: all .5s .8s;
  404. -webkit-transition: all .5s .8s;
  405. }
  406. #fpage .no3.in {
  407. opacity: 1;
  408. transition: all .5s .6s;
  409. -webkit-transition: all .5s .6s;
  410. }
  411. #fpage .no4.in {
  412. opacity: 1;
  413. transition: all .5s 1s;
  414. -webkit-transition: all .5s 1s;
  415. }
  416. #fpage .text1 {
  417. margin: auto;
  418. top: 0;
  419. bottom: 0;
  420. left: 0;
  421. right: 0;
  422. transform: translate3d(138px,63px,0);
  423. -webkit-transform: translate3d(138px,63px,0);
  424. width: 242px;
  425. height: 72.5px;
  426. background-image: url(../image/fp_4.png);
  427. opacity: 0;
  428. }
  429. #fpage.in .text1 {
  430. opacity: 1;
  431. transform: translate3d(-3px,63px,0);
  432. -webkit-transform: translate3d(-3px,63px,0);
  433. transition: all .5s 1.2s;
  434. -webkit-transition: all .5s 1.2s;
  435. }
  436. #fpage .frame {
  437. margin: auto;
  438. top: 0;
  439. bottom: 0;
  440. left: 0;
  441. right: 0;
  442. transform: translate3d(-132px,150px,0);
  443. -webkit-transform: translate3d(-132px,150px,0);
  444. width: 238.5px;
  445. height: 130.5px;
  446. background-image: url(../image/fp_5.png);
  447. opacity: 0;
  448. }
  449. #fpage.in .frame {
  450. opacity: 1;
  451. transform: translate3d(10px,134px,0);
  452. -webkit-transform: translate3d(10px,134px,0);
  453. transition: all .5s 1.5s;
  454. -webkit-transition: all .5s 1.5s;
  455. }
  456. #fpage .texta {
  457. margin: auto;
  458. top: 0;
  459. bottom: 0;
  460. left: 0;
  461. right: 0;
  462. width: 215.5px;
  463. height: 51px;
  464. background-image: url(../image/fp_6a.png);
  465. background-position: left center;
  466. }
  467. #fpage .loca {
  468. margin: auto;
  469. top: 0;
  470. bottom: 0;
  471. left: 0;
  472. right: 0;
  473. transform: translate3d(10px,74px,0);
  474. -webkit-transform: translate3d(10px,74px,0);
  475. width: 215.5px;
  476. height: 51px;
  477. }
  478. #fpage .bya {
  479. width: 0px;
  480. height: 114px;
  481. opacity: 0;
  482. }
  483. #fpage.in .bya {
  484. opacity: 1;
  485. width: 215.5px;
  486. transition: all .8s 2.1s;
  487. -webkit-transition: all .8s 2.1s;
  488. overflow: hidden;
  489. }
  490. #fpage .textb {
  491. margin: auto;
  492. top: 0;
  493. bottom: 0;
  494. left: 0;
  495. right: 0;
  496. width: 215.5px;
  497. height: 51px;
  498. background-image: url(../image/fp_6b.png);
  499. background-position: left center;
  500. }
  501. #fpage .locb {
  502. margin: auto;
  503. top: 0;
  504. bottom: 0;
  505. left: 0;
  506. right: 0;
  507. transform: translate3d(10px,104px,0);
  508. -webkit-transform: translate3d(10px,104px,0);
  509. width: 215.5px;
  510. height: 51px;
  511. }
  512. #fpage .byb {
  513. width: 0px;
  514. height: 114px;
  515. opacity: 0;
  516. }
  517. #fpage.in .byb {
  518. opacity: 1;
  519. width: 215.5px;
  520. transition: all .8s 2.6s;
  521. -webkit-transition: all .8s 2.6s;
  522. overflow: hidden;
  523. }
  524. #fpage .textc {
  525. margin: auto;
  526. top: 0;
  527. bottom: 0;
  528. left: 0;
  529. right: 0;
  530. width: 215.5px;
  531. height: 43px;
  532. background-image: url(../image/fp_6c.png);
  533. background-position: left center;
  534. }
  535. #fpage .locc {
  536. margin: auto;
  537. top: 0;
  538. bottom: 0;
  539. left: 0;
  540. right: 0;
  541. transform: translate3d(10px,134px,0);
  542. -webkit-transform: translate3d(10px,134px,0);
  543. width: 215.5px;
  544. height: 43px;
  545. }
  546. #fpage .byc {
  547. width: 0px;
  548. height: 114px;
  549. opacity: 0;
  550. }
  551. #fpage.in .byc {
  552. opacity: 1;
  553. width: 215.5px;
  554. transition: all .8s 3.1s;
  555. -webkit-transition: all .8s 3.1s;
  556. overflow: hidden;
  557. }
  558. #fpage .pen {
  559. margin: auto;
  560. top: 0;
  561. bottom: 0;
  562. left: 0;
  563. right: 0;
  564. transform: translate3d(-61px,131px,0);
  565. -webkit-transform: translate3d(-61px,131px,0);
  566. width: 48.5px;
  567. height: 35.5px;
  568. background-image: url(../image/fp_7.png);
  569. opacity: 0;
  570. }
  571. #fpage.in .pen {
  572. animation: first 1.3s 2.2s forwards;
  573. -webkit-animation: first 1.3s 2.2s forwards;
  574. }
  575. @keyframes first {
  576. 0% {
  577. transform: translate3d(-61px,131px,0);
  578. opacity: 1;
  579. }
  580. 18% {
  581. transform: translate3d(138px,106px,0);
  582. opacity: 1;
  583. }
  584. 36% {
  585. transform: translate3d(-61px,163px,0);
  586. opacity: 1;
  587. }
  588. 54% {
  589. transform: translate3d(138px,135px,0);
  590. opacity: 1;
  591. }
  592. 72% {
  593. transform: translate3d(-61px,190px,0);
  594. opacity: 1;
  595. }
  596. 90% {
  597. transform: translate3d(138px,174px,0);
  598. opacity: 1;
  599. }
  600. 100% {
  601. transform: translate3d(118px,200px,0);
  602. opacity: 1;
  603. }
  604. }
  605. @-webkit-keyframes first {
  606. 0% {
  607. -webkit-transform: translate3d(-61px,131px,0);
  608. opacity: 1;
  609. }
  610. 18% {
  611. -webkit-transform: translate3d(138px,106px,0);
  612. opacity: 1;
  613. }
  614. 36% {
  615. -webkit-transform: translate3d(-61px,163px,0);
  616. opacity: 1;
  617. }
  618. 54% {
  619. -webkit-transform: translate3d(138px,135px,0);
  620. opacity: 1;
  621. }
  622. 72% {
  623. -webkit-transform: translate3d(-61px,190px,0);
  624. opacity: 1;
  625. }
  626. 90% {
  627. -webkit-transform: translate3d(138px,174px,0);
  628. opacity: 1;
  629. }
  630. 100% {
  631. -webkit-transform: translate3d(118px,200px,0);
  632. opacity: 1;
  633. }
  634. }
  635. #questions {
  636. width: 100%;
  637. height: 0;
  638. opacity: 0;
  639. }
  640. #questions .pro {
  641. width: 100%;
  642. height: 100%;
  643. display: none;
  644. }
  645. #questions.in {
  646. height: 100%;
  647. opacity: 1;
  648. transition: all 0s;
  649. -webkit-transition: all 0s;
  650. }
  651. #questions .mark-r {
  652. margin: auto;
  653. top: 0;
  654. bottom: 0;
  655. left: 0;
  656. width: 29px;
  657. height: 24.5px;
  658. background-image: url(../image/right.png);
  659. display: none;
  660. }
  661. #questions .mark-w {
  662. margin: auto;
  663. top: 0;
  664. bottom: 0;
  665. left: 0;
  666. width: 28px;
  667. height: 32.5px;
  668. background-image: url(../image/wrong.png);
  669. display: none;
  670. }
  671. #question0.in {
  672. opacity: 1;
  673. transform: translate3d(0,0,0);
  674. -webkit-transform: translate3d(0,0,0);
  675. transition: all .5s;
  676. -webkit-transition: all .5s;
  677. }
  678. #question0.out {
  679. opacity: 0;
  680. transform: translate3d(-100%,0,0);
  681. -webkit-transform: translate3d(-100%,0,0);
  682. transition: all .5s;
  683. -webkit-transition: all .5s;
  684. }
  685. #question0 .not0 {
  686. margin: auto;
  687. top: 0;
  688. bottom: 0;
  689. left: 0;
  690. right: 0;
  691. width: 267.5px;
  692. height: 213.5px;
  693. transform: translate3d(0px,-124px,0);
  694. -webkit-transform: translate3d(0px,-124px,0);
  695. background-image: url(../image/p1_1n.png);
  696. display: none;
  697. }
  698. #question0 .wrong0 {
  699. margin: auto;
  700. top: 0;
  701. bottom: 0;
  702. left: 0;
  703. right: 0;
  704. width: 267.5px;
  705. height: 213.5px;
  706. transform: translate3d(0px,-124px,0);
  707. -webkit-transform: translate3d(0px,-124px,0);
  708. background-image: url(../image/p1_1w.png);
  709. display: none;
  710. }
  711. #question0 .right0 {
  712. margin: auto;
  713. top: 0;
  714. bottom: 0;
  715. left: 0;
  716. right: 0;
  717. width: 267.5px;
  718. height: 213.5px;
  719. transform: translate3d(0px,-124px,0);
  720. -webkit-transform: translate3d(0px,-124px,0);
  721. background-image: url(../image/p1_1r.png);
  722. display: none;
  723. }
  724. #question0 .title0 {
  725. margin: auto;
  726. top: 0;
  727. bottom: 0;
  728. left: 0;
  729. right: 0;
  730. width: 247px;
  731. height: 94px;
  732. transform: translate3d(100%,25px,0);
  733. -webkit-transform: translate3d(100%,25px,0);
  734. background-image: url(../image/p1_t.png);
  735. opacity: 0;
  736. }
  737. #question0 .title0.in
  738. {
  739. opacity: 1;
  740. transition:all .3s .2s;
  741. -webkit-transition:all .3s .2s;
  742. transform: translate3d(0px,25px,0);
  743. -webkit-transform: translate3d(0px,25px,0);
  744. }
  745. #question0 .ele0a {
  746. margin: auto;
  747. top: 0;
  748. bottom: 0;
  749. left: 0;
  750. right: 0;
  751. width: 40px;
  752. height: 64px;
  753. transform: translate3d(-101px,135px,0);
  754. -webkit-transform: translate3d(-101px,135px,0);
  755. background-image: url(../image/pen1.png);
  756. opacity: 1;
  757. }
  758. #question0 .ele0b {
  759. margin: auto;
  760. top: 0;
  761. bottom: 0;
  762. left: 0;
  763. right: 0;
  764. width: 130.5px;
  765. height: 162.5px;
  766. transform: translate3d(67px,155px,0);
  767. -webkit-transform: translate3d(67px,155px,0);
  768. background-image: url(../image/p1_2.png);
  769. opacity: 1;
  770. }
  771. #question0 .answer0 {
  772. margin: auto;
  773. top: 0;
  774. bottom: 0;
  775. left: 0;
  776. right: 0;
  777. width: 103.5px;
  778. height: 33.5px;
  779. transform: translate3d(100%,93px,0);
  780. -webkit-transform: translate3d(100%,93px,0);
  781. background-image: url(../image/p1_aa.png);
  782. opacity: 0;
  783. }
  784. #question0 .answer0.in
  785. {
  786. opacity: 1;
  787. transition:all .3s .4s;
  788. -webkit-transition:all .3s .4s;
  789. transform: translate3d(-16px,93px,0);
  790. -webkit-transform: translate3d(-16px,93px,0);
  791. }
  792. #question0 .answer1 {
  793. margin: auto;
  794. top: 0;
  795. bottom: 0;
  796. left: 0;
  797. right: 0;
  798. width: 102.5px;
  799. height: 35.5px;
  800. transform: translate3d(100%,133px,0);
  801. -webkit-transform: translate3d(100%,133px,0);
  802. background-image: url(../image/p1_ab.png);
  803. opacity: 0;
  804. }
  805. #question0 .answer1.in
  806. {
  807. opacity: 1;
  808. transition:all .3s .6s;
  809. -webkit-transition:all .3s .6s;
  810. transform: translate3d(-16px,133px,0);
  811. -webkit-transform: translate3d(-16px,133px,0);
  812. }
  813. #question0 .answer2 {
  814. margin: auto;
  815. top: 0;
  816. bottom: 0;
  817. left: 0;
  818. right: 0;
  819. width: 104px;
  820. height: 38.5px;
  821. transform: translate3d(100%,174px,0);
  822. -webkit-transform: translate3d(100%,174px,0);
  823. background-image: url(../image/p1_ac.png);
  824. opacity: 0;
  825. }
  826. #question0 .answer2.in
  827. {
  828. opacity: 1;
  829. transition:all .3s .8s;
  830. -webkit-transition:all .3s .8s;
  831. transform: translate3d(-17px,174px,0);
  832. -webkit-transform: translate3d(-17px,174px,0);
  833. }
  834. #question0 .answer3 {
  835. margin: auto;
  836. top: 0;
  837. bottom: 0;
  838. left: 0;
  839. right: 0;
  840. width: 95px;
  841. height: 36.5px;
  842. transform: translate3d(100%,214px,0);
  843. -webkit-transform: translate3d(100%,214px,0);
  844. background-image: url(../image/p1_ad.png);
  845. opacity: 0;
  846. }
  847. #question0 .answer3.in
  848. {
  849. opacity: 1;
  850. transition:all .3s 1s;
  851. -webkit-transition:all .3s 1s;
  852. transform: translate3d(-21px,214px,0);
  853. -webkit-transform: translate3d(-21px,214px,0);
  854. }
  855. #question1.in {
  856. opacity: 1;
  857. transform: translate3d(0,0,0);
  858. -webkit-transform: translate3d(0,0,0);
  859. transition: all .5s;
  860. -webkit-transition: all .5s;
  861. }
  862. #question1.out {
  863. opacity: 0;
  864. transform: translate3d(-100%,0,0);
  865. -webkit-transform: translate3d(-100%,0,0);
  866. transition: all .5s;
  867. -webkit-transition: all .5s;
  868. }
  869. #question1 .not1 {
  870. margin: auto;
  871. top: 0;
  872. bottom: 0;
  873. left: 0;
  874. right: 0;
  875. width: 243.5px;
  876. height: 209px;
  877. transform: translate3d(0px,-121px,0);
  878. -webkit-transform: translate3d(0px,-121px,0);
  879. background-image: url(../image/p2_1n.png);
  880. display: none;
  881. }
  882. #question1 .wrong1 {
  883. margin: auto;
  884. top: 0;
  885. bottom: 0;
  886. left: 0;
  887. right: 0;
  888. width: 243.5px;
  889. height: 209px;
  890. transform: translate3d(0px,-121px,0);
  891. -webkit-transform: translate3d(0px,-121px,0);
  892. background-image: url(../image/p2_1w.png);
  893. opacity: 1;
  894. display: none;
  895. }
  896. #question1 .right1 {
  897. margin: auto;
  898. top: 0;
  899. bottom: 0;
  900. left: 0;
  901. right: 0;
  902. width: 243.5px;
  903. height: 209px;
  904. transform: translate3d(0px,-121px,0);
  905. -webkit-transform: translate3d(0px,-121px,0);
  906. background-image: url(../image/p2_1r.png);
  907. opacity: 1;
  908. display: none;
  909. }
  910. #question1 .title1 {
  911. margin: auto;
  912. top: 0;
  913. bottom: 0;
  914. left: 0;
  915. right: 0;
  916. width: 252px;
  917. height: 96px;
  918. transform: translate3d(100%,22px,0);
  919. -webkit-transform: translate3d(100%,22px,0);
  920. background-image: url(../image/p2_t.png);
  921. opacity: 0;
  922. }
  923. #question1 .title1.in
  924. {
  925. opacity: 1;
  926. transition:all .3s .2s;
  927. -webkit-transition:all .3s .2s;
  928. transform: translate3d(0px,22px,0);
  929. -webkit-transform: translate3d(0px,22px,0);
  930. }
  931. #question1 .ele1a {
  932. margin: auto;
  933. top: 0;
  934. bottom: 0;
  935. left: 0;
  936. right: 0;
  937. width: 45.5px;
  938. height: 72.5px;
  939. transform: translate3d(-110px,114px,0);
  940. -webkit-transform: translate3d(-110px,114px,0);
  941. background-image: url(../image/pen2.png);
  942. opacity: 1;
  943. }
  944. #question1 .ele1b {
  945. margin: auto;
  946. top: 0;
  947. bottom: 0;
  948. left: 0;
  949. right: 0;
  950. width: 124.5px;
  951. height: 118.5px;
  952. transform: translate3d(91px,164px,0);
  953. -webkit-transform: translate3d(91px,164px,0);
  954. background-image: url(../image/rubber.png);
  955. opacity: 1;
  956. }
  957. #question1 .answer0 {
  958. margin: auto;
  959. top: 0;
  960. bottom: 0;
  961. left: 0;
  962. right: 0;
  963. width: 103.5px;
  964. height: 34px;
  965. transform: translate3d(100%,91px,0);
  966. -webkit-transform: translate3d(100%,91px,0);
  967. background-image: url(../image/p2_aa.png);
  968. opacity: 0;
  969. }
  970. #question1 .answer0.in
  971. {
  972. opacity: 1;
  973. transition:all .3s .4s;
  974. -webkit-transition:all .3s .4s;
  975. transform: translate3d(-16px,91px,0);
  976. -webkit-transform: translate3d(-16px,91px,0);
  977. }
  978. #question1 .answer1 {
  979. margin: auto;
  980. top: 0;
  981. bottom: 0;
  982. left: 0;
  983. right: 0;
  984. width: 102.5px;
  985. height: 36px;
  986. transform: translate3d(100%,130px,0);
  987. -webkit-transform: translate3d(100%,130px,0);
  988. background-image: url(../image/p2_ab.png);
  989. opacity: 0;
  990. }
  991. #question1 .answer1.in
  992. {
  993. opacity: 1;
  994. transition:all .3s .6s;
  995. -webkit-transition:all .3s .6s;
  996. transform: translate3d(-16px,130px,0);
  997. -webkit-transform: translate3d(-16px,130px,0);
  998. }
  999. #question1 .answer2 {
  1000. margin: auto;
  1001. top: 0;
  1002. bottom: 0;
  1003. left: 0;
  1004. right: 0;
  1005. width: 104px;
  1006. height: 38.5px;
  1007. transform: translate3d(100%,170px,0);
  1008. -webkit-transform: translate3d(100%,170px,0);
  1009. background-image: url(../image/p2_ac.png);
  1010. opacity: 0;
  1011. }
  1012. #question1 .answer2.in
  1013. {
  1014. opacity: 1;
  1015. transition:all .3s .8s;
  1016. -webkit-transition:all .3s .8s;
  1017. transform: translate3d(-17px,170px,0);
  1018. -webkit-transform: translate3d(-17px,170px,0);
  1019. }
  1020. #question1 .answer3 {
  1021. margin: auto;
  1022. top: 0;
  1023. bottom: 0;
  1024. left: 0;
  1025. right: 0;
  1026. width: 108px;
  1027. height: 36.5px;
  1028. transform: translate3d(100%,211px,0);
  1029. -webkit-transform: translate3d(100%,211px,0);
  1030. background-image: url(../image/p2_ad.png);
  1031. opacity: 0;
  1032. }
  1033. #question1 .answer3.in
  1034. {
  1035. opacity: 1;
  1036. transition:all .3s 1s;
  1037. -webkit-transition:all .3s 1s;
  1038. transform: translate3d(-16px,211px,0);
  1039. -webkit-transform: translate3d(-16px,211px,0);
  1040. }
  1041. #question2.in {
  1042. opacity: 1;
  1043. transform: translate3d(0,0,0);
  1044. -webkit-transform: translate3d(0,0,0);
  1045. transition: all .5s;
  1046. -webkit-transition: all .5s;
  1047. }
  1048. #question2.out {
  1049. opacity: 0;
  1050. transform: translate3d(-100%,0,0);
  1051. -webkit-transform: translate3d(-100%,0,0);
  1052. transition: all .5s;
  1053. -webkit-transition: all .5s;
  1054. }
  1055. #question2 .not2 {
  1056. margin: auto;
  1057. top: 0;
  1058. bottom: 0;
  1059. left: 0;
  1060. right: 0;
  1061. width: 261.5px;
  1062. height: 197.5px;
  1063. transform: translate3d(0px,-150px,0);
  1064. -webkit-transform: translate3d(0px,-150px,0);
  1065. background-image: url(../image/p3_1n.png);
  1066. display: none;
  1067. }
  1068. #question2 .not2 #btn {
  1069. margin: auto;
  1070. top: 0;
  1071. bottom: 0;
  1072. left: 0;
  1073. right: 0;
  1074. width: 80px;
  1075. height: 80px;
  1076. transform: translate3d(-56px,30px,0);
  1077. -webkit-transform: translate3d(-56px,30px,0);
  1078. background-image: url(../image/p3_btn.png);
  1079. background-size: 80px 80px;
  1080. border-radius: 40%;
  1081. }
  1082. #question2 .not2 #btn.on
  1083. {
  1084. animation: fifth 1.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  1085. -webkit-animation: fifth 1.1s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  1086. }
  1087. @keyframes fifth {
  1088. 0% {
  1089. width: 16.1px;
  1090. height: 15.8px;
  1091. }
  1092. 100% {
  1093. width: 80.5px;
  1094. height: 79px;
  1095. }
  1096. }
  1097. @-webkit-keyframes fifth {
  1098. 0% {
  1099. width: 16.1px;
  1100. height: 15.8px;
  1101. }
  1102. 100% {
  1103. width: 80.5px;
  1104. height: 79px;
  1105. }
  1106. }
  1107. #question2 .not2 #finger {
  1108. margin: auto;
  1109. top: 0;
  1110. bottom: 0;
  1111. left: 0;
  1112. right: 0;
  1113. width: 51.5px;
  1114. height: 55.5px;
  1115. transform: translate3d(-84px,56px,0);
  1116. -webkit-transform: translate3d(-84px,56px,0);
  1117. background-image: url(../image/p3_finger.png);
  1118. animation: fourth 1s infinite;
  1119. -webkit-animation: fourth 1s infinite;
  1120. }
  1121. @keyframes fourth {
  1122. 0% {
  1123. transform: translate3d(-110px,72px,0) scale(1);
  1124. }
  1125. 50% {
  1126. transform: translate3d(-99px,64px,0) scale(1);
  1127. }
  1128. 100% {
  1129. transform: translate3d(-110px,72px,0) scale(1);
  1130. }
  1131. }
  1132. @-webkit-keyframes fourth {
  1133. 0% {
  1134. -webkit-transform: translate3d(-110px,72px,0) scale(1);
  1135. }
  1136. 50% {
  1137. -webkit-transform: translate3d(-99px,64px,0) scale(1);
  1138. }
  1139. 100% {
  1140. -webkit-transform: translate3d(-110px,72px,0) scale(1);
  1141. }
  1142. }
  1143. #question2 .wrong2 {
  1144. margin: auto;
  1145. top: 0;
  1146. bottom: 0;
  1147. left: 0;
  1148. right: 0;
  1149. width: 261.5px;
  1150. height: 197.5px;
  1151. transform: translate3d(0px,-150px,0);
  1152. -webkit-transform: translate3d(0px,-150px,0);
  1153. background-image: url(../image/p3_1w.png);
  1154. display: none;
  1155. }
  1156. #question2 .right2 {
  1157. margin: auto;
  1158. top: 0;
  1159. bottom: 0;
  1160. left: 0;
  1161. right: 0;
  1162. width: 261.5px;
  1163. height: 197.5px;
  1164. transform: translate3d(0px,-150px,0);
  1165. -webkit-transform: translate3d(0px,-150px,0);
  1166. background-image: url(../image/p3_1r.png);
  1167. display: none;
  1168. }
  1169. #question2 .title2 {
  1170. margin: auto;
  1171. top: 0;
  1172. bottom: 0;
  1173. left: 0;
  1174. right: 0;
  1175. width: 251.5px;
  1176. height: 229.5px;
  1177. transform: translate3d(100%,-3px,0);
  1178. -webkit-transform: translate3d(100%,-3px,0);
  1179. background-image: url(../image/p3_t.png);
  1180. opacity:0;
  1181. }
  1182. #question2 .title2.in
  1183. {
  1184. opacity: 1;
  1185. transition:all .3s .2s;
  1186. -webkit-transition:all .3s .2s;
  1187. transform: translate3d(0px,-3px,0);
  1188. -webkit-transform: translate3d(0px,-3px,0);
  1189. }
  1190. /*#question2 .ele2a {
  1191. margin: auto;
  1192. top: 0;
  1193. bottom: 0;
  1194. left: 0;
  1195. right: 0;
  1196. width: 45.5px;
  1197. height: 72.5px;
  1198. transform: translate3d(-110px,114px,0);
  1199. -webkit-transform: translate3d(-110px,114px,0);
  1200. background-image: url(../image/pen2.png);
  1201. opacity: 1;
  1202. }*/
  1203. #question2 .ele2b {
  1204. margin: auto;
  1205. top: 0;
  1206. bottom: 0;
  1207. left: 0;
  1208. right: 0;
  1209. width: 75.5px;
  1210. height: 167.5px;
  1211. transform: translate3d(87px,150px,0);
  1212. -webkit-transform: translate3d(87px,150px,0);
  1213. background-image: url(../image/p3_radio.png);
  1214. }
  1215. #question2 .answer0 {
  1216. margin: auto;
  1217. top: 0;
  1218. bottom: 0;
  1219. left: 0;
  1220. right: 0;
  1221. width: 172px;
  1222. height: 34px;
  1223. transform: translate3d(100%,82px,0);
  1224. -webkit-transform: translate3d(100%,82px,0);
  1225. background-image: url(../image/p3_aa.png);
  1226. opacity:0;
  1227. }
  1228. #question2 .answer0.in
  1229. {
  1230. opacity: 1;
  1231. transition:all .3s .4s;
  1232. -webkit-transition:all .3s .4s;
  1233. transform: translate3d(-16px,82px,0);
  1234. -webkit-transform: translate3d(-16px,82px,0);
  1235. }
  1236. #question2 .answer1 {
  1237. margin: auto;
  1238. top: 0;
  1239. bottom: 0;
  1240. left: 0;
  1241. right: 0;
  1242. width: 172px;
  1243. height: 37px;
  1244. transform: translate3d(100%,121px,0);
  1245. -webkit-transform: translate3d(100%,121px,0);
  1246. background-image: url(../image/p3_ab.png);
  1247. opacity:0;
  1248. }
  1249. #question2 .answer1.in
  1250. {
  1251. opacity: 1;
  1252. transition:all .3s .6s;
  1253. -webkit-transition:all .3s .6s;
  1254. transform: translate3d(-16px,121px,0);
  1255. -webkit-transform: translate3d(-16px,121px,0);
  1256. }
  1257. #question2 .answer2 {
  1258. margin: auto;
  1259. top: 0;
  1260. bottom: 0;
  1261. left: 0;
  1262. right: 0;
  1263. width: 172px;
  1264. height: 36.5px;
  1265. transform: translate3d(100%,161px,0);
  1266. -webkit-transform: translate3d(100%,161px,0);
  1267. background-image: url(../image/p3_ac.png);
  1268. opacity:0;
  1269. }
  1270. #question2 .answer2.in
  1271. {
  1272. opacity: 1;
  1273. transition:all .3s .8s;
  1274. -webkit-transition:all .3s .8s;
  1275. transform: translate3d(-17px,161px,0);
  1276. -webkit-transform: translate3d(-17px,161px,0);
  1277. }
  1278. #question2 .answer3 {
  1279. margin: auto;
  1280. top: 0;
  1281. bottom: 0;
  1282. left: 0;
  1283. right: 0;
  1284. width: 172px;
  1285. height: 35px;
  1286. transform: translate3d(100%,202px,0);
  1287. -webkit-transform: translate3d(100%,202px,0);
  1288. background-image: url(../image/p3_ad.png);
  1289. opacity:0;
  1290. }
  1291. #question2 .answer3.in
  1292. {
  1293. opacity: 1;
  1294. transition:all .3s 1s;
  1295. -webkit-transition:all .3s 1s;
  1296. transform: translate3d(-16px,202px,0);
  1297. -webkit-transform: translate3d(-16px,202px,0);
  1298. }
  1299. #question3.in {
  1300. opacity: 1;
  1301. transform: translate3d(0,0,0);
  1302. -webkit-transform: translate3d(0,0,0);
  1303. transition: all .5s;
  1304. -webkit-transition: all .5s;
  1305. }
  1306. #question3.out {
  1307. opacity: 0;
  1308. transform: translate3d(-100%,0,0);
  1309. -webkit-transform: translate3d(-100%,0,0);
  1310. transition: all .5s;
  1311. -webkit-transition: all .5s;
  1312. }
  1313. #question3 .not3 {
  1314. margin: auto;
  1315. top: 0;
  1316. bottom: 0;
  1317. left: 0;
  1318. right: 0;
  1319. width: 250.5px;
  1320. height: 234px;
  1321. transform: translate3d(2px,-139px,0);
  1322. -webkit-transform: translate3d(2px,-139px,0);
  1323. background-image: url(../image/p4_1n.png);
  1324. display: none;
  1325. }
  1326. #question3 .wrong3 {
  1327. margin: auto;
  1328. top: 0;
  1329. bottom: 0;
  1330. left: 0;
  1331. right: 0;
  1332. width: 250.5px;
  1333. height: 234px;
  1334. transform: translate3d(2px,-139px,0);
  1335. -webkit-transform: translate3d(2px,-139px,0);
  1336. background-image: url(../image/p4_1w.png);
  1337. opacity: 1;
  1338. display: none;
  1339. }
  1340. #question3 .right3 {
  1341. margin: auto;
  1342. top: 0;
  1343. bottom: 0;
  1344. left: 0;
  1345. right: 0;
  1346. width: 250.5px;
  1347. height: 234px;
  1348. transform: translate3d(2px,-139px,0);
  1349. -webkit-transform: translate3d(2px,-139px,0);
  1350. background-image: url(../image/p4_1r.png);
  1351. opacity: 1;
  1352. display: none;
  1353. }
  1354. #question3 .title3 {
  1355. margin: auto;
  1356. top: 0;
  1357. bottom: 0;
  1358. left: 0;
  1359. right: 0;
  1360. width: 243.5px;
  1361. height: 93px;
  1362. transform: translate3d(100%,10px,0);
  1363. -webkit-transform: translate3d(100%,10px,0);
  1364. background-image: url(../image/p4_t.png);
  1365. opacity: 0;
  1366. }
  1367. #question3 .title3.in
  1368. {
  1369. opacity: 1;
  1370. transition:all .3s .2s;
  1371. -webkit-transition:all .3s .2s;
  1372. transform: translate3d(0px,10px,0);
  1373. -webkit-transform: translate3d(0px,10px,0);
  1374. }
  1375. #question3 .ele3a {
  1376. margin: auto;
  1377. top: 0;
  1378. bottom: 0;
  1379. left: 0;
  1380. right: 0;
  1381. width: 83px;
  1382. height: 134px;
  1383. transform: translate3d(-118px,145px,0);
  1384. -webkit-transform: translate3d(-118px,145px,0);
  1385. background-image: url(../image/p4_bow.png);
  1386. opacity: 1;
  1387. }
  1388. #question3 .ele3b {
  1389. margin: auto;
  1390. top: 0;
  1391. bottom: 0;
  1392. left: 0;
  1393. right: 0;
  1394. width: 44px;
  1395. height: 60.5px;
  1396. transform: translate3d(86px,147px,0);
  1397. -webkit-transform: translate3d(86px,147px,0);
  1398. background-image: url(../image/p4_rubber.png);
  1399. opacity: 1;
  1400. }
  1401. #question3 .answer0 {
  1402. margin: auto;
  1403. top: 0;
  1404. bottom: 0;
  1405. left: 0;
  1406. right: 0;
  1407. width: 151px;
  1408. height: 33.5px;
  1409. transform: translate3d(100%,80px,0);
  1410. -webkit-transform: translate3d(100%,80px,0);
  1411. background-image: url(../image/p4_aa.png);
  1412. opacity: 0;
  1413. }
  1414. #question3 .answer0.in
  1415. {
  1416. opacity: 1;
  1417. transition:all .3s .4s;
  1418. -webkit-transition:all .3s .4s;
  1419. transform: translate3d(-12px,80px,0);
  1420. -webkit-transform: translate3d(-12px,80px,0);
  1421. }
  1422. #question3 .answer1 {
  1423. margin: auto;
  1424. top: 0;
  1425. bottom: 0;
  1426. left: 0;
  1427. right: 0;
  1428. width: 151px;
  1429. height: 36.5px;
  1430. transform: translate3d(100%,120px,0);
  1431. -webkit-transform: translate3d(100%,120px,0);
  1432. background-image: url(../image/p4_ab.png);
  1433. opacity: 0;
  1434. }
  1435. #question3 .answer1.in
  1436. {
  1437. opacity: 1;
  1438. transition:all .3s .6s;
  1439. -webkit-transition:all .3s .6s;
  1440. transform: translate3d(-12px,120px,0);
  1441. -webkit-transform: translate3d(-12px,120px,0);
  1442. }
  1443. #question3 .answer2 {
  1444. margin: auto;
  1445. top: 0;
  1446. bottom: 0;
  1447. left: 0;
  1448. right: 0;
  1449. width: 151px;
  1450. height: 36px;
  1451. transform: translate3d(100%,159px,0);
  1452. -webkit-transform: translate3d(100%,159px,0);
  1453. background-image: url(../image/p4_ac.png);
  1454. opacity: 0;
  1455. }
  1456. #question3 .answer2.in
  1457. {
  1458. opacity: 1;
  1459. transition:all .3s .8s;
  1460. -webkit-transition:all .3s .8s;
  1461. transform: translate3d(-13px,159px,0);
  1462. -webkit-transform: translate3d(-13px,159px,0);
  1463. }
  1464. #question3 .answer3 {
  1465. margin: auto;
  1466. top: 0;
  1467. bottom: 0;
  1468. left: 0;
  1469. right: 0;
  1470. width: 151px;
  1471. height: 35px;
  1472. transform: translate3d(100%,199px,0);
  1473. -webkit-transform: translate3d(100%,199px,0);
  1474. background-image: url(../image/p4_ad.png);
  1475. opacity: 0;
  1476. }
  1477. #question3 .answer3.in
  1478. {
  1479. opacity: 1;
  1480. transition:all .3s 1s;
  1481. -webkit-transition:all .3s 1s;
  1482. transform: translate3d(-12px,199px,0);
  1483. -webkit-transform: translate3d(-12px,199px,0);
  1484. }
  1485. #question4.in {
  1486. opacity: 1;
  1487. transform: translate3d(0,0,0);
  1488. -webkit-transform: translate3d(0,0,0);
  1489. transition: all .5s;
  1490. -webkit-transition: all .5s;
  1491. }
  1492. #question4.out {
  1493. opacity: 0;
  1494. transform: translate3d(-100%,0,0);
  1495. -webkit-transform: translate3d(-100%,0,0);
  1496. transition: all .5s;
  1497. -webkit-transition: all .5s;
  1498. }
  1499. #question4 .not4 {
  1500. margin: auto;
  1501. top: 0;
  1502. bottom: 0;
  1503. left: 0;
  1504. right: 0;
  1505. width: 239.5px;
  1506. height: 198.5px;
  1507. transform: translate3d(2px,-130px,0);
  1508. -webkit-transform: translate3d(2px,-130px,0);
  1509. background-image: url(../image/p5_1n.png);
  1510. display: none;
  1511. }
  1512. #question4 .wrong4 {
  1513. margin: auto;
  1514. top: 0;
  1515. bottom: 0;
  1516. left: 0;
  1517. right: 0;
  1518. width: 239.5px;
  1519. height: 198.5px;
  1520. transform: translate3d(2px,-130px,0);
  1521. -webkit-transform: translate3d(2px,-130px,0);
  1522. background-image: url(../image/p5_1w.png);
  1523. opacity: 1;
  1524. display: none;
  1525. }
  1526. #question4 .right4 {
  1527. margin: auto;
  1528. top: 0;
  1529. bottom: 0;
  1530. left: 0;
  1531. right: 0;
  1532. width: 239.5px;
  1533. height: 198.5px;
  1534. transform: translate3d(2px,-130px,0);
  1535. -webkit-transform: translate3d(2px,-130px,0);
  1536. background-image: url(../image/p5_1r.png);
  1537. opacity: 1;
  1538. display: none;
  1539. }
  1540. #question4 .title4 {
  1541. margin: auto;
  1542. top: 0;
  1543. bottom: 0;
  1544. left: 0;
  1545. right: 0;
  1546. width: 245px;
  1547. height: 93px;
  1548. transform: translate3d(100%,10px,0);
  1549. -webkit-transform: translate3d(100%,10px,0);
  1550. background-image: url(../image/p5_t.png);
  1551. opacity: 0;
  1552. }
  1553. #question4 .title4.in
  1554. {
  1555. opacity: 1;
  1556. transition:all .3s .2s;
  1557. -webkit-transition:all .3s .2s;
  1558. transform: translate3d(0px,10px,0);
  1559. -webkit-transform: translate3d(0px,10px,0);
  1560. }
  1561. #question4 .ele4a {
  1562. margin: auto;
  1563. top: 0;
  1564. bottom: 0;
  1565. left: 0;
  1566. right: 0;
  1567. width: 81px;
  1568. height: 63px;
  1569. transform: translate3d(-114px,150px,0);
  1570. -webkit-transform: translate3d(-114px,150px,0);
  1571. background-image: url(../image/p5_bow.png);
  1572. opacity: 1;
  1573. }
  1574. #question4 .ele4b {
  1575. margin: auto;
  1576. top: 0;
  1577. bottom: 0;
  1578. left: 0;
  1579. right: 0;
  1580. width: 141.5px;
  1581. height: 109px;
  1582. transform: translate3d(50px,120px,0);
  1583. -webkit-transform: translate3d(50px,120px,0);
  1584. background-image: url(../image/p5_ink.png);
  1585. opacity: 1;
  1586. }
  1587. #question4 .answer0 {
  1588. margin: auto;
  1589. top: 0;
  1590. bottom: 0;
  1591. left: 0;
  1592. right: 0;
  1593. width: 196.5px;
  1594. height: 34px;
  1595. transform: translate3d(100%,80px,0);
  1596. -webkit-transform: translate3d(100%,80px,0);
  1597. background-image: url(../image/p5_aa.png);
  1598. opacity: 0;
  1599. }
  1600. #question4 .answer0.in
  1601. {
  1602. opacity: 1;
  1603. transition:all .3s .4s;
  1604. -webkit-transition:all .3s .4s;
  1605. transform: translate3d(-12px,80px,0);
  1606. -webkit-transform: translate3d(-12px,80px,0);
  1607. }
  1608. #question4 .answer1 {
  1609. margin: auto;
  1610. top: 0;
  1611. bottom: 0;
  1612. left: 0;
  1613. right: 0;
  1614. width: 196.5px;
  1615. height: 36px;
  1616. transform: translate3d(100%,120px,0);
  1617. -webkit-transform: translate3d(100%,120px,0);
  1618. background-image: url(../image/p5_ab.png);
  1619. opacity: 0;
  1620. }
  1621. #question4 .answer1.in
  1622. {
  1623. opacity: 1;
  1624. transition:all .3s .6s;
  1625. -webkit-transition:all .3s .6s;
  1626. transform: translate3d(-12px,120px,0);
  1627. -webkit-transform: translate3d(-12px,120px,0);
  1628. }
  1629. #question4 .answer2 {
  1630. margin: auto;
  1631. top: 0;
  1632. bottom: 0;
  1633. left: 0;
  1634. right: 0;
  1635. width: 196.5px;
  1636. height: 35.5px;
  1637. transform: translate3d(100%,159px,0);
  1638. -webkit-transform: translate3d(100%,159px,0);
  1639. background-image: url(../image/p5_ac.png);
  1640. opacity: 0;
  1641. }
  1642. #question4 .answer2.in
  1643. {
  1644. opacity: 1;
  1645. transition:all .3s .8s;
  1646. -webkit-transition:all .3s .8s;
  1647. transform: translate3d(-13px,159px,0);
  1648. -webkit-transform: translate3d(-13px,159px,0);
  1649. }
  1650. #question4 .answer3 {
  1651. margin: auto;
  1652. top: 0;
  1653. bottom: 0;
  1654. left: 0;
  1655. right: 0;
  1656. width: 196.5px;
  1657. height: 34px;
  1658. transform: translate3d(100%,199px,0);
  1659. -webkit-transform: translate3d(100%,199px,0);
  1660. background-image: url(../image/p5_ad.png);
  1661. opacity: 0;
  1662. }
  1663. #question4 .answer3.in
  1664. {
  1665. opacity: 1;
  1666. transition:all .3s 1s;
  1667. -webkit-transition:all .3s 1s;
  1668. transform: translate3d(-12px,199px,0);
  1669. -webkit-transform: translate3d(-12px,199px,0);
  1670. }
  1671. #question5.in {
  1672. opacity: 1;
  1673. transform: translate3d(0,0,0);
  1674. -webkit-transform: translate3d(0,0,0);
  1675. transition: all .5s;
  1676. -webkit-transition: all .5s;
  1677. }
  1678. #question5.out {
  1679. opacity: 0;
  1680. transform: translate3d(-100%,0,0);
  1681. -webkit-transform: translate3d(-100%,0,0);
  1682. transition: all .5s;
  1683. -webkit-transition: all .5s;
  1684. }
  1685. #question5 .not5 {
  1686. margin: auto;
  1687. top: 0;
  1688. bottom: 0;
  1689. left: 0;
  1690. right: 0;
  1691. width: 257px;
  1692. height: 215.5px;
  1693. transform: translate3d(0px,-131px,0);
  1694. -webkit-transform: translate3d(0px,-131px,0);
  1695. background-image: url(../image/p6_1n.png);
  1696. display: none;
  1697. }
  1698. #question5 .wrong5 {
  1699. margin: auto;
  1700. top: 0;
  1701. bottom: 0;
  1702. left: 0;
  1703. right: 0;
  1704. width: 257px;
  1705. height: 215.5px;
  1706. transform: translate3d(0px,-131px,0);
  1707. -webkit-transform: translate3d(0px,-131px,0);
  1708. background-image: url(../image/p6_1w.png);
  1709. display: none;
  1710. }
  1711. #question5 .right5 {
  1712. margin: auto;
  1713. top: 0;
  1714. bottom: 0;
  1715. left: 0;
  1716. right: 0;
  1717. width: 257px;
  1718. height: 215.5px;
  1719. transform: translate3d(0px,-131px,0);
  1720. -webkit-transform: translate3d(0px,-131px,0);
  1721. background-image: url(../image/p6_1r.png);
  1722. display: none;
  1723. }
  1724. #question5 .title5 {
  1725. margin: auto;
  1726. top: 0;
  1727. bottom: 0;
  1728. left: 0;
  1729. right: 0;
  1730. width: 252px;
  1731. height: 96px;
  1732. transform: translate3d(100%,14px,0);
  1733. -webkit-transform: translate3d(100%,14px,0);
  1734. background-image: url(../image/p6_t.png);
  1735. opacity: 0;
  1736. }
  1737. #question5 .title5.in
  1738. {
  1739. opacity: 1;
  1740. transition:all .3s .2s;
  1741. -webkit-transition:all .3s .2s;
  1742. transform: translate3d(0px,14px,0);
  1743. -webkit-transform: translate3d(0px,14px,0);
  1744. }
  1745. /*#question5 .ele5a
  1746. {
  1747. margin:auto;
  1748. top:0;
  1749. bottom:0;
  1750. left:0;
  1751. right:0;
  1752. width:45.5px;
  1753. height:72.5px;
  1754. transform:translate3d(-124px,130px,0);
  1755. -webkit-transform:translate3d(-124px,130px,0);
  1756. background-image:url(../image/pen.png);
  1757. opacity:1;
  1758. }*/
  1759. #question5 .ele5b {
  1760. margin: auto;
  1761. top: 0;
  1762. bottom: 0;
  1763. left: 0;
  1764. right: 0;
  1765. width: 124.5px;
  1766. height: 118.5px;
  1767. transform: translate3d(105px,136px,0);
  1768. -webkit-transform: translate3d(105px,136px,0);
  1769. background-image: url(../image/rubber.png);
  1770. opacity: 1;
  1771. }
  1772. #question5 .answer0 {
  1773. margin: auto;
  1774. top: 0;
  1775. bottom: 0;
  1776. left: 0;
  1777. right: 0;
  1778. width: 248.5px;
  1779. height: 34px;
  1780. transform: translate3d(100%,82px,0);
  1781. -webkit-transform: translate3d(100%,82px,0);
  1782. background-image: url(../image/p6_aa.png);
  1783. opacity: 0;
  1784. }
  1785. #question5 .answer0.in
  1786. {
  1787. opacity: 1;
  1788. transition:all .3s .4s;
  1789. -webkit-transition:all .3s .4s;
  1790. transform: translate3d(-1px,82px,0);
  1791. -webkit-transform: translate3d(-1px,82px,0);
  1792. }
  1793. #question5 .answer1 {
  1794. margin: auto;
  1795. top: 0;
  1796. bottom: 0;
  1797. left: 0;
  1798. right: 0;
  1799. width: 248.5px;
  1800. height: 37px;
  1801. transform: translate3d(100%,122px,0);
  1802. -webkit-transform: translate3d(100%,122px,0);
  1803. background-image: url(../image/p6_ab.png);
  1804. opacity: 0;
  1805. }
  1806. #question5 .answer1.in
  1807. {
  1808. opacity: 1;
  1809. transition:all .3s .6s;
  1810. -webkit-transition:all .3s .6s;
  1811. transform: translate3d(-1px,122px,0);
  1812. -webkit-transform: translate3d(-1px,122px,0);
  1813. }
  1814. #question5 .answer2 {
  1815. margin: auto;
  1816. top: 0;
  1817. bottom: 0;
  1818. left: 0;
  1819. right: 0;
  1820. width: 248.5px;
  1821. height: 36.5px;
  1822. transform: translate3d(100%,165px,0);
  1823. -webkit-transform: translate3d(100%,165px,0);
  1824. background-image: url(../image/p6_ac.png);
  1825. opacity: 0;
  1826. }
  1827. #question5 .answer2.in
  1828. {
  1829. opacity: 1;
  1830. transition:all .3s .8s;
  1831. -webkit-transition:all .3s .8s;
  1832. transform: translate3d(-4px,165px,0);
  1833. -webkit-transform: translate3d(-4px,165px,0);
  1834. }
  1835. #question5 .answer3 {
  1836. margin: auto;
  1837. top: 0;
  1838. bottom: 0;
  1839. left: 0;
  1840. right: 0;
  1841. width: 248.5px;
  1842. height: 35.5px;
  1843. transform: translate3d(100%,205px,0);
  1844. -webkit-transform: translate3d(100%,205px,0);
  1845. background-image: url(../image/p6_ad.png);
  1846. opacity: 0;
  1847. }
  1848. #question5 .answer3.in
  1849. {
  1850. opacity: 1;
  1851. transition:all .3s 1s;
  1852. -webkit-transition:all .3s 1s;
  1853. transform: translate3d(-2px,205px,0);
  1854. -webkit-transform: translate3d(-2px,205px,0);
  1855. }
  1856. #question6.in {
  1857. opacity: 1;
  1858. transform: translate3d(0,0,0);
  1859. -webkit-transform: translate3d(0,0,0);
  1860. transition: all .5s;
  1861. -webkit-transition: all .5s;
  1862. }
  1863. #question6.out {
  1864. opacity: 0;
  1865. transform: translate3d(-100%,0,0);
  1866. -webkit-transform: translate3d(-100%,0,0);
  1867. transition: all .5s;
  1868. -webkit-transition: all .5s;
  1869. }
  1870. #question6 .not6 {
  1871. margin: auto;
  1872. top: 0;
  1873. bottom: 0;
  1874. left: 0;
  1875. right: 0;
  1876. width: 234px;
  1877. height: 205px;
  1878. transform: translate3d(0px,-131px,0);
  1879. -webkit-transform: translate3d(0px,-131px,0);
  1880. background-image: url(../image/p7_1n.png);
  1881. display: none;
  1882. }
  1883. #question6 .wrong6 {
  1884. margin: auto;
  1885. top: 0;
  1886. bottom: 0;
  1887. left: 0;
  1888. right: 0;
  1889. width: 234px;
  1890. height: 205px;
  1891. transform: translate3d(0px,-131px,0);
  1892. -webkit-transform: translate3d(0px,-131px,0);
  1893. background-image: url(../image/p7_1w.png);
  1894. display: none;
  1895. }
  1896. #question6 .right6 {
  1897. margin: auto;
  1898. top: 0;
  1899. bottom: 0;
  1900. left: 0;
  1901. right: 0;
  1902. width: 234px;
  1903. height: 205px;
  1904. transform: translate3d(0px,-131px,0);
  1905. -webkit-transform: translate3d(0px,-131px,0);
  1906. background-image: url(../image/p7_1r.png);
  1907. display: none;
  1908. }
  1909. #question6 .title6 {
  1910. margin: auto;
  1911. top: 0;
  1912. bottom: 0;
  1913. left: 0;
  1914. right: 0;
  1915. width: 238.5px;
  1916. height: 91px;
  1917. transform: translate3d(100%,14px,0);
  1918. -webkit-transform: translate3d(100%,14px,0);
  1919. background-image: url(../image/p7_t.png);
  1920. opacity: 0;
  1921. }
  1922. #question6 .title6.in
  1923. {
  1924. opacity: 1;
  1925. transition:all .3s .2s;
  1926. -webkit-transition:all .3s .2s;
  1927. transform: translate3d(0px,14px,0);
  1928. -webkit-transform: translate3d(0px,14px,0);
  1929. }
  1930. #question6 .ele6a
  1931. {
  1932. margin:auto;
  1933. top:0;
  1934. bottom:0;
  1935. left:0;
  1936. right:0;
  1937. width:81px;
  1938. height:63px;
  1939. transform:translate3d(-114px,153px,0);
  1940. -webkit-transform:translate3d(-114px,153px,0);
  1941. background-image:url(../image/p5_bow.png);
  1942. }
  1943. #question6 .ele6b {
  1944. margin: auto;
  1945. top: 0;
  1946. bottom: 0;
  1947. left: 0;
  1948. right: 0;
  1949. width: 141.5px;
  1950. height: 109px;
  1951. transform: translate3d(50px,118px,0);
  1952. -webkit-transform: translate3d(50px,118px,0);
  1953. background-image: url(../image/p5_ink.png);
  1954. }
  1955. #question6 .answer0 {
  1956. margin: auto;
  1957. top: 0;
  1958. bottom: 0;
  1959. left: 0;
  1960. right: 0;
  1961. width: 231.5px;
  1962. height: 35px;
  1963. transform: translate3d(100%,82px,0);
  1964. -webkit-transform: translate3d(100%,82px,0);
  1965. background-image: url(../image/p7_aa.png);
  1966. opacity:0;
  1967. }
  1968. #question6 .answer0.in
  1969. {
  1970. opacity: 1;
  1971. transition:all .3s .4s;
  1972. -webkit-transition:all .3s .4s;
  1973. transform: translate3d(-1px,82px,0);
  1974. -webkit-transform: translate3d(-1px,82px,0);
  1975. }
  1976. #question6 .answer1 {
  1977. margin: auto;
  1978. top: 0;
  1979. bottom: 0;
  1980. left: 0;
  1981. right: 0;
  1982. width: 231.5px;
  1983. height: 36.5px;
  1984. transform: translate3d(100%,122px,0);
  1985. -webkit-transform: translate3d(100%,122px,0);
  1986. background-image: url(../image/p7_ab.png);
  1987. opacity:0;
  1988. }
  1989. #question6 .answer1.in
  1990. {
  1991. opacity: 1;
  1992. transition:all .3s .6s;
  1993. -webkit-transition:all .3s .6s;
  1994. transform: translate3d(-1px,122px,0);
  1995. -webkit-transform: translate3d(-1px,122px,0);
  1996. }
  1997. #question6 .answer2 {
  1998. margin: auto;
  1999. top: 0;
  2000. bottom: 0;
  2001. left: 0;
  2002. right: 0;
  2003. width: 231.5px;
  2004. height: 36px;
  2005. transform: translate3d(100%,165px,0);
  2006. -webkit-transform: translate3d(100%,165px,0);
  2007. background-image: url(../image/p7_ac.png);
  2008. opacity:0;
  2009. }
  2010. #question6 .answer2.in
  2011. {
  2012. opacity: 1;
  2013. transition:all .3s .8s;
  2014. -webkit-transition:all .3s .8s;
  2015. transform: translate3d(-4px,165px,0);
  2016. -webkit-transform: translate3d(-4px,165px,0);
  2017. }
  2018. #question6 .answer3 {
  2019. margin: auto;
  2020. top: 0;
  2021. bottom: 0;
  2022. left: 0;
  2023. right: 0;
  2024. width: 231.5px;
  2025. height: 34.5px;
  2026. transform: translate3d(100%,205px,0);
  2027. -webkit-transform: translate3d(100%,205px,0);
  2028. background-image: url(../image/p7_ad.png);
  2029. opacity:0;
  2030. }
  2031. #question6 .answer3.in
  2032. {
  2033. opacity: 1;
  2034. transition:all .3s 1s;
  2035. -webkit-transition:all .3s 1s;
  2036. transform: translate3d(-2px,205px,0);
  2037. -webkit-transform: translate3d(-2px,205px,0);
  2038. }
  2039. #question7.in {
  2040. opacity: 1;
  2041. transform: translate3d(0,0,0);
  2042. -webkit-transform: translate3d(0,0,0);
  2043. transition: all .5s;
  2044. -webkit-transition: all .5s;
  2045. }
  2046. #question7.out {
  2047. opacity: 0;
  2048. transform: translate3d(-100%,0,0);
  2049. -webkit-transform: translate3d(-100%,0,0);
  2050. transition: all .5s;
  2051. -webkit-transition: all .5s;
  2052. }
  2053. #question7 .not7 {
  2054. margin: auto;
  2055. top: 0;
  2056. bottom: 0;
  2057. left: 0;
  2058. right: 0;
  2059. width: 266.5px;
  2060. height: 203px;
  2061. transform: translate3d(0px,-119px,0);
  2062. -webkit-transform: translate3d(0px,-119px,0);
  2063. background-image: url(../image/p8_1n.png);
  2064. display: none;
  2065. }
  2066. #question7 .wrong7 {
  2067. margin: auto;
  2068. top: 0;
  2069. bottom: 0;
  2070. left: 0;
  2071. right: 0;
  2072. width: 266.5px;
  2073. height: 203px;
  2074. transform: translate3d(0px,-119px,0);
  2075. -webkit-transform: translate3d(0px,-119px,0);
  2076. background-image: url(../image/p8_1w.png);
  2077. display: none;
  2078. }
  2079. #question7 .right7 {
  2080. margin: auto;
  2081. top: 0;
  2082. bottom: 0;
  2083. left: 0;
  2084. right: 0;
  2085. width: 266.5px;
  2086. height: 203px;
  2087. transform: translate3d(0px,-119px,0);
  2088. -webkit-transform: translate3d(0px,-119px,0);
  2089. background-image: url(../image/p8_1r.png);
  2090. display: none;
  2091. }
  2092. #question7 .title7 {
  2093. margin: auto;
  2094. top: 0;
  2095. bottom: 0;
  2096. left: 0;
  2097. right: 0;
  2098. width: 245px;
  2099. height: 100.5px;
  2100. transform: translate3d(100%,14px,0);
  2101. -webkit-transform: translate3d(100%,14px,0);
  2102. background-image: url(../image/p8_t.png);
  2103. opacity: 0;
  2104. }
  2105. #question7 .title7.in
  2106. {
  2107. opacity: 1;
  2108. transition:all .3s .2s;
  2109. -webkit-transition:all .3s .2s;
  2110. transform: translate3d(0px,14px,0);
  2111. -webkit-transform: translate3d(0px,14px,0);
  2112. }
  2113. #question7 .ele7a
  2114. {
  2115. margin:auto;
  2116. top:0;
  2117. bottom:0;
  2118. left:0;
  2119. right:0;
  2120. width:58px;
  2121. height:38px;
  2122. transform:translate3d(-114px,108px,0);
  2123. -webkit-transform:translate3d(-114px,108px,0);
  2124. background-image:url(../image/glass.png);
  2125. }
  2126. #question7 .ele7b {
  2127. margin: auto;
  2128. top: 0;
  2129. bottom: 0;
  2130. left: 0;
  2131. right: 0;
  2132. width: 99.5px;
  2133. height: 135px;
  2134. transform: translate3d(80px,155px,0);
  2135. -webkit-transform: translate3d(80px,155px,0);
  2136. background-image: url(../image/book.png);
  2137. }
  2138. #question7 .answer0 {
  2139. margin: auto;
  2140. top: 0;
  2141. bottom: 0;
  2142. left: 0;
  2143. right: 0;
  2144. width: 124px;
  2145. height: 34.5px;
  2146. transform: translate3d(100%,82px,0);
  2147. -webkit-transform: translate3d(100%,82px,0);
  2148. background-image: url(../image/p8_aa.png);
  2149. opacity:0;
  2150. }
  2151. #question7 .answer0.in
  2152. {
  2153. opacity: 1;
  2154. transition:all .3s .4s;
  2155. -webkit-transition:all .3s .4s;
  2156. transform: translate3d(-25px,82px,0);
  2157. -webkit-transform: translate3d(-25px,82px,0);
  2158. }
  2159. #question7 .answer1 {
  2160. margin: auto;
  2161. top: 0;
  2162. bottom: 0;
  2163. left: 0;
  2164. right: 0;
  2165. width: 124px;
  2166. height: 35.5px;
  2167. transform: translate3d(100%,122px,0);
  2168. -webkit-transform: translate3d(100%,122px,0);
  2169. background-image: url(../image/p8_ab.png);
  2170. opacity:0;
  2171. }
  2172. #question7 .answer1.in
  2173. {
  2174. opacity: 1;
  2175. transition:all .3s .6s;
  2176. -webkit-transition:all .3s .6s;
  2177. transform: translate3d(-25px,122px,0);
  2178. -webkit-transform: translate3d(-25px,122px,0);
  2179. }
  2180. #question7 .answer2 {
  2181. margin: auto;
  2182. top: 0;
  2183. bottom: 0;
  2184. left: 0;
  2185. right: 0;
  2186. width: 124px;
  2187. height: 34.5px;
  2188. transform: translate3d(100%,165px,0);
  2189. -webkit-transform: translate3d(100%,165px,0);
  2190. background-image: url(../image/p8_ac.png);
  2191. opacity:0;
  2192. }
  2193. #question7 .answer2.in
  2194. {
  2195. opacity: 1;
  2196. transition:all .3s .8s;
  2197. -webkit-transition:all .3s .8s;
  2198. transform: translate3d(-25px,165px,0);
  2199. -webkit-transform: translate3d(-25px,165px,0);
  2200. }
  2201. #question7 .answer3 {
  2202. margin: auto;
  2203. top: 0;
  2204. bottom: 0;
  2205. left: 0;
  2206. right: 0;
  2207. width: 124px;
  2208. height: 34.5px;
  2209. transform: translate3d(100%,205px,0);
  2210. -webkit-transform: translate3d(100%,205px,0);
  2211. background-image: url(../image/p8_ad.png);
  2212. opacity:0;
  2213. }
  2214. #question7 .answer3.in
  2215. {
  2216. opacity: 1;
  2217. transition:all .3s 1s;
  2218. -webkit-transition:all .3s 1s;
  2219. transform: translate3d(-25px,205px,0);
  2220. -webkit-transform: translate3d(-25px,205px,0);
  2221. }
  2222. #question8.in {
  2223. opacity: 1;
  2224. transform: translate3d(0,0,0);
  2225. -webkit-transform: translate3d(0,0,0);
  2226. transition: all .5s;
  2227. -webkit-transition: all .5s;
  2228. }
  2229. #question8.out {
  2230. opacity: 0;
  2231. transform: translate3d(-100%,0,0);
  2232. -webkit-transform: translate3d(-100%,0,0);
  2233. transition: all .5s;
  2234. -webkit-transition: all .5s;
  2235. }
  2236. #question8 .not8 {
  2237. margin: auto;
  2238. top: 0;
  2239. bottom: 0;
  2240. left: 0;
  2241. right: 0;
  2242. width: 247px;
  2243. height: 207px;
  2244. transform: translate3d(0px,-131px,0);
  2245. -webkit-transform: translate3d(0px,-131px,0);
  2246. background-image: url(../image/p9_1n.png);
  2247. display: none;
  2248. }
  2249. #question8 .wrong8 {
  2250. margin: auto;
  2251. top: 0;
  2252. bottom: 0;
  2253. left: 0;
  2254. right: 0;
  2255. width: 247px;
  2256. height: 207px;
  2257. transform: translate3d(0px,-131px,0);
  2258. -webkit-transform: translate3d(0px,-131px,0);
  2259. background-image: url(../image/p9_1w.png);
  2260. display: none;
  2261. }
  2262. #question8 .right8 {
  2263. margin: auto;
  2264. top: 0;
  2265. bottom: 0;
  2266. left: 0;
  2267. right: 0;
  2268. width: 247px;
  2269. height: 207px;
  2270. transform: translate3d(0px,-131px,0);
  2271. -webkit-transform: translate3d(0px,-131px,0);
  2272. background-image: url(../image/p9_1r.png);
  2273. display: none;
  2274. }
  2275. #question8 .title8 {
  2276. margin: auto;
  2277. top: 0;
  2278. bottom: 0;
  2279. left: 0;
  2280. right: 0;
  2281. width: 244px;
  2282. height: 100px;
  2283. transform: translate3d(100%,14px,0);
  2284. -webkit-transform: translate3d(100%,14px,0);
  2285. background-image: url(../image/p9_t.png);
  2286. opacity: 0;
  2287. }
  2288. #question8 .title8.in
  2289. {
  2290. opacity: 1;
  2291. transition:all .3s .2s;
  2292. -webkit-transition:all .3s .2s;
  2293. transform: translate3d(0px,14px,0);
  2294. -webkit-transform: translate3d(0px,14px,0);
  2295. }
  2296. #question8 .ele8a
  2297. {
  2298. margin:auto;
  2299. top:0;
  2300. bottom:0;
  2301. left:0;
  2302. right:0;
  2303. width:236.5px;
  2304. height:109.5px;
  2305. transform:translate3d(-14px,180px,0);
  2306. -webkit-transform:translate3d(-14px,180px,0);
  2307. background-image:url(../image/tel.png);
  2308. }
  2309. #question8 .ele8b {
  2310. margin: auto;
  2311. top: 0;
  2312. bottom: 0;
  2313. left: 0;
  2314. right: 0;
  2315. width: 66px;
  2316. height: 46.5px;
  2317. transform: translate3d(54px,101px,0);
  2318. -webkit-transform: translate3d(54px,101px,0);
  2319. background-image: url(../image/beeper.png);
  2320. }
  2321. #question8 .answer0 {
  2322. margin: auto;
  2323. top: 0;
  2324. bottom: 0;
  2325. left: 0;
  2326. right: 0;
  2327. width: 81px;
  2328. height: 34.5px;
  2329. transform: translate3d(100%,82px,0);
  2330. -webkit-transform: translate3d(100%,82px,0);
  2331. background-image: url(../image/p9_aa.png);
  2332. opacity:0;
  2333. }
  2334. #question8 .answer0.in
  2335. {
  2336. opacity: 1;
  2337. transition:all .3s .4s;
  2338. -webkit-transition:all .3s .4s;
  2339. transform: translate3d(-35px,82px,0);
  2340. -webkit-transform: translate3d(-35px,82px,0);
  2341. }
  2342. #question8 .answer1 {
  2343. margin: auto;
  2344. top: 0;
  2345. bottom: 0;
  2346. left: 0;
  2347. right: 0;
  2348. width: 81px;
  2349. height: 35.5px;
  2350. transform: translate3d(100%,122px,0);
  2351. -webkit-transform: translate3d(100%,122px,0);
  2352. background-image: url(../image/p9_ab.png);
  2353. opacity:0;
  2354. }
  2355. #question8 .answer1.in
  2356. {
  2357. opacity: 1;
  2358. transition:all .3s .6s;
  2359. -webkit-transition:all .3s .6s;
  2360. transform: translate3d(-35px,122px,0);
  2361. -webkit-transform: translate3d(-35px,122px,0);
  2362. }
  2363. #question8 .answer2 {
  2364. margin: auto;
  2365. top: 0;
  2366. bottom: 0;
  2367. left: 0;
  2368. right: 0;
  2369. width: 81px;
  2370. height: 34px;
  2371. transform: translate3d(100%,165px,0);
  2372. -webkit-transform: translate3d(100%,165px,0);
  2373. background-image: url(../image/p9_ac.png);
  2374. opacity:0;
  2375. }
  2376. #question8 .answer2.in
  2377. {
  2378. opacity: 1;
  2379. transition:all .3s .8s;
  2380. -webkit-transition:all .3s .8s;
  2381. transform: translate3d(-31px,165px,0);
  2382. -webkit-transform: translate3d(-31px,165px,0);
  2383. }
  2384. #question8 .answer3 {
  2385. margin: auto;
  2386. top: 0;
  2387. bottom: 0;
  2388. left: 0;
  2389. right: 0;
  2390. width: 81px;
  2391. height: 34px;
  2392. transform: translate3d(100%,205px,0);
  2393. -webkit-transform: translate3d(100%,205px,0);
  2394. background-image: url(../image/p9_ad.png);
  2395. opacity:0;
  2396. }
  2397. #question8 .answer3.in
  2398. {
  2399. opacity: 1;
  2400. transition:all .3s 1s;
  2401. -webkit-transition:all .3s 1s;
  2402. transform: translate3d(-35px,205px,0);
  2403. -webkit-transform: translate3d(-35px,205px,0);
  2404. }
  2405. #question9.in {
  2406. opacity: 1;
  2407. transform: translate3d(0,0,0);
  2408. -webkit-transform: translate3d(0,0,0);
  2409. transition: all .5s;
  2410. -webkit-transition: all .5s;
  2411. }
  2412. #question9.out {
  2413. opacity: 0;
  2414. transform: translate3d(-100%,0,0);
  2415. -webkit-transform: translate3d(-100%,0,0);
  2416. transition: all .5s;
  2417. -webkit-transition: all .5s;
  2418. }
  2419. #question9 .not9 {
  2420. margin: auto;
  2421. top: 0;
  2422. bottom: 0;
  2423. left: 0;
  2424. right: 0;
  2425. width: 265px;
  2426. height: 215px;
  2427. transform: translate3d(0px,-131px,0);
  2428. -webkit-transform: translate3d(0px,-131px,0);
  2429. background-image: url(../image/p10_1n.png);
  2430. display: none;
  2431. }
  2432. #question9 .wrong9 {
  2433. margin: auto;
  2434. top: 0;
  2435. bottom: 0;
  2436. left: 0;
  2437. right: 0;
  2438. width: 265px;
  2439. height: 215px;
  2440. transform: translate3d(0px,-131px,0);
  2441. -webkit-transform: translate3d(0px,-131px,0);
  2442. background-image: url(../image/p10_1w.png);
  2443. display: none;
  2444. }
  2445. #question9 .right9 {
  2446. margin: auto;
  2447. top: 0;
  2448. bottom: 0;
  2449. left: 0;
  2450. right: 0;
  2451. width: 265px;
  2452. height: 215px;
  2453. transform: translate3d(0px,-131px,0);
  2454. -webkit-transform: translate3d(0px,-131px,0);
  2455. background-image: url(../image/p10_1r.png);
  2456. display: none;
  2457. }
  2458. #question9 .title9 {
  2459. margin: auto;
  2460. top: 0;
  2461. bottom: 0;
  2462. left: 0;
  2463. right: 0;
  2464. width: 246.5px;
  2465. height: 94px;
  2466. transform: translate3d(100%,14px,0);
  2467. -webkit-transform: translate3d(100%,14px,0);
  2468. background-image: url(../image/p10_t.png);
  2469. opacity: 0;
  2470. }
  2471. #question9 .title9.in
  2472. {
  2473. opacity: 1;
  2474. transition:all .3s .2s;
  2475. -webkit-transition:all .3s .2s;
  2476. transform: translate3d(0px,14px,0);
  2477. -webkit-transform: translate3d(0px,14px,0);
  2478. }
  2479. #question9 .ele9a
  2480. {
  2481. margin:auto;
  2482. top:0;
  2483. bottom:0;
  2484. left:0;
  2485. right:0;
  2486. width:236.5px;
  2487. height:109.5px;
  2488. transform:translate3d(-1px,170px,0);
  2489. -webkit-transform:translate3d(-1px,170px,0);
  2490. background-image:url(../image/tel.png);
  2491. }
  2492. #question9 .ele9b {
  2493. margin: auto;
  2494. top: 0;
  2495. bottom: 0;
  2496. left: 0;
  2497. right: 0;
  2498. width: 222.5px;
  2499. height: 217.5px;
  2500. transform: translate3d(4px,121px,0);
  2501. -webkit-transform: translate3d(4px,121px,0);
  2502. background-image: url(../image/beeper1.png);
  2503. }
  2504. #question9 .answer0 {
  2505. margin: auto;
  2506. top: 0;
  2507. bottom: 0;
  2508. left: 0;
  2509. right: 0;
  2510. width: 238.5px;
  2511. height: 34.5px;
  2512. transform: translate3d(100%,82px,0);
  2513. -webkit-transform: translate3d(100%,82px,0);
  2514. background-image: url(../image/p10_aa.png);
  2515. opacity:0;
  2516. }
  2517. #question9 .answer0.in
  2518. {
  2519. opacity: 1;
  2520. transition:all .3s .4s;
  2521. -webkit-transition:all .3s .4s;
  2522. transform: translate3d(-1px,82px,0);
  2523. -webkit-transform: translate3d(-1px,82px,0);
  2524. }
  2525. #question9 .answer1 {
  2526. margin: auto;
  2527. top: 0;
  2528. bottom: 0;
  2529. left: 0;
  2530. right: 0;
  2531. width: 238.5px;
  2532. height: 35px;
  2533. transform: translate3d(100%,122px,0);
  2534. -webkit-transform: translate3d(100%,122px,0);
  2535. background-image: url(../image/p10_ab.png);
  2536. opacity:0;
  2537. }
  2538. #question9 .answer1.in
  2539. {
  2540. opacity: 1;
  2541. transition:all .3s .6s;
  2542. -webkit-transition:all .3s .6s;
  2543. transform: translate3d(-1px,122px,0);
  2544. -webkit-transform: translate3d(-1px,122px,0);
  2545. }
  2546. #question9 .answer2 {
  2547. margin: auto;
  2548. top: 0;
  2549. bottom: 0;
  2550. left: 0;
  2551. right: 0;
  2552. width: 238.5px;
  2553. height: 35px;
  2554. transform: translate3d(100%,165px,0);
  2555. -webkit-transform: translate3d(100%,165px,0);
  2556. background-image: url(../image/p10_ac.png);
  2557. opacity:0;
  2558. }
  2559. #question9 .answer2.in
  2560. {
  2561. opacity: 1;
  2562. transition:all .3s .8s;
  2563. -webkit-transition:all .3s .8s;
  2564. transform: translate3d(-4px,165px,0);
  2565. -webkit-transform: translate3d(-4px,165px,0);
  2566. }
  2567. #question9 .answer3 {
  2568. margin: auto;
  2569. top: 0;
  2570. bottom: 0;
  2571. left: 0;
  2572. right: 0;
  2573. width: 238.5px;
  2574. height: 34px;
  2575. transform: translate3d(100%,205px,0);
  2576. -webkit-transform: translate3d(100%,205px,0);
  2577. background-image: url(../image/p10_ad.png);
  2578. opacity:0;
  2579. }
  2580. #question9 .answer3.in
  2581. {
  2582. opacity: 1;
  2583. transition:all .3s 1s;
  2584. -webkit-transition:all .3s 1s;
  2585. transform: translate3d(-2px,205px,0);
  2586. -webkit-transform: translate3d(-2px,205px,0);
  2587. }
  2588. #result
  2589. {
  2590. width:100%;
  2591. height:100%;
  2592. background-image:url(../image/bgq.jpg);
  2593. display:none;
  2594. }
  2595. #result .pic
  2596. {
  2597. margin: auto;
  2598. top: 0;
  2599. bottom: 0;
  2600. left: 0;
  2601. right: 0;
  2602. width: 320px;
  2603. height: 231px;
  2604. transform: translate3d(0px,-61px,0);
  2605. -webkit-transform: translate3d(0px,-61px,0);
  2606. }
  2607. #result .pic #logo
  2608. {
  2609. margin: auto;
  2610. top: 0;
  2611. bottom: 0;
  2612. left: 0;
  2613. right: 0;
  2614. width: 83.5px;
  2615. height: 34px;
  2616. background-image:url(../image/logo.png);
  2617. transform: translate3d(200px,-85px,0);
  2618. -webkit-transform: translate3d(200px,-85px,0);
  2619. opacity:0;
  2620. }
  2621. #result .pic #logo.in
  2622. {
  2623. animation:twenth 1s cubic-bezier(0,0,0,0) 1.5s forwards;
  2624. -webkit-animation:twenth 1s cubic-bezier(0,0,0,0) 1.5s forwards;
  2625. }
  2626. @keyframes twenth
  2627. {
  2628. 0%{opacity:1;transform: translate3d(200px,-85px,0)}
  2629. 20%{opacity:1;transform: translate3d(120px,0px,0)}
  2630. 30%{opacity:1;transform: translate3d(115px,50px,0)}
  2631. 38%{opacity:1;transform: translate3d(87px,75px,0)}
  2632. 40%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(-15deg);transform-origin:2px 30px;}
  2633. 50%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(15deg);transform-origin:80px 30px;}
  2634. 60%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(-8deg);transform-origin:2px 30px;}
  2635. 70%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(8deg);transform-origin:80px 30px;}
  2636. 80%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(-4deg);transform-origin:2px 30px;}
  2637. 90%{opacity:1;transform: translate3d(87px,75px,0) rotateZ(4deg);transform-origin:80px 30px;}
  2638. 100%{opacity:1;transform: translate3d(87px,75px,0)}
  2639. }
  2640. @-webkit-keyframes twenth
  2641. {
  2642. 0%{opacity:1;-webkit-transform: translate3d(200px,-85px,0)}
  2643. 20%{opacity:1;-webkit-transform: translate3d(120px,0px,0)}
  2644. 30%{opacity:1;-webkit-transform: translate3d(115px,50px,0)}
  2645. 38%{opacity:1;-webkit-transform: translate3d(87px,75px,0)}
  2646. 40%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(-15deg);-webkit-transform-origin:2px 30px;}
  2647. 50%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(15deg);-webkit-transform-origin:80px 30px;}
  2648. 60%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(-8deg);-webkit-transform-origin:2px 30px;}
  2649. 70%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(8deg);-webkit-transform-origin:80px 30px;}
  2650. 80%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(-4deg);-webkit-transform-origin:2px 30px;}
  2651. 90%{opacity:1;-webkit-transform: translate3d(87px,75px,0) rotateZ(4deg);-webkit-transform-origin:80px 30px;}
  2652. 100%{opacity:1;-webkit-transform: translate3d(87px,75px,0)}
  2653. }
  2654. #result .text1
  2655. {
  2656. margin: auto;
  2657. top: 0;
  2658. bottom: 0;
  2659. left: 0;
  2660. right: 0;
  2661. width: 134px;
  2662. height:26.5px;
  2663. background-image:url(../image/lpage1.png);
  2664. transform: translate3d(-19px,-181px,0);
  2665. -webkit-transform: translate3d(-19px,-181px,0);
  2666. }
  2667. #result .text2
  2668. {
  2669. margin: auto;
  2670. top: 0;
  2671. bottom: 0;
  2672. left: 0;
  2673. right: 0;
  2674. width: 90px;
  2675. height:50.5px;
  2676. transform: translate3d(85px,-184px,0);
  2677. -webkit-transform: translate3d(85px,-184px,0);
  2678. }
  2679. #result .text3
  2680. {
  2681. margin: auto;
  2682. top: 0;
  2683. bottom: 0;
  2684. left: 0;
  2685. right: 0;
  2686. width: 245px;
  2687. height:111px;
  2688. transform: translate3d(0px,87px,0);
  2689. -webkit-transform: translate3d(0px,87px,0);
  2690. }
  2691. #btn1
  2692. {
  2693. margin: auto;
  2694. top: 0;
  2695. bottom: 0;
  2696. left: 0;
  2697. right: 0;
  2698. width: 79.5px;
  2699. height: 38.5px;
  2700. background-image:url(../image/lpage5.png);
  2701. transform: translate3d(-170px,155px,0);
  2702. -webkit-transform: translate3d(-170px,155px,0);
  2703. opacity:0;
  2704. }
  2705. #btn2
  2706. {
  2707. margin: auto;
  2708. top: 0;
  2709. bottom: 0;
  2710. left: 0;
  2711. right: 0;
  2712. width: 79px;
  2713. height: 38.5px;
  2714. background-image:url(../image/lpage6.png);
  2715. transform: translate3d(170px,155px,0);
  2716. -webkit-transform: translate3d(170px,155px,0);
  2717. opacity:0;
  2718. }
  2719. #btn3
  2720. {
  2721. margin: auto;
  2722. top: 0;
  2723. bottom: 0;
  2724. left: 0;
  2725. right: 0;
  2726. width: 105px;
  2727. height: 43px;
  2728. background-image:url(../image/lpage7.png);
  2729. transform: translate3d(0px,209px,0);
  2730. -webkit-transform: translate3d(0px,209px,0);
  2731. opacity:0;
  2732. }
  2733. #btn1.in
  2734. {
  2735. opacity:1;
  2736. transition:all .5s .5s;
  2737. -webkit-transition:all .5s .5s;
  2738. transform: translate3d(-70px,155px,0);
  2739. -webkit-transform: translate3d(-70px,155px,0);
  2740. }
  2741. #btn2.in
  2742. {
  2743. opacity:1;
  2744. transition:all .5s .7s;
  2745. -webkit-transition:all .5s .7s;
  2746. transform: translate3d(70px,155px,0);
  2747. -webkit-transform: translate3d(70px,155px,0);
  2748. }
  2749. #btn3.in
  2750. {
  2751. opacity:1;
  2752. transition:all 1s .9s;
  2753. -webkit-transition:all 1s .9s;
  2754. transform: translate3d(0px,209px,0);
  2755. -webkit-transform: translate3d(0px,209px,0);
  2756. }
  2757. #share
  2758. {
  2759. width:100%;
  2760. height:0;
  2761. opacity:0;
  2762. top:0;
  2763. background-position:center top;
  2764. background-color:rgba(0,0,0,.8);
  2765. -webkit-transition: opacity .5s, height 0s .5s;
  2766. transition: opacity .5s, height 0s .5s;
  2767. overflow:hidden;
  2768. }
  2769. #share #share1
  2770. {
  2771. margin: auto;
  2772. top: 0;
  2773. bottom: 0;
  2774. left: 0;
  2775. right: 0;
  2776. width: 201px;
  2777. height: 197.5px;
  2778. background-image:url(../image/share_1.png);
  2779. transform: translate3d(10px,-75px,0);
  2780. -webkit-transform: translate3d(10px,-75px,0);
  2781. }
  2782. #share.in
  2783. {
  2784. height:100%;
  2785. opacity:1;
  2786. -webkit-transition: opacity .5s, height 0s;
  2787. transition: opacity .5s, height 0s;
  2788. overflow:visible;
  2789. }
  2790. #bgm_btn
  2791. {
  2792. width:42px;
  2793. height:42px;
  2794. position:absolute;
  2795. top:0px;
  2796. right:5px;
  2797. background-size:70% 70%;
  2798. }
  2799. #bgm_btn.off
  2800. {
  2801. background-image:url(../image/off.png);
  2802. }
  2803. #bgm_btn.on
  2804. {
  2805. background-image:url(../image/on.png);
  2806. }
  2807. @media(max-height:480px) {
  2808. #fpage .layer {
  2809. transform: scaleY(.8);
  2810. -webkit-transform: scaleY(.8);
  2811. }
  2812. #questions .pro {
  2813. display: none;
  2814. transform: scale(.88);
  2815. -webkit-transform: scale(.88);
  2816. }
  2817. #question0.out {
  2818. opacity: 0;
  2819. transform: translate3d(-100%,0,0) scale(.88);
  2820. -webkit-transform: translate3d(-100%,0,0) scale(.88);
  2821. transition: all .5s;
  2822. -webkit-transition: all .5s;
  2823. }
  2824. #question1.out, #question2.out, #question3.out, #question4.out, #question5.out, #question6.out, #question7.out, #question8.out, #question9.out, #question0.out {
  2825. opacity: 0;
  2826. transform: translate3d(-100%,0,0) scale(.88);
  2827. -webkit-transform: translate3d(-100%,0,0) scale(.88);
  2828. transition: all .5s;
  2829. -webkit-transition: all .5s;
  2830. }
  2831. #result .text3{
  2832. transform: translate3d(0px,80px,0) scale(.9);
  2833. -webkit-transform: translate3d(0px,80px,0) scale(.9);
  2834. }
  2835. #btn1{
  2836. transform: translate3d(-170px,145px,0) scale(.9);
  2837. -webkit-transform: translate3d(-170px,145px,0) scale(.9);
  2838. }
  2839. #btn2{
  2840. transform: translate3d(170px,145px,0) scale(.9);
  2841. -webkit-transform: translate3d(170px,145px,0) scale(.9);
  2842. }
  2843. #btn3{
  2844. transform: translate3d(0px,185px,0) scale(.9);
  2845. -webkit-transform: translate3d(0px,185px,0) scale(.9);
  2846. }
  2847. #btn1.in
  2848. {
  2849. opacity:1;
  2850. transition:all .5s .5s;
  2851. -webkit-transition:all .5s .5s;
  2852. transform: translate3d(-70px,145px,0) scale(.9);
  2853. -webkit-transform: translate3d(-70px,145px,0) scale(.9);
  2854. }
  2855. #btn2.in
  2856. {
  2857. opacity:1;
  2858. transition:all .5s .7s;
  2859. -webkit-transition:all .5s .7s;
  2860. transform: translate3d(70px,145px,0) scale(.9);
  2861. -webkit-transform: translate3d(70px,145px,0) scale(.9);
  2862. }
  2863. #btn3.in
  2864. {
  2865. opacity:1;
  2866. transition:all 1s .9s;
  2867. -webkit-transition:all 1s .9s;
  2868. transform: translate3d(0px,185px,0) scale(.9);
  2869. -webkit-transform: translate3d(0px,185px,0) scale(.9);
  2870. }
  2871. }