﻿@charset "UTF-8";

/***
  @description:重置样式;
  @Author:ray;
  @create date:2015-07-31;
***/
body {
  margin: 0;
  background-color: #f3faff;
}

body,
button,
input,
select,
textarea {
  font: 14px/1.5 "Microsoft YaHei", "tahoma", "arial", "sans-serif";
  color: #666;
}

dl,
dd,
p,
form {
  margin: 0;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #666;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

img {
  border: 0;
  vertical-align: top;
}

input,
select,
button,
textarea {
  outline: 0;
}

/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}

/*placeholder*/
input::-webkit-input-placeholder {
  color: #d0d0d0;
}

input::-moz-placeholder {
  color: #d0d0d0;
}

input:-ms-input-placeholder {
  color: #d0d0d0;
}

/*滚动条*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-button:vertical {
  display: none;
}

::-webkit-scrollbar-track:vertical {
  background-color: black;
}

::-webkit-scrollbar-track-piece {
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb:vertical {
  margin-right: 10px;
  background-color: #a6a6a6;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #888;
}

::-webkit-scrollbar-corner:vertical {
  background-color: #535353;
}

::-webkit-scrollbar-resizer:vertical {
  background-color: #ff6e00;
}

/***
  @description: css3 动画;
  @Author:ray;
  @create date:2016-09-13;
***/
@-moz-keyframes rotate {
  from {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  to {
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes rotate {
  from {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  to {
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-o-keyframes rotate {
  from {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  to {
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-ms-keyframes rotate {
  from {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  to {
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes rotate {
  from {
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }

  to {
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-moz-keyframes cardZoomIn {
  0% {
    -moz-transform: scale(0) translateY(-200px);
    -ms-transform: scale(0) translateY(-200px);
    -webkit-transform: scale(0) translateY(-200px);
    transform: scale(0) translateY(-200px);
  }

  100% {
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}

@-webkit-keyframes cardZoomIn {
  0% {
    -moz-transform: scale(0) translateY(-200px);
    -ms-transform: scale(0) translateY(-200px);
    -webkit-transform: scale(0) translateY(-200px);
    transform: scale(0) translateY(-200px);
  }

  100% {
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}

@-o-keyframes cardZoomIn {
  0% {
    -moz-transform: scale(0) translateY(-200px);
    -ms-transform: scale(0) translateY(-200px);
    -webkit-transform: scale(0) translateY(-200px);
    transform: scale(0) translateY(-200px);
  }

  100% {
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}

@-ms-keyframes cardZoomIn {
  0% {
    -moz-transform: scale(0) translateY(-200px);
    -ms-transform: scale(0) translateY(-200px);
    -webkit-transform: scale(0) translateY(-200px);
    transform: scale(0) translateY(-200px);
  }

  100% {
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}

@keyframes cardZoomIn {
  0% {
    -moz-transform: scale(0) translateY(-200px);
    -ms-transform: scale(0) translateY(-200px);
    -webkit-transform: scale(0) translateY(-200px);
    transform: scale(0) translateY(-200px);
  }

  100% {
    -moz-transform: scale(1) translateY(0px);
    -ms-transform: scale(1) translateY(0px);
    -webkit-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}

@-moz-keyframes cardLeftIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(246px);
    -ms-transform: translateX(246px);
    -webkit-transform: translateX(246px);
    transform: translateX(246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes cardLeftIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(246px);
    -ms-transform: translateX(246px);
    -webkit-transform: translateX(246px);
    transform: translateX(246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-o-keyframes cardLeftIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(246px);
    -ms-transform: translateX(246px);
    -webkit-transform: translateX(246px);
    transform: translateX(246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-ms-keyframes cardLeftIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(246px);
    -ms-transform: translateX(246px);
    -webkit-transform: translateX(246px);
    transform: translateX(246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes cardLeftIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(246px);
    -ms-transform: translateX(246px);
    -webkit-transform: translateX(246px);
    transform: translateX(246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-moz-keyframes cardRightIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-246px);
    -ms-transform: translateX(-246px);
    -webkit-transform: translateX(-246px);
    transform: translateX(-246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes cardRightIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-246px);
    -ms-transform: translateX(-246px);
    -webkit-transform: translateX(-246px);
    transform: translateX(-246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-o-keyframes cardRightIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-246px);
    -ms-transform: translateX(-246px);
    -webkit-transform: translateX(-246px);
    transform: translateX(-246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-ms-keyframes cardRightIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-246px);
    -ms-transform: translateX(-246px);
    -webkit-transform: translateX(-246px);
    transform: translateX(-246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes cardRightIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-246px);
    -ms-transform: translateX(-246px);
    -webkit-transform: translateX(-246px);
    transform: translateX(-246px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-moz-keyframes cardZoomOut {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-webkit-keyframes cardZoomOut {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-o-keyframes cardZoomOut {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-ms-keyframes cardZoomOut {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes cardZoomOut {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@-moz-keyframes cloudMove {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  25% {
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  75% {
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes cloudMove {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  25% {
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  75% {
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-o-keyframes cloudMove {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  25% {
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  75% {
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-ms-keyframes cloudMove {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  25% {
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  75% {
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes cloudMove {
  0% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  25% {
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
  }

  50% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  75% {
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
  }

  100% {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-moz-keyframes rocket {
  0% {
    -moz-transform: scale(0) translate(20px, 30px);
    -ms-transform: scale(0) translate(20px, 30px);
    -webkit-transform: scale(0) translate(20px, 30px);
    transform: scale(0) translate(20px, 30px);
  }

  100% {
    -moz-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }
}

@-webkit-keyframes rocket {
  0% {
    -moz-transform: scale(0) translate(20px, 30px);
    -ms-transform: scale(0) translate(20px, 30px);
    -webkit-transform: scale(0) translate(20px, 30px);
    transform: scale(0) translate(20px, 30px);
  }

  100% {
    -moz-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }
}

@-o-keyframes rocket {
  0% {
    -moz-transform: scale(0) translate(20px, 30px);
    -ms-transform: scale(0) translate(20px, 30px);
    -webkit-transform: scale(0) translate(20px, 30px);
    transform: scale(0) translate(20px, 30px);
  }

  100% {
    -moz-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }
}

@-ms-keyframes rocket {
  0% {
    -moz-transform: scale(0) translate(20px, 30px);
    -ms-transform: scale(0) translate(20px, 30px);
    -webkit-transform: scale(0) translate(20px, 30px);
    transform: scale(0) translate(20px, 30px);
  }

  100% {
    -moz-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }
}

@keyframes rocket {
  0% {
    -moz-transform: scale(0) translate(20px, 30px);
    -ms-transform: scale(0) translate(20px, 30px);
    -webkit-transform: scale(0) translate(20px, 30px);
    transform: scale(0) translate(20px, 30px);
  }

  100% {
    -moz-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
    -webkit-transform: scale(1) translate(0px, 0px);
    transform: scale(1) translate(0px, 0px);
  }
}

@-moz-keyframes rocketLeave {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-webkit-keyframes rocketLeave {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-o-keyframes rocketLeave {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-ms-keyframes rocketLeave {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@keyframes rocketLeave {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-moz-keyframes icoMove {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-webkit-keyframes icoMove {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-o-keyframes icoMove {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-ms-keyframes icoMove {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@keyframes icoMove {
  0% {
    -moz-transform: scale(1) translate(0, 0);
    -ms-transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    transform: scale(1) translate(0, 0);
  }

  100% {
    -moz-transform: scale(1) translate(-200px, -300px);
    -ms-transform: scale(1) translate(-200px, -300px);
    -webkit-transform: scale(1) translate(-200px, -300px);
    transform: scale(1) translate(-200px, -300px);
  }
}

@-moz-keyframes float {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes float {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-o-keyframes float {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-ms-keyframes float {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes floatRight {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-moz-keyframes floatLeft {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes floatLeft {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-o-keyframes floatLeft {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-ms-keyframes floatLeft {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes floatLeft {
  0% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -moz-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*** @Author:ray; @create date:2016-01-06
***/
.ico-sprite,
.ico-android,
.ico-iso,
.ico-pc {
  background-image: url("../images/ico-se9cb09c88d.png");
  background-repeat: no-repeat;
}

.ico-android {
  background-position: 0 0;
  height: 20px;
  width: 18px;
}

.ico-iso {
  background-position: 0 -20px;
  height: 20px;
  width: 17px;
}

.ico-pc {
  background-position: 0 -40px;
  height: 20px;
  width: 15px;
}

.ico {
  display: inline-block;
  vertical-align: middle;
}

/***
  @Author:ray;
  @create date:2016-09-12;
***/
html,
body {
  overflow: hidden;
  height: 100%;
}

.fl {
  float: left;
  display: inline;
}

.fr {
  float: right;
  display: inline;
}

.icon {
  display: inline-block;
  background-image: url(../images/icon.png);
  background-repeat: no-repeat;
}

.icon-logo {
  width: 112px;
  height: 112px;
  background-position: 0px -84px;
}

.btn-download {
  display: inline-block;
  vertical-align: top;
  width: 286px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #34aeff;
  font-size: 38px;
  color: #34aeff;
  border-radius: 6px;
  margin-top: 5px;
  -moz-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}

.btn-download:hover {
  background-color: #34aeff;
  color: #fff;
}

.wrapper {
  width: 1366px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.header {
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 99;
}

.header .wrapper {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
}

.header .logo {
  display: inline-block;
  cursor: initial;
}


.header .header-section ul {
  line-height: 48px;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

.header .header-section ul li {
  margin-left: 30px;
  color: #070707;
  font-size: 15px;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header .header-section .active {
  color: #ce8b32;
}

.header .header-section .active::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #ce8b32;
  position: absolute;
  left: 0;
  bottom: 8px;
}

.topbar {
  display: flex;
}

.topbar a {
  margin-left: 20px;
}

.topbar .btn {
  display: inline-block;
  vertical-align: top;
  height: 23px;
  line-height: 23px;
  padding: 7px 15px;
  font-size: 16px;
  text-align: center;
  background-color: #34aeff;
  color: #fff;
  border-radius: 4px;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.topbar .btn:hover .code {
  visibility: visible;
  opacity: 1;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.topbar .btn em {
  margin-left: 5px;
}

.topbar .ico {
  vertical-align: -3px;
  margin-right: 8px;
}

.topbar .btn-blue {
  background-color: #34aeff;
}

.topbar .btn-blue:hover {
  background-color: #6694fb;
}

.topbar .btn-orange {
  background-color: #ff872e;
}

.topbar .btn-orange:hover {
  background-color: #f17417;
}

.topbar .btn-blueD {
  background-color: #6694fb;
}

.topbar .btn-blueD:hover {
  background-color: #4f81f2;
}

.topbar .icon-code {
  width: 23px;
  height: 23px;
  display: inline-block;
  vertical-align: top;
  background-position: -217px -256px;
  margin-left: 8px;
}

.topbar .code {
  position: absolute;
  z-index: 300;
  visibility: hidden;
  margin: 40px 0 0 -89px;
  padding: 5px;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  opacity: 0;
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -moz-transform-origin: center top;
  -ms-transform-origin: center top;
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -moz-box-shadow: 0px 0px 8px rgba(52, 174, 255, 0.5);
  -webkit-box-shadow: 0px 0px 8px rgba(52, 174, 255, 0.5);
  box-shadow: 0px 0px 8px rgba(52, 174, 255, 0.5);
  -moz-transition: visibility 0.4s, opacity 0.4s, -moz-transform 0.4s;
  -o-transition: visibility 0.4s, opacity 0.4s, -o-transform 0.4s;
  -webkit-transition: visibility 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  transition: visibility 0.4s, opacity 0.4s, transform 0.4s;
}

.topbar .code img {
  display: block;
  width: 140px;
  height: 140px;
}

.topbar .code em,
.topbar .code i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-bottom: 6px solid #e6e6e6;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  margin: -6px 0 0 -6px;
}

.topbar .code i {
  border-bottom-color: #fff;
  margin-top: -5px;
}

.topbar .link {
  transition: all ease 0.5s;
  cursor: pointer;
  display: inline-block;
  margin-left: 50px;
  line-height: 37px;
  font-size: 16px;
  color: #fff;
  border-bottom: 2px solid #101313;
}

.topbar .link.active {
  color: #c8ae94;
}

.pages {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.pages .page {
  height: 100vh !important;
  position: relative;
}

.page4 .page-inner {
  margin: -360px 0 0 -600px;
}

.page3 .page-inner:before,
.page3 .page-inner:after {
  display: block;
  content: "";
  position: absolute;
}

.page3 .page-inner:before {
  background: url(../images/3-bg-left.png) no-repeat right center;
  background-size: contain;
  width: 30%;
  height: 30%;
  bottom: -7%;
  left: -28%;
}

.page3 .page-inner:after {
  background: url(../images/3-bg-right.png) no-repeat right center;
  background-size: contain;
  width: 40%;
  height: 130%;
  bottom: -30%;
  right: -30%;
}

/* 
.pages .page1 {}

.pages .page1 .page-inner {
  height: 100%;
  width: 100%;
  margin: 0 !important;
  left: 0;
  top: 80px;
} */

.page1 .view img {
  width: 100%;
  height: 100%;
}

.pages .page1 .download {
  height: 112px;
  position: relative;
  padding-left: 234px;
}

.pages .page1 .download .name {
  display: inline-block;
  vertical-align: top;
  width: 500px;
  text-align: left;
  *display: inline;
  *zoom: 1;
}

.pages .page1 .download .logo-version {
  width: 458px;
  height: 112px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: url(../images/logo-version.png) no-repeat;
  margin-right: 80px;
  text-align: center;
}

.pages .page1 .download .logo-version .num {
  width: 55px;
  font-size: 21px;
  font-family: arial;
  position: absolute;
  top: 23px;
  right: 5px;
  color: #fffefe;
  text-transform: uppercase;
  display: none;
}

.pages .page1 .download .icon-logo {
  float: left;
  margin-right: 20px;
  position: relative;
}

.pages .page1 .download h1 {
  font-size: 54px;
  color: #2c2c2c;
  line-height: 1;
  margin-bottom: 10px;
}

.pages .page1 .download h4 {
  font-size: 30px;
}

.pages .page1 .caselist {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 582px;
}

.pages .page1 .caselist ul {
  width: 360px;
  height: 582px;
  margin: 0 auto;
}

.pages .page1 .caselist li {
  position: absolute;
  -moz-box-shadow: 0px 4px 20px rgba(102, 102, 102, 0.2);
  -webkit-box-shadow: 0px 4px 20px rgba(102, 102, 102, 0.2);
  box-shadow: 0px 4px 20px rgba(102, 102, 102, 0.2);
}

.pages .page1 .caselist li.item1 {
  margin-left: -420px;
  margin-top: 90px;
}

.pages .page1 .caselist li.item2 {
  margin-left: 492px;
  margin-top: 90px;
}

.pages .page1 .caselist li.item3 {
  margin-left: -232px;
  margin-top: 42px;
}

.pages .page1 .caselist li.item4 {
  margin-left: 260px;
  margin-top: 42px;
}

.pages .textbox,
.pages .showbox {
  height: 100%;
}

.page2 .swiper-slide {
  display: flex;
  justify-content: center;
}

.rightImg img,
.leftImg img {
  width: 100%;
}


.secondLast {
  /*width: 54%;*/
  top: -5%;
}

.secondLast .poker {
  position: absolute;
  width: 20%;
}

.secondLast .poker-left {
  left: 0;
  top: 48px;
}

.secondLast .poker-right {
  right: 0;
  top: 7%;
}

.second-03 {
  top: -5%;
  /*width: 45%;*/
  margin-right: 3%;
  position: relative;
}

.second-02 {
  top: 5%;
}

#navbar {
  position: fixed;
  top: 52%;
  right: 50px;
  margin-top: -160px;
  list-style: none;
  z-index: 200;
}

#navbar li {
  margin-bottom: 14px;
  -moz-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
  position: relative;
  cursor: pointer;
}

.pages .textbox .ani li {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 12;
}

.pages .textbox .ani li.ani-logo {
  left: 55px;
  top: 10px;
  z-index: 10;
  border-radius: 50%;
}

.pages .textbox .ani li.ani-1 {
  margin: -38px 0px 0px -340px;
}

.pages .textbox .ani li.ani-2 {
  margin: -252px 0px 0px -112px;
}

.pages .textbox .ani li.ani-3 {
  margin: -246px 0px 0px 103px;
}

.pages .textbox .ani li.ani-4 {
  margin: 155px 0px 0px -147px;
}

.pages .textbox .ani li.ani-5 {
  margin: 116px 0px 0px 252px;
}

.pages .showbox {
  position: relative;
}

.pages .showbox .pic,
.pages .showbox .icon,
.pages .showbox .cloud {
  position: absolute;
  bottom: 0;
}

.pages .showbox .pic {
  width: 360px;
  height: 565px;
  left: 50%;
  margin: 0 0 0 -147px;
  z-index: 10;
  overflow: hidden;
  -moz-box-shadow: 0px 0px 20px rgba(52, 174, 255, 0.6);
  -webkit-box-shadow: 0px 0px 20px rgba(52, 174, 255, 0.6);
  box-shadow: 0px 0px 20px rgba(52, 174, 255, 0.6);
}

.pages .showbox .pic img {
  width: 100%;
}

.pages .showbox .icon-rocket {
  width: 178px;
  height: 178px;
  background-position: 0px -520px;
  margin: 0 0 60px -15px;
}

.pages .showbox .icon-gift {
  width: 150px;
  height: 150px;
  background-position: -198px -520px;
  right: -4px;
  bottom: 40px;
}

.pages .showbox .icon-book {
  width: 205px;
  height: 160px;
  background-position: -385px -520px;
  margin: 0px 0 10px 10px;
}

.pages .page3 .showbox .pic {
  margin: 0 0 0 -170px;
}

.pages .page3 .textbox .ani li.ani-logo {
  background-position: -262px -339px;
}

.pages .page4 .textbox .ani li.ani-logo {
  background-position: -131px -339px;
}

.page-footer {
  background-color: #f4f5f6;
  text-align: center;
  padding: 96px 0 15px;
}

.page-footer .download h2 {
  font-size: 54px;
  color: #2c2c2c;
  padding-top: 10px;
  letter-spacing: 3px;
}

.page-footer .download h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.page-footer .download .btn-download {
  margin-bottom: 70px;
}

.page-footer .friendlink {
  font-size: 16px;
  margin-bottom: 10px;
}

.page-footer .friendlink a {
  margin-right: 15px;
}

.page-footer .friendlink a:hover {
  color: #34aeff;
}

.page-footer .copyright {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 1px;
}

.page-footer .icon-logo {
  width: 141px;
  height: 141px;
}

.page1.active .download {
  -moz-animation: fadeInDown 1s 0.2s ease both;
  -webkit-animation: fadeInDown 1s 0.2s ease both;
  animation: fadeInDown 1s 0.2s ease both;
}

.page1.active .download .icon-logo {
  -moz-animation: bounce 1s 2s ease;
  -webkit-animation: bounce 1s 2s ease;
  animation: bounce 1s 2s ease;
}

.page1.active .caselist .item1 {
  -moz-animation: cardLeftIn 0.6s 1.5s ease both;
  -webkit-animation: cardLeftIn 0.6s 1.5s ease both;
  animation: cardLeftIn 0.6s 1.5s ease both;
}

.page1.active .caselist .item2 {
  -moz-animation: cardRightIn 0.6s 1.7s ease both;
  -webkit-animation: cardRightIn 0.6s 1.7s ease both;
  animation: cardRightIn 0.6s 1.7s ease both;
}

.page1.active .caselist .item3 {
  -moz-animation: cardLeftIn 0.6s 1s ease both;
  -webkit-animation: cardLeftIn 0.6s 1s ease both;
  animation: cardLeftIn 0.6s 1s ease both;
}

.page1.active .caselist .item4 {
  -moz-animation: cardRightIn 0.6s 1.2s ease both;
  -webkit-animation: cardRightIn 0.6s 1.2s ease both;
  animation: cardRightIn 0.6s 1.2s ease both;
}

.page1.active .caselist .item5 {
  -moz-animation: cardZoomIn 0.6s 0.2s ease both;
  -webkit-animation: cardZoomIn 0.6s 0.2s ease both;
  animation: cardZoomIn 0.6s 0.2s ease both;
}

.page.active .showbox .cloud {
  -moz-animation: cloudMove 20s 0s linear infinite;
  -webkit-animation: cloudMove 20s 0s linear infinite;
  animation: cloudMove 20s 0s linear infinite;
}

.navbarActive,
.page.active .showbox .icon-rocket {
  -moz-animation: rocket 1s 0.8s ease both;
  -webkit-animation: rocket 1s 0.8s ease both;
  animation: rocket 1s 0.8s ease both;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

.page.active .showbox .icon-gift {
  -moz-animation: rollIn 1s 0.8s ease both;
  -webkit-animation: rollIn 1s 0.8s ease both;
  animation: rollIn 1s 0.8s ease both;
}

.page.active .showbox .icon-book {
  -moz-animation: fadeInRight 1s 0.8s ease both;
  -webkit-animation: fadeInRight 1s 0.8s ease both;
  animation: fadeInRight 1s 0.8s ease both;
}

.page-leave .icon-rocket {
  -moz-animation: rocketLeave 0.5s 0s ease both;
  -webkit-animation: rocketLeave 0.5s 0s ease both;
  animation: rocketLeave 0.5s 0s ease both;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

.page-leave .icon-gift {
  -moz-animation: rollOut 0.5s 0s ease both;
  -webkit-animation: rollOut 0.5s 0s ease both;
  animation: rollOut 0.5s 0s ease both;
}

.page.active .partner li:nth-child(9) {
  -moz-animation: fadeInDown 0.8s 0.6s ease both;
  -webkit-animation: fadeInDown 0.8s 0.6s ease both;
  animation: fadeInDown 0.8s 0.6s ease both;
}

.page.active .contract-bar .item:nth-child(4),
.page.active .partner li:nth-child(8) {
  -moz-animation: fadeInDown 0.8s 0.5s ease both;
  -webkit-animation: fadeInDown 0.8s 0.5s ease both;
  animation: fadeInDown 0.8s 0.5s ease both;
}

.page.active .contract-bar .item:nth-child(3),
.page.active .partner li:nth-child(7) {
  -moz-animation: fadeInDown 0.8s 0.6s ease both;
  -webkit-animation: fadeInDown 0.8s 0.6s ease both;
  animation: fadeInDown 0.8s 0.6s ease both;
}

.page.active .partner li:nth-child(6) {
  -moz-animation: fadeInDown 0.8s 0.5s ease both;
  -webkit-animation: fadeInDown 0.8s 0.5s ease both;
  animation: fadeInDown 0.8s 0.5s ease both;
}

.page.active .contract-bar .item:nth-child(2),
.page.active .partner li:nth-child(5) {
  -moz-animation: fadeInDown 0.8s 0.4s ease both;
  -webkit-animation: fadeInDown 0.8s 0.4s ease both;
  animation: fadeInDown 0.8s 0.4s ease both;
}

.page.active .partner li:nth-child(4) {
  -moz-animation: fadeInDown 0.8s 0.3s ease both;
  -webkit-animation: fadeInDown 0.8s 0.3s ease both;
  animation: fadeInDown 0.8s 0.3s ease both;
}

.page.active .contract-bar .item:nth-child(1),
.page.active .partner li:nth-child(3) {
  -moz-animation: fadeInDown 0.8s 0.2s ease both;
  -webkit-animation: fadeInDown 0.8s 0.2s ease both;
  animation: fadeInDown 0.8s 0.2s ease both;
}

.page.active .partner li:nth-child(2) {
  -moz-animation: fadeInDown 0.8s 0.1s ease both;
  -webkit-animation: fadeInDown 0.8s 0.1s ease both;
  animation: fadeInDown 0.8s 0.1s ease both;
}

.page.active .partner li:nth-child(1) {
  -moz-animation: fadeInDown 1s 0s ease both;
  -webkit-animation: fadeInDown 1s 0s ease both;
  animation: fadeInDown 1s 0s ease both;
}

/*.page.active .teamwork li:nth-child(1) {
    -moz-animation: floatLeft ease-in-out 1.5s 0.4s infinite;
    -webkit-animation: floatLeft ease-in-out 1.5s 0.4s infinite;
    animation: floatLeft ease-in-out 1.5s 0.4s infinite;
}
.page.active .teamwork li:nth-child(2) {
    -moz-animation: floatLeft ease-in-out 1.5s 0.2s infinite;
    -webkit-animation: floatLeft ease-in-out 1.5s 0.2s infinite;
    animation: floatLeft ease-in-out 1.5s 0.2s infinite;
}
.page.active .teamwork li:nth-child(3) {
    -moz-animation: floatLeft ease-in-out 1.5s 0.3s infinite;
    -webkit-animation: floatLeft ease-in-out 1.5s 0.3s infinite;
    animation: floatLeft ease-in-out 1.5s 0.3s infinite;
}
.page.active .teamwork li:nth-child(4) {
    -moz-animation: floatLeft ease-in-out 1.5s 0.4s infinite;
    -webkit-animation: floatLeft ease-in-out 1.5s 0.4s infinite;
    animation: floatLeft ease-in-out 1.5s 0.4s infinite;
}
.page.active .teamwork li:hover {
    -moz-animation: floatLeft ease-in-out 0s 0s infinite;
    -webkit-animation: floatLeft ease-in-out 0s 0s infinite;
    animation: floatLeft ease-in-out 0s 0s infinite;
}*/

.pages .page.h835,
.pages .page.h735 {
  overflow: hidden;
}

.pages .page.h835 .page-inner,
.pages .page.h735 .page-inner {
  top: 0px;
  margin-top: 100px;
  /* overflow: hidden; */
}

/*# sourceMappingURL=style.css.map */

/*轮播*/
.sp-bottom-thumbnails.sp-has-pointer {
  position: absolute;
  bottom: 30%;
  left: 50%;
  margin-left: -400px;
  max-height: 120px;
}

.page1 .view img {
  margin-top: 0 !important;
}

#videoBox img {
  width: 100%;
  height: 100%;
}

#videoBox video {
  object-fit: fill;
  background-size: contain;
  width: 100%;
  height: 100%;
  /* margin-top: -60px; */
}

.sounds {
  position: absolute;
  right: 100px;
  top: 100px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 3;
  padding: 8px;
}

.sp-thumbnail {
  top: 0 !important;
}

.sounds button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.sp-thumbnail-image-container {
  position: relative;
}

.overlay,
.sp-thumbnail-image-container:after,
.page1 .sp-thumbnails-container .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.page1 .sp-thumbnails-container:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}

.sp-thumbnail-image-container p {
  position: absolute;
  bottom: 10px;
  left: 35px;
  color: #fff;
  z-index: 2;
  font-size: 15px;
}

.sounds .voice-off {
  background: url("../images/voice_off.svg") no-repeat center;
}

.sounds .voice-on {
  background: url("../fonts/voice_on.svg") no-repeat center;
}

#videoBox,
.sp-grab,
.sp-mask,
.sp-slide,
.sp-swiping,
.sp-image-container,
.sp-image {
  height: 100vh !important;
}

.sp-thumbnails {
  height: 130px !important;
  transform: none !important;
}

.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -25px;
  z-index: 10;
}

.spinner {
  margin: 0 auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: #fff;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.page1 .sp-thumbnails-container {
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  margin: 0 auto !important;
  left: auto !important;
}

.sp-grab {
  cursor: pointer;
}

.sp-selected-thumbnail .ico-play-preview,
.page1 .sp-thumbnails-container .swiper-slide-active:after,
.page1 .sp-thumbnails-container .swiper-slide-active i {
  display: none !important;
}

.sp-selected-thumbnail .sp-thumbnail-image-container:after {
  height: 40px;
  bottom: 0;
  top: auto;
  border-radius: 0;
}

.page1 .sp-thumbnails-container .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.sp-thumbnail-container {
  margin: 0 10px !important;
}

.sp-thumbnails-container img {
  border-radius: 15px;
}

.sp-thumbnails-container .sp-selected-thumbnail {
  border: 2px solid #8f9fb2;
  border-radius: 15px;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before,
.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  display: none;
}

.sp-thumbnails-container .ico-play-preview {
  background: url("../fonts/video_play_btn.svg") no-repeat center;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 40%;
  left: 50%;
  margin: -20px 0 0 -20px;
  z-index: 2;
}

.titlebox {
  text-align: center;
}

.w55 {
  width: 55%;
}

.w40 {
  width: 40%;
}

.title {
  color: #5A6484;
  letter-spacing: 0;
  font-weight: 500;
  font-family: Microsoft Yahei;
  font-size: 60px;
  margin-top: 245px;
  margin-bottom: 10px;
}

.subtitle {
  font-family: Microsoft Yahei;
  font-size: 16px;
  color: #575757;
  width: 400px;
  margin-top: 40px;
  letter-spacing: 0;
}

.title_top {
  color: #8292a5;
  font-size: 20px;
  margin: 10px 0 0 0;
}

.teamwork {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.teamwork li {
  overflow: hidden;
  width: 40%;
  position: relative;
  border-radius: 15px;
  margin: 0 15px 25px 15px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.teamwork li img {
  width: 100%;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
}

.teamwork li:hover>img {
  /*transform: scale(1.1);*/
}

.teamwork li p {
  font-size: 16px;
  height: 45px;
  line-height: 45px;
  /* text-indent: 20px; */
  text-align: center;
}

.rightFloat,
.leftFloat {
  position: absolute;
  width: 22%;
}

.leftFloat {
  bottom: 9%;
  left: -13%;
  width: 10%;
}

.rightFloat {
  top: 17%;
  right: -19%;
  width: 9%;
}

.page4 .rightFloat,
.page4 .leftFloat {
  width: 21% !important;
}

.footer {
  height: 260px;
  background: #353f4b;
  overflow: hidden;
  position: relative;
}

.footer .title1 {
  font-family: Microsoft Yahei;
  font-size: 14px;
  color: #7c8797;
  letter-spacing: 0;
  text-align: center;
  margin-top: 30px;
}

.footer .title2 {
  font-family: Microsoft Yahei;
  font-size: 12px;
  color: #7c8797;
  text-align: center;
  margin: 20px 0;
}

.footer .footer_logo {
  height: 80px;
  position: relative;
  width: 980px;
  display: flex;
  margin: 30px auto 0;
  justify-content: space-between;
}

.footer .footer_logo li {
  display: block;
  /*position: absolute;*/
  text-align: center;
  height: 80px;
}

.footer .footer_logo li p {
  color: #7c8797;
  margin: 0;
}

.footer .footer_logo li p:first-child {
  height: 50px;
}

.footer .footer_logo li img {
  height: 100%;
}

.footer .footer_logo li:hover p {
  color: #fff;
}

.footer .footer_logo .logo1 {
  top: 25px;
  left: 31px;
}

.footer .footer_logo .logo2 {
  top: 22px;
  left: 230px;
}

.footer .footer_logo .logo3 {
  top: 17px;
  left: 488px;
}

.footer .footer_logo .logo4 {
  top: 19px;
  left: 722px;
}

.footer .footer_logo .logoImg {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

.footer .footer_logo .logo2Img {
  left: 0;
  top: 1px;
}

.footer .footer_logo .logo3Img {
  left: 0;
  top: -1px;
}

.footer .footer_logo .logo4Img {
  left: 0;
  top: 0;
}

.footer .logo1:hover .logo1Img,
.footer .logo2:hover .logo2Img,
.footer .logo3:hover .logo3Img,
.footer .logo4:hover .logo4Img {
  display: block;
}

.contract-bar {
  background-color: #8292a5;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  -moz-user-select: none;
  /*火狐*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  -ms-user-select: none;
  /*IE10*/
  -khtml-user-select: none;
  /*早期浏览器*/
  user-select: none;
}

.contract-bar .line {
  border-right: 1px solid #ccc;
  margin: 0 15px;
}

.contract-bar label {
  font-size: 22px;
}

.contract-bar .main {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}

.contract-bar .item {
  margin-right: 3%;
}

.contract-bar a {
  color: #fff;
  font-size: 16px;
  margin: 0 5px;
  display: inline-block;
}

.contract-bar a:hover {
  color: #ffe20f;
}

.contract-bar .item i {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.page2 .contract-bar .item:nth-child(2),
.page3 .contract-bar .item:nth-child(2),
.page4 .contract-bar .item:nth-child(2) {
  margin-right: 0;
}

.icon-tg {
  background: url("../fonts/tg.svg") no-repeat;
}

.icon-qq {
  background: url("../fonts/qq.svg") no-repeat;
}

.icon-email {
  background: url("../images/email.png") no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}

.icon-phone {
  background: url("../images/phone.svg") no-repeat;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  /* background: url("../fonts/arrow_l_gray.svg") no-repeat !important; */
  background: url("../image/to-left.png") no-repeat !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  /* background: url("../fonts/arrow_r_gray.svg") no-repeat !important; */
  background: url("../image/to-right.png") no-repeat !important;
}

.swiper-button-prev:hover,
.swiper-container-rtl .swiper-button-next:hover {
  background: url("../image/to-left.png") no-repeat !important;
}

.swiper-button-next:hover,
.swiper-container-rtl .swiper-button-prev:hover {
  background: url("../image/to-right.png") no-repeat !important;
}

/*.swiper-button-prev.swiper-button-disabled {
    background: url('../fonts/arrow_l_gray.svg') no-repeat!important;  
}
.swiper-button-next.swiper-button-disabled{
    background: url('../fonts/arrow_r_gray.svg') no-repeat!important;  
}*/

.page5 .joinus {
  display: flex;
}

.page5 .joinus .swiper-container {
  width: 700px;
  height: 635px;
  background-color: #fff;
  box-shadow: 4px 6px 11px 0px rgba(237, 220, 209, 0.22);
}

.page5 .joinus .rightBox {
  /* width: 435px;
  box-shadow: 0 0 20px #e8e4e4;
  border-radius: 15px;
  transform: translateX(-8px);
  /* padding: 20px 30px; */
  /* background: #fff; */
}

.rightBox h5 {
  padding-top: 10px;
  line-height: 1.2;
  font-weight: bold;
  color: #000000;
  font-size: 24px;
  text-align: center;
  margin: 10px 0;
}

.rightBox .detail {
  padding: 10px 24px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rightBox label {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #8292a5;
  margin-bottom: 2px;
}

.rightBox label:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F9AB92;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
}

.rightBox li {
  margin-bottom: 20px;
}

.rightBox li:last-child {
  margin-bottom: 0;
}

.rightBox li span {
  color: #df7019;
}

.rightBox .detail p {
  padding-left: 13px;
}

.rightBox .other-box {
  padding: 10px 26px;
}

.rightBox .other-box h3 {
  margin-bottom: 20px;
  width: 80px;
  height: 33px;
  line-height: 33px;
  color: #ffffff;
  font-size: 14px;
  border-radius: 12px;
  background-color: #8292a5;
  text-align: center;
}

.rightBox .other-box p {
  color: #434343;
  font-size: 14px;
}

.joinus .swiper-container img {
  width: 100%;
  height: 355px;
}

.joinus .swiper-slide .info {
  padding: 10px 10%;
  text-align: center;
  min-height: 110px;
  background: #fff;
  /* box-shadow: 0 0 20px #e8e4e4; */
}

.joinus .swiper-slide .info h6 {
  font-weight: bold;
  font-size: 20px;
}

.swiper-pagination-bullet-active {
  background: #8292a5 !important;
}

.partner {
  margin: 30px 0 50px 0;
  display: flex;
  justify-content: space-around;
}

.page4 .partner {
  margin: 30px 0 20px 0;
}

.partner li {
  text-align: center;
}

.partner li p {
  margin-top: 2px;
}

.partner li img {
  width: 50%;
}

.overlay-video {
  z-index: 1;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  width: 100%;
  height: 100%;
}

.header .link.null {
  width: 0px;
  margin-left: 0px !important;
}