index.scss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. .container{
  2. width: 100%;
  3. background-color: #F7F7F7;
  4. .panel{
  5. background: #FFFFFF;
  6. border-radius: 10px;
  7. margin: 0 auto;
  8. width: 315px;
  9. padding: 32px 24px;
  10. box-sizing: border-box;
  11. .p-title{
  12. font-size: 18px;
  13. font-family: PingFangSC-Regular, PingFang SC;
  14. font-weight: 400;
  15. color: #323038;
  16. line-height: 25px;
  17. text-align: center;
  18. }
  19. .p-text{
  20. font-size: 14px;
  21. font-family: PingFangSC-Regular, PingFang SC;
  22. font-weight: 400;
  23. color: #999999;
  24. margin-top: 14px;
  25. }
  26. }
  27. .modal{
  28. position: fixed;
  29. z-index: 20;
  30. width: 100vw;
  31. height: 100vh;
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. background-color: rgba($color: #000000, $alpha: 0.7);
  36. backdrop-filter:blur(5px);
  37. .m-panel{
  38. width: 315px;
  39. background-color: #ffffff;
  40. border-radius: 20px;
  41. padding: 30px;
  42. box-sizing: border-box;
  43. .m-title{
  44. font-size: 20px;
  45. line-height: 28px;
  46. color: #1C1C1E;
  47. font-weight: bold;
  48. }
  49. .phone-input{
  50. border: none;
  51. outline: none;
  52. width: 255px;
  53. height: 44px;
  54. border-bottom: 0.5px solid #f1f1f1;
  55. font-size: 22px;
  56. margin-top: 48px;
  57. &::placeholder{
  58. font-size: 18px;
  59. line-height: 25px;
  60. color: #c5c5c5;
  61. }
  62. }
  63. .warn{
  64. color:#FF0000;
  65. font-size: 11px;
  66. line-height: 16px;
  67. height: 16px;
  68. margin-top: 8px;
  69. transition: all 0.3s;
  70. text-indent: 10px;
  71. }
  72. .m-inputbox{
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. margin-top: 20px;
  77. .code-input{
  78. border: none;
  79. outline: none;
  80. width: 160px;
  81. height: 44px;
  82. border-bottom: 0.5px solid #f1f1f1;
  83. font-size: 22px;
  84. &::placeholder{
  85. font-size: 18px;
  86. line-height: 25px;
  87. color: #c5c5c5;
  88. }
  89. }
  90. .m-code{
  91. font-size: 14px;
  92. font-family: PingFangSC-Regular, PingFang SC;
  93. font-weight: 400;
  94. }
  95. }
  96. .main-btn{
  97. width: 255px;
  98. height: 44px;
  99. background-color: #8F61FF;
  100. color: #ffffff;
  101. font-size: 16px;
  102. line-height: 44px;
  103. font-weight: bold;
  104. border-radius: 30px;
  105. text-align: center;
  106. box-sizing: border-box;
  107. }
  108. .v-btn{
  109. background-color: #8F61FF;
  110. color: #ffffff;
  111. margin-top: 30px;
  112. }
  113. }
  114. }
  115. .top-box{
  116. width: 100%;
  117. position: relative;
  118. .top-bg{
  119. width: 100%;
  120. }
  121. .top-info{
  122. margin: 0px 12px 0px 12px;
  123. border-radius: 10px;
  124. position: relative;
  125. z-index: 2;
  126. margin-top:-40px;
  127. color: #ffffff;
  128. height: 30px;
  129. transform: translateY(-160px);
  130. font-size: 16px;
  131. display: flex;
  132. justify-content: space-between;
  133. align-items: center;
  134. }
  135. .top-card{
  136. background-color: #ffffff;
  137. margin: 12px 10px 0px 12px;
  138. border-radius: 10px;
  139. position: relative;
  140. z-index: 1;
  141. margin-top:-150px;
  142. .line{
  143. display: flex;
  144. justify-content: flex-end;
  145. align-items: center;
  146. .tag{
  147. width: 60px;
  148. height: 32px;
  149. background: #F4F2FF;
  150. border-radius: 0px 10px 0px 10px;
  151. font-size: 14px;
  152. font-family: PingFangSC-Regular, PingFang SC;
  153. font-weight: 400;
  154. color: #9580FF;
  155. line-height: 32px;
  156. text-align: center;
  157. }
  158. }
  159. .line1{
  160. display: flex;
  161. justify-content: flex-start;
  162. align-items: center;
  163. padding: 0px 20px;
  164. .yd{
  165. width: 20px;
  166. height: 20px;
  167. }
  168. .yd-text{
  169. font-size: 14px;
  170. color: #999999;
  171. margin-left: 5px;
  172. }
  173. }
  174. .line2{
  175. padding: 8px 20px;
  176. display: flex;
  177. justify-content: space-between;
  178. align-items: center;
  179. .label{
  180. font-size: 48px;
  181. font-family: DIN-Medium, DIN;
  182. font-weight: bold;
  183. color: #333333;
  184. line-height: 54px;
  185. }
  186. .top-btn{
  187. width: 100px;
  188. height: 44px;
  189. background: #9580FF;
  190. border-radius: 24px;
  191. font-size: 16px;
  192. font-family: PingFangSC-Medium, PingFang SC;
  193. font-weight: 500;
  194. color: #FFFFFF;
  195. line-height: 44px;
  196. text-align: center;
  197. }
  198. }
  199. .text{
  200. font-size: 12px;
  201. font-family: PingFangSC-Regular, PingFang SC;
  202. font-weight: 400;
  203. color: #B1B1B3;
  204. line-height: 17px;
  205. padding: 16px 20px;
  206. }
  207. }
  208. }
  209. .content-box{
  210. margin-top: 30px;
  211. .title-box{
  212. padding: 0px 20px;
  213. display: flex;
  214. justify-content: space-between;
  215. align-items: center;
  216. .title{
  217. font-size: 16px;
  218. font-family: PingFangSC-Regular, PingFang SC;
  219. font-weight: 400;
  220. color: #323038;
  221. }
  222. .right-box{
  223. display: flex;
  224. justify-content: space-between;
  225. align-items: center;
  226. .right-text{
  227. font-size: 14px;
  228. font-family: PingFangSC-Regular, PingFang SC;
  229. font-weight: 400;
  230. color: #999999;
  231. }
  232. .right{
  233. width: 17px;
  234. height: 15px;
  235. }
  236. }
  237. }
  238. .content-card{
  239. margin: 20px 12px;
  240. background: #FEFFFE;
  241. border-radius: 8px;
  242. padding: 37px 20px;
  243. .tip-box{
  244. display: flex;
  245. justify-content: flex-start;
  246. align-items: center;
  247. .tip{
  248. font-size: 13px;
  249. font-family: PingFangSC-Regular, PingFang SC;
  250. font-weight: 400;
  251. color: #999999;
  252. line-height: 18px;
  253. }
  254. .tip-img{
  255. width: 16px;
  256. height: 16px;
  257. margin-left: 8px;
  258. }
  259. }
  260. .content-label{
  261. font-size: 48px;
  262. font-family: DIN-Medium, DIN;
  263. font-weight: bold;
  264. color: #333333;
  265. line-height: 54px;
  266. margin-top: 9px;
  267. }
  268. .content-tabs{
  269. display: flex;
  270. justify-content: space-between;
  271. align-items: center;
  272. margin-top: 44px;
  273. .ct-item{
  274. flex: 1;
  275. .cti-text{
  276. font-size: 13px;
  277. font-family: PingFangSC-Regular, PingFang SC;
  278. font-weight: 400;
  279. color: #999999;
  280. line-height: 18px;
  281. }
  282. .cti-num{
  283. font-size: 20px;
  284. font-family: DIN-Medium, DIN;
  285. font-weight: 500;
  286. color: #333333;
  287. line-height: 22px;
  288. margin-top: 8px;
  289. font-weight: bolder;
  290. }
  291. }
  292. }
  293. .btn-box{
  294. width: 100%;
  295. box-sizing: border-box;
  296. margin-top: 32px;
  297. display: flex;
  298. justify-content: space-between;
  299. align-items: center;
  300. .bb-item1{
  301. width: 150px;
  302. height: 44px;
  303. border-radius: 25px;
  304. border: 1px solid #E4DEFF;
  305. font-size: 16px;
  306. font-family: PingFangSC-Medium, PingFang SC;
  307. font-weight: bolder;
  308. color: #A796FF;
  309. line-height: 44px;
  310. text-align: center;
  311. }
  312. .bb-item2{
  313. width: 150px;
  314. height: 44px;
  315. background: #FFC107;
  316. border-radius: 25px;
  317. font-size: 16px;
  318. font-family: PingFangSC-Medium, PingFang SC;
  319. font-weight: bolder;
  320. color: #FFFFFF;
  321. line-height: 44px;
  322. text-align: center;
  323. }
  324. }
  325. }
  326. }
  327. .null-box{
  328. width: 100vw;
  329. height: 34px;
  330. background-color: #F7F7F7;
  331. }
  332. }