index.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  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 {
  67. letter-spacing: 6px;
  68. }
  69. .page-1 {
  70. background: url('http://oss.caihongxingqiu.com/official/top_bg.jpg') center;
  71. background-size: cover;
  72. text-align: center;
  73. }
  74. .page-1 .title {
  75. font-size: .66rem;
  76. }
  77. .page-1 .text {
  78. font-size: .36rem;
  79. margin-top: .3rem;
  80. }
  81. .page-1 .download {
  82. display: flex;
  83. justify-content: center;
  84. align-items: center;
  85. margin-top: 1.1rem;
  86. }
  87. .page-1 .download .qr {
  88. width: 1.5rem;
  89. height: 1.5rem;
  90. margin-right: .2rem;
  91. background: red;
  92. border-radius: .08rem;
  93. }
  94. .page-1 .download .button {
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: space-between;
  98. height: 1.5rem;
  99. }
  100. .page-1 .download .button--ios {
  101. width: 1.8rem;
  102. height: .54rem;
  103. }
  104. .page-1 .download .button--android {
  105. width: 1.8rem;
  106. height: .54rem;
  107. }
  108. .content__box {
  109. display: flex;
  110. justify-content: space-around;
  111. align-items: center;
  112. }
  113. .right .content {
  114. text-align: right;
  115. }
  116. .content__box .content .title {
  117. font-size: .6rem;
  118. margin-bottom: .91rem;
  119. }
  120. .content__box .content .title .underline {
  121. padding-bottom: .41rem;
  122. border-bottom: .06rem solid #fff;
  123. }
  124. .content__box .content .text {
  125. font-size: .3rem;
  126. line-height: 1.8;
  127. }
  128. .content__box .img {
  129. width: 3.02rem;
  130. height: 6.02rem;
  131. }
  132. .content__box .img img {
  133. width: 100%;
  134. height: 100%;
  135. }
  136. .page-2 {
  137. background:linear-gradient(223deg,rgba(0,238,164,1) 0%,rgba(0,154,230,1) 100%);
  138. }
  139. .page-3 {
  140. background:linear-gradient(47deg,rgba(233,72,72,1) 0%,rgba(241,187,63,1) 100%);
  141. }
  142. .page-4 {
  143. background:linear-gradient(227deg,rgba(70,166,251,1) 0%,rgba(146,19,255,1) 100%);
  144. }
  145. .page-5 {
  146. background:linear-gradient(41deg,rgba(158,26,255,1) 0%,rgba(227,56,159,1) 100%);
  147. }
  148. .page-6 {
  149. background: url('http://oss.caihongxingqiu.com/official/bottom_bg.jpg') center;
  150. background-size: cover;
  151. text-align: center;
  152. letter-spacing: 2px;
  153. }
  154. /* .page-6::after {
  155. position: absolute;
  156. top: 0;
  157. left: 0;
  158. content: "";
  159. background-color: rgba(0, 0, 0, .7);
  160. z-index: 1;
  161. width: 100%;
  162. height: 100%;
  163. } */
  164. .page-6 .content {
  165. display: flex;
  166. flex-direction: column;
  167. justify-content: center;
  168. align-items: center;
  169. margin: -70px auto 0;
  170. padding: 0 120px;
  171. }
  172. .page-6 .title {
  173. font-size: .32rem;
  174. margin-bottom: .4rem;
  175. }
  176. .page-6 .subtitle {
  177. font-size: .24rem;
  178. margin-bottom: .3rem;
  179. }
  180. .page-6 .text {
  181. font-size: .2rem;
  182. line-height: 2;
  183. }
  184. .page-6 .footer {
  185. position: absolute;
  186. display: flex;
  187. flex-direction: column;
  188. justify-content: center;
  189. align-items: center;
  190. bottom: 0;
  191. width: 100%;
  192. height: 1.54rem;
  193. border-top: 1px solid rgba(255, 255, 255, .1);
  194. font-size: .18rem;
  195. }
  196. .page-6 .footer .footer__item {
  197. display: flex;
  198. justify-content: center;
  199. align-items: center;
  200. }
  201. /* 覆盖 */
  202. .fp-right {
  203. }
  204. #fp-nav.fp-right ul li span {
  205. /* width: 10px;
  206. height: 10px; */
  207. background: rgba(255, 255, 255, .46);
  208. }
  209. #fp-nav.fp-right ul li .active span {
  210. /* width: 16px;
  211. height: 16px; */
  212. background: #fff;
  213. }
  214. @media (min-width: 1200px) {
  215. html {
  216. font-size: calc(1920px / 19.2);
  217. }
  218. .wrap {
  219. width: 1200px;
  220. }
  221. }
  222. @media (max-width: 800px) {
  223. html {
  224. font-size: 60px;
  225. }
  226. .page {
  227. letter-spacing: 0;
  228. }
  229. .page-6 .content {
  230. padding: 0 40px;
  231. }
  232. .content__box .img {
  233. width: 1.5rem;
  234. height: 3rem;
  235. }
  236. .page-6 .footer {
  237. height: auto;
  238. padding: 10px 0;
  239. }
  240. .page-6 .footer .footer__item {
  241. flex-direction: column;
  242. }
  243. }