index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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: 332px;
  17. height: 60px;
  18. margin: 48px 32px 0;
  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. position: relative;
  112. width: 100%;
  113. height: 100px;
  114. color: #ffffff;
  115. font-size: 38px;
  116. font-weight: 500;
  117. box-shadow: none;
  118. background-image: linear-gradient(to right, #0095ff, #0057ff);
  119. overflow: hidden;
  120. }
  121. .index-back-btn::after {
  122. content: "";
  123. background-color: rgba(255, 255, 255, 0.5);
  124. filter: blur(10px);
  125. width: 60px;
  126. height: 1000px;
  127. transform: rotate(-45deg);
  128. animation: flash 2000ms infinite;
  129. }
  130. @keyframes flash {
  131. from {
  132. transform: rotate(-45deg) translateX(-120px);
  133. }
  134. to {
  135. transform: rotate(-45deg) translateX(600px);
  136. }
  137. }
  138. .index-platform-image {
  139. aspect-ratio: auto;
  140. margin: 0 auto;
  141. width: 100%;
  142. height: 370px;
  143. }
  144. .index-bottom-tip {
  145. width: 100%;
  146. box-sizing: border-box;
  147. padding: 0 32px 96px;
  148. color: #c5c5c7;
  149. font-size: 24px;
  150. text-align: center;
  151. margin-top: 40px;
  152. }
  153. .index-process-img {
  154. width: 104px;
  155. height: 104px;
  156. }
  157. .background-content-i {
  158. width: 40px;
  159. height: 40px;
  160. }
  161. .background-content-wrap {
  162. padding: 24px;
  163. }
  164. }