styles.module.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .popup_container{
  2. display: flex;
  3. align-items: center;
  4. justify-content: center;
  5. position: absolute;
  6. width: 100%;
  7. height: auto;
  8. top: 6.23rem;
  9. bottom: unset;
  10. padding: 0 1.47rem;
  11. }
  12. .pop_con{
  13. background: var(--darkColor1);
  14. border-radius: 0.36rem;
  15. overflow: hidden;
  16. width: 100%;
  17. height: fit-content;
  18. pointer-events: auto;
  19. }
  20. .container{
  21. display: flex;
  22. flex-direction: column;
  23. background: #fff;
  24. position: relative;
  25. width: 100%;
  26. height: auto;
  27. & .bg{
  28. position: absolute;
  29. left: 0;
  30. top: 0;
  31. width: 100%;
  32. aspect-ratio: 600/500;
  33. img{
  34. width: 100%;
  35. height: auto;
  36. }
  37. }
  38. & .content{
  39. padding: 0 1.1rem 1.83rem;
  40. position: relative;
  41. & .head{
  42. display: flex;
  43. flex-direction: column;
  44. height: 8.43rem;
  45. justify-content: center;
  46. & .title{
  47. color: #000;
  48. font-size: 1.61rem;
  49. font-weight: 650;
  50. line-height: 1.2
  51. }
  52. & .subtitle{
  53. color: #aaa;
  54. font-size: 0.88rem;
  55. line-height: 1.4;
  56. }
  57. }
  58. & .logo_box{
  59. display: flex;
  60. & .logo{
  61. width: 5.13rem;
  62. height: 5.13rem;
  63. border-radius: 1rem;
  64. margin-right: 0.73rem;
  65. overflow: hidden;
  66. }
  67. & .right_title{
  68. color: #464646;
  69. font-size: 1.32rem;
  70. line-height: 1.4;
  71. text-transform: capitalize;
  72. }
  73. & .right_percentage{
  74. color: #8a8a8a;
  75. font-size: 0.88rem;
  76. line-height: 0.88rem;
  77. margin: 0.36rem 0;
  78. transform: scale(.8) translate(-1.3rem);
  79. }
  80. & .right_bottom{
  81. align-items: center;
  82. display: flex;
  83. & .tips{
  84. color: #8a8a8a;
  85. font-size: 0.88rem;
  86. transform: scale(.8) translate(-1.02rem);
  87. line-height: 1rem;
  88. }
  89. & .placeholder{
  90. height: 0.88rem;
  91. width: 0.66rem;
  92. }
  93. }
  94. }
  95. & .item{
  96. align-items: center;
  97. display: flex;
  98. justify-content: space-between;
  99. margin-top: 1.83rem;
  100. width: 100%;
  101. & .left{
  102. flex: 1;
  103. & .title{
  104. color: #000;
  105. font-size: 1.1rem;
  106. font-weight: 650;
  107. line-height: 1.1rem;
  108. }
  109. & .subtext{
  110. color: #aaa;
  111. font-size: 0.88rem;
  112. font-weight: 400;
  113. line-height: 0.88rem;
  114. }
  115. }
  116. & .right{
  117. animation: rotate 1s linear infinite;
  118. height: 1.1rem;
  119. width: 1.1rem;
  120. img{
  121. width: 100%;
  122. }
  123. }
  124. &_finish{
  125. & .right{
  126. animation:none;
  127. }
  128. }
  129. }
  130. & .button{
  131. margin: 2.56rem 0 0;
  132. width: 100%;
  133. button{
  134. background: #01875f;
  135. border: none;
  136. border-radius: 0.36rem;
  137. color: #fff;
  138. font-size: 1.1rem;
  139. height: 2.93rem;
  140. outline: none;
  141. width: 100%;
  142. }
  143. }
  144. }
  145. }
  146. @keyframes rotate {
  147. 0% {
  148. transform: rotate(0)
  149. }
  150. to {
  151. transform: rotate(1turn)
  152. }
  153. }