index.css 4.4 KB

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