main.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. font-size: 100%;
  22. font: inherit;
  23. vertical-align: baseline;
  24. }
  25. /* HTML5 display-role reset for older browsers */
  26. article, aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {
  28. display: block;
  29. }
  30. ol, ul {
  31. list-style: none;
  32. }
  33. blockquote, q {
  34. quotes: none;
  35. }
  36. blockquote:before, blockquote:after,
  37. q:before, q:after {
  38. content: '';
  39. content: none;
  40. }
  41. table {
  42. border-collapse: collapse;
  43. border-spacing: 0;
  44. }
  45. input {
  46. -webkit-box-sizing: border-box;
  47. box-sizing: border-box;
  48. }
  49. .loading {
  50. position: fixed;
  51. top: 0;
  52. left: 0;
  53. right: 0;
  54. bottom: 0;
  55. z-index: 9995;
  56. }
  57. .loading .content {
  58. color: rgba(255, 255, 255, 0.6);
  59. margin-top: 4rem;
  60. text-align: center;
  61. font-size: 0.3rem;
  62. }
  63. .lockScroll {
  64. overflow: hidden;
  65. }
  66. .dialog-alert {
  67. top: 50%;
  68. -webkit-transform: translateY(-50%);
  69. transform: translateY(-50%);
  70. left: 1.2rem;
  71. right: 1.2rem;
  72. z-index: 9998;
  73. position: fixed;
  74. -webkit-animation: frames-top-center-01 300ms;
  75. animation: frames-top-center-01 300ms;
  76. border-radius: 0.1rem;
  77. min-height: auto;
  78. height: auto;
  79. background: white;
  80. color: black;
  81. }
  82. .dialog-alert h1 {
  83. font-size: 0.36rem;
  84. font-weight: bold;
  85. text-align: center;
  86. margin-top: 0.5rem;
  87. }
  88. .dialog-alert .content {
  89. min-height: 0.8rem;
  90. margin: 0.2rem 0.6rem;
  91. display: -webkit-box;
  92. display: -ms-flexbox;
  93. display: flex;
  94. -webkit-box-align: center;
  95. -ms-flex-align: center;
  96. align-items: center;
  97. -webkit-box-pack: center;
  98. -ms-flex-pack: center;
  99. justify-content: center;
  100. font-size: 0.3rem;
  101. }
  102. .dialog-alert .actions {
  103. height: 1rem;
  104. display: -webkit-box;
  105. display: -ms-flexbox;
  106. display: flex;
  107. -webkit-box-pack: center;
  108. -ms-flex-pack: center;
  109. justify-content: center;
  110. }
  111. .dialog-alert .actions .btn {
  112. color: white;
  113. font-size: 0.36rem;
  114. background: -webkit-gradient(linear, right top, left top, from(#fa382f), to(#ff7453));
  115. background: linear-gradient(-90deg, #fa382f, #ff7453);
  116. height: 0.7rem;
  117. display: -webkit-box;
  118. display: -ms-flexbox;
  119. display: flex;
  120. -webkit-box-align: center;
  121. -ms-flex-align: center;
  122. align-items: center;
  123. -webkit-box-pack: center;
  124. -ms-flex-pack: center;
  125. justify-content: center;
  126. width: 2rem;
  127. border-radius: 0.4rem;
  128. padding: 0;
  129. margin: 0;
  130. }
  131. @-webkit-keyframes frames-top-center-01 {
  132. 0% {
  133. top: -10%;
  134. }
  135. 100% {
  136. top: 50%;
  137. }
  138. }
  139. @keyframes frames-top-center-01 {
  140. 0% {
  141. top: -10%;
  142. }
  143. 100% {
  144. top: 50%;
  145. }
  146. }
  147. @-webkit-keyframes frames-top-center-02 {
  148. 0% {
  149. top: 0%;
  150. }
  151. 92% {
  152. top: 50%;
  153. }
  154. 100% {
  155. top: 40%;
  156. }
  157. }
  158. @keyframes frames-top-center-02 {
  159. 0% {
  160. top: 0%;
  161. }
  162. 92% {
  163. top: 50%;
  164. }
  165. 100% {
  166. top: 40%;
  167. }
  168. }
  169. @-webkit-keyframes capauth-zoom-in {
  170. 0% {
  171. opacity: 0;
  172. }
  173. 80% {
  174. opacity: 0;
  175. }
  176. 100% {
  177. opacity: 1;
  178. }
  179. }
  180. @keyframes capauth-zoom-in {
  181. 0% {
  182. opacity: 0;
  183. }
  184. 80% {
  185. opacity: 0;
  186. }
  187. 100% {
  188. opacity: 1;
  189. }
  190. }
  191. .overlay {
  192. position: fixed;
  193. top: 0;
  194. right: 0;
  195. bottom: 0;
  196. left: 0;
  197. z-index: 9990;
  198. background-color: rgba(0, 0, 0, 0.7);
  199. min-height: 6.5rem;
  200. }
  201. .overlay-alert {
  202. z-index: 9995;
  203. }
  204. .overlay-loading {
  205. z-index: 9995;
  206. }
  207. #uniauthframe {
  208. width: 100%;
  209. height: 100%;
  210. position: fixed;
  211. top: 0px;
  212. left: 0px;
  213. margin: 0px;
  214. padding: 0px;
  215. border: 0px;
  216. -webkit-animation: capauth-zoom-in 600ms;
  217. animation: capauth-zoom-in 600ms;
  218. z-index: 9990;
  219. }
  220. /*
  221. .dialog-alert .content {
  222. min-height: 1.2rem;
  223. margin: 0.2rem 0.6rem;
  224. display: flex;
  225. align-items: center;
  226. justify-content: center;
  227. }
  228. .actions {
  229. height: 1rem;
  230. display: flex;
  231. justify-content: center;
  232. .btn {
  233. background: red;
  234. height: 0.7rem;
  235. display: flex;
  236. align-items: center;
  237. justify-content: center;
  238. width: 2rem;
  239. border-radius: 0.4rem;
  240. }
  241. }
  242. */
  243. html,
  244. body {
  245. margin: 0;
  246. padding: 0;
  247. }
  248. body {
  249. color: white;
  250. background: url("../images/bg-9.png") no-repeat;
  251. background-size: 100% 100%;
  252. }
  253. body .banner {
  254. display: -webkit-box;
  255. display: -ms-flexbox;
  256. display: flex;
  257. -webkit-box-align: end;
  258. -ms-flex-align: end;
  259. align-items: flex-end;
  260. -webkit-box-pack: center;
  261. -ms-flex-pack: center;
  262. justify-content: center;
  263. }
  264. body .banner .banner-text {
  265. width: 6.81rem;
  266. height: 7.42rem;
  267. margin: 0 auto;
  268. margin-top: 0.67rem;
  269. }
  270. body .agr {
  271. margin: 0.32rem 0.32rem 0.1rem;
  272. margin-bottom: 0.34rem;
  273. background: rgba(77, 38, 138, 0.6);
  274. border-radius: 0.16rem;
  275. border: 0.03rem solid #604FAE;
  276. }
  277. body .agr .agr-9sar {
  278. background: #381c6e75;
  279. border-radius: 0.2rem;
  280. margin-bottom: 0.34rem;
  281. padding: 0 0.35rem 0rem 0.29rem;
  282. height: 5.2rem;
  283. }
  284. body .agr .agr-9 {
  285. display: block;
  286. }
  287. body .agr .agr-15 {
  288. display: none;
  289. }
  290. body .agr h2 {
  291. color: #B684FF;
  292. font-size: 0.26rem;
  293. font-weight: bold;
  294. margin-bottom: 0.15rem;
  295. }
  296. body .agr ul {
  297. margin: 0 auto;
  298. text-align: justify;
  299. margin-bottom: 0.35rem;
  300. }
  301. body .agr ul li {
  302. color: #efe1ff;
  303. font-weight: 400;
  304. font-size: 0.24rem;
  305. margin-bottom: 0.15rem;
  306. line-height: 0.36rem;
  307. }
  308. body .agr ul li a {
  309. color: #0AFFF7;
  310. text-decoration: none;
  311. border-bottom: 0.01rem solid #0AFFF7;
  312. }
  313. .box_ax {
  314. height: 3.6rem;
  315. padding-right: 0.3rem;
  316. width: 6.25rem;
  317. }
  318. .box_box {
  319. background: url("../images/bg-15.png") no-repeat;
  320. background-size: 100% 100%;
  321. height: 17rem;
  322. }
  323. .body-9 {
  324. background: #471f74 url("../images/bg-9.png") no-repeat;
  325. background-size: 100% 78%;
  326. }
  327. .body-9 .banner .banner-text {
  328. width: 6.81rem;
  329. height: 7.42rem;
  330. margin-top: 0.67rem;
  331. }
  332. .body-9 .agr .agr-9 {
  333. display: block;
  334. padding: 0 0.35rem 0rem 0.29rem;
  335. height: 9.32rem;
  336. overflow: auto;
  337. }
  338. .body-9 .agr .agr-15 {
  339. display: none;
  340. }
  341. .slider {
  342. position: relative;
  343. height: 2.62rem;
  344. display: -webkit-box;
  345. display: -ms-flexbox;
  346. display: flex;
  347. -webkit-box-align: center;
  348. -ms-flex-align: center;
  349. align-items: center;
  350. z-index: 0;
  351. margin: 0.17rem 0.08rem;
  352. }
  353. .slider .item-15 {
  354. width: 4.89rem;
  355. height: 2.62rem;
  356. background: url("../images/p-15-active.png") no-repeat;
  357. background-size: 100%, 100%;
  358. position: absolute;
  359. z-index: 1;
  360. -webkit-animation: item15-in 1s;
  361. animation: item15-in 1s;
  362. }
  363. .slider .item-15-inactive {
  364. width: 3.02rem;
  365. height: 1.51rem;
  366. background: url("../images/p-15-inactive.png") no-repeat;
  367. background-size: 100%, 100%;
  368. position: absolute;
  369. z-index: 0;
  370. -webkit-animation: item15-out 1s;
  371. animation: item15-out 1s;
  372. }
  373. .slider .item-9 {
  374. width: 4.89rem;
  375. height: 2.62rem;
  376. background: url("../images/p-9-active.png") no-repeat;
  377. background-size: 100%, 100%;
  378. position: absolute;
  379. right: 0;
  380. z-index: 1;
  381. -webkit-animation: item9-in 1s;
  382. animation: item9-in 1s;
  383. }
  384. .slider .item-9-inactive {
  385. width: 3.02rem;
  386. height: 1.51rem;
  387. background: url("../images/p-9-inactive.png") no-repeat;
  388. background-size: 100%, 100%;
  389. position: absolute;
  390. right: 0;
  391. z-index: 0;
  392. -webkit-animation: item9-out 1s;
  393. animation: item9-out 1s;
  394. }
  395. @-webkit-keyframes item9-in {
  396. from {
  397. width: 3.02rem;
  398. height: 1.51rem;
  399. top: 0.32rem;
  400. }
  401. to {
  402. width: 4.89rem;
  403. height: 2.62rem;
  404. top: 0rem;
  405. }
  406. }
  407. @keyframes item9-in {
  408. from {
  409. width: 3.02rem;
  410. height: 1.51rem;
  411. top: 0.32rem;
  412. }
  413. to {
  414. width: 4.89rem;
  415. height: 2.62rem;
  416. top: 0rem;
  417. }
  418. }
  419. @-webkit-keyframes item9-out {
  420. from {
  421. width: 4.89rem;
  422. height: 2.62rem;
  423. }
  424. to {
  425. width: 3.02rem;
  426. height: 1.51rem;
  427. }
  428. }
  429. @keyframes item9-out {
  430. from {
  431. width: 4.89rem;
  432. height: 2.62rem;
  433. }
  434. to {
  435. width: 3.02rem;
  436. height: 1.51rem;
  437. }
  438. }
  439. @-webkit-keyframes item15-in {
  440. from {
  441. width: 3.02rem;
  442. height: 1.51rem;
  443. top: 0.32rem;
  444. }
  445. to {
  446. width: 4.89rem;
  447. height: 2.62rem;
  448. top: 0rem;
  449. }
  450. }
  451. @keyframes item15-in {
  452. from {
  453. width: 3.02rem;
  454. height: 1.51rem;
  455. top: 0.32rem;
  456. }
  457. to {
  458. width: 4.89rem;
  459. height: 2.62rem;
  460. top: 0rem;
  461. }
  462. }
  463. @-webkit-keyframes item15-out {
  464. from {
  465. width: 4.89rem;
  466. height: 2.62rem;
  467. }
  468. to {
  469. width: 3.02rem;
  470. height: 1.51rem;
  471. }
  472. }
  473. @keyframes item15-out {
  474. from {
  475. width: 4.89rem;
  476. height: 2.62rem;
  477. }
  478. to {
  479. width: 3.02rem;
  480. height: 1.51rem;
  481. }
  482. }
  483. .order {
  484. display: -webkit-box;
  485. display: -ms-flexbox;
  486. display: flex;
  487. -webkit-box-pack: center;
  488. -ms-flex-pack: center;
  489. justify-content: center;
  490. margin-top: 10.82rem;
  491. }
  492. .order .btn {
  493. width: 6rem;
  494. height: 1.28rem;
  495. }
  496. .order .btn-order {
  497. background: url(../images/btn-order.png) no-repeat;
  498. background-size: 100%, 100%;
  499. font-size: 0.48rem;
  500. line-height: 1.15rem;
  501. }
  502. .section-announcement {
  503. position: fixed;
  504. top: 0;
  505. left: 50%;
  506. -webkit-transform: translateX(-50%);
  507. transform: translateX(-50%);
  508. width: 5.86rem;
  509. height: 0.97rem;
  510. font-size: 0.2rem;
  511. display: -webkit-box;
  512. display: -ms-flexbox;
  513. display: flex;
  514. -webkit-box-pack: center;
  515. -ms-flex-pack: center;
  516. justify-content: center;
  517. background: url(../images/bg-announcement.png) no-repeat;
  518. background-size: 100% 100%;
  519. }
  520. .section-announcement .horn {
  521. height: 0.65rem;
  522. display: -webkit-box;
  523. display: -ms-flexbox;
  524. display: flex;
  525. -webkit-box-align: center;
  526. -ms-flex-align: center;
  527. align-items: center;
  528. -webkit-box-pack: center;
  529. -ms-flex-pack: center;
  530. justify-content: center;
  531. }
  532. .section-announcement .horn img {
  533. width: 0.37rem;
  534. height: 0.32rem;
  535. margin-right: 0.05rem;
  536. background: url(../images/horn.png) no-repeat;
  537. background-size: 100% 100%;
  538. }
  539. .section-announcement .content {
  540. height: 0.7rem;
  541. line-height: 0.7rem;
  542. }
  543. input::-webkit-input-placeholder {
  544. color: #9E9E9E;
  545. font-size: 0.28rem;
  546. }
  547. input::-moz-placeholder {
  548. /* Mozilla Firefox 19+ */
  549. color: #9E9E9E;
  550. font-size: 0.28rem;
  551. }
  552. input:-moz-placeholder {
  553. /* Mozilla Firefox 4 to 18 */
  554. color: #9E9E9E;
  555. font-size: 0.28rem;
  556. }
  557. input:-ms-input-placeholder {
  558. /* Internet Explorer 10-11 */
  559. color: #9E9E9E;
  560. font-size: 0.28rem;
  561. }
  562. .sms-form {
  563. display: -webkit-box;
  564. display: -ms-flexbox;
  565. display: flex;
  566. -webkit-box-align: center;
  567. -ms-flex-align: center;
  568. align-items: center;
  569. -webkit-box-pack: center;
  570. -ms-flex-pack: center;
  571. justify-content: center;
  572. }
  573. .cancel-form {
  574. height: 4.18rem;
  575. margin: 0.25rem 0.05rem;
  576. padding-top: 0.2rem;
  577. background: url(../images/bg-cancel-dialog.png);
  578. background-size: 100% 100%;
  579. }
  580. .draw-form {
  581. height: 5.8rem;
  582. margin: 0.45rem 0.15rem 0 0.17rem;
  583. background: url(../images/bg-draw-dialog.png);
  584. background-size: 100% 100%;
  585. padding-top: 1.3rem;
  586. }
  587. .form-group {
  588. width: 6rem;
  589. }
  590. .form-group .input-row {
  591. display: -webkit-box;
  592. display: -ms-flexbox;
  593. display: flex;
  594. -ms-flex-line-pack: justify;
  595. align-content: space-between;
  596. -webkit-box-pack: center;
  597. -ms-flex-pack: center;
  598. justify-content: center;
  599. margin-bottom: 0.4rem;
  600. }
  601. .form-group .input-row .smscode {
  602. width: 100%;
  603. margin-right: 0.4rem;
  604. }
  605. .form-group .input-row .sendcode {
  606. font-size: 0.32rem;
  607. height: .86rem;
  608. padding: 0 0.2rem;
  609. word-break: keep-all;
  610. white-space: nowrap;
  611. border-radius: 0.1rem;
  612. background: #A300C6;
  613. display: -webkit-box;
  614. display: -ms-flexbox;
  615. display: flex;
  616. -webkit-box-align: center;
  617. -ms-flex-align: center;
  618. align-items: center;
  619. -webkit-box-pack: center;
  620. -ms-flex-pack: center;
  621. justify-content: center;
  622. min-width: 1.6rem;
  623. }
  624. .form-group .input-row:last-child {
  625. margin-bottom: 0rem;
  626. }
  627. .form-group input {
  628. color: #222222;
  629. font-size: 0.36rem;
  630. width: 100%;
  631. height: 0.88rem;
  632. outline: none;
  633. -webkit-appearance: none;
  634. min-width: 2.4rem;
  635. margin-bottom: 0.01rem;
  636. border: 0.01rem solid #cccccc;
  637. border-radius: 0.1rem;
  638. padding-left: 0.3rem;
  639. }
  640. .form-group .actions {
  641. margin-top: 0.4rem;
  642. }
  643. .btn {
  644. color: white;
  645. font-size: 0.36rem;
  646. height: 1rem;
  647. background: url(../images/btn-order.png) no-repeat;
  648. background-size: 100% 100%;
  649. margin: 0 auto;
  650. display: -webkit-box;
  651. display: -ms-flexbox;
  652. display: flex;
  653. -webkit-box-pack: center;
  654. -ms-flex-pack: center;
  655. justify-content: center;
  656. }
  657. .btn-draw {
  658. background: url(../images/btn-draw.png);
  659. background-size: 100% 100%;
  660. }
  661. .btn-cancel {
  662. background: url(../images/btn-cancel.png);
  663. background-size: 100% 100%;
  664. }
  665. .dialog-confirm {
  666. position: fixed;
  667. top: 40%;
  668. left: 0.62rem;
  669. right: 0.62rem;
  670. height: 3.6rem;
  671. border-radius: 0.2rem;
  672. z-index: 9992;
  673. background: #ffffff;
  674. -webkit-animation: frames-top-center-01 300ms;
  675. animation: frames-top-center-01 300ms;
  676. }
  677. .dialog-confirm .content {
  678. color: #000;
  679. font-size: 0.32rem;
  680. height: 1.8rem;
  681. text-align: center;
  682. line-height: 0.5rem;
  683. margin: 0.6rem 0.42rem 0;
  684. }
  685. .dialog-confirm .actions {
  686. font-size: 0.3rem;
  687. display: -webkit-box;
  688. display: -ms-flexbox;
  689. display: flex;
  690. -webkit-box-align: center;
  691. -ms-flex-align: center;
  692. align-items: center;
  693. -webkit-box-pack: justify;
  694. -ms-flex-pack: justify;
  695. justify-content: space-between;
  696. margin: 0 0.6rem;
  697. }
  698. .dialog-confirm .actions .btn {
  699. color: #a300c6;
  700. font-size: 0.3rem;
  701. width: 2.2rem;
  702. height: 0.8rem;
  703. display: -webkit-box;
  704. display: -ms-flexbox;
  705. display: flex;
  706. -webkit-box-align: center;
  707. -ms-flex-align: center;
  708. align-items: center;
  709. -webkit-box-pack: center;
  710. -ms-flex-pack: center;
  711. justify-content: center;
  712. border-radius: 0.1rem;
  713. background: #ded5e0;
  714. }
  715. .dialog-confirm .actions .okay {
  716. color: white;
  717. float: left;
  718. background: #a300c6;
  719. }
  720. .dialog-message {
  721. top: 40%;
  722. left: .82rem;
  723. right: .82rem;
  724. z-index: 9998;
  725. position: fixed;
  726. height: auto;
  727. min-height: auto;
  728. background: url(../images/bg-dialog.png) no-repeat;
  729. background-size: 100% 100%;
  730. }
  731. .dialog-message h1 {
  732. font-size: 0.36rem;
  733. font-weight: bold;
  734. text-align: center;
  735. margin-top: 0.5rem;
  736. }
  737. .dialog-message .content {
  738. color: white;
  739. font-size: 0.36rem;
  740. min-height: 1.17rem;
  741. margin: 0.4rem 0.8rem 0.2rem;
  742. display: -webkit-box;
  743. display: -ms-flexbox;
  744. display: flex;
  745. -webkit-box-align: center;
  746. -ms-flex-align: center;
  747. align-items: center;
  748. -webkit-box-pack: center;
  749. -ms-flex-pack: center;
  750. justify-content: center;
  751. }
  752. .dialog-message .actions {
  753. height: 1.32rem;
  754. display: -webkit-box;
  755. display: -ms-flexbox;
  756. display: flex;
  757. -webkit-box-pack: center;
  758. -ms-flex-pack: center;
  759. justify-content: center;
  760. }
  761. .dialog-message .actions .btn {
  762. color: white;
  763. font-size: 0.36rem;
  764. width: 3.3rem;
  765. height: 0.82rem;
  766. display: -webkit-box;
  767. display: -ms-flexbox;
  768. display: flex;
  769. -webkit-box-align: center;
  770. -ms-flex-align: center;
  771. align-items: center;
  772. -webkit-box-pack: center;
  773. -ms-flex-pack: center;
  774. justify-content: center;
  775. background: url("../images/btn-ok.png") no-repeat;
  776. background-size: 100% 100%;
  777. }
  778. #uniauthframe {
  779. width: 100%;
  780. height: 100%;
  781. position: fixed;
  782. top: 0px;
  783. left: 0px;
  784. margin: 0px;
  785. padding: 0px;
  786. border: 0px;
  787. -webkit-animation: capauth-zoom-in 600ms;
  788. animation: capauth-zoom-in 600ms;
  789. }
  790. .ordertrack {
  791. color: #b10fff;
  792. font-size: 0.3rem;
  793. margin: 0.3rem;
  794. display: -webkit-box;
  795. display: -ms-flexbox;
  796. display: flex;
  797. -webkit-box-align: center;
  798. -ms-flex-align: center;
  799. align-items: center;
  800. -webkit-box-pack: center;
  801. -ms-flex-pack: center;
  802. justify-content: center;
  803. }
  804. .ordertrack .btn-ordertrack {
  805. border-bottom: 0.01rem solid #a60dff;
  806. }
  807. .tu_a {
  808. background: url("../images/bng.png") no-repeat bottom;
  809. background-size: 100%;
  810. width: 6.29rem;
  811. height: 4.11rem;
  812. position: relative;
  813. left: 0.55rem;
  814. }
  815. .btn_x {
  816. text-align: center;
  817. display: inline-block;
  818. }
  819. .b_img {
  820. height: 1.02rem;
  821. }
  822. .text_b {
  823. font-size: 0.22rem;
  824. margin-top: -0.2rem;
  825. }
  826. .a_img {
  827. width: 1.02rem;
  828. height: 1.02rem;
  829. }
  830. .text_c {
  831. font-size: 0.22rem;
  832. margin-top: 0.05rem;
  833. position: relative;
  834. top: -0.32rem;
  835. }
  836. .Big_box {
  837. width: 6.13rem;
  838. margin-top: 0.47rem;
  839. margin-left: 0.71rem;
  840. }
  841. .dialog-alert .actions .btn {
  842. background: -webkit-gradient(linear, right top, left top, from(#009eff), to(#59a8fd));
  843. background: linear-gradient(-90deg, #009eff, #59a8fd);
  844. }
  845. /*# sourceMappingURL=main.css.map */