main.css 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072
  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. text-overflow: ellipsis;
  723. display: -webkit-box;
  724. -webkit-line-clamp: 2;
  725. -webkit-box-orient: vertical;
  726. color: #743d2f;
  727. margin-top: 0.15625rem; }
  728. .poster-mode .leads-box .submit {
  729. position: absolute;
  730. bottom: -0.15625rem;
  731. left: 50%;
  732. width: 3.04688rem;
  733. margin-left: -1.52344rem; }
  734. .poster-mode .leads-box .pro {
  735. position: absolute;
  736. top: 50%;
  737. left: 0.46875rem;
  738. width: 1.82812rem;
  739. -webkit-transform: translate(0, -50%);
  740. -moz-transform: translate(0, -50%);
  741. -ms-transform: translate(0, -50%);
  742. -o-transform: translate(0, -50%);
  743. transform: translate(0, -50%); }
  744. .poster-mode .qrcode-box {
  745. position: absolute;
  746. bottom: 1.92188rem;
  747. /*right: 0.46875rem;*/
  748. right: 0.16875rem;
  749. width: 1.40625rem; }
  750. .poster-mode .qrcode-box p {
  751. /*font-size: 0.21875rem;*/
  752. font-size: 0.31875rem;
  753. color: #fff;
  754. text-align: center;
  755. overflow: hidden;
  756. text-overflow: ellipsis;
  757. display: -webkit-box;
  758. -webkit-line-clamp: 2;
  759. -webkit-box-orient: vertical;
  760. }
  761. .poster-mode .replay-btn {
  762. position: absolute;
  763. bottom: 0.70312rem;
  764. left: 1.48438rem;
  765. width: 2.8125rem; }
  766. .poster-mode .secret-btn {
  767. position: absolute;
  768. bottom: 0.70312rem;
  769. right: 1.48438rem;
  770. width: 2.8125rem; }
  771. .cut-mode2 {
  772. position: fixed;
  773. top: 0;
  774. left: 0;
  775. width: 100%;
  776. height: 100vh;
  777. z-index: 100;
  778. display: none; }
  779. .move-mode2 {
  780. position: fixed;
  781. top: 0;
  782. left: 0;
  783. width: 100%;
  784. height: 100vh;
  785. z-index: 100;
  786. display: none; }
  787. .shake-mode2 {
  788. position: fixed;
  789. top: 0;
  790. left: 0;
  791. width: 100%;
  792. height: 100vh;
  793. z-index: 100;
  794. display: none; }
  795. .shake-mode {
  796. position: fixed;
  797. top: 0;
  798. left: 0;
  799. width: 100%;
  800. height: 100vh;
  801. z-index: 100;
  802. background: rgba(0, 0, 0, 0.6);
  803. display: none; }
  804. .shake-mode .shake-dialog {
  805. position: absolute;
  806. top: 40%;
  807. left: 50%;
  808. width: 6.28125rem;
  809. -webkit-transform: translate(-50%, -50%);
  810. -moz-transform: translate(-50%, -50%);
  811. -ms-transform: translate(-50%, -50%);
  812. -o-transform: translate(-50%, -50%);
  813. transform: translate(-50%, -50%);
  814. padding-top: 0.78125rem; }
  815. .shake-mode .shake-dialog .icon {
  816. position: absolute;
  817. top: 5.625rem;
  818. left: 50%;
  819. width: 2.23438rem;
  820. margin-left: -1.11719rem; }
  821. .shake-mode .shake-dialog .fire {
  822. width: 5.98438rem;
  823. height: 10.54688rem;
  824. background: url(../img/fire.png) no-repeat 0 0;
  825. -moz-background-size: 600% 100%;
  826. background-size: 600% 100%;
  827. -webkit-animation: fire 1.5s steps(5) infinite;
  828. -moz-animation: fire 1.5s steps(5) infinite;
  829. -o-animation: fire 1.5s steps(5) infinite;
  830. animation: fire 1.5s steps(5) infinite; }
  831. .shake-mode .shake-dialog .txt {
  832. position: absolute;
  833. top: 8.35938rem;
  834. left: 50%;
  835. width: 4.96875rem;
  836. margin-left: -2.48438rem; }
  837. .anim-time {
  838. -webkit-animation-duration: 0.5 !important;
  839. -moz-animation-duration: 0.5 !important;
  840. -o-animation-duration: 0.5 !important;
  841. animation-duration: 0.5 !important; }
  842. @-webkit-keyframes fire {
  843. 0% {
  844. background-position: 0 0; }
  845. 100% {
  846. background-position: 100% 0; } }
  847. @-moz-keyframes fire {
  848. 0% {
  849. background-position: 0 0; }
  850. 100% {
  851. background-position: 100% 0; } }
  852. @-o-keyframes fire {
  853. 0% {
  854. background-position: 0 0; }
  855. 100% {
  856. background-position: 100% 0; } }
  857. @keyframes fire {
  858. 0% {
  859. background-position: 0 0; }
  860. 100% {
  861. background-position: 100% 0; } }
  862. .anim-light {
  863. -webkit-animation: light 2s ease-out infinite;
  864. -moz-animation: light 2s ease-out infinite;
  865. -o-animation: light 2s ease-out infinite;
  866. animation: light 2s ease-out infinite; }
  867. @-webkit-keyframes light {
  868. 0%, 100% {
  869. opacity: 1; }
  870. 50% {
  871. opacity: 0.7; } }
  872. @-moz-keyframes light {
  873. 0%, 100% {
  874. opacity: 1; }
  875. 50% {
  876. opacity: 0.7; } }
  877. @-o-keyframes light {
  878. 0%, 100% {
  879. opacity: 1; }
  880. 50% {
  881. opacity: 0.7; } }
  882. @keyframes light {
  883. 0%, 100% {
  884. opacity: 1; }
  885. 50% {
  886. opacity: 0.7; } }
  887. .anim-btn {
  888. -webkit-animation: btn 1s ease infinite;
  889. -moz-animation: btn 1s ease infinite;
  890. -o-animation: btn 1s ease infinite;
  891. animation: btn 1s ease infinite; }
  892. @-webkit-keyframes btn {
  893. 0%, 100% {
  894. -webkit-transform: scale(1, 1);
  895. transform: scale(1, 1); }
  896. 15% {
  897. -webkit-transform: scale(1.1, 1.1);
  898. transform: scale(1.1, 1.1); }
  899. 20% {
  900. -webkit-transform: scale(1.1, 1.1);
  901. transform: scale(1.1, 1.1); }
  902. 35% {
  903. -webkit-transform: scale(1.2, 1.2);
  904. transform: scale(1.2, 1.2); } }
  905. @-moz-keyframes btn {
  906. 0%, 100% {
  907. -moz-transform: scale(1, 1);
  908. transform: scale(1, 1); }
  909. 15% {
  910. -moz-transform: scale(1.1, 1.1);
  911. transform: scale(1.1, 1.1); }
  912. 20% {
  913. -moz-transform: scale(1.1, 1.1);
  914. transform: scale(1.1, 1.1); }
  915. 35% {
  916. -moz-transform: scale(1.2, 1.2);
  917. transform: scale(1.2, 1.2); } }
  918. @-o-keyframes btn {
  919. 0%, 100% {
  920. -o-transform: scale(1, 1);
  921. transform: scale(1, 1); }
  922. 15% {
  923. -o-transform: scale(1.1, 1.1);
  924. transform: scale(1.1, 1.1); }
  925. 20% {
  926. -o-transform: scale(1.1, 1.1);
  927. transform: scale(1.1, 1.1); }
  928. 35% {
  929. -o-transform: scale(1.2, 1.2);
  930. transform: scale(1.2, 1.2); } }
  931. @keyframes btn {
  932. 0%, 100% {
  933. -webkit-transform: scale(1, 1);
  934. -moz-transform: scale(1, 1);
  935. -o-transform: scale(1, 1);
  936. transform: scale(1, 1); }
  937. 15% {
  938. -webkit-transform: scale(1.1, 1.1);
  939. -moz-transform: scale(1.1, 1.1);
  940. -o-transform: scale(1.1, 1.1);
  941. transform: scale(1.1, 1.1); }
  942. 20% {
  943. -webkit-transform: scale(1.1, 1.1);
  944. -moz-transform: scale(1.1, 1.1);
  945. -o-transform: scale(1.1, 1.1);
  946. transform: scale(1.1, 1.1); }
  947. 35% {
  948. -webkit-transform: scale(1.2, 1.2);
  949. -moz-transform: scale(1.2, 1.2);
  950. -o-transform: scale(1.2, 1.2);
  951. transform: scale(1.2, 1.2); } }