html,body {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
    transform-origin: 0 0;
}

.wrap {
    position: relative;
    z-index: 6;
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

/* 第0部分 */
.part0 {}
.banner img{
    width: 100%;
    height: 100%;
}
.banner-layer {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: matrix(0.6, 0, 0, 0.6, 0, 0);
    transition: 0.6s 0.6s;
}
.banner-pagination {
    left: 50%;
    bottom: 20px;
    transform: translate3d(-50%, 0, 0);
}
.banner-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    margin: 0 2px;
    background: #fff;
    border-radius: 0;
    opacity: 0.8;
}
.banner-pagination .swiper-pagination-bullet-active {
    background: #b92228;
    opacity: 1;
}
/* 动画 */
.banner .swiper-slide.swiper-slide-active .banner-layer {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
}


/* 第1部分 */
.part1{
    background: url('../images/part1_bg.jpg') no-repeat center center/cover;
}
.part1 .container{
    position: relative;
    z-index: 10;
}
.part1-left{
    width: 900px;
    padding: 0 240px 50px 80px;
    background: rgba(255, 255, 255, 0.64);
    opacity: 0;
    transform: translate3d(0, -100%, 0);
}
.part1-title{
    padding: 90px 0 20px;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part1-img{
    padding: 0 0 20px;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part1-content{
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part1-content p{
    font: 400 16px/30px '微软雅黑';
    color: #333;
    text-align: justify;
}
.part1-more{
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part1-more a{
    position: relative;
    z-index: 10;
    display: block;
    width: 150px;
    overflow: hidden;
    margin-top: 30px;
    font: 400 16px/42px '微软雅黑';
    color: #333;
    text-align: center;
    border: 2px solid #000000;
    border-radius: 30px; 
}
.part1-more a::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;
    width: 160px;
    height: 36px;
    border-radius: 50%;
    background: #b92228;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 3, 1);
    transform: scale3d(1, 3, 1);
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}
.part1-more a:hover{
    color: #fff;
    border-color: #b92228;
}
.part1-more a:hover::after {
    -webkit-transform: scale3d(4, 6, 1);
    transform: scale3d(4, 6, 1);
}

.part1-right{
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    height: 370px;
}
.part1-right-img1{
    position: absolute;
    z-index: 10;
    right: 80px;
    bottom: 50px;
    padding: 2px;
    background: #fff;
    opacity: 0;
    transform: translate3d(-50%, -50%, 0);
    
}
.part1-right-img1 img{
    padding: 3px;
    background: #fff;
    border: 1px solid #dcdcdc;
}
.part1-right-img2{
    position: absolute;
    z-index: 9;
    right: 100px;
    bottom: 120px;
    padding: 2px;
    background: #fff;
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
}
.part1-right-img2 img{
    padding: 3px;
    background: #fff;
    border: 1px solid #dcdcdc;
}
.part1-right-font{
    position: absolute;
    z-index: 11;
    right: 0;
    top: 0;
    opacity: 0;
    transform: translate3d(50%, 0, 0);
}
.part1-bottom{
    position: absolute;
    left: 0;
    bottom: 42px;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
/* 动画 */
.part1.swiper-slide-active .part1-left{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s 0.9s;
}
.part1.swiper-slide-active .part1-title{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 2s;
}
.part1.swiper-slide-active .part1-img{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 2.4s;
}
.part1.swiper-slide-active .part1-content{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 2.8s;
}
.part1.swiper-slide-active .part1-more{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 3.2s;
}
.part1.swiper-slide-active .part1-right-img1{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.4s 3.8s;
}
.part1.swiper-slide-active .part1-right-img2{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 3.4s;
}
.part1.swiper-slide-active .part1-right-font{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 4s;
}
.part1.swiper-slide-active .part1-bottom{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.6s;
}



/* 第2部分 */
.part2{
    background: url('../images/part2_bg.jpg') no-repeat center center/cover;
}
.part2 .wrap{
    display: flex;
    align-items: center;
}
.part2-wrap{
    width: 1200px;
    margin: 0 auto;
}
.part2-title{
    text-align: center;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part2-content{
    display: flex;
    margin-top: 30px;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 15px;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part2-left{
    position: relative;
    z-index: 10;
    width: 274px;
    padding-left: 120px;
}
.part2-left ul{
    width: 120px;
    padding: 25px 10px;
    background: rgba(182, 13, 16, 0.74);
    border-radius: 80px;
}
.part2-left ul li{
    width: 100px;
    height: auto;
    margin: 0 auto;
    padding: 25px 5px;
    border-radius: 0;
    background: none;
    opacity: 1;
}
.part2-left ul li span{
    display: block;
    font: 400 16px/30px '微软雅黑';
    color: #fff;
    text-align: center;
    cursor: pointer;
    
}
.part2-left ul li.swiper-pagination-bullet-active span{
    background: #d4a440;
    border-radius: 10px;
}

.part2-center{
    position: relative;
    z-index: 1;
    width: 560px;
    padding: 0 90px;
}
.part2-arrow-left{
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 74px;
    height: 32px;
    padding-top: 10px;
    padding-left: 4px;
    cursor: pointer;
    background: url('../images/arrow_left.png') no-repeat 0 0,
                url('../images/arrowa_left.png') no-repeat 74px 0;
    transition: 0.6s background;            
    
}
.part2-arrow-left:hover{
    color: #b60d10;
    background: url('../images/arrow_left.png') no-repeat -74px 0,
                url('../images/arrowa_left.png') no-repeat 0 0;
}
.part2-arrow-right{
    position: absolute;
    right: 0;
    top: 50%;
    width: 66px;
    height: 32px;
    padding-top: 10px;
    padding-right: 8px;
    cursor: pointer;
    background: url('../images/arrow_right.png') no-repeat right 0,
                url('../images/arrowa_right.png') no-repeat -74px 0;
    transition: 0.6s background;            
}
.part2-arrow-right:hover{
    color: #b60d10;
    background: url('../images/arrow_right.png') no-repeat 74px 0,
                url('../images/arrowa_right.png') no-repeat right 0;
}

.part2-center .swiper-slide img{
    width: 100%;
    border: 3px solid #b60d10;
}
.part2-right{
    position: relative;
    width: 200px;
    height: 356px;
    margin-left: 45px;
    padding: 45px 0 0 ;
    color: #fff;
    text-align: center;
    background: url('../images/part2_right.png') no-repeat 0 0;
}
.part2-line{
    display: none;
}
.part2-right-title{
    font: bold 24px/36px '微软雅黑';
}
.part2-right-detail{
    font: 400 16px/30px '微软雅黑';
}
.part2-right-more{
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
}
.part2-right-more a{
    position: relative;
    z-index: 10;
    display: block;
    width: 150px;
    overflow: hidden;
    margin: 0 auto;
    font: 400 16px/42px '微软雅黑';
    color: #fff;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 30px;
}
.part2-right-more a::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;
    width: 160px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 3, 1);
    transform: scale3d(1, 3, 1);
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}
.part2-right-more a:hover{
    color: #b92228;
}
.part2-right-more a:hover::after {
    -webkit-transform: scale3d(4, 6, 1);
    transform: scale3d(4, 6, 1);
}


/* 动画 */
.part2.swiper-slide-active .part2-title{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.6s;
}
.part2.swiper-slide-active .part2-content{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 1.2s;
}



/* 第3部分 */
.part3{
    background: url('../images/part3_bg.jpg') no-repeat center center/cover;
}
.part3 .wrap{
    display: flex;
    align-items: center;
}
.part3-wrap{
    display: flex;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto;
}
.part3-left{
    position: relative;
    z-index: 10;
    width: 412px;
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
}
.part3-title{
    padding-bottom: 150px;
    font: 400 48px/56px '微软雅黑';
}
.part3-en{
    position: absolute;
    left: 0;
    top: 64px;
}
.part3-detail{
    width: 280px;
    text-align: justify;
}
.part3-detail p{
    font: 400 14px/24px '微软雅黑';
    color: #000000;
}

.part3-right{
    position: relative;
    z-index: 1;
    width: 750px;
    opacity: 0;
    transform: translate3d(50%, 0, 0);
}
.part3-right ul li{
    display: none;
}
.part3-right ul li i{
    display: block;
    border: 2px solid #fff;
}
.part3-right ul li i img{
    width: 100%;
}

.part3-bottom{
    position: relative;
    width: 100%;
    padding-top: 90px;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part3-bottom ul{
    display: flex;
}
.part3-bottom ul li{
    padding: 0 20px 0 0;
}
.part3-bottom ul li a{
    display: block;
    font: 400 24px/30px '微软雅黑';
    color: #000000;
    border-bottom: 1px solid transparent;
}
.part3-bottom ul li a:hover{
    color: #b60d10;
    border-bottom-color: #b60d10;
}
.part3-bottom ul li.active a{
    color: #b60d10;
    border-bottom-color: #b60d10;
}
.part3-more{
    position: absolute;
    right: 0;
    bottom: 0;
}
.part3-more a{
    position: relative;
    z-index: 10;
    display: block;
    width: 150px;
    overflow: hidden;
    margin: 0 auto;
    font: 400 16px/42px '微软雅黑';
    color: #333;
    text-align: center;
    border: 2px solid #333;
    border-radius: 30px;
}
.part3-more a::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;
    width: 160px;
    height: 36px;
    border-radius: 50%;
    background: #b92228;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 3, 1);
    transform: scale3d(1, 3, 1);
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}
.part3-more a:hover{
    color: #fff;
    border-color: #b92228;
}
.part3-more a:hover::after {
    -webkit-transform: scale3d(4, 6, 1);
    transform: scale3d(4, 6, 1);
}

/* 动画 */
.part3.swiper-slide-active .part3-left{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.7s;
}
.part3.swiper-slide-active .part3-right{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.7s;
}
.part3.swiper-slide-active .part3-bottom{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 1.2s;
}


/* 第4部分 */
.part4{
    background: url('../images/part4_bg.jpg') no-repeat center center/cover;
}
.part4 .wrap{
    display: flex;
    align-items: center;
}
.part4-wrap{
    position: relative;
    width: 100%;
    background: url('../images/jxmy.png') no-repeat 10px 20px;
}
.part4-top{
    position: relative;
}
.part4-title{
    padding: 20px 0;
    font: 400 48px/54px '微软雅黑';
    color: #b60d10;
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
}
.part4-more{
    position: absolute;
    right: 0;
    top: 30px;
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}
.part4-more a{
    position: relative;
    z-index: 10;
    display: block;
    width: 150px;
    overflow: hidden;
    margin: 0 auto;
    font: 400 16px/42px '微软雅黑';
    color: #333;
    text-align: center;
    border: 2px solid #333;
    border-radius: 30px;
}
.part4-more a::after {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 100%;
    width: 160px;
    height: 36px;
    border-radius: 50%;
    background: #b92228;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 3, 1);
    transform: scale3d(1, 3, 1);
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
}
.part4-more a:hover{
    color: #fff;
    border-color: #b92228;
}
.part4-more a:hover::after {
    -webkit-transform: scale3d(4, 6, 1);
    transform: scale3d(4, 6, 1);
}

.part4-content{}
.part4-content ul{
    display: flex;
    justify-content: space-between;
}
.part4-content ul li{
    width: 32%;
    opacity: 0;
    transform: translate3d(0, 50%, 0);
}
.part4-content ul li a{
    display: block;
    background: #fff;
    transition: 0.6s;
}
.new-li-img{
    overflow: hidden;
    border-top: 8px solid #000;
}
.new-li-img img{
    width: 100%;
}
.new-li-center{
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}
.new-li-time{
    width: 80px;
    text-align: center;
}
.new-li-time .days{
    display: block;
    font: bold 36px/42px '微软雅黑';
    color: #000;
}
.new-li-time .years{
    display: block;
    font: 400 14px/24px '微软雅黑';
    color: #666666;
}
.new-li-font{
    width: 330px;
    padding: 0 10px;
}
.new-li-title{
    font: 400 18px/30px '微软雅黑';
    color: #333;
}
.new-li-p{
    height: 120px;
    overflow: hidden;
    font: 400 14px/24px '微软雅黑';
    color: #000;
}
.new-li-bottom{
    padding: 0 25px;
    background: #000;
}
.new-li-bottom span{
    display: block;
    font: 400 12px/56px '微软雅黑';
    color: #fff;
    background: url('../images/new_arrow.png') no-repeat right center;
}
.part4-content ul li a:hover{
    transform: translate3d(0, 5px, 0);
}
.part4-content ul li a:hover .new-li-img{
    border-color: #b60d10;
}
.part4-content ul li a:hover .new-li-bottom{
    background: #b60d10;
}



/* 动画 */
.part4.swiper-slide-active .part4-title{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.6s;
}
.part4.swiper-slide-active .part4-more{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.6s;
}
.part4.swiper-slide-active .part4-content ul li{
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.part4.swiper-slide-active .part4-content ul li:nth-child(1){
    transition: 0.6s 1s;
}
.part4.swiper-slide-active .part4-content ul li:nth-child(2){
    transition: 0.6s 1.2s;
}    
.part4.swiper-slide-active .part4-content ul li:nth-child(3){
    transition: 0.6s 1.4s;
}


/* 第5部分 */
.part5{
    background: url('../images/part5_bg.jpg') no-repeat center center/cover;
}
.part5 .wrap{
    display: flex;
    align-items: center;
}
.part5-wrap{
    width: 100%;
    flex-wrap: wrap;
}
.part5-title{
    width: 100%;
    padding: 50px 0;
    text-align: center;
    opacity: 0;
    transform: translate3d(0, -50%, 0);
}
.part5-wrap .container{
    display: flex;
    justify-content: center;
}
.part5-left{
    width: 500px;
    border: 2px solid #b60d10;
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
}
.part5-left img{
    width: 100%;
}
.part5-right{
    width: 440px;
    padding: 35px;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translate3d(50%, 0, 0);
}
.part5-right p{
    font: 400 18px/30px '微软雅黑';
    color: #fff;
}
.part5-foot{
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
}
.part5-foot p{
    padding: 0 5px;
    font: 400 14px/24px '微软雅黑';
    color: #333;
}
/* 动画 */
.part5.swiper-slide-active .part5-title{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 0.6s;
}
.part5.swiper-slide-active .part5-left{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 1.2s;
}
.part5.swiper-slide-active .part5-right{
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 0.6s 1.2s;
}


@media (max-width: 1480px) {
    .wrap {
        padding-top: 80px;
    }
    .part1-left{
        width: 900px;
        padding: 0 160px 20px 80px;
    }
    .part1-title{
        padding: 40px 0 20px;
    }
    .part1-more a{
        width: 135px;
        margin-top: 20px;
        line-height: 36px;
    }
    .part1-bottom img{
        width: 540px;
    }
    .part2-title img{
        width: 600px;
    }
    .part2-wrap{
        width: 1080px;
    }
    .part2-content{
        padding: 30px 0;
    }
    .part2-left{
        width: 204px;
        padding-left: 50px;
    }
    .part2-right{
        margin-left: 45px;
    }
    .part2-right-more a{
        width: 135px;
        line-height: 36px;
    }
    .part3-wrap{
        width: 1080px;
    }
    .part3-title{
        padding-top: 15px;
        font: 400 36px/48px '微软雅黑';
    }
    .part3-left{
        width: 382px;
    }
    .part3-right{
        width: 690px;
    }
    .part3-bottom{
        padding-top: 60px;
    }
    .part3-more a{
        width: 135px;
        font: 400 16px/36px '微软雅黑';
    }

    .part4 .container{
        width: 1080px;
    }
    .part3-title{
        font: 400 36px/48px '微软雅黑';
    }
    .new-li-center{
        padding: 15px 0;
    }
    .new-li-p{
        height: 96px;
    }
    .part4-more a{
        width: 135px;
        font: 400 16px/36px '微软雅黑';
    }
}


@media (max-width: 1380px) {
    .part1 .container{
        width: 1140px;
    }
    .part1-left{
        width: 780px;
        padding: 0 80px 10px 40px;
    }
    .part1-title{
        padding: 20px 0 10px;
    }
    .part1-more a{
        width: 120px;
        margin-top: 10px;
        line-height: 30px;
    }
    .part1-bottom{
        bottom: 10px;
    }
    .part1-bottom img{
        width: 480px;
    }
    .part2-title img{
        width: 540px;
    }
    .part2-wrap{
        width: 960px;
    }
    .part2-content{
        margin-top: 10px;
        padding: 20px 0;
    }
    .part2-left{
        width: 184px;
        padding-left: 30px;
    }
    .part2-center{
        width: 510px;
        padding:  0 90px;
    }
    .part2-center ul li i img{
        width: 100%;
    }
    .part2-right{
        margin-left: 35px;
    }
    .part2-right-more a{
        width: 135px;
        line-height: 36px;
    }
    .part3-wrap{
        width: 960px;
        justify-content: space-between;
    }
    .part3-left{
        width: 362px;
    }
    .part3-title{
        padding-top: 10px;
        padding-bottom: 90px;
        font: 400 30px/48px '微软雅黑';
    }
    .part3-right{
        width: 590px;
    }
    .part3-bottom{
        padding-top: 60px;
    }
    .part3-bottom ul li a{
        font: 400 18px/30px '微软雅黑';
    }
    .part3-more a{
        width: 120px;
        font: 400 16px/30px '微软雅黑';
    }

    .part4 .container{
        width: 960px;
    }
    .part4-title{
        padding: 15px 0;
        font: 400 30px/48px '微软雅黑';
    }
    .new-li-center{
        padding: 10px 0;
    }
    .new-li-p{
        height: 72px;
    }

    .part4-more a{
        width: 120px;
        font: 400 16px/30px '微软雅黑';
    }
    .part5{
        background-position: center 25%;
    }
    .part5-title{
        padding: 30px 0;
    }
    .part5-foot{
        bottom: 10px;
    }
}