style.css 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716
  1. @charset "utf-8";
  2. /* CSS Document */
  3. /*公共部分*/
  4. * {
  5. font-family: "microsoft yahei", "helvetica", "heiti SC", "droid", "sans";
  6. word-spacing: 0px;
  7. letter-spacing: .02rem;
  8. font-size: 62.5%;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. body {
  13. /*position: relative;*/
  14. }
  15. .fl {
  16. float: left;
  17. }
  18. .fr {
  19. float: right;
  20. }
  21. .clear {
  22. clear: both
  23. }
  24. .blank {
  25. margin-bottom: 4rem;
  26. }
  27. header {
  28. background: #18b4ed;
  29. width: 100%;
  30. height: 5rem;
  31. position: fixed;
  32. top: 0;
  33. left: 0;
  34. }
  35. header img {
  36. width: 3rem;
  37. height: 3rem;
  38. margin-top: 1rem;
  39. float: left;
  40. z-index: 999999999;
  41. }
  42. header span {
  43. line-height: 5rem;
  44. font-size: 2rem;
  45. color: #fff;
  46. float: left;
  47. }
  48. .half {
  49. width: 50%;
  50. float: left;
  51. position: relative
  52. }
  53. .half > a {
  54. position: relative;
  55. width: 8rem;
  56. display: inline-block;
  57. background: #18b4ed;
  58. height: 8rem;
  59. left: 50%;
  60. margin-left: -4rem
  61. }
  62. .half > a img {
  63. width: 5rem;
  64. height: 4.16rem;
  65. margin-left: 1.5rem;
  66. margin-top: 1.92rem
  67. }
  68. .half > p {
  69. font-size: 1.5rem;
  70. text-align: center;
  71. position: relative;
  72. bottom: 0;
  73. margin-top: 1.2rem;
  74. color: #999;
  75. }
  76. .logo-license {
  77. margin-top: 8rem
  78. }
  79. .license{
  80. position: relative;
  81. width: 8rem;
  82. display: inline-block;
  83. background: #18b4ed;
  84. height: 8rem;
  85. left: 50%;
  86. margin-left: -4rem
  87. }
  88. .license >img{
  89. width: 5rem;
  90. height: 4.16rem;
  91. margin-left: 1.5rem;
  92. margin-top: 1.92rem
  93. }
  94. .logo {
  95. border-radius: 100%
  96. }
  97. /*图片裁剪-触屏设备*/
  98. @import url(reset.css);
  99. @font-face {
  100. font-family: 'icomoon';
  101. src:url('../fonts/icomoon.eot?rretjt');
  102. src:url('../fonts/icomoon.eot?#iefixrretjt') format('embedded-opentype'),
  103. url('../fonts/icomoon.woff?rretjt') format('woff'),
  104. url('../fonts/icomoon.ttf?rretjt') format('truetype'),
  105. url('../fonts/icomoon.svg?rretjt#icomoon') format('svg');
  106. font-weight: normal;
  107. font-style: normal;
  108. }
  109. [class^="icon-"], [class*=" icon-"] {
  110. font-family: 'icomoon';
  111. speak: none;
  112. font-style: normal;
  113. font-weight: normal;
  114. font-variant: normal;
  115. text-transform: none;
  116. line-height: 1;
  117. /* Better Font Rendering =========== */
  118. -webkit-font-smoothing: antialiased;
  119. -moz-osx-font-smoothing: grayscale;
  120. }
  121. /* Reset */
  122. *,
  123. *:after,
  124. *:before {
  125. -webkit-box-sizing: border-box;
  126. -moz-box-sizing: border-box;
  127. box-sizing: border-box;
  128. }
  129. /* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
  130. .clearfix:before,
  131. .clearfix:after {
  132. content: " ";
  133. display: table;
  134. }
  135. .clearfix:after {
  136. clear: both;
  137. }
  138. .htmleaf-container{
  139. margin: 0 auto;
  140. text-align: center;
  141. overflow: hidden;
  142. width: 100%;
  143. height: 100%;
  144. position: fixed;
  145. top: 0;
  146. background: #000;
  147. display: none;
  148. z-index: 9999999;
  149. }
  150. .htmleaf-content {
  151. font-size: 150%;
  152. padding: 1em 0;
  153. }
  154. .htmleaf-content h2 {
  155. margin: 0 0 2em;
  156. opacity: 0.1;
  157. }
  158. .htmleaf-content p {
  159. margin: 1em 0;
  160. padding: 5em 0 0 0;
  161. font-size: 0.65em;
  162. }
  163. .bgcolor-1 { background: #f0efee; }
  164. .bgcolor-2 { background: #f9f9f9; }
  165. .bgcolor-3 { background: #e8e8e8; }/*light grey*/
  166. .bgcolor-4 { background: #2f3238; color: #fff; }/*Dark grey*/
  167. .bgcolor-5 { background: #df6659; color: #521e18; }/*pink1*/
  168. .bgcolor-6 { background: #2fa8ec; }/*sky blue*/
  169. .bgcolor-7 { background: #d0d6d6; }/*White tea*/
  170. .bgcolor-8 { background: #3d4444; color: #fff; }/*Dark grey2*/
  171. .bgcolor-9 { background: #ef3f52; color: #fff;}/*pink2*/
  172. .bgcolor-10{ background: #64448f; color: #fff;}/*Violet*/
  173. .bgcolor-11{ background: #3755ad; color: #fff;}/*dark blue*/
  174. .bgcolor-12{ background: #3498DB; color: #fff;}/*light blue*/
  175. .bgcolor-20{ background: #494A5F;color: #D5D6E2;}
  176. /* Header */
  177. .htmleaf-header{
  178. padding: 1em 190px 1em;
  179. letter-spacing: -1px;
  180. text-align: center;
  181. background: #66677c;
  182. }
  183. .htmleaf-header h1 {
  184. color: #D5D6E2;
  185. font-weight: 600;
  186. font-size: 2em;
  187. line-height: 1;
  188. margin-bottom: 0;
  189. font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo;
  190. }
  191. .htmleaf-header h1 span {
  192. font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo;
  193. display: block;
  194. font-size: 60%;
  195. font-weight: 400;
  196. padding: 0.8em 0 0.5em 0;
  197. color: #c3c8cd;
  198. }
  199. /*nav*/
  200. .htmleaf-demo a{color: #1d7db1;text-decoration: none;}
  201. .htmleaf-demo{width: 100%;padding-bottom: 1.2em;}
  202. .htmleaf-demo a{display: inline-block;margin: 0.5em;padding: 0.6em 1em;border: 3px solid #1d7db1;font-weight: 700;}
  203. .htmleaf-demo a:hover{opacity: 0.6;}
  204. .htmleaf-demo a.current{background:#1d7db1;color: #fff; }
  205. /* Top Navigation Style */
  206. .htmleaf-links {
  207. position: relative;
  208. display: inline-block;
  209. white-space: nowrap;
  210. font-size: 1.5em;
  211. text-align: center;
  212. }
  213. .htmleaf-links::after {
  214. position: absolute;
  215. top: 0;
  216. left: 50%;
  217. margin-left: -1px;
  218. width: 2px;
  219. height: 100%;
  220. background: #dbdbdb;
  221. content: '';
  222. -webkit-transform: rotate3d(0,0,1,22.5deg);
  223. transform: rotate3d(0,0,1,22.5deg);
  224. }
  225. .htmleaf-icon {
  226. display: inline-block;
  227. margin: 0.5em;
  228. padding: 0em 0;
  229. width: 1.5em;
  230. text-decoration: none;
  231. }
  232. .htmleaf-icon span {
  233. display: none;
  234. }
  235. .htmleaf-icon:before {
  236. margin: 0 5px;
  237. text-transform: none;
  238. font-weight: normal;
  239. font-style: normal;
  240. font-variant: normal;
  241. font-family: 'icomoon';
  242. line-height: 1;
  243. speak: none;
  244. -webkit-font-smoothing: antialiased;
  245. }
  246. /* footer */
  247. .htmleaf-footer{width: 100%;padding-top: 10px;}
  248. .htmleaf-small{font-size: 0.8em;}
  249. .center{text-align: center;}
  250. .related {
  251. color: #fff;
  252. background: #494A5F;
  253. text-align: center;
  254. font-size: 1.25em;
  255. padding: 0.5em 0;
  256. overflow: hidden;
  257. }
  258. .related > a {
  259. vertical-align: top;
  260. width: calc(100% - 20px);
  261. max-width: 340px;
  262. display: inline-block;
  263. text-align: center;
  264. margin: 20px 10px;
  265. padding: 25px;
  266. font-family: "Microsoft YaHei","宋体","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif, FreeSans, Arimo;
  267. }
  268. .related a {
  269. display: inline-block;
  270. text-align: left;
  271. margin: 20px auto;
  272. padding: 10px 20px;
  273. opacity: 0.8;
  274. -webkit-transition: opacity 0.3s;
  275. transition: opacity 0.3s;
  276. -webkit-backface-visibility: hidden;
  277. }
  278. .related a:hover,
  279. .related a:active {
  280. opacity: 1;
  281. }
  282. .related a img {
  283. max-width: 100%;
  284. opacity: 0.8;
  285. border-radius: 4px;
  286. }
  287. .related a:hover img,
  288. .related a:active img {
  289. opacity: 1;
  290. }
  291. .related h3{font-family: "Microsoft YaHei", sans-serif;}
  292. .related a h3 {
  293. font-weight: 300;
  294. margin-top: 0.15em;
  295. color: #fff;
  296. }
  297. /* icomoon */
  298. .icon-htmleaf-home-outline:before {
  299. content: "\e5000";
  300. }
  301. .icon-htmleaf-arrow-forward-outline:before {
  302. content: "\e5001";
  303. }
  304. @media screen and (max-width: 50em) {
  305. .htmleaf-header {
  306. padding: 3em 10% 4em;
  307. }
  308. .htmleaf-header h1 {
  309. font-size:2em;
  310. }
  311. }
  312. @media screen and (max-width: 40em) {
  313. .htmleaf-header h1 {
  314. font-size: 1.5em;
  315. }
  316. }
  317. @media screen and (max-width: 30em) {
  318. .htmleaf-header h1 {
  319. font-size:1.2em;
  320. }
  321. }
  322. article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  323. display: block;
  324. }
  325. audio, canvas, video {
  326. display: inline-block;
  327. }
  328. audio:not([controls]) {
  329. display: none;
  330. height: 0;
  331. }
  332. [hidden] {
  333. display: none;
  334. }
  335. html {
  336. font-family: sans-serif;
  337. -ms-text-size-adjust: 100%;
  338. -webkit-text-size-adjust: 100%;
  339. }
  340. body {
  341. margin: 0;
  342. }
  343. a:focus {
  344. outline: thin dotted;
  345. }
  346. a:active, a:hover {
  347. outline: 0;
  348. }
  349. h1 {
  350. font-size: 2em;
  351. margin: 0.67em 0;
  352. }
  353. abbr[title] {
  354. border-bottom: 1px dotted;
  355. }
  356. b, strong {
  357. font-weight: bold;
  358. }
  359. dfn {
  360. font-style: italic;
  361. }
  362. hr {
  363. -moz-box-sizing: content-box;
  364. box-sizing: content-box;
  365. height: 0;
  366. }
  367. mark {
  368. background: #ff0;
  369. color: #000;
  370. }
  371. code, kbd, pre, samp {
  372. font-family: monospace, serif;
  373. font-size: 1em;
  374. }
  375. pre {
  376. white-space: pre-wrap;
  377. }
  378. q {
  379. quotes: "\201C" "\201D" "\2018" "\2019";
  380. }
  381. small {
  382. font-size: 80%;
  383. }
  384. sub, sup {
  385. font-size: 75%;
  386. line-height: 0;
  387. position: relative;
  388. vertical-align: baseline;
  389. }
  390. sup {
  391. top: -0.5em;
  392. }
  393. sub {
  394. bottom: -0.25em;
  395. }
  396. img {
  397. border: 0;
  398. }
  399. svg:not(:root) {
  400. overflow: hidden;
  401. }
  402. figure {
  403. margin: 0;
  404. }
  405. fieldset {
  406. border: 1px solid #c0c0c0;
  407. margin: 0 2px;
  408. padding: 0.35em 0.625em 0.75em;
  409. }
  410. legend {
  411. border: 0;
  412. padding: 0;
  413. }
  414. button, input, select, textarea {
  415. font-family: inherit;
  416. font-size: 100%;
  417. margin: 0;
  418. }
  419. button, input {
  420. line-height: normal;
  421. }
  422. button, select {
  423. text-transform: none;
  424. }
  425. button, html input[type="button"], input[type="reset"], input[type="submit"] {
  426. -webkit-appearance: button;
  427. cursor: pointer;
  428. }
  429. button[disabled], html input[disabled] {
  430. cursor: default;
  431. }
  432. input[type="checkbox"], input[type="radio"] {
  433. box-sizing: border-box;
  434. padding: 0;
  435. }
  436. input[type="search"] {
  437. -webkit-appearance: textfield;
  438. -moz-box-sizing: content-box;
  439. -webkit-box-sizing: content-box;
  440. box-sizing: content-box;
  441. }
  442. input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  443. -webkit-appearance: none;
  444. }
  445. button::-moz-focus-inner, input::-moz-focus-inner {
  446. border: 0;
  447. padding: 0;
  448. }
  449. textarea {
  450. overflow: auto;
  451. vertical-align: top;
  452. }
  453. table {
  454. border-collapse: collapse;
  455. border-spacing: 0;
  456. }
  457. #clipArea {
  458. height: 90%;
  459. }
  460. /*上传图标*/
  461. #file{
  462. float: left;
  463. height: 100%;
  464. }
  465. #clipBtn{
  466. float: right;
  467. height: 100%;
  468. width: 8rem;
  469. background: #18b4ed;
  470. border: 0;
  471. outline: none;
  472. color: #fff;
  473. font-size: 2rem;
  474. z-index: 999;
  475. }
  476. .foot-use{
  477. background: #fff;
  478. height: 10%;
  479. width: 100%;
  480. position: relative;
  481. }
  482. .uploader {
  483. position: absolute;
  484. width: 54%;
  485. height: 8rem;
  486. left: 23%;
  487. cursor: default;
  488. height: 100%;
  489. float: left;
  490. }
  491. .uploader1 {
  492. position: absolute;
  493. width: 50%;
  494. height: 8rem;
  495. cursor: default;
  496. height: 100%;
  497. float: left;
  498. }
  499. .filename {
  500. position: absolute;
  501. outline: 0 none;
  502. line-height: 1.5rem;
  503. font-size: 1.5rem;
  504. color: #999;
  505. width: 100%;
  506. margin: 0;
  507. overflow: hidden;
  508. cursor: default;
  509. text-overflow: ellipsis;
  510. white-space: nowrap;
  511. border: 0;
  512. top: 9.2rem;
  513. text-align: center;
  514. }
  515. .button {
  516. float: left;
  517. height: 100%;
  518. display: inline-block;
  519. outline: 0 none;
  520. margin: 0;
  521. cursor: pointer;
  522. border: 0;
  523. width: 8rem;
  524. font-size: 2rem;
  525. }
  526. .uploader input[type=file] {
  527. position: absolute;
  528. top: 0;
  529. right: 0;
  530. bottom: 0;
  531. border: 0;
  532. padding: 0;
  533. margin: 0;
  534. height:8rem;
  535. width: 100%;
  536. cursor: pointer;
  537. border: solid 1px #ddd;
  538. opacity: 0;
  539. }
  540. .uploader1 input[type=file] {
  541. position: absolute;
  542. top: 0;
  543. left: 0;
  544. bottom: 0;
  545. border: 0;
  546. padding: 0;
  547. margin: 0;
  548. height:8rem;
  549. width: 50%;
  550. cursor: pointer;
  551. border: solid 1px #ddd;
  552. opacity: 0;
  553. }
  554. input[type=button]::-moz-focus-inner {
  555. padding: 0;
  556. border: 0 none;
  557. -moz-box-sizing: content-box;
  558. }
  559. input[type=button]::-webkit-focus-inner {
  560. padding: 0;
  561. border: 0 none;
  562. -webkit-box-sizing: content-box;
  563. }
  564. input[type=text]::-moz-focus-inner {
  565. padding: 0;
  566. border: 0 none;
  567. -moz-box-sizing: content-box;
  568. }
  569. input[type=text]::-webkit-focus-inner {
  570. padding: 0;
  571. border: 0 none;
  572. -webkit-box-sizing: content-box;
  573. }
  574. .blue .button {
  575. color: #fff;
  576. background: #18b4ed;
  577. height: 100%;
  578. }
  579. .info{
  580. margin-top: 4rem;
  581. border-top: solid 1px #ddd;
  582. }
  583. .info ul li{list-style-type: none;padding: 1.5rem 0 ;border-bottom: solid 1px #eee;width: 98%;margin: auto}
  584. .info ul li .left{width: 25%;float: left;position: relative;text-align: right;font-size: 1.5rem;color: #999}
  585. .info ul li .right{width: 72%;float: right;position: relative;text-align: left;font-size: 1.5rem}
  586. .info ul li .right input{outline: none;border:0}
  587. .btn-1{margin-top: 3rem;margin-bottom: 2rem;text-align: center}
  588. .btn-1 button{width: 90%;outline: none;border: none;background: #18b4ed;color: #fff;height: 5rem;display: inline-block;border-radius: 0.4rem;font-size: 2rem}
  589. /*所属行业*/
  590. #divselect,#divselectx,#divselecty{
  591. width: 100%;
  592. position: relative;
  593. }
  594. #divselect small,#divselectx small,#divselecty small{
  595. font-size: 1.5rem;
  596. color: #999;
  597. width: 100%;
  598. display: block;
  599. }
  600. #divselect .all,#divselectx .all,#divselecty .all{
  601. display: none;
  602. width: 80%;
  603. max-height: 80%;
  604. position: fixed;
  605. top: 10%;
  606. left: 10%;
  607. overflow: auto;
  608. border: solid 1px #ddd;
  609. background: #fff;
  610. opacity: 0.9;
  611. box-shadow: 0px 1px 1px #999;
  612. z-index: 99999;
  613. border-radius: 0.5rem;
  614. }
  615. #divselect .all li,#divselectx .all li,#divselecty .all li{
  616. text-indent: 1rem;
  617. line-height: 5rem;
  618. padding: 0;
  619. }
  620. #divselect .all li a,#divselectx .all li a,#divselecty .all li a{
  621. text-decoration: none;
  622. color: #666;
  623. font-size: 1.5rem;
  624. display: block;
  625. }
  626. .mask{
  627. width: 100%;
  628. height: 100%;
  629. position: fixed;
  630. background: #000;
  631. opacity: 0.6;
  632. z-index: 9999;
  633. top: 0;
  634. left: 0;
  635. display: none;
  636. }
  637. .second{
  638. margin-top: 1rem;
  639. border-top: solid 1px #eee;
  640. padding-top: 1rem;
  641. }
  642. .place::-webkit-input-placeholder {
  643. color: #f00;
  644. }
  645. .yulan{
  646. position: fixed;
  647. width: 100%;
  648. height: 100%;
  649. display: none;
  650. top: 0;
  651. left: 0;
  652. text-align: center;
  653. line-height: 100%;
  654. background: #000;
  655. z-index: 99999999;
  656. }
  657. .yulan #img0{
  658. display: inline-block;
  659. max-width: 90%;
  660. line-height: 100%;
  661. max-height: 90%;
  662. top: 40%; left: 50%;
  663. -webkit-transform: translate(-50%, -40%);
  664. position: absolute;
  665. }
  666. .enter{
  667. position: absolute;
  668. height: 10%;
  669. bottom: 0;
  670. left: 0;
  671. width: 100%;
  672. background: #fff;
  673. }
  674. .enter .btn-2,.enter .btn-3{
  675. border: 0;
  676. outline: none;
  677. background: #18b4ed;
  678. color: #fff;
  679. height: 100%;
  680. width: 8rem;
  681. font-size: 2rem;
  682. }
  683. .success{
  684. margin: auto;
  685. width: 100%;
  686. text-align: center;
  687. top: 0;
  688. left: 0;
  689. position: absolute;
  690. }
  691. .install>p{
  692. font-size: 1.7rem;
  693. color: #999;
  694. padding: 0 3rem;
  695. line-height: 2rem;
  696. position: absolute;
  697. bottom: 10rem;
  698. /* text-align: center;*/
  699. }
  700. .install button{
  701. width: 90%;
  702. left: 5%;
  703. position: absolute;
  704. bottom: 3rem;
  705. height: 5rem;
  706. background: #18b4ed;
  707. border: 0;
  708. outline: none;
  709. cursor: default;
  710. color: #fff;
  711. font-size: 2rem;
  712. border-radius: 0.5rem;
  713. }
  714. .yeah{
  715. position: relative;
  716. margin-top: 5rem;
  717. text-align: center;
  718. top: 5rem;
  719. }
  720. .yeah>img{
  721. width: 8rem;
  722. height: 8rem;
  723. padding: 1rem;
  724. border-radius: 100%;
  725. background: #18b4ed;
  726. margin:1rem auto;
  727. display: inline-block;
  728. }
  729. .yeah>p{
  730. font-size: 2rem;
  731. color: #18b4ed;
  732. padding: 0 3rem;
  733. line-height: 3rem;
  734. text-align: center;
  735. }
  736. header .close{
  737. width: 2rem;
  738. height: 2rem;
  739. margin-top: 1.5rem;
  740. margin-left: 1rem;
  741. }
  742. .mybonus{
  743. background: #fff;
  744. margin-top: 5rem;
  745. }
  746. .mybonus li{
  747. padding:0 1rem;
  748. border-bottom: solid 1px #eee;
  749. }
  750. .mybonus li .left{
  751. float: left;
  752. }
  753. .mybonus li .right{
  754. float: right;
  755. text-align: right;
  756. }
  757. .mybonus li .left h3{
  758. color: #333;
  759. font-size: 1.8rem;
  760. max-width: 12.1em;
  761. white-space: nowrap;
  762. overflow: hidden;
  763. }
  764. .mybonus li p{
  765. font-size: 1.8rem;
  766. color: #999;
  767. margin-top: 0.5rem;
  768. margin-bottom: 0.7rem;
  769. }
  770. .mybonus li .right h3{
  771. color: #ff5500;
  772. font-size: 1.8rem;
  773. }
  774. .scanmybonus{
  775. z-index: 99999999999999;
  776. position: absolute;
  777. top: 0;
  778. right: 0;
  779. height: 5rem;
  780. }
  781. .scanmybonus img{
  782. height: 3rem;
  783. margin-top: 1rem;
  784. }
  785. article .bg{
  786. width: 100%;
  787. height: 100%;
  788. position: fixed;
  789. top: 5rem;
  790. left: 0;
  791. z-index: -1;
  792. opacity: 0.7;
  793. }
  794. .sel-main{
  795. position: fixed;
  796. width: 80%;
  797. height: 50%;
  798. background: #fff;
  799. left: 10%;
  800. top: 25%;
  801. border-radius: 0.8rem;
  802. }
  803. .self-help,.invitation{
  804. width: 90%;
  805. height: 40%;
  806. background: #eee;
  807. left: 5%;
  808. position: absolute;
  809. border-radius: 0.6rem;
  810. }
  811. .self-help{
  812. top: 2rem;
  813. }
  814. .invitation{
  815. bottom: 2rem;
  816. }
  817. .self-help .icon,.invitation .icon{
  818. height: 60%;
  819. float: left;
  820. top:20%;
  821. position: relative;
  822. left: 1rem;
  823. }
  824. .self-help .main,.invitation .main{
  825. display: inline-block;
  826. float: left;
  827. position: relative;
  828. left: 2rem;
  829. }
  830. .self-help .main h2,.invitation .main h2{
  831. font-size: 1.8rem;
  832. margin-top: 2.8rem;
  833. color: #242424;
  834. }
  835. .self-help .main p,.invitation .main p{
  836. font-size: 1.3rem;
  837. margin-top: 0.5rem;
  838. color: #999;
  839. }
  840. .self-help .main p a,.invitation .main p a{
  841. font-size: 1.3rem;
  842. color: #eb9e19;
  843. }
  844. .self-help .sel,.invitation .sel{
  845. height: 2rem;
  846. position: absolute;
  847. top: 50%;
  848. margin-top: -1rem;
  849. right:1rem;
  850. }
  851. @media screen and (max-width: 414px) and (min-width: 376px) {
  852. .mybonus li .left h3{
  853. color: #333;
  854. font-size: 1.8rem;
  855. max-width: 20em;
  856. white-space: nowrap;
  857. overflow: hidden;
  858. }
  859. .self-help .main,.invitation .main{
  860. display: inline-block;
  861. float: left;
  862. position: relative;
  863. left: 3rem;
  864. }
  865. .self-help .main h2,.invitation .main h2{
  866. font-size: 2.1rem;
  867. margin-top: 3.5rem;
  868. color: #242424;
  869. }
  870. .self-help .main p,.invitation .main p{
  871. font-size: 1.55rem;
  872. margin-top: 0.5rem;
  873. color: #999;
  874. }
  875. .self-help .main p a,.invitation .main p a{
  876. font-size: 1.55rem;
  877. color: #eb9e19;
  878. }
  879. }
  880. @media screen and (max-width: 375px) and (min-width: 321px) {
  881. .self-help .main h2,.invitation .main h2{
  882. font-size: 1.8rem;
  883. margin-top: 3.5rem;
  884. color: #242424;
  885. }
  886. .self-help .main,.invitation .main{
  887. display: inline-block;
  888. float: left;
  889. position: relative;
  890. left: 3rem;
  891. }
  892. .mybonus li .left h3{
  893. color: #333;
  894. font-size: 1.8rem;
  895. max-width: 14em;
  896. white-space: nowrap;
  897. overflow: hidden;
  898. }
  899. .self-help .main p,.invitation .main p{
  900. font-size: 1.3rem;
  901. margin-top: 0.5rem;
  902. color: #999;
  903. }
  904. .self-help .main p a,.invitation .main p a{
  905. font-size: 1.3rem;
  906. color: #eb9e19;
  907. }
  908. }
  909. @media screen and (max-width: 320px){
  910. .self-help .main h2,.invitation .main h2{
  911. font-size: 1.8rem;
  912. margin-top: 2.5rem;
  913. color: #242424;
  914. }
  915. .self-help .main p,.invitation .main p{
  916. font-size: 1.3rem;
  917. margin-top: 0.5rem;
  918. color: #999;
  919. }
  920. .self-help .main p a,.invitation .main p a{
  921. font-size: 1.3rem;
  922. color: #eb9e19;
  923. }
  924. }
  925. header .scanbonus{
  926. width: 40%;
  927. height: 5rem;
  928. background: #18b4ed;
  929. position: fixed;
  930. line-height: 5rem;
  931. color: #fff;
  932. font-size: 1.5rem;
  933. text-indent: 1rem;
  934. top: 5rem;
  935. right: 1rem;
  936. display: none;
  937. }
  938. .invit{
  939. position: absolute;
  940. width: 100%;
  941. top: 5rem;
  942. }
  943. .invit h1{
  944. font-size: 6rem;
  945. color: #18b4ed;
  946. text-align: center;
  947. line-height: 4rem;
  948. }
  949. .invit p{
  950. text-align: center;
  951. color: #18b4ed;
  952. font-size: 2.2rem;
  953. margin-top: -2rem;
  954. }
  955. .make-money .make{
  956. position: absolute;
  957. width: 50%;
  958. left: 25%;
  959. top: 22rem;
  960. }
  961. .make-money .make .font-1{
  962. color: #ff5500;
  963. font-size: 2.2rem;
  964. position: absolute;
  965. top: 2.2rem;
  966. }
  967. .make-money .make .font-2{
  968. color: #ff5500;
  969. font-size: 11rem;
  970. position: absolute;
  971. left: 2.2rem;
  972. }
  973. .make-money .make .font-3{
  974. color: #ff5500;
  975. font-size: 2.2rem;
  976. position: absolute;
  977. left: 13.9rem;
  978. top: 9rem;
  979. top: 7.5rem;
  980. }
  981. .make-money img{
  982. width: 80%;
  983. left: 10%;
  984. position: absolute;
  985. top: 18rem;
  986. z-index: -11;
  987. }
  988. .btn-4{
  989. border: 0;
  990. width: 90%;
  991. height: 5rem;
  992. color: #fff;
  993. font-size: 2rem;
  994. background: #18b4ed;
  995. left: 5%;
  996. position: fixed;
  997. outline: none;
  998. cursor: default;
  999. border-radius: 0.5rem;
  1000. bottom: 5rem;
  1001. }
  1002. .btn-5{
  1003. border: 0;
  1004. width: 90%;
  1005. height: 5rem;
  1006. color: #fff;
  1007. font-size: 2rem;
  1008. background: #18b4ed;
  1009. left: 5%;
  1010. position: fixed;
  1011. outline: none;
  1012. cursor: default;
  1013. border-radius: 0.5rem;
  1014. bottom: 3rem;
  1015. }
  1016. .scan-a{
  1017. position: fixed;
  1018. width: 90%;
  1019. left: 5%;
  1020. bottom: 1.5rem;
  1021. font-size: 1.5rem;
  1022. color: #999;
  1023. text-align: center;
  1024. height: 3rem;
  1025. line-height: 3rem;
  1026. }
  1027. .qrcode{
  1028. position: absolute;
  1029. width: 90%;
  1030. left: 5%;
  1031. top: 7rem;
  1032. background: #fff;
  1033. border-radius: .5rem;
  1034. }
  1035. .qrcode h2{
  1036. font-size: 1.5rem;
  1037. text-align: center;
  1038. margin-top: 2rem;
  1039. color: #999;
  1040. font-weight: normal;
  1041. }
  1042. .qrcode p{
  1043. text-align: center;
  1044. margin-top: 1rem;
  1045. font-size: 1.2rem;
  1046. color: #999;
  1047. }
  1048. .qrcode img{
  1049. position: relative;
  1050. width: 54%;
  1051. left: 23%;
  1052. margin-top: 2rem;
  1053. margin-bottom: 3rem;
  1054. }
  1055. .share{
  1056. position: absolute;
  1057. text-align: center;
  1058. bottom: 9rem;
  1059. width: 100%;
  1060. font-size: 1.5rem;
  1061. color: #999;
  1062. }
  1063. .share a{
  1064. font-size: 1.5rem;
  1065. color: #ff5500;
  1066. }
  1067. /*------------------------------------*/
  1068. body,html{
  1069. height: 100%;
  1070. }
  1071. .pagebox{
  1072. height: 100%;
  1073. overflow: hidden;
  1074. background: url(https://questyes.com/upload/images/page_3_01.png) repeat center center;
  1075. background-size: 2.49rem 2.49rem;
  1076. position: relative;
  1077. width: 100%;
  1078. transition: all 0.2s;
  1079. }
  1080. .pagebox1{
  1081. background: url(https://questyes.com/upload/images/1_pic_bg.png) repeat center top;
  1082. background-size: 0.5rem 1.43rem;
  1083. }
  1084. .pagebox2{
  1085. background: url(https://questyes.com/upload/images/2_pic_01.png) repeat center center;
  1086. background-size: cover;
  1087. }
  1088. .pagebox6{
  1089. background: url(https://questyes.com/upload/images/6_pic_01.jpg) repeat center center;
  1090. background-size: cover;
  1091. }
  1092. .pagebox5{
  1093. background: url(https://questyes.com/upload/images/5_pic_bg.png) repeat center center;
  1094. background-size: 0.6rem 0.43rem;
  1095. }
  1096. .pagebox7{
  1097. background: url(https://questyes.com/upload/images/7_pic_01.png) repeat center center;
  1098. background-size: cover;
  1099. }
  1100. .pic_box1{
  1101. position: absolute;
  1102. background: url(https://questyes.com/upload/images/page_3_03.png) repeat center center;
  1103. background-size: 5.56rem 3.96rem;
  1104. width: 5.56rem;
  1105. height: 3.96rem;
  1106. top: 0.4rem;
  1107. left: 0.46rem;
  1108. z-index: 10;
  1109. }
  1110. .pic_box1_1{
  1111. position: absolute;
  1112. background: url(https://questyes.com/upload/images/4_pic01.png) repeat center center;
  1113. background-size: 5.56rem 3.96rem;
  1114. width: 5.56rem;
  1115. height: 3.96rem;
  1116. top: 0.4rem;
  1117. left: 0.46rem;
  1118. z-index: 10;
  1119. }
  1120. .pic_box2{
  1121. position: absolute;
  1122. background: url(https://questyes.com/upload/images/page_3_07.png) repeat center center;
  1123. background-size: 2.25rem 1.84rem;
  1124. width: 2.25rem;
  1125. height: 1.84rem;
  1126. top: 2.5rem;
  1127. right: 0.3rem;
  1128. z-index: 9;
  1129. }
  1130. .pic_box3{
  1131. position: absolute;
  1132. background: url(https://questyes.com/upload/images/page_3_02.png) repeat center center;
  1133. background-size: 4.36rem 3.81rem;
  1134. width: 4.36rem;
  1135. height: 3.81rem;
  1136. top: 4.94rem;
  1137. right: 0.4rem;
  1138. z-index: 8;
  1139. }
  1140. .pic_box4{
  1141. position: absolute;
  1142. background-size: 3.90rem 6.01rem;
  1143. width: 3.90rem;
  1144. height: 6.01rem;
  1145. top: 4.37rem;
  1146. left: 0.26rem;
  1147. z-index: 11;
  1148. }
  1149. .pagebox6 .pic_box4,.pagebox7 .pic_box4{
  1150. top: 3.8rem;
  1151. left: 50%;
  1152. margin-left: -1.95rem;
  1153. }
  1154. .pagebox5 .pic_box4{
  1155. z-index: 999;
  1156. top: 3.6rem;
  1157. left: 50%;
  1158. margin-left: -1.15rem;
  1159. width: 2.3rem;
  1160. height: 3.54rem;
  1161. }
  1162. .pagebox5 .head_bg{
  1163. width: 2.3rem;
  1164. height: 3.54rem;
  1165. background-size: 2.3rem 3.54rem;
  1166. }
  1167. .pagebox5 .head_box{
  1168. width: 1.69rem;
  1169. height: 1.69rem;
  1170. border-radius: 50%;
  1171. top: 0.44rem;
  1172. left: 0.36rem;
  1173. }
  1174. .pagebox5 .head_box img{
  1175. width: 1.69rem;
  1176. height: 1.69rem;
  1177. border-radius: 50%;
  1178. }
  1179. .head_bg{
  1180. position: absolute;
  1181. background: url(https://questyes.com/upload/images/page_3_06.png) repeat center center;
  1182. background-size: 3.90rem 6.01rem;
  1183. width: 3.90rem;
  1184. height: 6.01rem;
  1185. top: 0rem;
  1186. left: 0rem;
  1187. z-index: 20;
  1188. }
  1189. .btn_next{
  1190. position: absolute;
  1191. width: 3.45rem;
  1192. height: 1.25rem;
  1193. bottom: 0.6rem;
  1194. left: 50%;
  1195. margin-left: -1.725rem;
  1196. z-index: 10;
  1197. display: block;
  1198. }
  1199. .btn_next_4{
  1200. background: url(https://questyes.com/upload/images/page_3_04.png) repeat center center;
  1201. background-size: 3.45rem 1.25rem;
  1202. }
  1203. .btn_next_5{
  1204. background: url(https://questyes.com/upload/images/4_pic02.png) repeat center center;
  1205. background-size: 3.45rem 1.25rem;
  1206. }
  1207. .head_box{
  1208. width: 2.76rem;
  1209. height: 2.76rem;
  1210. background: #fff;
  1211. border-radius: 50%;
  1212. top: 0.86rem;
  1213. left: 0.65rem;
  1214. position: absolute;
  1215. z-index: 12;
  1216. text-align: center;
  1217. }
  1218. .head_box img{
  1219. width: 2.76rem;
  1220. height: 2.76rem;
  1221. border-radius: 50%;
  1222. }
  1223. .head_bg .btnimg{
  1224. width: 100%;
  1225. height: 100%;
  1226. border-radius: 50%;
  1227. }
  1228. .btn_next_2{
  1229. position: absolute;
  1230. width: 4.4rem;
  1231. height: 1.75rem;
  1232. bottom: 0.6rem;
  1233. left: 50%;
  1234. margin-left: -2.2rem;
  1235. z-index: 10;
  1236. display: block;
  1237. background: url(https://questyes.com/upload/images/2_pic_04.png) repeat center center;
  1238. background-size: 4.4rem 1.75rem;
  1239. }
  1240. .btn_next_7{
  1241. position: absolute;
  1242. width: 4.4rem;
  1243. height: 1.75rem;
  1244. bottom: 0.6rem;
  1245. left: 50%;
  1246. margin-left: -2.2rem;
  1247. z-index: 10;
  1248. display: block;
  1249. background: url(https://questyes.com/upload/images/6_pic_04.png) repeat center center;
  1250. background-size: 4.4rem 1.75rem;
  1251. }
  1252. /*2*/
  1253. .pic2_box_1{
  1254. position: absolute;
  1255. background: url(https://questyes.com/upload/images/2_pic_03.png) repeat center center;
  1256. background-size: 5.13rem 3.73rem;
  1257. width: 5.13rem;
  1258. height: 3.73rem;
  1259. top: 0.48rem;
  1260. left: 50%;
  1261. margin-left: -2.575rem;
  1262. z-index: 10;
  1263. }
  1264. .pic2_box_2{
  1265. position: absolute;
  1266. background: url(https://questyes.com/upload/images/2_pic_02.png) repeat center center;
  1267. background-size: 6.97rem 4.51rem;
  1268. width: 6.97rem;
  1269. height: 4.51rem;
  1270. top: 5.8rem;
  1271. left: 50%;
  1272. margin-left: -3.485rem;
  1273. z-index: 8;
  1274. }
  1275. .pic6_box_bg{
  1276. position: absolute;
  1277. background: url(https://questyes.com/upload/images/6_pic_bg.png) repeat center center;
  1278. background-size: 6.97rem 4.51rem;
  1279. width: 6.97rem;
  1280. height: 4.51rem;
  1281. top: 5.8rem;
  1282. left: 50%;
  1283. margin-left: -3.485rem;
  1284. z-index: 8;
  1285. }
  1286. .qrcodebox{
  1287. position: absolute;
  1288. width: 2.06rem;
  1289. height: 2.84rem;
  1290. background: url(https://questyes.com/upload/images/qrcode.png) no-repeat center center;
  1291. background-size: 2.06rem 2.84rem;
  1292. right: 0.28rem;
  1293. bottom: 0.28rem;
  1294. z-index: 1;
  1295. }
  1296. .text_box{
  1297. position: absolute;
  1298. width: 5.14rem;
  1299. height: 3.28rem;
  1300. z-index: 2;
  1301. left: 0;
  1302. bottom: 0;
  1303. }
  1304. .text_box img{
  1305. width: 100%;
  1306. }
  1307. .tipsbox{
  1308. position: fixed;
  1309. width: 100%;
  1310. height: 100%;
  1311. z-index: 100;
  1312. }
  1313. .tipsbox .mask2{
  1314. position: absolute;
  1315. top: 0;
  1316. width: 100%;
  1317. height: 100%;
  1318. background: #000000;
  1319. opacity: 0.6;
  1320. }
  1321. .tipsbox .tispic{
  1322. width: 7.06rem;
  1323. height: 5.83rem;
  1324. background: url(https://questyes.com/upload/images/tips.png) no-repeat;
  1325. background-size: 7.06rem 5.83rem;
  1326. position: absolute;
  1327. z-index: 101;
  1328. top: 50%;
  1329. margin-top: -2.9rem;
  1330. }
  1331. .title_5box{
  1332. width: 3.73rem;
  1333. height: 0.63rem;
  1334. position: absolute;
  1335. left: 50%;
  1336. margin-left: -1.865rem;
  1337. margin-top: 0.2rem;
  1338. }
  1339. .title_5box img{
  1340. width: 100%;
  1341. }
  1342. .foot_5box{
  1343. height: 1.78rem;
  1344. background: url(https://questyes.com/upload/images/5_pic_foot.png) repeat-x top center;
  1345. background-size: 0.08rem 1.78rem;
  1346. position: absolute;
  1347. bottom: 0;
  1348. left: 0px;
  1349. right: 0;
  1350. width: 100%;
  1351. z-index: 9999;
  1352. }
  1353. .foot_left,.foot_right{
  1354. width: 2.88rem;
  1355. height: 1.1rem;
  1356. position: absolute;
  1357. top: 50%;
  1358. margin-top: -0.55rem;
  1359. }
  1360. .foot_left img,.foot_right img,.foot_qr img{
  1361. width: 100%;
  1362. }
  1363. .foot_qr img{
  1364. z-index: 9999;
  1365. }
  1366. .foot_left{
  1367. left: 0.45rem;
  1368. }
  1369. .foot_right{
  1370. right: 0.45rem;
  1371. }
  1372. .foot_qr{
  1373. width: 1.68rem;
  1374. height: 1.68rem;
  1375. position: absolute;
  1376. left: 50%;
  1377. margin-left: -0.84rem;
  1378. top: -0.84rem;
  1379. display: block;
  1380. }
  1381. .hc_box{
  1382. position: absolute;
  1383. width: 100%;
  1384. height: 8.27rem;
  1385. z-index: 101;
  1386. top: 1rem;
  1387. }
  1388. .hc_pic{
  1389. width: 5.10rem;
  1390. margin:0 auto;
  1391. }
  1392. .hc_pic img{width: 100%;}
  1393. .hc_box a{
  1394. display: block;
  1395. width: 0.47rem;
  1396. height: 0.67rem;
  1397. top: 50%;
  1398. margin-top: -0.3rem;
  1399. position: absolute;
  1400. }
  1401. .hc_box a img{width: 100%;}
  1402. .hc_box a.hc_btn_left{
  1403. left: 0.22rem;
  1404. }
  1405. .hc_box a.hc_btn_right{
  1406. right: 0.22rem;
  1407. }
  1408. .home_box1{
  1409. position: absolute;
  1410. width: 6.44rem;
  1411. height: 6.39rem;
  1412. top: 0.96rem;
  1413. left: 50%;
  1414. margin-left: -3.22rem;
  1415. z-index: 1;
  1416. }
  1417. .home_box1 img,.home_box2 img{
  1418. width: 100%;
  1419. }
  1420. .home_box2{
  1421. position: absolute;
  1422. width: 2.52rem;
  1423. height: 4.74rem;
  1424. top: 3rem;
  1425. left: 50%;
  1426. margin-left: -1.26rem;
  1427. z-index: 2;
  1428. }
  1429. /**/
  1430. .file{
  1431. width: 2.76rem;
  1432. height: 2.76rem;
  1433. background: red;
  1434. border-radius: 50%;
  1435. top: 0.86rem;
  1436. left: 0.65rem;
  1437. position: absolute;
  1438. opacity: 0;
  1439. }
  1440. .photo-clip-view{
  1441. border-radius: 50%;
  1442. }
  1443. .btn_next_4 .file{
  1444. width: 100%;
  1445. height: 100%;
  1446. background: red;
  1447. opacity: 1;
  1448. position: absolute;
  1449. left: 0;
  1450. top: 0;
  1451. border-radius: inherit;
  1452. opacity: 0;
  1453. }
  1454. #pagebox{
  1455. position: fixed;
  1456. top: 0;
  1457. left: 0;
  1458. right: 0;
  1459. width: 100%;
  1460. height: 100%;
  1461. overflow: hidden;
  1462. }
  1463. #pagebox1{
  1464. position: absolute;
  1465. top: 0;
  1466. }
  1467. #pagebox2,#pagebox3,#pagebox4,#pagebox5,#pagebox6,#pagebox7{
  1468. position: absolute;
  1469. top: 100%;
  1470. overflow: hidden;
  1471. z-index: 1002;
  1472. }
  1473. .home_box3{
  1474. position: absolute;
  1475. width: 2.01rem;
  1476. height: 0.66rem;
  1477. margin-left: -1.005rem;
  1478. left: 50%;
  1479. bottom: 1.25rem;
  1480. z-index: 20;
  1481. }
  1482. .home_box3 img{
  1483. width: 100%;
  1484. }
  1485. /**/
  1486. .wrapper {
  1487. position: absolute;
  1488. bottom: 2.24rem;
  1489. width: 5.2rem;
  1490. height: 0.88rem;
  1491. left: 50%;
  1492. margin-left: -2.6rem;
  1493. background: url(https://questyes.com/upload/images/loading_bg.png) no-repeat center top/5.2rem 0.88rem;
  1494. z-index: 20;
  1495. }
  1496. .wrapper p a {color:#757575; text-decoration:none;}
  1497. .wrapper .load-bar { width: 4.8rem; border-radius: 6px; background-color: #D9D9D9; position: relative; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 2px 3px rgba(0, 0, 0, 0.2); }
  1498. .wrapper .load-bar:hover .load-bar-inner, .wrapper .load-bar:hover #counter {
  1499. animation-play-state: paused;
  1500. -moz-animation-play-state: paused;
  1501. -o-animation-play-state: paused;
  1502. -webkit-animation-play-state: paused;
  1503. }
  1504. .wrapper .load-bar-inner { height: 99%; width: 0%; border-radius: inherit; position: absolute; animation: loader 2s linear; -moz-animation: loader 2s linear; -webkit-animation: loader 2s linear; -o-animation: loader 2s linear;
  1505. height: 0.56rem;
  1506. background: url(https://questyes.com/upload/images/login_bg2.png);
  1507. left: 0.2rem;
  1508. right: 0.2rem;
  1509. top: 0.16rem;
  1510. }
  1511. .counter{display: none;}
  1512. .wrapper #counter {
  1513. position: absolute;
  1514. padding: 5px 10px;
  1515. border-radius: 0.4em;
  1516. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1), 0 2px 4px 1px rgba(0, 0, 0, 0.2), 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  1517. left: -25px;
  1518. top: -35px;
  1519. font-size: 12px;
  1520. font-weight: bold;
  1521. width: 0px;
  1522. animation: counter 5s linear infinite;
  1523. -moz-animation: counter 5s linear infinite;
  1524. -webkit-animation: counter 5s linear infinite;
  1525. -o-animation: counter 5s linear infinite;
  1526. }
  1527. .wrapper #counter:after { content: ""; position: absolute; width: 8px; height: 8px; background-color: #E7E6E3; transform: rotate(45deg); -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); -o-transform: rotate(45deg); left: 50%; margin-left: -4px; bottom: -4px; box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2), 1px 1px 1px 1px rgba(0, 0, 0, 0.1); border-radius: 0 0 3px 0; }
  1528. .wrapper h1 {
  1529. font-size: 28px;
  1530. padding: 20px 0 8px 0;
  1531. }
  1532. .wrapper p {
  1533. font-size: 13px;
  1534. }
  1535. @keyframes loader {
  1536. from {
  1537. width: 0%;
  1538. }
  1539. to {
  1540. width: 100%;
  1541. }
  1542. }
  1543. @-moz-keyframes loader {
  1544. from {
  1545. width: 0%;
  1546. }
  1547. to {
  1548. width: 100%;
  1549. }
  1550. }
  1551. @-webkit-keyframes loader {
  1552. from {
  1553. width: 0%;
  1554. }
  1555. to {
  1556. width: 100%;
  1557. }
  1558. }
  1559. @-o-keyframes loader {
  1560. from {
  1561. width: 0%;
  1562. }
  1563. to {
  1564. width: 100%;
  1565. }
  1566. }
  1567. @keyframes counter {
  1568. from {
  1569. left: -25px;
  1570. }
  1571. to {
  1572. left: 323px;
  1573. }
  1574. }
  1575. @-moz-keyframes counter {
  1576. from {
  1577. left: -25px;
  1578. }
  1579. to {
  1580. left: 323px;
  1581. }
  1582. }
  1583. @-webkit-keyframes counter {
  1584. from {
  1585. left: -25px;
  1586. }
  1587. to {
  1588. left: 323px;
  1589. }
  1590. }
  1591. @-o-keyframes counter {
  1592. from {
  1593. left: -25px;
  1594. }
  1595. to {
  1596. left: 323px;
  1597. }
  1598. }
  1599. @keyframes loader {
  1600. from {
  1601. width: 0%;
  1602. }
  1603. to {
  1604. width: 100%;
  1605. }
  1606. }
  1607. .load-bar-inner {
  1608. height: 99%;
  1609. width: 0%;
  1610. border-radius: inherit;
  1611. position: relative;
  1612. background: #c2d7ac;
  1613. animation: loader 5s linear infinite;
  1614. }