index.scss 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. .index {
  2. .index-back {
  3. width: 100%;
  4. height: 100%;
  5. position: absolute;
  6. top: 0;
  7. left: 0;
  8. z-index: 80;
  9. }
  10. .index-container {
  11. background-image: url("../../assets/new-edition/background-image.png");
  12. background-size: contain;
  13. background-repeat: no-repeat;
  14. }
  15. .index-logo {
  16. width: 200rpx;
  17. height: 48rpx;
  18. margin: 30rpx 0 0 32rpx;
  19. }
  20. .index-panel {
  21. background-color: #ffffff;
  22. border-top-left-radius: 16px;
  23. border-top-right-radius: 16px;
  24. box-sizing: border-box;
  25. }
  26. .index-back-content {
  27. z-index: 100;
  28. color: #333333;
  29. position: absolute;
  30. top: 0;
  31. left: 0;
  32. height: 100%;
  33. width: 100%;
  34. padding: 40px;
  35. box-sizing: border-box;
  36. }
  37. .index-back-se {
  38. font-size: 28px;
  39. font-weight: 400;
  40. color: #14172f;
  41. }
  42. .index-step-container {
  43. position: relative;
  44. width: 100%;
  45. height: 80px;
  46. border-bottom-left-radius: 16px;
  47. border-bottom-right-radius: 16px;
  48. border: 2px solid #ffffff;
  49. box-sizing: border-box;
  50. font-size: 24px;
  51. color: #333333;
  52. display: flex;
  53. justify-content: center;
  54. align-items: center;
  55. font-weight: 500;
  56. .background {
  57. position: absolute;
  58. left: 0;
  59. top: 0;
  60. width: 100%;
  61. height: 100%;
  62. background-color: rgba(255, 255, 255, 0.6);
  63. filter: blur(8px);
  64. }
  65. }
  66. .index-iocn-title {
  67. width: 220px;
  68. height: 44px;
  69. }
  70. .index-back-amount {
  71. font-size: 80px;
  72. font-weight: 500;
  73. }
  74. .index-back-tip {
  75. color: #818aa4;
  76. font-size: 24px;
  77. font-weight: 400;
  78. margin: 4px 0 12px;
  79. }
  80. .index-back-info {
  81. display: flex;
  82. color: #818aa4;
  83. font-size: 24px;
  84. margin: 12px 0 16px;
  85. .split-char {
  86. width: 3px;
  87. height: 30px;
  88. background-color: #818aa4;
  89. }
  90. }
  91. .index-back-btn-tip {
  92. padding: 0 48px;
  93. height: 56px;
  94. width: fit-content;
  95. margin: 0 auto;
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. font-size: 24px;
  100. color: #ff6b00;
  101. background-color: #fef6e9;
  102. border: 2px solid #fbedd6;
  103. border-top-left-radius: 16px;
  104. border-top-right-radius: 16px;
  105. }
  106. .index-back-btn-container {
  107. width: 100%;
  108. position: relative;
  109. }
  110. .index-back-btn {
  111. display: flex;
  112. align-items: center;
  113. justify-content: center;
  114. position: relative;
  115. width: 100%;
  116. height: 100px;
  117. color: #ffffff;
  118. font-size: 38px;
  119. font-weight: 500;
  120. box-shadow: none;
  121. background-image: linear-gradient(to right, #0095ff, #0057ff);
  122. overflow: hidden;
  123. }
  124. .index-back-btn::after {
  125. content: "";
  126. background-color: rgba(255, 255, 255, 0.5);
  127. filter: blur(10px);
  128. width: 60px;
  129. height: 1000px;
  130. transform: rotate(-45deg);
  131. animation: flash 2000ms infinite;
  132. }
  133. @keyframes flash {
  134. from {
  135. transform: rotate(-45deg) translateX(-120px);
  136. }
  137. to {
  138. transform: rotate(-45deg) translateX(600px);
  139. }
  140. }
  141. .index-car-loan-entrance {
  142. width: 100%;
  143. height: 284px;
  144. background-color: #fff;
  145. box-sizing: border-box;
  146. border-radius: 16px;
  147. margin: 32px 0 32px;
  148. box-shadow: 0 12px 24px 0 rgba(5, 23, 77, 0.08);
  149. .index-car-loan-entrance-header {
  150. width: 100%;
  151. height: 84px;
  152. box-sizing: border-box;
  153. border-bottom: 0.5px solid #f2f2f2;
  154. display: flex;
  155. justify-content: space-between;
  156. align-items: center;
  157. .index-car-loan-entrance-title {
  158. color: #14172f;
  159. font-size: 32px;
  160. font-weight: 600;
  161. flex-shrink: 0;
  162. height: 36px;
  163. box-sizing: border-box;
  164. display: flex;
  165. align-items: center;
  166. padding-left: 24px;
  167. border-left: 8px solid #1879fe;
  168. }
  169. .icon-car-badge {
  170. aspect-ratio: auto;
  171. width: 146px;
  172. height: 36px;
  173. flex-grow: 0;
  174. }
  175. }
  176. .index-car-loan-entrance-body {
  177. width: 100%;
  178. height: 200px;
  179. box-sizing: border-box;
  180. padding: 28px 32px;
  181. .index-car-loan-entrance-body-p1 {
  182. display: flex;
  183. align-items: center;
  184. margin-bottom: 20px;
  185. .icon-car-product {
  186. width: 44px;
  187. height: 44px;
  188. }
  189. .index-car-loan-entance-body-p1-product-name {
  190. font-size: 26px;
  191. font-weight: 600;
  192. margin-left: 12px;
  193. }
  194. .product-tag-wrapper {
  195. display: flex;
  196. align-items: center;
  197. gap: 8px;
  198. margin-left: 24px;
  199. .product-tag {
  200. font-size: 20px;
  201. font-weight: 500;
  202. color: #1879fe;
  203. background-color: #edf4ff;
  204. padding: 2px 6px;
  205. border-radius: 4px;
  206. }
  207. }
  208. }
  209. .index-car-loan-entrance-body-p2 {
  210. display: flex;
  211. align-items: center;
  212. justify-content: space-between;
  213. .loan-information-item {
  214. display: flex;
  215. flex-direction: column;
  216. align-items: flex-start;
  217. font-size: 0;
  218. .money-text {
  219. font-size: 52px;
  220. font-weight: bold;
  221. line-height: 48px;
  222. color: #ff4000;
  223. .unit {
  224. font-size: 36px;
  225. margin-left: 2px;
  226. }
  227. }
  228. .rate-text {
  229. font-size: 36px;
  230. line-height: 48px;
  231. color: #14172f;
  232. vertical-align: text-bottom;
  233. font-weight: bold;
  234. }
  235. .sub {
  236. font-size: 22px;
  237. color: #818aa4;
  238. }
  239. }
  240. .index-car-loan-apply-button {
  241. width: 156px;
  242. height: 68px;
  243. }
  244. }
  245. }
  246. }
  247. .index-platform-image {
  248. aspect-ratio: auto;
  249. margin: 0 auto;
  250. width: 100%;
  251. height: 370px;
  252. }
  253. .index-bottom-tip {
  254. width: 100%;
  255. box-sizing: border-box;
  256. padding: 0 32px 96px;
  257. color: #c5c5c7;
  258. font-size: 24px;
  259. text-align: center;
  260. margin-top: 40px;
  261. }
  262. .index-process-img {
  263. width: 104px;
  264. height: 104px;
  265. }
  266. .background-content-i {
  267. width: 40px;
  268. height: 40px;
  269. }
  270. .background-content-wrap {
  271. padding: 24px;
  272. }
  273. .index-official-account {
  274. width: 100vw;
  275. position: fixed;
  276. left: 0;
  277. top: calc(100vh - 340px);
  278. .index-official-box {
  279. padding: 0 32rpx;
  280. }
  281. }
  282. }
  283. .customer-service-conenter {
  284. display: flex;
  285. justify-content: center;
  286. margin-top: 40rpx;
  287. .customer-service-box {
  288. padding: 16rpx 28rpx 16rpx 20rpx;
  289. background-color: #fff;
  290. border-radius: 60rpx;
  291. border: 2rpx solid #e6e8ed;
  292. display: flex;
  293. align-items: center;
  294. .img {
  295. width: 40rpx;
  296. height: 40rpx;
  297. }
  298. .span {
  299. margin-left: 8rpx;
  300. font-size: 26rpx;
  301. }
  302. }
  303. }