﻿* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "microsoft yahei";
}

.swiper-container {
    width: 100%;
    height: 100%;
    background: url(../images/body_bg.jpg) no-repeat center;
    background-size: cover;
    max-width: 505.99px;
    margin: 0 auto;
}

.swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-pagination{
    display: none;
}

img {
    display: block;
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@-webkit-keyframes start {

    0%,
    30% {
        opacity: 0;
        -webkit-transform: translate(0, 10px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translate(0, -8px);
    }
}

@-moz-keyframes start {

    0%,
    30% {
        opacity: 0;
        -moz-transform: translate(0, 10px);
    }

    60% {
        opacity: 1;
        -moz-transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        -moz-transform: translate(0, -8px);
    }
}

@keyframes start {

    0%,
    30% {
        opacity: 0;
        transform: translate(0, 10px);
    }

    60% {
        opacity: 1;
        transform: translate(0, 0);
    }

    100% {
        opacity: 0;
        transform: translate(0, -8px);
    }
}

.ani {
    position: absolute;
}

.txt {
    position: absolute;
}

#array {
    position: absolute;
    z-index: 999;
    -webkit-animation: start 1.5s infinite ease-in-out;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.swiper-slide1{
    background: url(../images/slide1_bg.jpg) no-repeat center;
    background-size: cover;
}

.wave-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.wave-layer {
    position: absolute;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    background-position: center top;
    background-size: 100% auto;
}

.wave-layer-1 {
    background-image: url(../images/slide1_top_b.svg);
    animation: waveMove 20s linear infinite;
    z-index: 3;
}

.wave-layer-2 {
    background-image: url(../images/slide1_top_w.png);
    animation: waveMove 20s linear infinite reverse;
    z-index: 2;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (min-width: 0px) and (max-width: 1199.98px){
    .swiper-container{
        max-width: 750px;
    }
}