main.scss 10 KB

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