index.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. html {
  2. color: #fff;
  3. font-size: 100px;
  4. font-family: "PingFang SC", "Microsoft Yahei", "Segoe UI", "Helvetica Neue", Helvetica, STHeiTi, Arial, sans-serif;
  5. }
  6. p {
  7. margin: 0;
  8. }
  9. img {
  10. display: block;
  11. }
  12. a {
  13. color: inherit;
  14. }
  15. .wrap {
  16. width: 100%;
  17. height: 100%;
  18. margin: 0 auto;
  19. }
  20. .wrap .wrap__layout {
  21. height: 100%;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .wrap .wrap__layout .wrap__layout--box {
  27. width: 100%;
  28. }
  29. .nav {
  30. position: fixed;
  31. top: 0;
  32. left: 0;
  33. width: 100%;
  34. height: 1rem;
  35. background: rgba(0, 0, 0, .06);
  36. z-index: 10;
  37. }
  38. .nav__wrap {
  39. display: flex;
  40. justify-content: space-between;
  41. align-items: center;
  42. padding: 0 .2rem;
  43. height: 100%;
  44. }
  45. .nav img {
  46. width: 1.4rem;
  47. height: .46rem;
  48. }
  49. .nav .menu {
  50. flex: 1 1 50%;
  51. display: flex;
  52. justify-content: flex-end;
  53. align-items: center;
  54. font-size: .2rem;
  55. color: #fff;
  56. }
  57. .nav .menu .index {
  58. margin-right: .6rem;
  59. }
  60. .nav .menu.end .about {
  61. color: #fff;
  62. }
  63. .nav .menu .about, .nav .menu.end .index {
  64. color: rgba(255, 255, 255, .5);
  65. }
  66. .page-1 {
  67. background-color: #000;
  68. text-align: center;
  69. }
  70. .page-1 .title {
  71. font-size: .66rem;
  72. }
  73. .page-1 .text {
  74. font-size: .36rem;
  75. margin-top: .3rem;
  76. }
  77. .page-1 .download {
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. margin-top: 1.1rem;
  82. }
  83. .page-1 .download .qr {
  84. width: 1.5rem;
  85. height: 1.5rem;
  86. margin-right: .2rem;
  87. background: red;
  88. border-radius: .08rem;
  89. }
  90. .page-1 .download .button {
  91. display: flex;
  92. flex-direction: column;
  93. justify-content: space-between;
  94. height: 1.5rem;
  95. }
  96. .page-1 .download .button--ios {
  97. width: 1.8rem;
  98. height: .54rem;
  99. }
  100. .page-1 .download .button--android {
  101. width: 1.8rem;
  102. height: .54rem;
  103. }
  104. .content__box {
  105. display: flex;
  106. justify-content: space-around;
  107. align-items: center;
  108. }
  109. .content__box .content .title {
  110. font-size: .6rem;
  111. margin-bottom: .91rem;
  112. }
  113. .content__box .content .title .underline {
  114. padding-bottom: .41rem;
  115. border-bottom: .06rem solid #fff;
  116. }
  117. .content__box .content .text {
  118. font-size: .3rem;
  119. }
  120. .content__box .img {
  121. width: 3.02rem;
  122. height: 6.02rem;
  123. }
  124. .content__box .img img {
  125. width: 100%;
  126. height: 100%;
  127. }
  128. .page-2 {
  129. background:linear-gradient(223deg,rgba(0,238,164,1) 0%,rgba(0,154,230,1) 100%);
  130. }
  131. .page-3 {
  132. background:linear-gradient(47deg,rgba(233,72,72,1) 0%,rgba(241,187,63,1) 100%);
  133. }
  134. .page-4 {
  135. background:linear-gradient(227deg,rgba(70,166,251,1) 0%,rgba(146,19,255,1) 100%);
  136. }
  137. .page-5 {
  138. background:linear-gradient(41deg,rgba(158,26,255,1) 0%,rgba(227,56,159,1) 100%);
  139. }
  140. .page-6 {
  141. background: url('./img/bottom_bg.png');
  142. background-size: cover;
  143. background-repeat: no-repeat;
  144. text-align: center;
  145. }
  146. /* .page-6::after {
  147. position: absolute;
  148. top: 0;
  149. left: 0;
  150. content: "";
  151. background-color: rgba(0, 0, 0, .7);
  152. z-index: 1;
  153. width: 100%;
  154. height: 100%;
  155. } */
  156. .page-6 .content {
  157. display: flex;
  158. flex-direction: column;
  159. justify-content: center;
  160. align-items: center;
  161. margin: auto;
  162. padding: 0 40px;
  163. }
  164. .page-6 .title {
  165. font-size: .32rem;
  166. margin-bottom: .4rem;
  167. }
  168. .page-6 .subtitle {
  169. font-size: .24rem;
  170. margin-bottom: .3rem;
  171. }
  172. .page-6 .text {
  173. font-size: .2rem;
  174. line-height: 1.7;
  175. letter-spacing: 0.02rem;
  176. }
  177. .page-6 .footer {
  178. position: absolute;
  179. display: flex;
  180. flex-direction: column;
  181. justify-content: center;
  182. align-items: center;
  183. bottom: 0;
  184. width: 100%;
  185. height: 1.54rem;
  186. border-top: 1px solid rgba(255, 255, 255, .1);
  187. font-size: .18rem;
  188. }
  189. .page-6 .footer .footer__item {
  190. display: flex;
  191. justify-content: center;
  192. align-items: center;
  193. }
  194. /* 覆盖 */
  195. .fp-right {
  196. }
  197. #fp-nav.fp-right ul li span {
  198. /* width: 10px;
  199. height: 10px; */
  200. background: rgba(255, 255, 255, .46);
  201. }
  202. #fp-nav.fp-right ul li .active span {
  203. /* width: 16px;
  204. height: 16px; */
  205. background: #fff;
  206. }
  207. @media (min-width: 1200px) {
  208. html {
  209. font-size: calc(1920px / 19.2);
  210. }
  211. .wrap {
  212. width: 1200px;
  213. }
  214. }
  215. @media (max-width: 800px) {
  216. html {
  217. font-size: 60px;
  218. }
  219. .content__box .img {
  220. width: 1.5rem;
  221. height: 3rem;
  222. }
  223. .page-6 .footer {
  224. height: auto;
  225. padding: 10px 0;
  226. }
  227. .page-6 .footer .footer__item {
  228. flex-direction: column;
  229. }
  230. }