success.css 18 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031
  1. @charset "utf-8";
  2. .dib {
  3. display: inline-block;
  4. }
  5. /*.icon {&:extend(.dib);background:url("@{url}/i.png") no-repeat;}
  6. .btn {&:extend(.dib);background:url("@{url}/btn.png") no-repeat;}*/
  7. .after {
  8. content: "\200B";
  9. clear: both;
  10. display: block;
  11. height: 0;
  12. }
  13. /***** normalize.css S *****/
  14. /* normalize.css v2.1.3 | MIT License | git.io/normalize */
  15. /* ==========================================================================
  16. HTML5 display definitions
  17. ========================================================================== */
  18. /**
  19. * Correct `block` display not defined in IE 8/9.
  20. */
  21. article,
  22. aside,
  23. details,
  24. figcaption,
  25. figure,
  26. footer,
  27. header,
  28. hgroup,
  29. main,
  30. nav,
  31. section,
  32. summary {
  33. display: block;
  34. }
  35. /**
  36. * Correct `inline-block` display not defined in IE 8/9.
  37. */
  38. audio,
  39. canvas,
  40. video {
  41. display: inline-block;
  42. }
  43. /**
  44. * Prevent modern browsers from displaying `audio` without controls.
  45. * Remove excess height in iOS 5 devices.
  46. */
  47. audio:not([controls]) {
  48. display: none;
  49. height: 0;
  50. }
  51. /**
  52. * Address `[hidden]` styling not present in IE 8/9.
  53. * Hide the `template` element in IE, Safari, and Firefox < 22.
  54. */
  55. [hidden],
  56. template {
  57. display: none;
  58. }
  59. /* ==========================================================================
  60. Base
  61. ========================================================================== */
  62. /**
  63. * 1. Set default font family to sans-serif.
  64. * 2. Prevent iOS text size adjust after orientation change, without disabling
  65. * user zoom.
  66. */
  67. html {
  68. font-family: sans-serif;
  69. /* 1 */
  70. -webkit-text-size-adjust: 100%;
  71. /* 2 */
  72. }
  73. /**
  74. * Remove default margin.
  75. */
  76. body {
  77. margin: 0;
  78. }
  79. /* ==========================================================================
  80. Links
  81. ========================================================================== */
  82. /**
  83. * Remove the gray background color from active links in IE 10.
  84. */
  85. a {
  86. background: transparent;
  87. }
  88. /**
  89. * Address `outline` inconsistency between Chrome and other browsers.
  90. */
  91. a:focus {
  92. outline: thin dotted;
  93. }
  94. /**
  95. * Improve readability when focused and also mouse hovered in all browsers.
  96. */
  97. a:active,
  98. a:hover {
  99. outline: 0;
  100. }
  101. /* ==========================================================================
  102. Typography
  103. ========================================================================== */
  104. /**
  105. * Address variable `h1` font-size and margin within `section` and `article`
  106. * contexts in Firefox 4+, Safari 5, and Chrome.
  107. */
  108. h1 {
  109. font-size: 2em;
  110. margin: 0.67em 0;
  111. }
  112. /**
  113. * Address styling not present in IE 8/9, Safari 5, and Chrome.
  114. */
  115. abbr[title] {
  116. border-bottom: 1px dotted;
  117. }
  118. /**
  119. * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
  120. */
  121. b,
  122. strong {
  123. font-weight: bold;
  124. }
  125. /**
  126. * Address styling not present in Safari 5 and Chrome.
  127. */
  128. dfn {
  129. font-style: italic;
  130. }
  131. /**
  132. * Address differences between Firefox and other browsers.
  133. */
  134. hr {
  135. -moz-box-sizing: content-box;
  136. box-sizing: content-box;
  137. height: 0;
  138. }
  139. /**
  140. * Address styling not present in IE 8/9.
  141. */
  142. mark {
  143. background: #ff0;
  144. color: #000;
  145. }
  146. /**
  147. * Correct font family set oddly in Safari 5 and Chrome.
  148. */
  149. code,
  150. kbd,
  151. pre,
  152. samp {
  153. font-family: monospace, serif;
  154. font-size: 1em;
  155. }
  156. /**
  157. * Improve readability of pre-formatted text in all browsers.
  158. */
  159. pre {
  160. white-space: pre-wrap;
  161. }
  162. /**
  163. * Set consistent quote types.
  164. */
  165. q {
  166. quotes: "\201C" "\201D" "\2018" "\2019";
  167. }
  168. /**
  169. * Address inconsistent and variable font size in all browsers.
  170. */
  171. small {
  172. font-size: 80%;
  173. }
  174. /**
  175. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  176. */
  177. sub,
  178. sup {
  179. font-size: 75%;
  180. line-height: 0;
  181. position: relative;
  182. vertical-align: baseline;
  183. }
  184. sup {
  185. top: -0.5em;
  186. }
  187. sub {
  188. bottom: -0.25em;
  189. }
  190. /* ==========================================================================
  191. Embedded content
  192. ========================================================================== */
  193. /**
  194. * Remove border when inside `a` element in IE 8/9.
  195. */
  196. img {
  197. border: 0;
  198. }
  199. /**
  200. * Correct overflow displayed oddly in IE 9.
  201. */
  202. svg:not(:root) {
  203. overflow: hidden;
  204. }
  205. /* ==========================================================================
  206. Figures
  207. ========================================================================== */
  208. /**
  209. * Address margin not present in IE 8/9 and Safari 5.
  210. */
  211. figure {
  212. margin: 0;
  213. }
  214. /* ==========================================================================
  215. Forms
  216. ========================================================================== */
  217. /**
  218. * Define consistent border, margin, and padding.
  219. */
  220. fieldset {
  221. border: 1px solid #c0c0c0;
  222. margin: 0 2px;
  223. padding: 0.35em 0.625em 0.75em;
  224. }
  225. /**
  226. * 1. Correct `color` not being inherited in IE 8/9.
  227. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  228. */
  229. legend {
  230. border: 0;
  231. /* 1 */
  232. padding: 0;
  233. /* 2 */
  234. }
  235. /**
  236. * 1. Correct font family not being inherited in all browsers.
  237. * 2. Correct font size not being inherited in all browsers.
  238. * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
  239. */
  240. button,
  241. input,
  242. select,
  243. textarea {
  244. font-family: inherit;
  245. /* 1 */
  246. font-size: 100%;
  247. /* 2 */
  248. margin: 0;
  249. /* 3 */
  250. }
  251. /**
  252. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  253. * the UA stylesheet.
  254. */
  255. button,
  256. input {
  257. line-height: normal;
  258. }
  259. /**
  260. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  261. * All other form control elements do not inherit `text-transform` values.
  262. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
  263. * Correct `select` style inheritance in Firefox 4+ and Opera.
  264. */
  265. button,
  266. select {
  267. text-transform: none;
  268. }
  269. /**
  270. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  271. * and `video` controls.
  272. * 2. Correct inability to style clickable `input` types in iOS.
  273. * 3. Improve usability and consistency of cursor style between image-type
  274. * `input` and others.
  275. */
  276. button,
  277. html input[type="button"],
  278. input[type="reset"],
  279. input[type="submit"] {
  280. -webkit-appearance: button;
  281. /* 2 */
  282. cursor: pointer;
  283. /* 3 */
  284. border: none;
  285. /***** shiyun add *****/
  286. }
  287. /**
  288. * Re-set default cursor for disabled elements.
  289. */
  290. button[disabled],
  291. html input[disabled] {
  292. cursor: default;
  293. }
  294. /**
  295. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  296. * 2. Remove excess padding in IE 8/9/10.
  297. */
  298. input[type="checkbox"],
  299. input[type="radio"] {
  300. box-sizing: border-box;
  301. /* 1 */
  302. padding: 0;
  303. /* 2 */
  304. }
  305. /**
  306. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  307. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  308. * (include `-moz` to future-proof).
  309. */
  310. input[type="search"] {
  311. -webkit-appearance: textfield;
  312. /* 1 */
  313. -moz-box-sizing: content-box;
  314. -webkit-box-sizing: content-box;
  315. /* 2 */
  316. box-sizing: content-box;
  317. }
  318. /**
  319. * Remove inner padding and search cancel button in Safari 5 and Chrome
  320. * on OS X.
  321. */
  322. input[type="search"]::-webkit-search-cancel-button,
  323. input[type="search"]::-webkit-search-decoration {
  324. -webkit-appearance: none;
  325. }
  326. /**
  327. * Remove inner padding and border in Firefox 4+.
  328. */
  329. button::-moz-focus-inner,
  330. input::-moz-focus-inner {
  331. border: 0;
  332. padding: 0;
  333. }
  334. /**
  335. * 1. Remove default vertical scrollbar in IE 8/9.
  336. * 2. Improve readability and alignment in all browsers.
  337. */
  338. textarea {
  339. overflow: auto;
  340. /* 1 */
  341. vertical-align: top;
  342. /* 2 */
  343. }
  344. /* ==========================================================================
  345. Tables
  346. ========================================================================== */
  347. /**
  348. * Remove most spacing between table cells.
  349. */
  350. table {
  351. border-collapse: collapse;
  352. border-spacing: 0;
  353. }
  354. th {
  355. font-weight: normal;
  356. }
  357. /***** normalize.css E *****/
  358. p,
  359. ul,
  360. li,
  361. dl,
  362. dt,
  363. dd,
  364. h1,
  365. h2,
  366. h3,
  367. h4,
  368. h5,
  369. h6 {
  370. margin: 0;
  371. padding: 0;
  372. }
  373. h1,
  374. h2,
  375. h3,
  376. h4,
  377. h5,
  378. h6 {
  379. font-weight: normal;
  380. }
  381. ul {
  382. list-style: none;
  383. font-size: 0;
  384. }
  385. li {
  386. font-size: 12px;
  387. }
  388. i,
  389. em {
  390. font-style: normal;
  391. }
  392. .fya {
  393. font-family: "\5FAE\8F6F\96C5\9ED1";
  394. }
  395. .fsong {
  396. font-family: "\5b8b\4f53";
  397. }
  398. .f0,
  399. .list-pro li {
  400. font-size: 0;
  401. }
  402. .noBorder,
  403. .inp-form12 {
  404. border: none !important;
  405. }
  406. .noBg,
  407. .inp-form12 {
  408. background: none !important;
  409. }
  410. .c0 {
  411. color: #000 !important;
  412. }
  413. .c3 {
  414. color: #333 !important;
  415. }
  416. .c6 {
  417. color: #666 !important;
  418. }
  419. .c9 {
  420. color: #999;
  421. }
  422. .cwhite,
  423. .btn-go {
  424. color: #fff;
  425. }
  426. .red {
  427. color: #f00 !important;
  428. }
  429. .tl {
  430. text-align: left !important;
  431. }
  432. .tr {
  433. text-align: right;
  434. }
  435. .tc,
  436. .m-page .btnWrap {
  437. text-align: center;
  438. }
  439. .fl {
  440. float: left;
  441. }
  442. .fr {
  443. float: right;
  444. }
  445. .vt {
  446. vertical-align: top;
  447. }
  448. .vm {
  449. vertical-align: middle !important;
  450. }
  451. .vb {
  452. vertical-align: bottom;
  453. }
  454. .pr,
  455. .p-index,
  456. .list-pro li,
  457. .m-img,
  458. .s13txt {
  459. position: relative;
  460. }
  461. .pa,
  462. .icon-chose,
  463. .showTxt {
  464. position: absolute;
  465. }
  466. .pstatic {
  467. position: static;
  468. }
  469. .oh,
  470. body,
  471. .p-index,
  472. .inputWrap {
  473. overflow: hidden;
  474. *zoom: 1;
  475. }
  476. .di {
  477. display: inline;
  478. }
  479. .db,
  480. .btn-go {
  481. display: block !important;
  482. *zoom: 1;
  483. }
  484. .hidden {
  485. display: none !important;
  486. }
  487. .cl {
  488. clear: both;
  489. }
  490. .wauto {
  491. width: auto !important;
  492. }
  493. .bk {
  494. word-wrap: break-word;
  495. word-break: break-all;
  496. }
  497. .nowrap {
  498. white-space: nowrap;
  499. word-wrap: normal;
  500. }
  501. .vh {
  502. visibility: hidden;
  503. }
  504. .vShow {
  505. visibility: visible !important;
  506. }
  507. .clearfix:after {
  508. content: "\200B";
  509. clear: both;
  510. display: block;
  511. height: 0;
  512. }
  513. /***** css format end *****/
  514. /***** mobile S *****/
  515. html {
  516. font-size: 62.5%;
  517. height: 100%;
  518. }
  519. body {
  520. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  521. -webkit-text-size-adjust: none;
  522. -webkit-backface-visibility: hidden;
  523. -webkit-font-smoothing: antialiased;
  524. font: 14px/1.6 "\5fae\8f6f\96c5\9ed1";
  525. width: 640px;
  526. max-width: 640px;
  527. min-width: 640px;
  528. height: 100%;
  529. margin: 0 auto;
  530. }
  531. a {
  532. text-decoration: none;
  533. }
  534. .f14 {
  535. font-size: 1.4rem;
  536. }
  537. .f16 {
  538. font-size: 1.6rem;
  539. }
  540. .f18,
  541. .btn-go {
  542. font-size: 1.8rem;
  543. }
  544. .m5 {
  545. margin: 5px;
  546. }
  547. .mt5 {
  548. margin-top: 5px;
  549. }
  550. .mb5 {
  551. margin-bottom: 5px;
  552. }
  553. .ml5 {
  554. margin-left: 5px;
  555. }
  556. .mr5 {
  557. margin-right: 5px;
  558. }
  559. .mb10 {
  560. margin-bottom: 10px;
  561. }
  562. .mtb10 {
  563. margin-top: 10px;
  564. margin-bottom: 10px;
  565. }
  566. .mlr10,
  567. .list-pro li:nth-child(2) {
  568. margin-left: 10px;
  569. margin-right: 10px;
  570. }
  571. .mlr15,
  572. .cont12 {
  573. margin-left: 15px;
  574. margin-right: 15px;
  575. }
  576. .ml10,
  577. .inp-form12 {
  578. margin-left: 10px;
  579. }
  580. .mr10 {
  581. margin-right: 10px;
  582. }
  583. .mt10 {
  584. margin-top: 10px;
  585. }
  586. .mb10 {
  587. margin-bottom: 10px;
  588. }
  589. .m10 {
  590. margin: 10px;
  591. }
  592. .plr10 {
  593. padding-left: 10px;
  594. padding-right: 10px;
  595. }
  596. .ptb10 {
  597. padding-top: 10px;
  598. padding-bottom: 10px;
  599. }
  600. .pt5 {
  601. padding-top: 5px;
  602. }
  603. .p10 {
  604. padding: 10px;
  605. }
  606. .pt10 {
  607. padding-top: 10px;
  608. }
  609. .pl10 {
  610. padding-left: 10px;
  611. }
  612. .ti2 {
  613. text-indent: 2em;
  614. }
  615. /***** mobile E *****/
  616. /***** 平安财富帮头部 *****/
  617. .header {
  618. color: #fff;
  619. line-height: 54px;
  620. height: 54px;
  621. text-align: center;
  622. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ff8a00), to(#df4a00));
  623. background-image: -webkit-linear-gradient(top, #ff8a00, #df4a00);
  624. background-image: linear-gradient(to bottom, #ff8a00, #df4a00);
  625. font-size: 2.2rem;
  626. -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  627. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  628. }
  629. /***** 底部固定按钮 *****/
  630. .btnWrap {
  631. position: fixed;
  632. bottom: 0;
  633. left: 0;
  634. width: 100%;
  635. background-color: #fff;
  636. }
  637. .btn-go {
  638. height: 40px;
  639. line-height: 40px;
  640. border: 1px solid #F77402;
  641. -webkit-box-shadow: inset 0 1px 1px #fdaa21;
  642. box-shadow: inset 0 1px 1px #fdaa21;
  643. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fd9802), to(#fc5501));
  644. background-image: -webkit-linear-gradient(top, #fd9802, #fc5501);
  645. background-image: linear-gradient(to bottom, #fd9802, #fc5501);
  646. -webkit-border-radius: 8px;
  647. border-radius: 8px;
  648. text-decoration: none;
  649. margin: 0 15px 10px;
  650. }
  651. /***** 分享层 *****/
  652. .share-popup {
  653. top: 0;
  654. width: 100%;
  655. height: 100%;
  656. text-align: center;
  657. position: fixed;
  658. background-color: rgba(0, 0, 0, 0.7);
  659. z-index: 10;
  660. -webkit-box-align: center;
  661. -webkit-box-pack: center;
  662. display: box;
  663. display: -webkit-box;
  664. }
  665. body {
  666. height: 100%;
  667. }
  668. .css_sprite01 {
  669. background: url("../images/sprite01.png") no-repeat;
  670. }
  671. .p-index {
  672. height: 100%;
  673. width: 100%;
  674. }
  675. .m-img {
  676. background: url("../images/loading.gif") center no-repeat #dddddd;
  677. height: 100%;
  678. width: 100%;
  679. }
  680. /*index*/
  681. .portrait .p-index {
  682. -webkit-transform: scale(0.4);
  683. margin-top: -44%;
  684. }
  685. /*模块 m-*/
  686. .m-page {
  687. position: absolute;
  688. left: 0;
  689. top: 0%;
  690. height: 100%;
  691. width: 100%;
  692. background: #fff;
  693. }
  694. .m-page.show {
  695. z-index: 10;
  696. display: block;
  697. }
  698. .m-page.hide {
  699. z-index: 5;
  700. display: none;
  701. }
  702. .m-page.active {
  703. z-index: 15;
  704. display: block;
  705. }
  706. .m-img {
  707. width: 100%;
  708. height: 100%;
  709. }
  710. .u-arrow {
  711. position: fixed;
  712. bottom: 0;
  713. left: 50%;
  714. z-index: 999;
  715. width: 80px;
  716. height: 80px;
  717. margin-left: -40px;
  718. pointer-events: none;
  719. }
  720. .u-arrow img {
  721. position: absolute;
  722. top: 50%;
  723. left: 50%;
  724. margin: -14px 0 0 -14px;
  725. -webkit-animation: start 1.5s infinite ease-in-out;
  726. }
  727. @-webkit-keyframes start {
  728. 0%,
  729. 30% {
  730. opacity: 0;
  731. -webkit-transform: translate(0, 10px);
  732. }
  733. 60% {
  734. opacity: 1;
  735. -webkit-transform: translate(0, 0);
  736. }
  737. 100% {
  738. opacity: 0;
  739. -webkit-transform: translate(0, -8px);
  740. }
  741. }
  742. .fn-audio {
  743. position: fixed;
  744. top: 10px;
  745. right: 5px;
  746. z-index: 2000;
  747. width: 60px;
  748. height: 61px;
  749. line-height: 120px;
  750. text-align: center;
  751. }
  752. .fn-audio .btn p {
  753. width: 60px;
  754. height: 61px;
  755. }
  756. .fn-audio .btn p span {
  757. display: none;
  758. width: 60px;
  759. height: 61px;
  760. }
  761. .fn-audio .btn p span:first-child {
  762. display: inline-block;
  763. }
  764. .fn-audio .btn audio {
  765. height: 0;
  766. width: 0;
  767. opacity: 0;
  768. }
  769. .audio_txt {
  770. position: fixed;
  771. top: 18px;
  772. right: 5px;
  773. height: 60px;
  774. overflow: hidden;
  775. opacity: 1;
  776. z-index: 17;
  777. -webkit-transition: opacity 1s;
  778. }
  779. .audio_txt p {
  780. float: left;
  781. background: rgba(93, 143, 176, 0.5);
  782. font-size: 16px;
  783. color: #fff;
  784. font-weight: bold;
  785. }
  786. .audio_txt p:first-child {
  787. padding: 0 10px;
  788. height: 40px;
  789. line-height: 40px;
  790. border-bottom-left-radius: 10px;
  791. border-top-left-radius: 10px;
  792. }
  793. .audio_txt p:last-child {
  794. border-style: solid;
  795. border-width: 20px;
  796. border-color: transparent transparent transparent rgba(93, 143, 176, 0.5);
  797. background: none;
  798. }
  799. .audio_txt.close {
  800. opacity: 0;
  801. }
  802. .audio_open {
  803. background-position: -60px 0;
  804. }
  805. .audio_close {
  806. background-position: 0 0;
  807. }
  808. .list-pro {
  809. display: box;
  810. display: -webkit-box;
  811. }
  812. .list-pro li {
  813. border: 2px solid transparent;
  814. box-flex: 1;
  815. -webkit-box-flex: 1;
  816. }
  817. .list-pro .chosed {
  818. border-color: #B0D7FF;
  819. }
  820. .list-pro .chosed .icon-chose {
  821. display: block;
  822. }
  823. .icon-chose {
  824. display: none;
  825. right: 2px;
  826. top: 2px;
  827. }
  828. .list-form12 {
  829. margin: 25px 60px 15px;
  830. }
  831. .list-form12 li {
  832. margin-bottom: 15px;
  833. }
  834. .inputWrap {
  835. background-color: #B0D7FF;
  836. height: 80px;
  837. line-height: 80px;
  838. }
  839. .inp-form12 {
  840. height: 100%;
  841. width: 92%;
  842. font-size: 3.2rem;
  843. outline: none;
  844. }
  845. .inp-form12::-webkit-input-placeholder {
  846. color: #698DB2;
  847. }
  848. .alert-div {
  849. width: 70%;
  850. border: 3px solid #B0D7FF;
  851. padding: 10px 15px 30px;
  852. background-color: #fff;
  853. }
  854. .alert-div p:first-child {
  855. font-size: 3.6rem;
  856. margin: 30px auto 30px;
  857. }
  858. .showTxt {
  859. left: 0;
  860. width: 100%;
  861. -webkit-animation: txtshow 0.8s ease-in;
  862. animation: txtshow 0.8s ease-in;
  863. -webkit-animation-fill-mode: forwards;
  864. }
  865. @-webkit-keyframes txtshow {
  866. 0% {
  867. opacity: 0;
  868. -webkit-transform: translateY(100%);
  869. }
  870. 100% {
  871. opacity: 1;
  872. -webkit-transform: translateY(0);
  873. }
  874. }
  875. .txt-s3 {
  876. top: 70%;
  877. }
  878. .txt-s4 {
  879. top: 74%;
  880. }
  881. .txt-s5 {
  882. margin: 80px 0;
  883. }
  884. .txt-s7 {
  885. top: 28%;
  886. }
  887. .txt-s8 {
  888. top: 84%;
  889. }
  890. .txt-s9 {
  891. top: 30%;
  892. }
  893. .txt-s10 {
  894. top: 78%;
  895. }
  896. .txt-s13 {
  897. top: 42%;
  898. }
  899. .s5-img1-2,
  900. .s5-img2-2 {
  901. margin: 0 -3px;
  902. }
  903. .s5-img1-1 {
  904. -webkit-animation: st1 1s infinite linear;
  905. animation: st1 1s infinite linear;
  906. }
  907. .s5-img1-2 {
  908. -webkit-animation: st2 1s infinite linear;
  909. animation: st2 1s infinite linear;
  910. }
  911. .s5-img2-1 {
  912. -webkit-animation: st3 1s infinite linear;
  913. animation: st3 1s infinite linear;
  914. }
  915. .s5-img2-2 {
  916. -webkit-animation: st4 1s infinite linear;
  917. animation: st4 1s infinite linear;
  918. }
  919. .s13icon1 {
  920. -webkit-animation: ss1 1s infinite linear;
  921. animation: ss1 1s infinite linear;
  922. }
  923. .s13icon2 {
  924. -webkit-animation: st1 1s infinite linear;
  925. animation: st1 1s infinite linear;
  926. }
  927. .s13icon3 {
  928. -webkit-animation: st2 1s infinite linear;
  929. animation: st2 1s infinite linear;
  930. }
  931. .s13icon4 {
  932. -webkit-animation: st3 1s infinite linear;
  933. animation: st3 1s infinite linear;
  934. }
  935. .s13icon5 {
  936. -webkit-animation: st4 1s infinite linear;
  937. animation: st4 1s infinite linear;
  938. }
  939. .s13icon6 {
  940. -webkit-animation: ss2 1s infinite linear;
  941. animation: ss2 1s infinite linear;
  942. }
  943. @-webkit-keyframes st1 {
  944. 0% {
  945. opacity: 1;
  946. -webkit-transform: translateX(200%);
  947. }
  948. 100% {
  949. opacity: .25;
  950. -webkit-transform: translateX(0);
  951. }
  952. }
  953. @-webkit-keyframes st2 {
  954. 0% {
  955. opacity: 1;
  956. -webkit-transform: translateX(100%);
  957. }
  958. 100% {
  959. opacity: .5;
  960. -webkit-transform: translateX(0);
  961. }
  962. }
  963. @-webkit-keyframes st3 {
  964. 0% {
  965. opacity: 1;
  966. -webkit-transform: translateX(-100%);
  967. }
  968. 100% {
  969. opacity: .5;
  970. -webkit-transform: translateX(0);
  971. }
  972. }
  973. @-webkit-keyframes st4 {
  974. 0% {
  975. opacity: 1;
  976. -webkit-transform: translateX(-200%);
  977. }
  978. 100% {
  979. opacity: .25;
  980. -webkit-transform: translateX(0);
  981. }
  982. }
  983. @-webkit-keyframes ss1 {
  984. 0% {
  985. opacity: 1;
  986. -webkit-transform: translateX(300%);
  987. }
  988. 100% {
  989. opacity: .125;
  990. -webkit-transform: translateX(0);
  991. }
  992. }
  993. @-webkit-keyframes ss2 {
  994. 0% {
  995. opacity: 1;
  996. -webkit-transform: translateX(-300%);
  997. }
  998. 100% {
  999. opacity: .125;
  1000. -webkit-transform: translateX(0);
  1001. }
  1002. }
  1003. .mb30 {
  1004. margin-bottom: 30px;
  1005. }
  1006. .m-page .btnWrap {
  1007. bottom: 20px;
  1008. background-color: transparent;
  1009. -webkit-animation: btnwrap 0.6s 0.4s linear;
  1010. animation: btnwrap 0.6s 0.4s linear;
  1011. -webkit-animation-fill-mode: forwards;
  1012. opacity: 0;
  1013. }
  1014. @-webkit-keyframes btnwrap {
  1015. 0% {
  1016. opacity: 0;
  1017. }
  1018. 100% {
  1019. opacity: 1;
  1020. }
  1021. }
  1022. .s13txt {
  1023. top: 70%;
  1024. }
  1025. @media (min-width: 360px) {
  1026. .txt-s13 {
  1027. top: 47%;
  1028. }
  1029. }
  1030. .copyWrap {color:#b0d7ff;font-size:3rem;position:absolute;left:0;bottom:60px;width:100%;text-align:center;text-decoration:none;outline:none;}