app.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. /* #ifdef weapp */
  2. page {
  3. background-color: #000;
  4. }
  5. @media (prefers-color-scheme:dark) {
  6. page {
  7. background-color: #000;
  8. }
  9. }
  10. .container {
  11. display: flex;
  12. flex-direction: column;
  13. flex: 1;
  14. background-color: #000;
  15. color: #fff;
  16. height: '100%';
  17. // height: 100vh;
  18. width: 100vw;
  19. }
  20. /* #endif */
  21. .pure_black {
  22. color: #000000;
  23. }
  24. .pure_white {
  25. color: #ffffff;
  26. }
  27. .gray0 {
  28. color: #1c1c1c;
  29. }
  30. .gray1 {
  31. background-color: #2D2D2F;
  32. }
  33. .pure_black_bg {
  34. background-color: #000000;
  35. }
  36. .pure_white_bg {
  37. background-color: #ffffff;
  38. }
  39. .gray0_bg {
  40. background-color: #1c1c1c;
  41. }
  42. .sleep_color {}
  43. .fast_color {}
  44. .fast_bg_color {}
  45. .px1SperateWidth {
  46. width: 2px;
  47. background-color: #fff;
  48. opacity: 0.1;
  49. margin-left: 100px;
  50. -webkit-transform: scaleX(0.5);
  51. transform: scaleX(0.5);
  52. }
  53. .px1SeperateHeight {
  54. display: flex;
  55. height: 2px;
  56. background-color: #fff;
  57. opacity: 0.1;
  58. -webkit-transform: scaleY(0.5);
  59. transform: scaleY(0.5);
  60. position: absolute;
  61. left: 0;
  62. right: 0;
  63. bottom: 0;
  64. }
  65. //modal
  66. .modal_title {
  67. font-size: 36px;
  68. line-height: 120px;
  69. height: 120px;
  70. font-weight: 500;
  71. width: 750px;
  72. text-align: center;
  73. }
  74. .modal_operate {
  75. display: flex;
  76. flex-direction: row;
  77. width: 750px;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. margin-top: 36px;
  82. }
  83. .modal_btn {
  84. width: 260px;
  85. height: 84px;
  86. border-radius: 42px;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. }
  91. .btn_space {
  92. width: 90px;
  93. }
  94. ::-webkit-scrollbar {
  95. display: none;
  96. width: 0;
  97. height: 0;
  98. color: transparent;
  99. }
  100. .box_header{
  101. display: flex;
  102. flex-direction: row;
  103. height: 48px;
  104. overflow: visible;
  105. // justify-content: space-between;
  106. position: relative;
  107. align-items: center;
  108. margin-bottom: 12px;
  109. }
  110. .box_title{
  111. display: flex;
  112. // background-color: red;
  113. height: 48px;
  114. font-weight: bold;
  115. font-size: 48px;
  116. line-height: 48px;
  117. flex:1;
  118. color: #fff;
  119. }
  120. .box_subtitle{
  121. font-size: 32px;
  122. line-height: 32px;
  123. // font-weight: 400px;
  124. margin-bottom: 20px;
  125. opacity: 0.4;
  126. color: #fff;
  127. // background-color: pink;
  128. }
  129. .flex-expand{
  130. position: absolute;
  131. left: 0;
  132. top: 0;
  133. height: 1px;
  134. background-color: transparent;
  135. width: calc(100vw + 12px);
  136. }
  137. .modal_content{
  138. padding-bottom: 120px;
  139. display: flex;
  140. flex-direction: column;
  141. flex-shrink: 0;
  142. }
  143. .stepper_text {
  144. font-size: 48px;
  145. font-weight: 500;
  146. width: 350px;
  147. text-align: center;
  148. }
  149. // @media only screen and (-webkit-min-device-pixel-ratio: 2.0) {
  150. // .px1Width::after {
  151. // -webkit-transform: scaleX(0.5);
  152. // transform: scaleX(0.5);
  153. // }
  154. // .px1Height::after {
  155. // -webkit-transform: scaleY(0.5);
  156. // transform: scaleY(0.5);
  157. // }
  158. // }
  159. // /* 3倍屏 */
  160. // @media only screen and (-webkit-min-device-pixel-ratio: 3.0) {
  161. // .px1Width::after {
  162. // -webkit-transform: scaleX(0.33);
  163. // transform: scaleX(0.33);
  164. // }
  165. // .px1Height::after {
  166. // -webkit-transform: scaleY(0.33);
  167. // transform: scaleY(0.33);
  168. // }
  169. // }