﻿* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
body ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
body :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  opacity: 1;
  font-weight: 300;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
  font-weight: 300;
}
.wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  opacity: 0.5;
  background: url(../guideimages/icon.png) no-repeat;
  background-size: contain;
  bottom: -100px;
  -webkit-animation: square 30s infinite;
  animation: square 30s infinite;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}
.bg-bubbles li:nth-child(1) {
  left: 10%;
}
.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 17s;
  animation-duration: 17s;
}
.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 100px;
  height: 100px;
  -webkit-animation-duration: 22s;
  animation-duration: 22s;
}
.bg-bubbles li:nth-child(5) {
  left: 70%;
}
.bg-bubbles li:nth-child(6) {
  left: 80%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}
.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 60px;
  height: 60px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}
.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}
.bg-bubbles li:nth-child(10) {
  left: 90%;
  width: 160px;
  height: 160px;
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}
@-webkit-keyframes square {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-900px) rotate(600deg);
    transform: translateY(-900px) rotate(600deg);
  }
}
@keyframes square {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-900px) rotate(600deg);
    transform: translateY(-900px) rotate(600deg);
  }
}

#bgSnow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#imgSnow {
  opacity: 0.5;
}

.guide-content {
  position: absolute;
  width: 1000px;
  left: 50%;
  top: 380px;
  margin-left: -500px;
  z-index: 999;
}
.guide-content .enter-button {
  text-align: center;
  opacity: 0;
  animation: enterBtnAnima 1s 3.5s forwards;
}
@keyframes enterBtnAnima {
  0% {
    transform: translateY(200px);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.guide-content .enter-button a {
  display: inline-block;
  height: 85px;
  cursor: pointer;
  opacity: 0;
  margin: 0px -10px;
}
.guide-content .enter-button a img {
  transition: all linear 0.15s;
  opacity: 0.9;
}
.guide-content .enter-button a img:hover {
  opacity: 1;
}
.ind-footer {
  position: absolute;
  bottom: 20px;
  font-family: 'Microsoft YaHei';
  font-size: 13px;
  width: 100%;
}

.ind-footer p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-shadow: #101d2c 1px 0 0, #101d2c 0 1px 0, #101d2c -1px 0 0,
    #101d2c 0 -1px 0;
    line-height: 1.5;
}
.ind-footer span {
  margin: 0 5px;
}
.ind-toper {
  position: absolute;
  bottom: 0;
  left: 25px;
  top: 15px;
  font-family: 'Microsoft YaHei';
  font-size: 13px;
  color: #678ba6;
}
.wap-index-logo {
  width: 100%;
  height: 100%;
  background: url(../guideimages/wap-logo.png) center top no-repeat;
  background-size: 100% auto;
}
.index-code {
  top: 43%;
  position: absolute;
  width: 100%;
  text-align: center;
}
.index-code img {
  width: 105px;
  height: 105px;
}
.index-code p {
  padding-bottom: 5px;
  font-size: 15px;
}
.ind-footer {
  position: absolute;
  bottom: 20px;
  font-family: 'Microsoft YaHei';
  font-size: 13px;
  display: flex;
  width: 800px;
  left: 50%;
  margin-left: -400px;
  justify-content: space-between;
  align-items: center;
}
.ind-footer p {
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-shadow: #101d2c 1px 0 0, #101d2c 0 1px 0, #101d2c -1px 0 0,
    #101d2c 0 -1px 0;
}
.mobile-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../guideimages/wap-bag.jpg) center bottom no-repeat;
  background-size: cover;
  overflow: hidden;
}
#cnzz_stat_icon_1278980093 {
  display: none;
}

.logo {
  width: 400px;
  height: 320px;
  position: absolute;
  left: 10px;
  right: 0px;
  top: -300px;
  margin: auto;
  background: url(../guideimages/index-name.png) no-repeat;
  z-index: 99;
  opacity: 0;
  animation: logoImgAnima 1s 3.5s forwards;
}
@keyframes logoImgAnima {
  0% {
    top: 20px;
    opacity: 0;
  }
  100% {
    top: 120px;
    opacity: 1;
  }
}

/**CSS动画**/
.first_page_box,
.last_page_box {
  position: absolute;
  width: 100%;
  height: 100%;
}
.first_page_box > .img_box {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 0px;
  bottom: 260px;
  right: 0px;
  left: 0px;
  margin: auto;
  animation: imgScaleAnimation 1.5s 2s forwards;
  transform-origin: 50% bottom;
}
.first_page_box > .img_box > img {
  height: 100%;
  margin: auto;
}

@keyframes imgScaleAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0.06;
    top: -24%;
    transform: scale(4);
  }
}
.first_page_box > .svg_box {
  height: 100px;
  width: 160px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  margin: auto;
  transform: translateY(50%);
  transform: scale(1.2);
  animation: textAnimation 1.5s 0.8s forwards;
}
@keyframes textAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.last_page_box {
  display: block;
}
.foot_img {
  position: absolute;
  bottom: -4px;
  width: 100%;
  opacity: 0;
  animation: footImgAnima 1.5s 3.5s forwards;
}
.foot_img > img {
  width: 100%;
}
@keyframes footImgAnima {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer-pic-left {
  width: 110px;
  height: 55px;
}
.footer-pic-left img,
.footer-pic-right img {
  width: 100%;
  height: 100%;
}
.footer-pic-right {
  width: 80px;
  height: 80px;
}
.footer-beian img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}
.logo-top{
  position: absolute;
  left: 30px;
  top: 20px;
  width: 250px;
  height: 50px;
  background: url(../guideimages/namelogo.png) no-repeat;
  background-size: 100%
}
