index.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. *{
  2. padding: 0;
  3. margin: 0;
  4. }
  5. body{
  6. font-family: "Microsoft YaHei","微软雅黑","MicrosoftJhengHei","华文细黑",STHeiti,MingLiu;
  7. background: #FFF;
  8. }
  9. .banner{
  10. width: 100%;
  11. color: #FFF;
  12. /* min-width: 1200px; */
  13. position: relative;
  14. }
  15. .banner table{
  16. position: absolute;
  17. bottom: 0;
  18. left:0;
  19. right:0;
  20. margin: auto;
  21. width: 51%;
  22. }
  23. .banner h1{
  24. font-size: 60px;
  25. font-weight: 600;
  26. letter-spacing: 8px;
  27. margin-bottom: 25px;
  28. }
  29. .banner span{
  30. font-size: 22px;
  31. }
  32. .app_down{text-align: center;}
  33. .app_down a{
  34. display: block;
  35. width: 176px;
  36. height: 50px;
  37. border:2px solid #fff;
  38. color: #fff;
  39. font-size: 22px;
  40. text-align: center;
  41. line-height: 50px;
  42. border-radius: 5px;
  43. transition: all .2s linear;
  44. margin-bottom: 20px;
  45. animation-delay:1s;
  46. }
  47. .android{
  48. margin-right: 48px;
  49. }
  50. .app_down .fa{
  51. padding-right: 15px;
  52. font-size: 1.3em;
  53. }
  54. .app_down a:hover{
  55. text-decoration: none;
  56. background: rgba(51, 51, 51, 0.59);
  57. color: #fff;
  58. border-color: rgba(51, 51, 51, 0.59);
  59. }
  60. .part{
  61. width: 960px;
  62. height: 450px;
  63. border-bottom:1px solid #c4c4c4;
  64. margin: auto;
  65. }
  66. .part>div{
  67. height: 100%;
  68. }
  69. .img,.des h1,.des p{ opacity: 0; opacity: 1\0;}
  70. .play_1 .img{
  71. background: url("image/img1.png") no-repeat;
  72. background-size: 100%;
  73. background-position: 40% 100%;
  74. }
  75. .play_2 .img{
  76. background: url("image/img2.png") no-repeat;
  77. background-size: 100%;
  78. background-position: 50% 100%;
  79. }
  80. .play_3 .img{
  81. background: url("image/img3.png") no-repeat;
  82. background-size: 100%;
  83. background-position: 40% 100%;
  84. }
  85. .play_4 .img{
  86. background: url("image/img4.png") no-repeat;
  87. background-size: 100%;
  88. background-position: 50% 100%;
  89. }
  90. .play_5 .img{
  91. background: url("image/img5.png") no-repeat;
  92. background-size: 100%;
  93. background-position: 40% 100%;
  94. }
  95. .des{
  96. padding: 314px 0 0 30px;
  97. }
  98. .des h1{
  99. font-size: 32px;
  100. color: #333;
  101. margin:0;
  102. }
  103. .content .des:nth-child(odd){
  104. padding-left: 64px;
  105. }
  106. .des p{
  107. color: #666;
  108. font-size: 21px;
  109. line-height: 28px;
  110. margin: 30px 0 0;
  111. }
  112. .play_6{
  113. padding-top: 100px;
  114. border:none;
  115. height: 400px;
  116. text-align: center;
  117. position: relative;
  118. z-index: 99;
  119. background: #FFF;
  120. }
  121. .play_6 p{
  122. color:#333;
  123. font-size: 16px;
  124. margin: 25px 0 0;
  125. }
  126. .mv_down{
  127. animation:move_down 1s ease-out forwards;
  128. -webkit-animation:move_down 1s ease-out forwards;
  129. }
  130. .mv_up{
  131. animation:move_up 1s ease-out forwards;
  132. -webkit-animation:move_up 1s ease-out forwards;
  133. }
  134. .mv_right{
  135. animation:move_right 1s ease-out forwards;
  136. -webkit-animation:move_right 1s ease-out forwards;
  137. }
  138. .mv_left{
  139. animation:move_left 1s ease-out forwards;
  140. -webkit-animation:move_left 1s ease-out forwards;
  141. }
  142. .move{
  143. animation: blurFadeIn 1.5s 1 ease-out 1s forwards;
  144. -webkit-animation:blurFadeIn 1.5s 1 ease-out 1s forwards;
  145. }
  146. .footer{
  147. padding: 30px 0;
  148. background: #1b1f26;
  149. color: #fff;
  150. }
  151. @-webkit-keyframes move_down {
  152. from {
  153. -webkit-transform: translateY(-50px);
  154. transform: translateY(-50px);
  155. opacity: 0;
  156. }
  157. to{
  158. -webkit-transform: translateY(0px);
  159. transform: translateY(0px);
  160. opacity: 1;
  161. }
  162. }
  163. @-o-keyframes move_down {
  164. from {
  165. -webkit-transform: translateY(-50px);
  166. transform: translateY(-50px);
  167. opacity: 0;
  168. }
  169. to{
  170. -webkit-transform: translateY(0px);
  171. transform: translateY(0px);
  172. opacity: 1;
  173. }
  174. }
  175. @keyframes move_down {
  176. from {
  177. -webkit-transform: translateY(-50px);
  178. transform: translateY(-50px);
  179. opacity: 0;
  180. }
  181. to{
  182. -webkit-transform: translateY(0px);
  183. transform: translateY(0px);
  184. opacity: 1;
  185. }
  186. }
  187. @-webkit-keyframes move_up {
  188. from {
  189. -webkit-transform: translateY(50px);
  190. transform: translateY(50px);
  191. opacity: 0;
  192. }
  193. to{
  194. -webkit-transform: translateY(0px);
  195. transform: translateY(0px);
  196. opacity: 1;
  197. }
  198. }
  199. @-o-keyframes move_up {
  200. from {
  201. -webkit-transform: translateY(50px);
  202. transform: translateY(50px);
  203. opacity: 0;
  204. }
  205. to{
  206. -webkit-transform: translateY(0px);
  207. transform: translateY(0px);
  208. opacity: 1;
  209. }
  210. }
  211. @keyframes move_up {
  212. from {
  213. -webkit-transform: translateY(50px);
  214. transform: translateY(50px);
  215. opacity: 0;
  216. }
  217. to{
  218. -webkit-transform: translateY(0px);
  219. transform: translateY(0px);
  220. opacity: 1;
  221. }
  222. }
  223. @-webkit-keyframes move_right {
  224. from {
  225. -webkit-transform: translateX(50px);
  226. transform: translateX(50px);
  227. opacity: 0;
  228. }
  229. to{
  230. -webkit-transform: translateX(0px);
  231. transform: translateX(0px);
  232. opacity: 1;
  233. }
  234. }
  235. @-o-keyframes move_right {
  236. from {
  237. -webkit-transform: translateX(50px);
  238. transform: translateX(50px);
  239. opacity: 0;
  240. }
  241. to{
  242. -webkit-transform: translateX(0px);
  243. transform: translateX(0px);
  244. opacity: 1;
  245. }
  246. }
  247. @keyframes move_right {
  248. from {
  249. -webkit-transform: translateX(50px);
  250. transform: translateX(50px);
  251. opacity: 0;
  252. }
  253. to{
  254. -webkit-transform: translateX(0px);
  255. transform: translateX(0px);
  256. opacity: 1;
  257. }
  258. }
  259. @-webkit-keyframes move_left {
  260. from {
  261. -webkit-transform: translateX(-50px);
  262. transform: translateX(-50px);
  263. opacity: 0;
  264. }
  265. to{
  266. -webkit-transform: translateX(0px);
  267. transform: translateX(0px);
  268. opacity: 1;
  269. }
  270. }
  271. @-o-keyframes move_left {
  272. from {
  273. -webkit-transform: translateX(-50px);
  274. transform: translateX(-50px);
  275. opacity: 0;
  276. }
  277. to{
  278. -webkit-transform: translateX(0px);
  279. transform: translateX(0px);
  280. opacity: 1;
  281. }
  282. }
  283. @keyframes move_left {
  284. from {
  285. -webkit-transform: translateX(-50px);
  286. transform: translateX(-50px);
  287. opacity: 0;
  288. }
  289. to{
  290. -webkit-transform: translateX(0px);
  291. transform: translateX(0px);
  292. opacity: 1;
  293. }
  294. }
  295. @-webkit-keyframes blurFadeIn {
  296. 0%{
  297. opacity: 0;
  298. -webkit-transform: scale(.7);
  299. transform: scale(.7);
  300. }
  301. 100%{
  302. opacity: 1;
  303. -webkit-transform: scale(1);
  304. transform: scale(1);
  305. }
  306. }
  307. @-o-keyframes blurFadeIn {
  308. 0%{
  309. opacity: 0;
  310. -webkit-transform: scale(.7);
  311. transform: scale(.7);
  312. }
  313. 100%{
  314. opacity: 1;
  315. -webkit-transform: scale(1);
  316. transform: scale(1);
  317. }
  318. }
  319. @keyframes blurFadeIn {
  320. 0%{
  321. opacity: 0;
  322. -webkit-transform: scale(.7);
  323. transform: scale(.7);
  324. }
  325. 100%{
  326. opacity: 1;
  327. -webkit-transform: scale(1);
  328. transform: scale(1);
  329. }
  330. }
  331. @keyframes line_move {
  332. 0%{
  333. width: 0;
  334. }
  335. 100%{
  336. width: 100%;
  337. }
  338. }
  339. @-webkit-keyframes line_move {
  340. 0%{
  341. width: 0;
  342. }
  343. 100%{
  344. width: 100%;
  345. }
  346. }
  347. @-o-keyframes line_move {
  348. 0%{
  349. width: 0;
  350. }
  351. 100%{
  352. width: 100%;
  353. }
  354. }
  355. .act_1 .img{
  356. animation:move_right 1s ease-out forwards;
  357. -webkit-animation:move_right 1s ease-out forwards;
  358. animation:move_right 1s ease-out forwards;
  359. }
  360. .act_1 h1{
  361. animation:move_down 1s ease-out forwards;
  362. -webkit-animation:move_down 1s ease-out forwards;
  363. -o-animation:move_down 1s ease-out forwards;
  364. }
  365. .act_1 p{
  366. animation:move_left 1s ease-out forwards;
  367. -webkit-animation:move_left 1s ease-out forwards;
  368. -o-animation:move_left 1s ease-out forwards;
  369. }
  370. .act_2 .img{
  371. animation:move_left 1s ease-out .3s forwards;
  372. -webkit-animation:move_left 1s ease-out .3s forwards;
  373. -o-animation:move_left 1s ease-out .3s forwards;
  374. }
  375. .act_2 h1{
  376. animation:move_down 1s ease-out .3s forwards;
  377. -webkit-animation:move_down 1s ease-out .3s forwards;
  378. -o-animation:move_down 1s ease-out .3s forwards;
  379. }
  380. .act_2 p{
  381. animation:move_right 1s ease-out .3s forwards;
  382. -webkit-animation:move_right 1s ease-out .3s forwards;
  383. -o-animation:move_right 1s ease-out .3s forwards;
  384. }
  385. .act_3 .img{
  386. animation:move_down 1s ease-out .3s forwards;
  387. -webkit-animation:move_down 1s ease-out .3s forwards;
  388. -o-animation:move_down 1s ease-out .3s forwards;
  389. }
  390. .act_3 h1{
  391. animation:move_down 1s ease-out .3s forwards;
  392. -webkit-animation:move_down 1s ease-out .3s forwards;
  393. -o-animation:move_down 1s ease-out .3s forwards;
  394. }
  395. .act_3 p{
  396. animation:move_left 1s ease-out .3s forwards;
  397. -webkit-animation:move_left 1s ease-out .3s forwards;
  398. -o-animation:move_left 1s ease-out .3s forwards;
  399. }
  400. .act_4 .img{
  401. animation:move_right 1s ease-out .3s forwards;
  402. -webkit-animation:move_right 1s ease-out .3s forwards;
  403. -o-animation:move_right 1s ease-out .3s forwards;
  404. }
  405. .act_4 h1{
  406. animation:move_down 1s ease-out .3s forwards;
  407. -webkit-animation:move_down 1s ease-out .3s forwards;
  408. -o-animation:move_down 1s ease-out .3s forwards;
  409. }
  410. .act_4 p{
  411. animation:move_left 1s ease-out .3s forwards;
  412. -webkit-animation:move_left 1s ease-out .3s forwards;
  413. -o-animation:move_left 1s ease-out .3s forwards;
  414. }
  415. .act_5 .img{
  416. animation:move_up 1s ease-out .3s forwards;
  417. -webkit-animation:move_up 1s ease-out .3s forwards;
  418. -o-animation:move_up 1s ease-out .3s forwards;
  419. }
  420. .act_5 h1{
  421. animation:move_down 1s ease-out .3s forwards;
  422. -webkit-animation:move_down 1s ease-out .3s forwards;
  423. -o-animation:move_down 1s ease-out .3s forwards;
  424. }
  425. .act_5 p{
  426. animation:move_left 1s ease-out .3s forwards;
  427. -webkit-animation:move_left 1s ease-out .3s forwards;
  428. -o-animation:move_left 1s ease-out .3s forwards;
  429. }
  430. .act_6 #qrcode{
  431. animation:move_down 1s ease-out .3s forwards;
  432. -webkit-animation:move_down 1s ease-out .3s forwards;
  433. -o-animation:move_down 1s ease-out .3s forwards;
  434. opacity: 0;
  435. opacity: 1\0;
  436. }
  437. .line{
  438. width: 0px;
  439. height:1px;
  440. width: 100% \0;
  441. margin: auto;
  442. background: #c4c4c4;
  443. animation:line_move .8s ease-in 1s forwards;
  444. -webkit-animation:line_move .8s ease-in 1s forwards;
  445. -o-animation:line_move .8s ease-in 1s forwards;
  446. }
  447. a:link{
  448. text-decoration: none;
  449. }
  450. .footer {
  451. position: relative;
  452. z-index: 9999;
  453. }
  454. @media (max-width:980px) {
  455. .part{width: 100%}
  456. }
  457. @media (max-width:1580px) {
  458. .banner h1{
  459. font-size: 48px;
  460. }
  461. .banner table{
  462. width: 55%;
  463. }
  464. .ewm img{
  465. width: 150px !important;
  466. }
  467. }