body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
}

#banner {
    width: 100%;
    height: 523px;
    overflow: hidden;
    position: relative;
	z-index:-1;
}

.swiper-container {
    width: 100%;
    height: 523px;
    position: absolute;
    /* left: -500px; */
    /* margin-left: 50%; */
}

.swiper-slide .detail {
    width: 60%;
    position: absolute;
    left: 50%;
    /* 定位父级的50% */
    top: 50%;
    transform: translate(-50%, -50%);
    /*自己的50% */
    color: #fff;
    opacity: 0;
    transition: opacity .5s .5s;
    text-align: center;
}

.detail_title {
    height: 120px;
    line-height: 120px;
    font-size: 46px;
    letter-spacing: 10px;
    font-weight: 400;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.swiper-slide-active .detail {
    opacity: 1;
}

.swiper-slide .detail h3 {
    width: 950px;
    margin: 15px auto 0;
}

.swiper-slide .detail p {
    width: 100%;
    line-height: 45px;
    font-size: 26px;
    letter-spacing: 3px;
}

.swiper-slide .detail p span {
    line-height: 45px;
    font-size: 26px;
    letter-spacing: 3px;
    display: block;
}


/**/

.effect1 img {
    transform: scale(1.25, 1.25) translate(10%, 10%);
    transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    /*tr     =    (sc-1)/2sc*100%              */
    /* --1.25       0.25/2.5*100%=10%          */
}

.leftUp img {
    -webkit-animation-name: leftUp;
    animation-name: leftUp;
}

@-webkit-keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

@keyframes leftUp {
    0% {
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
    }
}

.moveRight img {
    -webkit-animation-name: moveRight;
    animation-name: moveRight;
}

@-webkit-keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

@keyframes moveRight {
    0% {
        transform: scale(1.1, 1.1) translate(-4.545%, 0);
    }
    100% {
        transform: scale(1.1, 1.1) translate(4.545%, 0);
    }
}

.moveDown img {
    -webkit-animation-name: moveDown;
    animation-name: moveDown;
}

@-webkit-keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

@keyframes moveDown {
    0% {
        transform: scale(1.1, 1.1) translate(0, -4.545%);
    }
    100% {
        transform: scale(1.1, 1.1) translate(0, 4.545%);
    }
}

.centerBig img {
    -webkit-animation-name: centerBig;
    animation-name: centerBig;
}

@-webkit-keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

@keyframes centerBig {
    100% {
        transform: scale(1.1, 1.1);
    }
}

.rightDownBig img {
    -webkit-animation-name: rightDownBig;
    animation-name: rightDownBig;
}

@-webkit-keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

@keyframes rightDownBig {
    100% {
        transform: scale(1.1, 1.1) translate(4%, 4%);
    }
}

.swiper-slide img {
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 5s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;
}

.swiper-pagination {
    width: 200px;
    position: relative;
    bottom: -480px;
    right: -1000px;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: rgb(221, 218, 218);
    margin: 0 5px;
}


/* 移动端 */

@media screen and (max-width:480px) {
    #banner {
        width: 100%;
        height: 180px;
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
        background-color: #fff;
		z-index:1;
    }
    .swiper-container {
        width: 100%;
        height: 160px;
        position: absolute;
    }
    .swiper-slide .detail {
        /* height: 100px; */
        width: 90%;
        position: absolute;
        left: 50%;
        /* 定位父级的50% */
        top: 50%;
        transform: translate(-50%, -50%);
        /*自己的50% */
        color: #fff;
        opacity: 0;
        transition: opacity .3s .3s;
        text-align: center;
    }
    .detail_title {
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
        letter-spacing: 3px;
        font-weight: 400;
    }
    .swiper-slide-active .detail {
        opacity: 1;
    }
    .swiper-slide .detail h3 {
        width: 950px;
        margin: 15px auto 0;
    }
    .swiper-slide .detail p {
        margin: 5px auto 0;
        width: 90%;
        font-size: 14px;
        line-height: 24px;
    }
    .swiper-slide .detail p span {
        width: 100%;
        margin: 0 auto;
        line-height: 30px;
        font-size: 14px;
        letter-spacing: 3px;
        display: block;
    }
    /**/
    .effect1 img {
        transform: scale(1.25, 1.25) translate(10%, 10%);
        transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
        /*tr     =    (sc-1)/2sc*100%              */
        /* --1.25       0.25/2.5*100%=10%          */
    }
    .leftUp img {
        -webkit-animation-name: leftUp;
        animation-name: leftUp;
    }
    @-webkit-keyframes leftUp {
        0% {
            transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
        }
        100% {
            transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
        }
    }
    @keyframes leftUp {
        0% {
            transform: scale(1.1, 1.1) translate(4.545%, 4.545%);
        }
        100% {
            transform: scale(1.1, 1.1) translate(-4.545%, -4.545%);
        }
    }
    .moveRight img {
        -webkit-animation-name: moveRight;
        animation-name: moveRight;
    }
    @-webkit-keyframes moveRight {
        0% {
            transform: scale(1.1, 1.1) translate(-4.545%, 0);
        }
        100% {
            transform: scale(1.1, 1.1) translate(4.545%, 0);
        }
    }
    @keyframes moveRight {
        0% {
            transform: scale(1.1, 1.1) translate(-4.545%, 0);
        }
        100% {
            transform: scale(1.1, 1.1) translate(4.545%, 0);
        }
    }
    .moveDown img {
        -webkit-animation-name: moveDown;
        animation-name: moveDown;
    }
    @-webkit-keyframes moveDown {
        0% {
            transform: scale(1.1, 1.1) translate(0, -4.545%);
        }
        100% {
            transform: scale(1.1, 1.1) translate(0, 4.545%);
        }
    }
    @keyframes moveDown {
        0% {
            transform: scale(1.1, 1.1) translate(0, -4.545%);
        }
        100% {
            transform: scale(1.1, 1.1) translate(0, 4.545%);
        }
    }
    .centerBig img {
        -webkit-animation-name: centerBig;
        animation-name: centerBig;
    }
    @-webkit-keyframes centerBig {
        100% {
            transform: scale(1.1, 1.1);
        }
    }
    @keyframes centerBig {
        100% {
            transform: scale(1.1, 1.1);
        }
    }
    .rightDownBig img {
        -webkit-animation-name: rightDownBig;
        animation-name: rightDownBig;
    }
    @-webkit-keyframes rightDownBig {
        100% {
            transform: scale(1.1, 1.1) translate(4%, 4%);
        }
    }
    @keyframes rightDownBig {
        100% {
            transform: scale(1.1, 1.1) translate(4%, 4%);
        }
    }
    .swiper-slide img {
        width: 100%;
        height: 160px;
        animation-duration: 5s;
        animation-timing-function: linear;
        animation-fill-mode: forwards;
        -webkit-animation-duration: 5s;
        -webkit-animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
    }
    .swiper-pagination {
        width: 200px;
        position: relative;
        bottom: -480px;
        right: -180px;
    }
    .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        background: rgb(221, 218, 218);
        margin: 0 5px;
    }
}