/*banner图及动画*/
.in-banner {
    /*background: #0066d8;*/
    background: url(../images/zzbg.png) center 0 no-repeat !important;
    height: 114px;
    position: relative;
    overflow: hidden;
}

.H25 {
    height: 25px;
}

.bg {
    background: #f7f7f7;
    padding-top: 25px;
    height: 100%;
    overflow: hidden;
}


/*星星闪烁动画*/

@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-webkit-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-moz-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-ms-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-webkit-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-moz-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-ms-keyframes move-clouds-back {
    from {
        background-position: 0;
    }

    to {
        background-position: 10000px 0;
    }
}

.stars,
.twinkling,
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.stars {
    /* background:url(../images/stars.png) repeat top center; */
    z-index: 0;
}

.twinkling {
    background: transparent url(../images/twinkling.png) repeat top center;
    /* */
    z-index: 1;

    -moz-animation: move-twink-back 200s linear infinite;
    -ms-animation: move-twink-back 200s linear infinite;
    -o-animation: move-twink-back 200s linear infinite;
    -webkit-animation: move-twink-back 200s linear infinite;
    animation: move-twink-back 200s linear infinite;
}

.clouds {
    background: transparent url(../images/clouds4.png) repeat top center;
    z-index: 3;
    -moz-animation: move-clouds-back 200s linear infinite;
    -ms-animation: move-clouds-back 200s linear infinite;
    -o-animation: move-clouds-back 200s linear infinite;
    -webkit-animation: move-clouds-back 200s linear infinite;
    animation: move-clouds-back 200s linear infinite;
    display: none;
}

.earth {
    position: absolute;
    width: 180px;
    margin-left: -120px;
    top: 20px;
    left: 50%;
    z-index: 88;
    display: none;
}

.earth2 {
    position: absolute;
    left: 64%;
    z-index: 198;
    top: 48px;
    display: none;
}

.earth {
    -webkit-animation: ball 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate;
    animation: ball 1000ms cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate;
    height: 50px;
    width: 50px;
}

.earth2 {
    -webkit-animation: ball 1500ms cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate;
    animation: ball 1500ms cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate;
    height: 50px;
    width: 50px;
    ananimation-delay: 300ms;
    -webkit-ananimation-delay: 300ms;
}


@-webkit-keyframes ball {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes ball {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.timgs {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 188;
    text-align: center;
    line-height: 134px;
}

.timgs img {
    -webkit-animation: tis 5500ms linear infinite;
    animation: tis 5500ms linear infinite;
}

.timgs2 {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 188;
    text-align: center;
    line-height: 134px;
}

.timgs2 img {
    -webkit-animation: tis2 5500ms linear infinite;
    animation: tis2 5500ms linear infinite;
}



@keyframes tis {
    0% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

    20%,
    50% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }

    80%,
    100% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

}

@-webkit-keyframes tis {
    0% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

    20%,
    50% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }

    80%,
    100% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

}

@keyframes tis2 {
    0%,
    50%,
    80% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

    80%,
    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }
}

@-webkit-keyframes tis2 {
    0%,
    50%,
    80% {
        transform: scale(0, 0);
        -webkit-transform: scale(0, 0);
        opacity: 0;
    }

    80%,
    100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        opacity: 1;
    }
}
