main.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. @import "../../../../public/scss/reset.scss";
  2. @import "../../../../public/scss/unicom.scss";
  3. html, body {
  4. margin: 0;
  5. padding: 0;
  6. height: 100%;
  7. }
  8. body {
  9. color: white;
  10. min-height: 12.06rem;
  11. max-height: 15rem;
  12. font-family: PingFangSC-Regular, sans-serif,"SourceHanSansCN-Regular", "Microsoft YaHei", "微软雅黑", STXihei, SimHei, "华文细黑";
  13. background: url(../images/bg.png) repeat;
  14. background-size: 100% 100%;
  15. }
  16. .main {
  17. width: 100%;
  18. height: 100%;
  19. box-sizing: border-box;
  20. background-size: 100%;
  21. position: relative;
  22. color: #C75734;
  23. background: url(../images/bg-cloud-15.png) no-repeat top right;
  24. background-size: 5.53rem 3.15rem;
  25. .logo {
  26. position: absolute;
  27. top: 0.33rem;
  28. left: 0.28rem;
  29. width: 1.33rem;
  30. height: 0.73rem;
  31. background: url(../images/unicom.png) no-repeat;
  32. background-size: 100% 100%;
  33. }
  34. }
  35. .main-order {
  36. .banner {
  37. height: 8.98rem;
  38. display: flex;
  39. align-items: flex-end;
  40. position: relative;
  41. .logo {
  42. width: 1.46rem;
  43. height: 0.97rem;
  44. position: absolute;
  45. top: 0.28rem;
  46. left: 0.3rem;
  47. background: url(../images/unicom.png) no-repeat bottom;
  48. background-size: 100% 100%;
  49. }
  50. .banner-text {
  51. width: 7.5rem;
  52. height: 7.92rem;
  53. background: url('../images/banner.png') no-repeat;
  54. background-size: 100%, 100%;
  55. margin: 0 auto;
  56. }
  57. }
  58. .apps {
  59. margin: 0.1rem 1rem 0;
  60. img {
  61. width: 100%;
  62. display: block;
  63. }
  64. }
  65. .order {
  66. margin: 0.47rem auto 0;
  67. display: flex;
  68. align-items: center;
  69. justify-content: center;
  70. .btn {
  71. width: 6.22rem;
  72. height: 0.93rem;
  73. color: #FFF;
  74. font-size: 0.36rem;
  75. font-weight: 500;
  76. border: none;
  77. outline: none;
  78. background: url('../images/btn-order.png') no-repeat;
  79. background-size: 100% 100%;
  80. }
  81. }
  82. .btn-tip {
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. margin: 0.3rem auto;
  87. span {
  88. color: #6C332B;
  89. font-size: 0.3rem;
  90. border-bottom: 0.02rem solid #6C332B;
  91. padding-bottom: 0.1em;
  92. }
  93. }
  94. }
  95. .overlay {
  96. position: fixed;
  97. top: 0;
  98. right: 0;
  99. bottom: 0;
  100. left: 0;
  101. z-index: 9990;
  102. background-color: rgba(0, 0, 0, 0.3);
  103. min-height: 6.5rem;
  104. }
  105. .dialog-agr {
  106. width: 6.91rem;
  107. height: 10rem;
  108. position: absolute;
  109. top: 50%;
  110. left: 50%;
  111. -webkit-transform: translateX(-50%) translateY(-50%);
  112. -webkit-transform: translateX(-50%) translateY(-50%);
  113. -moz-transform: translateX(-50%) translateY(-50%);
  114. -ms-transform: translateX(-50%) translateY(-50%);
  115. transform: translateX(-50%) translateY(-50%);
  116. color: #666666;
  117. font-size: 0.24rem;
  118. background: url(../images/bg-agr.png) no-repeat;
  119. background-size: 100% 100%;
  120. z-index: 10000;
  121. text-align: justify;
  122. border-radius: 0.2rem;
  123. overflow: hidden;
  124. padding-top: 0.45rem;
  125. h2 {
  126. height: 0.6rem;
  127. color: #333333;
  128. font-size: 0.3rem;
  129. text-align: center;
  130. margin: 0.4rem auto 0;
  131. width: auto;
  132. }
  133. .close {
  134. width: 0.44rem;
  135. height: 0.44rem;
  136. top: .4rem;
  137. right: 0.5rem;
  138. position: absolute;
  139. z-index: 1;
  140. img {
  141. width: 100%;
  142. height: 100%;
  143. }
  144. }
  145. .container {
  146. height: 9.4rem;
  147. overflow: scroll;
  148. .title {
  149. color: #333333;
  150. font-size: 0.3rem;
  151. font-weight: bold;
  152. display: flex;
  153. align-items: center;
  154. justify-content: center;
  155. // position: sticky;
  156. top: 0;
  157. width: 6rem;
  158. height: 0.6rem;
  159. margin: 0 auto;
  160. }
  161. .content {
  162. font-size: 0.24rem;
  163. line-height: 0.45rem;
  164. margin: 0 auto;
  165. ul {
  166. list-style-type: none;
  167. padding: 0 0.4rem;
  168. li {
  169. margin-bottom: 0.1rem;
  170. a {
  171. color: #051BC2;
  172. border-bottom: 0.02rem solid #051BC2;
  173. }
  174. }
  175. }
  176. }
  177. }
  178. }
  179. .main-draw {
  180. padding-bottom: 2rem;
  181. .banner {
  182. width: 6.13rem;
  183. margin: auto;
  184. padding-left: 0.3rem;
  185. img {
  186. width: 100%;
  187. }
  188. }
  189. .login {
  190. width: 100%;
  191. height: 8.55rem;
  192. margin-top: -1rem;
  193. background: url('../images/bg-draw.png') no-repeat;
  194. background-size: 100% 100%;
  195. }
  196. }
  197. input::-webkit-input-placeholder {
  198. color: #b1b1b1;
  199. font-size: 0.28rem;
  200. }
  201. input::-moz-placeholder { /* Mozilla Firefox 19+ */
  202. color: #b1b1b1;
  203. font-size: 0.28rem;
  204. }
  205. input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  206. color: #b1b1b1;
  207. font-size: 0.28rem;
  208. }
  209. input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  210. color: #b1b1b1;
  211. font-size: 0.28rem;
  212. }
  213. .sms-form {
  214. margin: 0.15rem 0.4rem 0.3rem;
  215. padding: 2.7rem 0.25rem 0.3rem;
  216. }
  217. .form-group {
  218. background: rgba(196, 219, 115, 0.3);
  219. border-radius: 0.2rem;
  220. padding: 0.3rem 0.2rem 0.35rem;
  221. .input-row {
  222. display: flex;
  223. align-content: space-between;
  224. justify-content: center;
  225. margin-bottom: 0.25rem;
  226. .smscode {
  227. width: 100%;
  228. margin-right: 0.15rem;
  229. }
  230. .sendcode {
  231. font-size: 0.3rem;
  232. height: .86rem;
  233. line-height: 0.86rem;
  234. color: rgb(10,183,120);
  235. padding: 0 0.2rem;
  236. word-break: keep-all;
  237. white-space: nowrap;
  238. border-radius: 0.1rem;
  239. border: 0.01rem solid rgb(10,183,120);
  240. }
  241. .sendcode-wait {
  242. }
  243. &:last-child {
  244. margin-bottom: 0rem;
  245. }
  246. }
  247. input {
  248. color: rgb(142,146,140);
  249. font-size: 0.36rem;
  250. width: 100%;
  251. height: 0.88rem;
  252. outline: none;
  253. -webkit-appearance: none;
  254. min-width: 2.4rem;
  255. margin-bottom: 0.01rem;
  256. border: 0.01rem solid rgb(204,204,204);
  257. border-radius: 0.1rem;
  258. padding-left: 0.3rem;
  259. background: rgb(254,238,230);
  260. }
  261. .actions {
  262. margin-top: 0.4rem;
  263. .btn {
  264. color: white;
  265. font-size: 0.36rem;
  266. width: 5.7rem;
  267. height: 1rem;
  268. background: url(../images/btn-order.png) no-repeat;
  269. background-size: 100% 100%;
  270. margin: 0 auto;
  271. line-height: 1rem;
  272. text-align: center;
  273. }
  274. }
  275. }
  276. .section-agr {
  277. margin-top: 0.4rem;
  278. .title {
  279. height: 0.95rem;
  280. text-align: center;
  281. img {
  282. width: 2.87rem;
  283. height: 0.95rem;
  284. }
  285. }
  286. .content {
  287. border-radius: 0.2rem;
  288. margin: 0.25rem 0.4rem 0;
  289. .red {
  290. color: #ff4a38;
  291. }
  292. .title {
  293. width: 1.7rem;
  294. height: 0.68rem;
  295. background: url(../images/bg-title.png) no-repeat;
  296. background-size: 100% 100%;
  297. display: flex;
  298. align-items: center;
  299. justify-content: center;
  300. font-size: 0.3rem;
  301. color: #63AB47;
  302. margin-bottom: 0.1rem;
  303. }
  304. ul {
  305. color: rgb(61,70,68);
  306. font-size: 0.28rem;
  307. text-align: justify;
  308. margin-bottom: 0.43rem;
  309. li {
  310. margin-bottom: 0.15rem;
  311. line-height: 0.38rem;
  312. .sub-ul {
  313. margin: 0.1rem 0;
  314. li {
  315. font-size: 0.24rem;
  316. }
  317. }
  318. &:last-child {
  319. margin-bottom: 0;
  320. }
  321. }
  322. }
  323. }
  324. .footer {
  325. color: #ff4a38;
  326. text-align: center;
  327. font-size: 0.24rem;
  328. span {
  329. transform:rotate(7deg)
  330. }
  331. }
  332. }
  333. .main-cancel {
  334. padding-bottom: 3rem;
  335. .banner {
  336. width: 6.13rem;
  337. margin: auto;
  338. padding-left: 0.3rem;
  339. img {
  340. width: 100%;
  341. }
  342. }
  343. .login {
  344. width: 100%;
  345. height: 8.55rem;
  346. margin-top: -1rem;
  347. background: url('../images/bg-cancel.png') no-repeat;
  348. background-size: 100% 100%;
  349. .tips {
  350. display: flex;
  351. font-size: 0.28rem;
  352. color: rgba(188, 130, 19, 0.6);
  353. padding: 2.5rem 0.6rem 0rem;
  354. text-align: justify;
  355. .ring {
  356. width: 0.6rem;
  357. display: flex;
  358. margin: 0 0.15rem 0 0;
  359. img {
  360. height: 0.5rem;
  361. }
  362. }
  363. }
  364. }
  365. .sms-form {
  366. padding: 0 0.25rem 0.3rem;
  367. }
  368. }
  369. .dialog-confirm {
  370. position: fixed;
  371. top: 4rem;
  372. left: 0.62rem;
  373. right: 0.62rem;
  374. height: 3.6rem;
  375. border-radius: 0.3rem;
  376. z-index: 9992;
  377. background: #ffffff;
  378. .close {
  379. position: absolute;
  380. top: 0;
  381. right: 0.45rem;
  382. width: 0.59rem;
  383. height: 0.69rem;
  384. img {
  385. width: 100%;
  386. }
  387. }
  388. h1 {
  389. color: #333333;
  390. font-size: 0.34rem;
  391. font-weight: bold;
  392. text-align: center;
  393. margin: 0.63rem auto 0;
  394. }
  395. .content {
  396. color: rgb(51,51,51);
  397. font-size: 0.32rem;
  398. height: 1.8rem;
  399. text-align: center;
  400. line-height: 0.5rem;
  401. margin: 0.6rem 0.42rem 0;
  402. }
  403. .actions {
  404. font-size: 0.3rem;
  405. display: flex;
  406. align-items: center;
  407. justify-content: space-between;
  408. margin: 0 0.6rem;
  409. .btn {
  410. color: #0bb577;
  411. font-size: 0.3rem;
  412. width: 2.2rem;
  413. height: 0.8rem;
  414. display: flex;
  415. align-items: center;
  416. justify-content: center;
  417. border-radius: 0.4rem;
  418. background: #e2f6ef;
  419. }
  420. .okay {
  421. color: white;
  422. float: left;
  423. background: #0bb577;
  424. }
  425. }
  426. }
  427. .draw {
  428. display: flex;
  429. font-size: 0.3rem;
  430. align-items: center;
  431. justify-content: center;
  432. color: rgb(68,83,60);
  433. .btn-draw {
  434. width: 2.3rem;
  435. height: 0.86rem;
  436. margin-left: 0.15rem;
  437. background: url(../images/btn-draw.png) no-repeat;
  438. background-size: 100% 100%;
  439. }
  440. }
  441. // 免责声明
  442. .disclaimer {
  443. color: #333333;
  444. font-size: 0.26rem;
  445. text-align: center;
  446. margin: 1rem auto 0;
  447. padding-bottom: 0.2rem;
  448. }