main.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073
  1. @charset "UTF-8";
  2. html,
  3. body,
  4. div,
  5. span,
  6. applet,
  7. object,
  8. iframe,
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6,
  15. p,
  16. blockquote,
  17. pre,
  18. a,
  19. abbr,
  20. acronym,
  21. address,
  22. big,
  23. cite,
  24. code,
  25. del,
  26. dfn,
  27. em,
  28. img,
  29. ins,
  30. kbd,
  31. q,
  32. s,
  33. samp,
  34. small,
  35. strike,
  36. strong,
  37. sub,
  38. sup,
  39. tt,
  40. var,
  41. b,
  42. u,
  43. i,
  44. center,
  45. dl,
  46. dt,
  47. dd,
  48. ol,
  49. ul,
  50. li,
  51. fieldset,
  52. form,
  53. label,
  54. legend,
  55. table,
  56. caption,
  57. tbody,
  58. tfoot,
  59. thead,
  60. tr,
  61. th,
  62. td,
  63. article,
  64. aside,
  65. canvas,
  66. details,
  67. embed,
  68. figure,
  69. figcaption,
  70. footer,
  71. header,
  72. hgroup,
  73. menu,
  74. nav,
  75. output,
  76. ruby,
  77. section,
  78. summary,
  79. time,
  80. mark,
  81. audio,
  82. video {
  83. margin: 0;
  84. padding: 0;
  85. border: 0;
  86. font-size: 100%;
  87. font: inherit;
  88. vertical-align: baseline; }
  89. /* HTML5 display-role reset for older browsers */
  90. article,
  91. aside,
  92. details,
  93. figcaption,
  94. figure,
  95. footer,
  96. header,
  97. hgroup,
  98. menu,
  99. nav,
  100. section {
  101. display: block; }
  102. ol,
  103. ul {
  104. list-style: none; }
  105. blockquote,
  106. q {
  107. quotes: none; }
  108. blockquote:before,
  109. blockquote:after,
  110. q:before,
  111. q:after {
  112. content: '';
  113. content: none; }
  114. table {
  115. border-collapse: collapse;
  116. border-spacing: 0; }
  117. /******x reset end*****/
  118. * {
  119. box-sizing: border-box;
  120. -ms-box-sizing: border-box;
  121. -webkit-box-sizing: border-box;
  122. -moz-box-sizing: border-box;
  123. margin: 0;
  124. padding: 0;
  125. border: 0; }
  126. html,
  127. body {
  128. -webkit-overflow-scrolling: touch; }
  129. a {
  130. background-color: transparent;
  131. outline: 0;
  132. text-decoration: none;
  133. -webkit-tap-highlight-color: transparent;
  134. cursor: pointer; }
  135. .clear {
  136. clear: both;
  137. *zoom: 1; }
  138. .cf:after {
  139. font-size: 0;
  140. display: block;
  141. visibility: hidden;
  142. clear: both;
  143. height: 0;
  144. content: ''; }
  145. .center-block {
  146. display: block;
  147. margin-left: auto;
  148. margin-right: auto; }
  149. /*显示类*/
  150. .hide,
  151. .hidden {
  152. display: none; }
  153. .show {
  154. display: block; }
  155. .invisible {
  156. visibility: hidden; }
  157. .visible {
  158. visibility: visible; }
  159. .block {
  160. display: block; }
  161. .inline {
  162. display: inline; }
  163. .inlineblock,
  164. .inline-block {
  165. display: inline-block;
  166. *display: inline;
  167. *zoom: 1; }
  168. /*位置浮动类*/
  169. .float-left,
  170. .pull-left {
  171. float: left; }
  172. .float-right,
  173. .pull-right {
  174. float: right; }
  175. .vertical-middle {
  176. vertical-align: middle; }
  177. .over-hide,
  178. .over-hidden {
  179. overflow: hidden; }
  180. .table {
  181. display: table; }
  182. .table-cell {
  183. display: table-cell; }
  184. .scroll-auto,
  185. .scrollauto {
  186. overflow: auto; }
  187. .scroll {
  188. overflow: auto; }
  189. /*内联文本类*/
  190. .text-center {
  191. text-align: center; }
  192. .text-left {
  193. text-align: left; }
  194. .text-right {
  195. text-align: right; }
  196. .text-justify {
  197. text-align: justify !important; }
  198. .text-truncate {
  199. overflow: hidden;
  200. -o-text-overflow: ellipsis;
  201. text-overflow: ellipsis;
  202. white-space: nowrap; }
  203. .text-nowrap,
  204. .nowrap {
  205. white-space: nowrap; }
  206. .breakall,
  207. .break-all,
  208. .text-break {
  209. word-break: break-all; }
  210. .text-bold,
  211. .font-bold {
  212. font-weight: bold !important; }
  213. .text-lowercase,
  214. .lowercase {
  215. text-transform: lowercase !important; }
  216. .text-uppercase,
  217. .uppercase {
  218. text-transform: uppercase !important; }
  219. .text-capitalize {
  220. text-transform: capitalize !important; }
  221. .text-white {
  222. color: #fff !important; }
  223. .text-muted {
  224. color: #636c72 !important; }
  225. .hover-transition {
  226. -webkit-transition: all 0.35s ease;
  227. -o-transition: all 0.35s ease;
  228. -moz-transition: all 0.35s ease;
  229. transition: all 0.35s ease; }
  230. body {
  231. font-family: "Source Han Sans CN" ,"Arial"; }
  232. textarea,
  233. input {
  234. outline: none; }
  235. .voice_active:after {
  236. content: ' ';
  237. width: .893333rem;
  238. height: .893333rem;
  239. display: block;
  240. background: url("../images/voice_active.png");
  241. -moz-background-size: 100% 100%;
  242. background-size: 100% 100%;
  243. position: absolute;
  244. z-index: 100;
  245. top: 0;
  246. left: 0; }
  247. .poster-mode .qrcode-box p {
  248. overflow: hidden;
  249. -o-text-overflow: ellipsis;
  250. text-overflow: ellipsis;
  251. /*white-space: nowrap; */}
  252. * {
  253. margin: 0;
  254. padding: 0;
  255. -webkit-box-sizing: border-box;
  256. -moz-box-sizing: border-box;
  257. box-sizing: border-box;
  258. -webkit-tap-highlight-color: transparent; }
  259. select {
  260. -webkit-appearance: none;
  261. -moz-appearance: none;
  262. appearance: none; }
  263. body {
  264. line-height: 1.5;
  265. color: #151f3a; }
  266. li {
  267. list-style: none; }
  268. a {
  269. text-decoration: none; }
  270. img {
  271. max-width: 100%;
  272. vertical-align: top; }
  273. .hide {
  274. display: none !important; }
  275. .show {
  276. display: show !important; }
  277. .bold {
  278. font-weight: bold; }
  279. .js-an {
  280. display: none !important;
  281. -webkit-animation-name: none !important;
  282. -moz-animation-name: none !important;
  283. -o-animation-name: none !important;
  284. animation-name: none !important; }
  285. .animated {
  286. -webkit-animation-duration: .6s;
  287. -moz-animation-duration: .6s;
  288. -o-animation-duration: .6s;
  289. animation-duration: .6s;
  290. -webkit-transform: translate3d(0, 0, 0);
  291. -moz-transform: translate3d(0, 0, 0);
  292. transform: translate3d(0, 0, 0); }
  293. .origin-tc {
  294. -webkit-transform-origin: top center;
  295. -moz-transform-origin: top center;
  296. -ms-transform-origin: top center;
  297. -o-transform-origin: top center;
  298. transform-origin: top center; }
  299. .origin-rb {
  300. -webkit-transform-origin: right bottom;
  301. -moz-transform-origin: right bottom;
  302. -ms-transform-origin: right bottom;
  303. -o-transform-origin: right bottom;
  304. transform-origin: right bottom; }
  305. .origin-lb {
  306. -webkit-transform-origin: left center;
  307. -moz-transform-origin: left center;
  308. -ms-transform-origin: left center;
  309. -o-transform-origin: left center;
  310. transform-origin: left center; }
  311. .origin-cb {
  312. -webkit-transform-origin: center bottom;
  313. -moz-transform-origin: center bottom;
  314. -ms-transform-origin: center bottom;
  315. -o-transform-origin: center bottom;
  316. transform-origin: center bottom; }
  317. .origin-cc {
  318. -webkit-transform-origin: center center;
  319. -moz-transform-origin: center center;
  320. -ms-transform-origin: center center;
  321. -o-transform-origin: center center;
  322. transform-origin: center center; }
  323. .iteration {
  324. -webkit-animation-iteration-count: infinite;
  325. -moz-animation-iteration-count: infinite;
  326. -o-animation-iteration-count: infinite;
  327. animation-iteration-count: infinite; }
  328. .ease-in {
  329. -webkit-animation-timing-function: ease-in;
  330. -moz-animation-timing-function: ease-in;
  331. -o-animation-timing-function: ease-in;
  332. animation-timing-function: ease-in; }
  333. .ease-out {
  334. -webkit-animation-timing-function: ease-out;
  335. -moz-animation-timing-function: ease-out;
  336. -o-animation-timing-function: ease-out;
  337. animation-timing-function: ease-out; }
  338. .delay0 {
  339. -webkit-animation-delay: 0s;
  340. -moz-animation-delay: 0s;
  341. -o-animation-delay: 0s;
  342. animation-delay: 0s; }
  343. .delay1 {
  344. -webkit-animation-delay: 0.2s;
  345. -moz-animation-delay: 0.2s;
  346. -o-animation-delay: 0.2s;
  347. animation-delay: 0.2s; }
  348. .delay2 {
  349. -webkit-animation-delay: 0.4s;
  350. -moz-animation-delay: 0.4s;
  351. -o-animation-delay: 0.4s;
  352. animation-delay: 0.4s; }
  353. .delay3 {
  354. -webkit-animation-delay: 0.6s;
  355. -moz-animation-delay: 0.6s;
  356. -o-animation-delay: 0.6s;
  357. animation-delay: 0.6s; }
  358. .delay4 {
  359. -webkit-animation-delay: 0.8s;
  360. -moz-animation-delay: 0.8s;
  361. -o-animation-delay: 0.8s;
  362. animation-delay: 0.8s; }
  363. .delay5 {
  364. -webkit-animation-delay: 1s;
  365. -moz-animation-delay: 1s;
  366. -o-animation-delay: 1s;
  367. animation-delay: 1s; }
  368. .delay6 {
  369. -webkit-animation-delay: 1.2s;
  370. -moz-animation-delay: 1.2s;
  371. -o-animation-delay: 1.2s;
  372. animation-delay: 1.2s; }
  373. .delay7 {
  374. -webkit-animation-delay: 1.4s;
  375. -moz-animation-delay: 1.4s;
  376. -o-animation-delay: 1.4s;
  377. animation-delay: 1.4s; }
  378. .delay8 {
  379. -webkit-animation-delay: 1.6s;
  380. -moz-animation-delay: 1.6s;
  381. -o-animation-delay: 1.6s;
  382. animation-delay: 1.6s; }
  383. .delay9 {
  384. -webkit-animation-delay: 1.8s;
  385. -moz-animation-delay: 1.8s;
  386. -o-animation-delay: 1.8s;
  387. animation-delay: 1.8s; }
  388. .delay10 {
  389. -webkit-animation-delay: 2s;
  390. -moz-animation-delay: 2s;
  391. -o-animation-delay: 2s;
  392. animation-delay: 2s; }
  393. .delay11 {
  394. -webkit-animation-delay: 2.2s;
  395. -moz-animation-delay: 2.2s;
  396. -o-animation-delay: 2.2s;
  397. animation-delay: 2.2s; }
  398. .delay12 {
  399. -webkit-animation-delay: 2.4s;
  400. -moz-animation-delay: 2.4s;
  401. -o-animation-delay: 2.4s;
  402. animation-delay: 2.4s; }
  403. .delay13 {
  404. -webkit-animation-delay: 2.6s;
  405. -moz-animation-delay: 2.6s;
  406. -o-animation-delay: 2.6s;
  407. animation-delay: 2.6s; }
  408. .delay14 {
  409. -webkit-animation-delay: 2.8s;
  410. -moz-animation-delay: 2.8s;
  411. -o-animation-delay: 2.8s;
  412. animation-delay: 2.8s; }
  413. .delay15 {
  414. -webkit-animation-delay: 3s;
  415. -moz-animation-delay: 3s;
  416. -o-animation-delay: 3s;
  417. animation-delay: 3s; }
  418. .time0 {
  419. -webkit-animation-duration: 0s;
  420. -moz-animation-duration: 0s;
  421. -o-animation-duration: 0s;
  422. animation-duration: 0s; }
  423. .time1 {
  424. -webkit-animation-duration: 0.2s;
  425. -moz-animation-duration: 0.2s;
  426. -o-animation-duration: 0.2s;
  427. animation-duration: 0.2s; }
  428. .time2 {
  429. -webkit-animation-duration: 0.4s;
  430. -moz-animation-duration: 0.4s;
  431. -o-animation-duration: 0.4s;
  432. animation-duration: 0.4s; }
  433. .time3 {
  434. -webkit-animation-duration: 0.6s;
  435. -moz-animation-duration: 0.6s;
  436. -o-animation-duration: 0.6s;
  437. animation-duration: 0.6s; }
  438. .time4 {
  439. -webkit-animation-duration: 0.8s;
  440. -moz-animation-duration: 0.8s;
  441. -o-animation-duration: 0.8s;
  442. animation-duration: 0.8s; }
  443. .time5 {
  444. -webkit-animation-duration: 1s;
  445. -moz-animation-duration: 1s;
  446. -o-animation-duration: 1s;
  447. animation-duration: 1s; }
  448. .time6 {
  449. -webkit-animation-duration: 1.2s;
  450. -moz-animation-duration: 1.2s;
  451. -o-animation-duration: 1.2s;
  452. animation-duration: 1.2s; }
  453. .time7 {
  454. -webkit-animation-duration: 1.4s;
  455. -moz-animation-duration: 1.4s;
  456. -o-animation-duration: 1.4s;
  457. animation-duration: 1.4s; }
  458. .time8 {
  459. -webkit-animation-duration: 1.6s;
  460. -moz-animation-duration: 1.6s;
  461. -o-animation-duration: 1.6s;
  462. animation-duration: 1.6s; }
  463. .time9 {
  464. -webkit-animation-duration: 1.8s;
  465. -moz-animation-duration: 1.8s;
  466. -o-animation-duration: 1.8s;
  467. animation-duration: 1.8s; }
  468. .time10 {
  469. -webkit-animation-duration: 2s;
  470. -moz-animation-duration: 2s;
  471. -o-animation-duration: 2s;
  472. animation-duration: 2s; }
  473. .time11 {
  474. -webkit-animation-duration: 2.2s;
  475. -moz-animation-duration: 2.2s;
  476. -o-animation-duration: 2.2s;
  477. animation-duration: 2.2s; }
  478. .time12 {
  479. -webkit-animation-duration: 2.4s;
  480. -moz-animation-duration: 2.4s;
  481. -o-animation-duration: 2.4s;
  482. animation-duration: 2.4s; }
  483. .time13 {
  484. -webkit-animation-duration: 2.6s;
  485. -moz-animation-duration: 2.6s;
  486. -o-animation-duration: 2.6s;
  487. animation-duration: 2.6s; }
  488. .time14 {
  489. -webkit-animation-duration: 2.8s;
  490. -moz-animation-duration: 2.8s;
  491. -o-animation-duration: 2.8s;
  492. animation-duration: 2.8s; }
  493. .time15 {
  494. -webkit-animation-duration: 3s;
  495. -moz-animation-duration: 3s;
  496. -o-animation-duration: 3s;
  497. animation-duration: 3s; }
  498. .clearfix:after {
  499. content: ".";
  500. display: block;
  501. height: 0;
  502. clear: both;
  503. visibility: hidden; }
  504. .secret-box {
  505. position: fixed;
  506. top: 0;
  507. left: 0;
  508. width: 100%;
  509. height: 100vh;
  510. background: url(../img/loading/bg.jpg) no-repeat 0 0/cover;
  511. display: none;
  512. z-index: 1001; }
  513. .secret-box img {
  514. position: absolute;
  515. top: 50%;
  516. -webkit-transform: translate(0, -50%);
  517. -moz-transform: translate(0, -50%);
  518. -ms-transform: translate(0, -50%);
  519. -o-transform: translate(0, -50%);
  520. transform: translate(0, -50%); }
  521. .warp {
  522. display:none;
  523. width: 10rem;
  524. margin: 0 auto;
  525. position: relative;
  526. height: 100vh;
  527. background: url(../img/loading/bg.jpg) no-repeat 0 0/cover; }
  528. .loading2 {
  529. display:none;
  530. position: fixed;
  531. top: 0;
  532. left: 50%;
  533. width: 10rem;
  534. height: 100vh;
  535. margin-left: -5rem;
  536. background: url(../img/loading/bg.jpg) no-repeat 0 0/cover;
  537. z-index: 100;
  538. /*display: none;*/ }
  539. .loading2 .curtain-box2 {
  540. position: absolute;
  541. top: 50%;
  542. left: 50%;
  543. width: 10.42188rem;
  544. height: 14.04688rem;
  545. margin-left: -5.21094rem;
  546. background: url(../img/loading/bg21.png) no-repeat 0 0/100% auto;
  547. -webkit-transform: translate(0, -50%);
  548. -moz-transform: translate(0, -50%);
  549. -ms-transform: translate(0, -50%);
  550. -o-transform: translate(0, -50%);
  551. transform: translate(0, -50%); }
  552. .loading {
  553. position: fixed;
  554. top: 0;
  555. left: 50%;
  556. width: 10rem;
  557. height: 100vh;
  558. margin-left: -5rem;
  559. background: url(../img/loading/bg.jpg) no-repeat 0 0/cover;
  560. z-index: 100;
  561. /*display: none;*/ }
  562. .loading .curtain-box {
  563. position: absolute;
  564. top: 50%;
  565. left: 50%;
  566. width: 10.42188rem;
  567. height: 14.04688rem;
  568. margin-left: -5.21094rem;
  569. background: url(../img/loading/bg2.png) no-repeat 0 0/100% auto;
  570. -webkit-transform: translate(0, -50%);
  571. -moz-transform: translate(0, -50%);
  572. -ms-transform: translate(0, -50%);
  573. -o-transform: translate(0, -50%);
  574. transform: translate(0, -50%); }
  575. .loading .curtain-box .txt {
  576. position: absolute;
  577. top: 5.3125rem;
  578. left: 50%;
  579. width: 2.5625rem;
  580. margin-left: -1.28125rem; }
  581. .loading .curtain-box .loading-bar {
  582. position: absolute;
  583. top: 10.625rem;
  584. left: 50%;
  585. width: 7.5rem;
  586. margin-left: -3.75rem; }
  587. .loading .curtain-box .loading-bar .load-txt {
  588. font-size: 0.53125rem;
  589. color: #1e0502;
  590. text-align: center;
  591. text-shadow: 2px 2px 0 #b9b988;
  592. margin-bottom: 0.78125rem; }
  593. .loading .curtain-box .loading-bar .bar {
  594. width: 100%;
  595. height: 0.26562rem;
  596. border: 1px solid rgba(255, 255, 255, 0.5);
  597. -webkit-border-radius: 0.26562rem;
  598. -moz-border-radius: 0.26562rem;
  599. border-radius: 0.26562rem;
  600. white-space: nowrap; }
  601. .loading .curtain-box .loading-bar .bar span {
  602. width: 0;
  603. height: 100%;
  604. background: -webkit-gradient(linear, left top, right bottom, from(#00489d), to(#3478c9));
  605. background: -webkit-linear-gradient(top left, #00489d, #3478c9);
  606. background: -moz-linear-gradient(top left, #00489d, #3478c9);
  607. background: -o-linear-gradient(top left, #00489d, #3478c9);
  608. background: linear-gradient(to bottom right, #00489d, #3478c9);
  609. display: block;
  610. position: relative; }
  611. .loading .curtain-box .loading-bar .bar .icon-load {
  612. position: absolute;
  613. right: -1.40625rem;
  614. top: 50%;
  615. width: 2.15625rem;
  616. height: 1.04688rem;
  617. margin-top: -0.52344rem;
  618. background: url(../img/loading/loading_icon.png) no-repeat 0 0/100% auto; }
  619. .select-dish-box {
  620. position: absolute;
  621. top: 50%;
  622. left: 50%;
  623. width: 10rem;
  624. height: 15.53125rem;
  625. margin-left: -5rem;
  626. background: url(../img/menu_bg.png) no-repeat 0 0/100% auto;
  627. padding-top: 2.34375rem;
  628. -webkit-transform: translate(0, -50%);
  629. -moz-transform: translate(0, -50%);
  630. -ms-transform: translate(0, -50%);
  631. -o-transform: translate(0, -50%);
  632. transform: translate(0, -50%); }
  633. .select-dish-box .tt {
  634. width: 3.85938rem;
  635. margin: 0 auto;
  636. display: block; }
  637. .select-dish-box .list {
  638. margin: 1.09375rem auto 0;
  639. width: 3.82812rem; }
  640. .select-dish-box .list .item {
  641. margin-bottom: 0.9375rem; }
  642. .select-dish-box .list .item.active {
  643. -webkit-filter: grayscale(50%);
  644. filter: grayscale(50%); }
  645. .select-dish-box .confirm {
  646. width: 2.8125rem;
  647. height: 0.92188rem;
  648. margin: 0 auto;
  649. background: url(../img/select_menu_btn.png) no-repeat 0 0/100% auto;
  650. display: none; }
  651. .game-box {
  652. position: absolute;
  653. top: 0;
  654. left: 0;
  655. width: 100%;
  656. height: 100vh;
  657. z-index: 1;
  658. display: none; }
  659. .poster-mode {
  660. position: fixed;
  661. top: 0;
  662. left: 50%;
  663. width: 10rem;
  664. height: 100vh;
  665. margin-left: -5rem;
  666. z-index: 100;
  667. background: #000;
  668. display: none; }
  669. .poster-mode.poster-bg1 {
  670. background: url(../img/poster/bg1.jpg) no-repeat top center/cover; }
  671. .poster-mode.poster-bg2 {
  672. background: url(../img/poster/bg2.jpg) no-repeat top center/cover; }
  673. .poster-mode.poster-bg3 {
  674. background: url(../img/poster/bg3.jpg) no-repeat top center/cover; }
  675. .poster-mode .logo {
  676. position: absolute;
  677. top: 0.3125rem;
  678. left: 0.46875rem;
  679. width: 1.5625rem; }
  680. .poster-mode .poster-img {
  681. position: absolute;
  682. bottom: 0;
  683. left: 50%;
  684. width: 8.26562rem;
  685. margin-left: -4.13281rem; }
  686. .poster-mode .leads-box {
  687. position: absolute;
  688. top: 1.65625rem;
  689. left: 50%;
  690. width: 9.15625rem;
  691. height: 3.57812rem;
  692. margin-left: -4.57812rem;
  693. background: url(../img/leads_bg.png) no-repeat top center/100% auto;
  694. padding-top: 0.46875rem;
  695. padding-left: 2.65625rem;
  696. padding-right: 1.875rem; }
  697. .poster-mode .leads-box .form-group {
  698. border-bottom: 1px solid #c19e83; }
  699. .poster-mode .leads-box .form-group input , .poster-mode .leads-box .form-group .msg{
  700. width: 100%;
  701. height: 0.78125rem;
  702. line-height: 0.78125rem;
  703. font-size: 0.375rem;
  704. font-size: 20x;
  705. color: #c19e83;
  706. background: transparent; }
  707. .poster-mode .leads-box .user-info {
  708. position: absolute;
  709. right: 0.3125rem;
  710. top: 50%;
  711. -webkit-transform: translate(0, -50%);
  712. -moz-transform: translate(0, -50%);
  713. -ms-transform: translate(0, -50%);
  714. -o-transform: translate(0, -50%);
  715. transform: translate(0, -50%); }
  716. .poster-mode .leads-box .user-info .headimg-box {
  717. width: 1.25rem; }
  718. .poster-mode .leads-box .user-info p {
  719. font-size: 0.3125rem;
  720. width: 1.25rem;
  721. overflow: hidden;
  722. -o-text-overflow: ellipsis;
  723. text-overflow: ellipsis;
  724. display: -webkit-box;
  725. -webkit-line-clamp: 2;
  726. -webkit-box-orient: vertical;
  727. color: #743d2f;
  728. margin-top: 0.15625rem; }
  729. .poster-mode .leads-box .submit {
  730. position: absolute;
  731. bottom: -0.15625rem;
  732. left: 50%;
  733. width: 3.04688rem;
  734. margin-left: -1.52344rem; }
  735. .poster-mode .leads-box .pro {
  736. position: absolute;
  737. top: 50%;
  738. left: 0.46875rem;
  739. width: 1.82812rem;
  740. -webkit-transform: translate(0, -50%);
  741. -moz-transform: translate(0, -50%);
  742. -ms-transform: translate(0, -50%);
  743. -o-transform: translate(0, -50%);
  744. transform: translate(0, -50%); }
  745. .poster-mode .qrcode-box {
  746. position: absolute;
  747. bottom: 1.92188rem;
  748. /*right: 0.46875rem;*/
  749. right: 0.16875rem;
  750. width: 1.40625rem; }
  751. .poster-mode .qrcode-box p {
  752. /*font-size: 0.21875rem;*/
  753. font-size: 0.31875rem;
  754. color: #fff;
  755. text-align: center;
  756. overflow: hidden;
  757. text-overflow: ellipsis;
  758. display: -webkit-box;
  759. -webkit-line-clamp: 2;
  760. -webkit-box-orient: vertical;
  761. }
  762. .poster-mode .replay-btn {
  763. position: absolute;
  764. bottom: 0.70312rem;
  765. left: 1.48438rem;
  766. width: 2.8125rem; }
  767. .poster-mode .secret-btn {
  768. position: absolute;
  769. bottom: 0.70312rem;
  770. right: 1.48438rem;
  771. width: 2.8125rem; }
  772. .cut-mode2 {
  773. position: fixed;
  774. top: 0;
  775. left: 0;
  776. width: 100%;
  777. height: 100vh;
  778. z-index: 100;
  779. display: none; }
  780. .move-mode2 {
  781. position: fixed;
  782. top: 0;
  783. left: 0;
  784. width: 100%;
  785. height: 100vh;
  786. z-index: 100;
  787. display: none; }
  788. .shake-mode2 {
  789. position: fixed;
  790. top: 0;
  791. left: 0;
  792. width: 100%;
  793. height: 100vh;
  794. z-index: 100;
  795. display: none; }
  796. .shake-mode {
  797. position: fixed;
  798. top: 0;
  799. left: 0;
  800. width: 100%;
  801. height: 100vh;
  802. z-index: 100;
  803. background: rgba(0, 0, 0, 0.6);
  804. display: none; }
  805. .shake-mode .shake-dialog {
  806. position: absolute;
  807. top: 40%;
  808. left: 50%;
  809. width: 6.28125rem;
  810. -webkit-transform: translate(-50%, -50%);
  811. -moz-transform: translate(-50%, -50%);
  812. -ms-transform: translate(-50%, -50%);
  813. -o-transform: translate(-50%, -50%);
  814. transform: translate(-50%, -50%);
  815. padding-top: 0.78125rem; }
  816. .shake-mode .shake-dialog .icon {
  817. position: absolute;
  818. top: 5.625rem;
  819. left: 50%;
  820. width: 2.23438rem;
  821. margin-left: -1.11719rem; }
  822. .shake-mode .shake-dialog .fire {
  823. width: 5.98438rem;
  824. height: 10.54688rem;
  825. background: url(../img/fire.png) no-repeat 0 0;
  826. -moz-background-size: 600% 100%;
  827. background-size: 600% 100%;
  828. -webkit-animation: fire 1.5s steps(5) infinite;
  829. -moz-animation: fire 1.5s steps(5) infinite;
  830. -o-animation: fire 1.5s steps(5) infinite;
  831. animation: fire 1.5s steps(5) infinite; }
  832. .shake-mode .shake-dialog .txt {
  833. position: absolute;
  834. top: 8.35938rem;
  835. left: 50%;
  836. width: 4.96875rem;
  837. margin-left: -2.48438rem; }
  838. .anim-time {
  839. -webkit-animation-duration: 0.5 !important;
  840. -moz-animation-duration: 0.5 !important;
  841. -o-animation-duration: 0.5 !important;
  842. animation-duration: 0.5 !important; }
  843. @-webkit-keyframes fire {
  844. 0% {
  845. background-position: 0 0; }
  846. 100% {
  847. background-position: 100% 0; } }
  848. @-moz-keyframes fire {
  849. 0% {
  850. background-position: 0 0; }
  851. 100% {
  852. background-position: 100% 0; } }
  853. @-o-keyframes fire {
  854. 0% {
  855. background-position: 0 0; }
  856. 100% {
  857. background-position: 100% 0; } }
  858. @keyframes fire {
  859. 0% {
  860. background-position: 0 0; }
  861. 100% {
  862. background-position: 100% 0; } }
  863. .anim-light {
  864. -webkit-animation: light 2s ease-out infinite;
  865. -moz-animation: light 2s ease-out infinite;
  866. -o-animation: light 2s ease-out infinite;
  867. animation: light 2s ease-out infinite; }
  868. @-webkit-keyframes light {
  869. 0%, 100% {
  870. opacity: 1; }
  871. 50% {
  872. opacity: 0.7; } }
  873. @-moz-keyframes light {
  874. 0%, 100% {
  875. opacity: 1; }
  876. 50% {
  877. opacity: 0.7; } }
  878. @-o-keyframes light {
  879. 0%, 100% {
  880. opacity: 1; }
  881. 50% {
  882. opacity: 0.7; } }
  883. @keyframes light {
  884. 0%, 100% {
  885. opacity: 1; }
  886. 50% {
  887. opacity: 0.7; } }
  888. .anim-btn {
  889. -webkit-animation: btn 1s ease infinite;
  890. -moz-animation: btn 1s ease infinite;
  891. -o-animation: btn 1s ease infinite;
  892. animation: btn 1s ease infinite; }
  893. @-webkit-keyframes btn {
  894. 0%, 100% {
  895. -webkit-transform: scale(1, 1);
  896. transform: scale(1, 1); }
  897. 15% {
  898. -webkit-transform: scale(1.1, 1.1);
  899. transform: scale(1.1, 1.1); }
  900. 20% {
  901. -webkit-transform: scale(1.1, 1.1);
  902. transform: scale(1.1, 1.1); }
  903. 35% {
  904. -webkit-transform: scale(1.2, 1.2);
  905. transform: scale(1.2, 1.2); } }
  906. @-moz-keyframes btn {
  907. 0%, 100% {
  908. -moz-transform: scale(1, 1);
  909. transform: scale(1, 1); }
  910. 15% {
  911. -moz-transform: scale(1.1, 1.1);
  912. transform: scale(1.1, 1.1); }
  913. 20% {
  914. -moz-transform: scale(1.1, 1.1);
  915. transform: scale(1.1, 1.1); }
  916. 35% {
  917. -moz-transform: scale(1.2, 1.2);
  918. transform: scale(1.2, 1.2); } }
  919. @-o-keyframes btn {
  920. 0%, 100% {
  921. -o-transform: scale(1, 1);
  922. transform: scale(1, 1); }
  923. 15% {
  924. -o-transform: scale(1.1, 1.1);
  925. transform: scale(1.1, 1.1); }
  926. 20% {
  927. -o-transform: scale(1.1, 1.1);
  928. transform: scale(1.1, 1.1); }
  929. 35% {
  930. -o-transform: scale(1.2, 1.2);
  931. transform: scale(1.2, 1.2); } }
  932. @keyframes btn {
  933. 0%, 100% {
  934. -webkit-transform: scale(1, 1);
  935. -moz-transform: scale(1, 1);
  936. -o-transform: scale(1, 1);
  937. transform: scale(1, 1); }
  938. 15% {
  939. -webkit-transform: scale(1.1, 1.1);
  940. -moz-transform: scale(1.1, 1.1);
  941. -o-transform: scale(1.1, 1.1);
  942. transform: scale(1.1, 1.1); }
  943. 20% {
  944. -webkit-transform: scale(1.1, 1.1);
  945. -moz-transform: scale(1.1, 1.1);
  946. -o-transform: scale(1.1, 1.1);
  947. transform: scale(1.1, 1.1); }
  948. 35% {
  949. -webkit-transform: scale(1.2, 1.2);
  950. -moz-transform: scale(1.2, 1.2);
  951. -o-transform: scale(1.2, 1.2);
  952. transform: scale(1.2, 1.2); } }