  @charset "gb2312";


@keyframes slide01 {
  0% {
    height: 0;
  }
  100% {
    height: 6000px;
  }
}

@-webkit-keyframes slide01 {
  0% {
    height: 0;
  }
  100% {
    height: 6000px;
  }
}

@keyframes slide02 {
  0% {
    height: 0;
    opacity: 0.5
  }
  100% {
    height: 6000px;
    opacity: 0
  }
}

@-webkit-keyframes slide02 {
  0% {
    height: 0;
  }
  100% {
    height: 6000px;
  }
}

/*¿ª³¡·½¿é*/

.top-header-slide01.active {
    -webkit-animation: slide01 1s ease;
    animation: slide01 1s ease;



    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
  }
  .top-header-slide02.active {
    -webkit-animation: slide02 1s ease 0.5s;
    animation: slide02 1s ease 0.5s;

    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
  }


.top-header {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: hidden;
  }
  .top-header-bg {
    width: 100%;
    height: 100%;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .top-header-logo {
    width: 400px;
    height: 272px;
    position: absolute;
    z-index: 1003;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    transition: all 300ms ease;
  }
  .top-header-slide01 {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    background: #11345b;
    z-index: 1003;
    -webkit-transform: rotate(-45deg) scaleX(6);
        -ms-transform: rotate(-45deg) scaleX(6);
            transform: rotate(-45deg) scaleX(6);
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .top-header-slide02 {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    background: #38B0C8;
    z-index: 1003;
    -webkit-transform: rotate(45deg) scaleX(6);
        -ms-transform: rotate(45deg) scaleX(6);
            transform: rotate(45deg) scaleX(6);
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }



  .player-scroll {
    z-index: 1100;
    position: fixed;
    bottom: 115px;
    left: 50%;
    margin-left: -25px;
    cursor: pointer;
  }
  .player-scroll img {
    width: 50px;
  }
  .player-scroll .dot {
    position: fixed;
    bottom: 140px;
    left: 50%;
    margin-left: -3px;
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -webkit-animation-name: playerScroll;
    animation-name: playerScroll;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: liner;
    animation-timing-function: liner;
    -webkit-animation-delay: 1;
    animation-delay: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
  }
  


/*logo*/
.logo{position: absolute; top:10px; color: red;z-index: 999999}
/*loading*/
.preloader{
    background: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999999999;
}
.preloader .frame{
    background:#000 url(imagesloading.png) no-repeat center 0;
    font: bold 18px "Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
    padding-top: 158px;
    position: absolute;
    text-align: center;
    width: 100%;
}
.preloader .frame span{color: #fff;}
.preloader .frame sub{
    color: #fff;
    bottom: 0;
    font-size: 9px;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

