app.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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: 100vh;
  17. width: 100vw;
  18. }
  19. /* #endif */
  20. .pure_black {
  21. color: #000000;
  22. }
  23. .pure_white {
  24. color: #ffffff;
  25. }
  26. .gray0 {
  27. color: #1c1c1c;
  28. }
  29. .gray1 {
  30. background-color: #2D2D2F;
  31. }
  32. .pure_black_bg {
  33. background-color: #000000;
  34. }
  35. .pure_white_bg {
  36. background-color: #ffffff;
  37. }
  38. .gray0_bg {
  39. background-color: #1c1c1c;
  40. }
  41. .sleep_color {}
  42. .fast_color {}
  43. .fast_bg_color {}
  44. //modal
  45. .modal_title {
  46. font-size: 36px;
  47. line-height: 120px;
  48. height: 120px;
  49. font-weight: 500;
  50. width: 750px;
  51. text-align: center;
  52. }
  53. .modal_operate {
  54. display: flex;
  55. flex-direction: row;
  56. width: 750px;
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. margin-top: 36px;
  61. }
  62. .modal_btn {
  63. width: 260px;
  64. height: 84px;
  65. border-radius: 42px;
  66. display: flex;
  67. align-items: center;
  68. justify-content: center;
  69. }
  70. .btn_space {
  71. width: 90px;
  72. }
  73. ::-webkit-scrollbar {
  74. display: none;
  75. width: 0;
  76. height: 0;
  77. color: transparent;
  78. }
  79. .box_header{
  80. display: flex;
  81. flex-direction: row;
  82. height: 48px;
  83. overflow: visible;
  84. // justify-content: space-between;
  85. position: relative;
  86. align-items: center;
  87. margin-bottom: 12px;
  88. }
  89. .box_title{
  90. display: flex;
  91. height: 48px;
  92. font-weight: bold;
  93. font-size: 48px;
  94. line-height: 48px;
  95. flex:1;
  96. color: #fff;
  97. }
  98. .box_subtitle{
  99. font-size: 32px;
  100. line-height: 32px;
  101. font-weight: 400px;
  102. margin-bottom: 20px;
  103. opacity: 0.4;
  104. color: #fff;
  105. // background-color: pink;
  106. }
  107. // @media only screen and (-webkit-min-device-pixel-ratio: 2.0) {
  108. // .px1Width::after {
  109. // -webkit-transform: scaleX(0.5);
  110. // transform: scaleX(0.5);
  111. // }
  112. // .px1Height::after {
  113. // -webkit-transform: scaleY(0.5);
  114. // transform: scaleY(0.5);
  115. // }
  116. // }
  117. // /* 3倍屏 */
  118. // @media only screen and (-webkit-min-device-pixel-ratio: 3.0) {
  119. // .px1Width::after {
  120. // -webkit-transform: scaleX(0.33);
  121. // transform: scaleX(0.33);
  122. // }
  123. // .px1Height::after {
  124. // -webkit-transform: scaleY(0.33);
  125. // transform: scaleY(0.33);
  126. // }
  127. // }