@charset "utf-8";

.gotop {
    position: fixed;
    right: .3rem;
    bottom: 10%;
    width: .5rem;
    height: .5rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    animation: up 2s infinite linear;

}

.gotop img {
    height: .25rem;
}

@keyframes up {
    0% {
        transform: translatey(-5px);
    }

    50% {
        transform: translatey(0);
    }

    100% {
        transform: translatey(-5px);

    }
}

.rightNav ul {
    background: url(../images/rightbox-bg.png) no-repeat center center/100% 100%;
    border-radius: 15px;
    padding: .7rem .2rem;
    padding-top: .85rem;
    position: relative;
}



.rightNav {
    position: fixed;
    right: .15rem;
    top: 50%;
    z-index: 30;
    display: none;
    transform: translateY(-50%);
}

.rightNav ul li {
    position: relative;

    cursor: pointer;
    z-index: 3
}


.rightNav ul li:after {
    content: '';
    height: 1px;
    background: url(../images/rg-xx.png) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.rightNav ul li:last-child:after {
    display: none;
}

.rightNav ul li span {
    display: block;
    padding: .15rem 0;
    font-size: .18rem;
    line-height: .3rem;
    color: #fff;
}



.rightNav ul li:hover span {
    color: #cdb786;
}

.rightNav ul li.active span {
    color: #cdb786;
}

.rightNav ul li.active:after,
.rightNav ul li:hover:after {
    background: url(../images/rg-xx1.png) no-repeat center;
    background-size: 100% 100%;
}



.banner {
    position: relative;
}

.slide-banner .swiper-slide {
    overflow: hidden;
    position: relative;
}

.slide-banner .img-box {
    display: block;
    padding-top: 47.91%;
    position: relative;
    overflow: hidden;
    /*transform: scale(1.175);*/
    transition: 6s;
}

.slide-banner .img-box .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.slide-banner .swiper-slide-active .img-box {
    transform: scale(1);
}

.slide-banner .video video {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    position: relative;
}

.slide-banner .page {
    font-size: 0;
    left: auto;
    right: .35rem;
    bottom: .35rem;
    width: auto;
}

.slide-banner .page span {
    width: .08rem;
    height: .08rem;
    margin: 0 .13rem;
    background: rgba(255, 255, 255, .6);
    vertical-align: middle;
    opacity: 1;
}

.slide-banner .page span.active {
    position: relative;
    width: .22rem;
    height: .24rem;
    margin: 0 .3rem;
    border-radius: 0;
    background-color: transparent;
    background-image: url("../images/dots-1.png");
    background-size: .22rem auto;
    opacity: 1;
}

.slide-banner .page span.active::before {
    content: "";
    position: absolute;
    width: .3rem;
    height: 2px;
    background: rgba(255, 255, 255, .6);
    top: 50%;
    right: 120%;
}

.slide-banner .page span.active::after {
    content: "";
    position: absolute;
    width: .3rem;
    height: 2px;
    background: rgba(255, 255, 255, .6);
    top: 50%;
    left: 120%;
}

.s1-lj {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 83.3%;
    background: url(../images/s1-ljbg.png) no-repeat center center/100% 100%;
    z-index: 9;
}

.s1-lj ul {
    display: flex;
    flex-wrap: wrap;
}

.s1-lj ul li {
    position: relative;
    width: 16.666%;
    padding: .2rem 0;
}

.s1-lj ul li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, #07328e, #1456a7);
    opacity: 0;
    z-index: -1;
    transition: all .6s;
}

.s1-lj ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #cdb786;
    transition: all .6s;
}

.s1-lj ul li a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 1.2rem;
    justify-content: center;
    border-left: 1px solid #1456a7;
    z-index: 6;
}

.s1-lj ul li:first-child a {
    border-left: none;
}

.s1-lj ul li a .s1-icon {
    width: .22rem;
}

.s1-lj ul li a .s1-icon img {
    max-height: .3rem;
}

.s1-lj ul li a .s1-icon .s1_icoh {
    display: none;
}

.s1-lj ul li a .txt {
    min-width: 0;
    padding-left: .1rem;
}

.s1-lj ul li a .txt p {
    font-size: .16rem;
    color: #093a93;
    font-weight: bold;
}

@media (min-width: 1025px) {
    .s1-lj ul li:hover::after {
        opacity: 1;
        z-index: 2;
    }

    .s1-lj ul li:hover::before {
        width: 100%;
        z-index: 3;
    }

    .s1-lj ul li:hover a .s1-icon img.s1_icoh {
        display: block;
    }

    .s1-lj ul li:hover a .s1-icon img.s1_ico {
        display: none;
    }

    .s1-lj ul li:hover a .txt p {
        color: #fff;
    }

    .s1-lj ul li:hover a {
        border-left: 1px solid transparent;
    }

    .s1-lj ul li:hover+li a {
        border-left: 1px solid transparent;
    }
}

@media (max-width: 1024px) {
    .banner {
        padding-top: .75rem;
    }

    .gotop {
        display: none !important;
    }

    .s1-lj {
        position: relative;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slide-banner .page {
        bottom: .15rem;
        right: .15rem;
    }

    .s1-lj ul li {
        width: 33.33%;
        padding: 0;
        margin: .05rem 0;

    }

    .s1-lj ul li a {
        height: .6rem;
    }

    .s1-lj ul li:nth-child(3n-2) a {
        border-left: none;
    }
}

.title001 {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .4rem;
}

.title001 .tit {
    display: flex;
    align-items: flex-end;
}

.title001 .tit h4 {

    font-size: .14rem;
    line-height: 1;
    color: #222;
    font-family: 'Source_Han_Sans_SC_Light';
    text-transform: uppercase;
}

.title001 .tit h2 {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: .14rem;
    font-weight: initial;
}

.title001 .tit h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -.2rem;
    background: url(../images/titbg.png) no-repeat center center/100% 100%;
    width: 1.32rem;
    height: .82rem;
    font-weight: initial;
}

.title001 .tit h2 span {
    position: relative;
    display: block;
    font-size: .4rem;
    line-height: 1;
    color: #222;
    z-index: 6;
    font-weight: initial;

}

.title001 .tit h2 i {
    position: relative;
    display: block;
    width: .06rem;
    height: .06rem;
    margin: 0 .15rem;
    background: #222;
    border-radius: 50%;
    z-index: 6;
}

.title001 .more {
    position: relative;
    right: 0;
    transition: all .6s;
}

.title001 .more:hover {
    right: 3px;
}

.title001 .more a {
    font-size: .16rem;
    line-height: .32rem;
    color: #07328e;
    transition: .5s;
    padding-right: .6rem;
    background: url(../images/more.png) no-repeat right center/.51rem auto;
}

.title001 .more a:hover {}

.title002 h5 {
    font-size: .18rem;
    line-height: 1;
    color: #000000;
    opacity: .3;
    font-family: 'SourceHanSerifCN-Heavy', sans-serif;
    text-transform: uppercase;
}

.title002 h4 {
    font-size: .24rem;
    line-height: 1;
    color: #666;
    line-height: .6rem;
    font-weight: initial;
}

.title003 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: .3rem;
}

.title003 h4 {
    font-size: .24rem;
    color: #07328e;
    font-weight: initial;
}

.title003 p {
    font-size: .14rem;
    color: #222;
    font-family: 'Source_Han_Sans_SC_Light';
    text-transform: uppercase;
}

.index-s1 .col-1 {
    width: 26.28%;
}

.list_box1 ul {
    border-left: 1px dashed #cdb786;
}

.list_box1 ul li {
    padding-left: .15rem;
    position: relative;
}

.list_box1 ul li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: .32rem;
    width: .08rem;
    height: 1px;
    border-top: 1px dashed #07328e;
    opacity: 0;
    z-index: -1;
    transition: all .6s;
}

.list_box1 ul li:first-child::before {
    top: .09rem
}

.list_box1 ul li::after {
    content: "";
    position: absolute;
    width: .08rem;
    height: .08rem;
    background: #cdb786;
    border-radius: 50%;
    left: -.04rem;
    top: .27rem;
    z-index: 6;
    transition: all .6s;
}

.list_box1 ul li:first-child::after {
    top: 0;
}

.list_box1 li a {
    position: relative;
    display: block;
    padding: .2rem 0;
    border-bottom: 1px solid #cacaca;
    transition: all .6s;

}

.list_box1 li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #07328e;
    width: 0;
    transition: all .5s;
}

.list_box1 li:first-child a {
    padding-top: 0;
}

.list_box1 li a span {
    display: block;
    background: url(../images/s1r-datebg.png) no-repeat center center/100% 100%;
    width: 1.06rem;
    height: .24rem;
    line-height: .24rem;
    font-size: .16rem;
    color: #fff;
    font-family: "alb";
    padding-left: .1rem;
    margin-bottom: .1rem;
    transition: all .6s;
}

.list_box1 li h2 {
    font-size: .18rem;
    line-height: .32rem;
    color: #222;
    height: .64rem;
    transition: .6s;
    font-weight: bold;
}

.list_box1 {
    padding: .15rem;
    background: url(../images/s1r-bg.png) no-repeat center top/cover;
}

.index-s1 .col-2 {
    width: 43.58%;

}

.list1w a {
    display: block;
}

.list1w .pic {
    padding-top: 3.8rem;
}



.list1w .page {
    position: static;
    font-size: 0;
    margin-top: .34rem;
}

.list1w .page span {
    width: .08rem;
    height: .08rem;
    background: #c6c6c6;
    opacity: 1;
    margin: 0 .105rem;
}

.list1w .page span.active {
    background: #005aff;
}

.list-box ul li {
    margin-bottom: -.15rem;
}

.list-box ul li a {
    display: block;
    padding: .16rem 0;
}

.list-box ul li:last-child a {
    padding-bottom: 0;
}

.list-box ul li a h2 {
    line-height: .32rem;
    font-size: .2rem;
    color: #222;
    margin-bottom: .05rem;
    transition: all .5s;
    font-weight: bold;
}

.list-box ul li a p {
    line-height: .3rem;
    height: .6rem;
    font-size: .14rem;
    color: #999;
}

.list-box ul li a .date {
    /* margin-top: .05rem; */
    display: flex;
    align-items: center;
}

.list-box ul li a .date .xx {
    flex: 1;
    min-width: 0;
    position: relative;
    transition: all .5s;
}

.list-box ul li a .date .xx::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #d4d4d4;
    transition: all .5s;
}

.list-box ul li a .date .xx::after {
    content: "";
    position: absolute;
    width: .05rem;
    height: .05rem;
    background: #d4d4d4;
    bottom: -3px;
    right: 0;
    border-radius: 50%;
    transition: all .5s;
}

.list-box ul li a .date span {
    font-size: .2rem;
    color: #999;
    font-family: 'alb';
    margin-left: .1rem;
    height: .3rem;
    line-height: .3rem;
    transition: all .5s;
}

.index-s1 .col-3 {
    width: 25.64%;
}

.index-s1 .tab-tit {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.index-s1 .tab-tit .li {
    position: relative;
    cursor: pointer;
    /* width: 50%; */
    padding-left: .4rem;
    padding-right: .6rem;
    /* text-align: center; */
    background: url(../images/s1-titbg.png) no-repeat center center/100% 100%;
}


.index-s1 .tab-tit .li:nth-child(2) {
    padding-left: .75rem;
    padding-right: .5rem;
}

.index-s1 .tab-tit .li:nth-child(1) {
    background: url(../images/s1-titbg2.png) no-repeat center center/100% 100%;
    padding-right: .8rem;
}

.index-s1 .tab-tit .li:nth-child(1).active {
    background: url(../images/s1-titbg1.png) no-repeat center center/100% 100%;
    margin-right: -.75rem;
    z-index: 6;
    filter: drop-shadow(5px 0 5px #bad8f0);
}

.index-s1 .tab-tit .li:nth-child(2).active {
    background: url(../images/s1-titbg3.png) no-repeat center center/100% 100%;
    margin-left: -.75rem;
    filter: drop-shadow(-5px 0 5px #bad8f0);
}

.index-s1 .tab-tit .li.active h4 {
    color: #07328e;
}

.list_box2 li a {
    display: block;
    position: relative;
}

.list_box2 li:not(:first-child) {
    position: relative;
}

.list_box2 li:not(:first-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    background: #07328e;
    width: 0;
    transition: all .5s;
}

.list_box2 li:not(:first-child) a {
    padding: .15rem 0 .14rem;
}

.list_box2 li .pic {
    padding-top: 2.2rem;
}

.list_box2 li h3 {
    font-size: .18rem;
    line-height: .3rem;
    color: #222;
    height: .6rem;
    transition: .5s;
    font-weight: initial;
    font-weight: bold;
}

.list_box2 li time {

    font-size: .16rem;
    color: #999;
    transition: .5s;
    font-family: 'alb';
}

.list_box2 li.imgli .txt {
    position: relative;
    padding: .15rem .1rem 0.15rem;
    background: #fff;
}

.list_box2 li.imgli .txt time {
    right: .12rem;
    bottom: .24rem;
}

.list_box2 li:hover h3,
.list_box2 li:hover time {
    color: #07328e;
}

.list_box2 li {
    opacity: 0;
    border-bottom: 1px solid #dfdfdf;
}

.index-s1 .tab-cont {
    margin-top: .18rem;
}

.index-s1 .tab-cont .child {
    display: none;
}

.index-s1 .tab-cont .child.active {
    display: block;
}

.index-s1 .tab-cont .child.active .list_box2 li {
    animation: o-upfade-top 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.index-s1 .tab-cont .child.active .list_box2 li:not(:first-child) {
    animation-delay: .1s;
}

.index-s1 .s1-h {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.index-s1 .title001 .tit h4 {
    margin-top: .05rem;
}

.index-s1 .title001 {
    justify-content: center;
}

.index-s1 .title001 .tit {
    display: block;
    text-align: center;
}

.index-s1 {
    position: relative;
    padding: 0.8rem 0 1.75rem;
    background: url("../images/index-s1.png") no-repeat top center/100%;
}
.s1-h .more{margin-top: .15rem;text-align: right;margin-right: 5px;transition: all .6s;}
.s1-h .more a{font-size: .16rem;color: #222;text-align: right;margin-right: 5px;line-height: .32rem;color: #07328e;transition: .5s;padding-right: .6rem;background: url(../images/more.png) no-repeat right center/.51rem auto;}
.s1-h .col-3 .more a{display:none;}
.s1-h .col-3 .more a.on{display:block;}
.s1-h .more a:hover{color: #07328e;letter-spacing: 2px;}

@media (min-width: 1025px) {
    .list_box2 li:not(:first-child):hover::after {
        width: 100%;
    }

    .list-box ul li:hover a h2 {
        color: #07328e;
    }

    .list-box ul li:hover a .date .xx::before {
        background: #07328e;
    }

    .list-box ul li:hover a .date .xx::after {
        display: none;
    }

    .list-box ul li:hover a .date span {
        width: 1.29rem;
        text-align: center;
        line-height: .3rem;
        background: url(../images/s1-datebg.png) no-repeat center center/100% 100%;
        color: #fff;
    }

    .list_box1 li:hover a span {
        background: url(../images/s1r-datebg1.png) no-repeat center center / 100% 100%
    }

    .list_box1 li:hover h2 {
        color: #07328e;
    }

    .list_box1 ul li:hover::before {
        opacity: 1;
        z-index: 6;
    }

    .list_box1 ul li:hover::after {
        width: .18rem;
        height: .18rem;
        left: -.09rem;
        top: .24rem;
        background: url(../images/s1r-qq.png) no-repeat center center/100% 100%;
    }

    .list_box1 ul li:first-child::after {
        top: .0;
    }

    .list_box1 li:hover a::after {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .index-s1 .col-2 {
        width: 100%;
        order: -1;
        margin-bottom: .2rem;
    }

    .index-s1 .col-3 {
        width: 48%;
    }

    .index-s1 .col-1 {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .index-s1 {
        padding: .2rem 0;
    }

    .index-s1 .title001 {
        justify-content: flex-start;
    }

    .title001 {
        margin-bottom: .15rem;
    }

    .title001 .tit h2 span {
        font-size: .24rem;
    }

    .title001 .tit h2 i {
        margin: 0 .05rem;
    }

    .title001 .tit h2::after {
        background-size: 65% auto;
    }

    .index-s1 .col-3 {
        width: 100%;
    }

    .title002 h4 {
        font-size: .2rem;
    }

    .list_box2 li:not(:first-child) a {
        padding: .1rem 0;
    }

    .index-s1 .col-1 {
        width: 100%;
        margin-top: .15rem;
    }

    .list_box1 li a {
        padding: .1rem 0;
    }
}


.index-s2 {
    position: relative;

    margin-top: -.9rem;
    padding-bottom: 1.35rem;
}

.index-s2 .title001 {
    margin-bottom: .3rem;
}

.index-s2 .wp {
    position: relative;
    z-index: 6;
}

.index-s2 .wp::after {
    content: "";
    position: absolute;
    left: 29%;
    top: -.2rem;
    border-right: .9rem solid #e2ebf8;
    border-top: 1rem solid transparent;
}

.index-s2::before {
    content: "";
    position: absolute;
    left: 0;
    width: 37.5%;
    bottom: 0;
    top: .8rem;
    background: #f5fcff;
}

.index-s2::after {
    content: "";
    position: absolute;
    right: 0;
    width: 62.5%;
    bottom: 0;
    top: -.2rem;
    background: url(../images/s2r-bg.jpg) no-repeat center center/100% 100%;
}

.part3T {
    padding-top: .5rem;
    padding-bottom: 0.4rem;
    overflow: hidden;
}

.part3T ul {
    display: flex;
    flex-wrap: wrap;
}

.part3T li {
    position: relative;
    margin-right: .01rem;
    width: 1.6rem;
    display: flex;
    flex-wrap: wrap;
}

.part3T li .behind {
    width: 0;
    height: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
}

.part3T li:last-child {
    margin-right: 0;
}

.part3T li.on {
    width: calc(100% - 4.84rem);
}

.part3T li .display {
    position: relative;
    width: 1.6rem;
    cursor: pointer;
    height: 100%;
    padding: 0.4rem 0;
    padding-top: .7rem;
}

.part3T li .display::after {
    content: "";
    position: absolute;
    left: 100%;
    top: .5rem;
    opacity: 0;
    z-index: -1;
    border: .1rem solid transparent;
}

.part3T li:nth-child(1) .display::after {
    border-left: .1rem solid #efe6cf;
}

.part3T li:nth-child(2) .display::after {
    border-left: .1rem solid #a6d0f8;
}

.part3T li:nth-child(3) .display::after {
    border-left: .1rem solid #cbd9ee;
}

.part3T li:nth-child(4) .display::after {
    border-left: .1rem solid #9dbce6;
}

.part3T li.on .display::after {
    opacity: 1;
    z-index: 6;
}

.part3T li .display .s2-icon {
    width: .65rem;
    height: .65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #2a72b6;
    margin: 0 auto;
    border-radius: 50%;
}

.part3T li .display .s2-icon img {
    max-height: .4rem;
}

.part3T li:first-child .display .s2-icon {
    border: 1px dashed #ceb26b;
}

.part3T li .display .tit {
    width: .3rem;
    margin: 0.3rem auto 0 auto;
}

.part3T li .display .tit h5 {
    font-size: 0.32rem;
    color: #222;
    letter-spacing: 2px;
    /* font-weight: 600; */
    text-align: center;
}

.part3T li span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: .6rem;
    width: .2rem;
    height: .2rem;
    background: url(../images/s2-add.png) no-repeat center center/.16rem auto;
}

.part3T li.on span {
    background: url(../images/s2-jj.png) no-repeat center center/.1rem auto;
}

.part3T li.on .behind {
    overflow: hidden;
    height: 100%;
    padding: 0.3rem 0.8rem;
    width: calc(100% - 1.6rem);
    visibility: inherit;
    box-shadow: 0px 3px 21px 0px rgba(205, 205, 205, 0.38);
    background: #fff url(../images/part3-12.png) no-repeat bottom center/cover;
    position: relative;
}



.part3T li:nth-child(even).on .behind {
    margin-top: 0;
}

.part3T li .display {
    position: relative;
    background: url(../images/01img_def.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li .display {
    background: url(../images/02img02_def.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li+li .display {
    background: url(../images/03img02_def.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li+li+li .display {
    background: url(../images/04img_def.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li+li+li+li .display {
    background: url(../images/04img_def.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li.on .behind dl {
    width: 100%;
}

.part3T li.on .behind dd{
    
/* display: flex; */
    
/* padding: 10px 0; */
}

.part3T li.on .behind dd a {
    height: .8rem;
    line-height: .8rem;
    border-bottom: 1px solid #d9d9d9;
    position: relative;
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
}

.part3T li.on .behind dd .xin{
    background: url(../images/xin_icon.png) no-repeat right top / .6rem auto;
}

.part3T li.on .behind dd a::after {
    content: "";
    width: 0;
    height: 1px;
    background: #07328e;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: 0.6s all;
}

.part3T li.on .behind dd i {
    font-style: normal;
    font-size: 0.2rem;
    color: #07328e;
    display: block;
    padding-left: .3rem;
    background: url(../images/part2-02.png) no-repeat left center/.23rem auto;
    line-height: 0.2rem;
    font-family: "alb";
    margin-right: .15rem;
}

.part3T li.on .behind dd p {
    width: calc(100% - 1.35rem);
    font-size: 0.18rem;
    color: #222;
    font-weight: bold;
    line-height: 0.2rem;
    height: 0.2rem;
    overflow: hidden;
    transition: 0.6s all;
}

.part3T li.on .behind dd:hover p {
    color: #07328e;
    width: calc(100% - 140px);
    transition: 0.6s all;
}

.part3T li.on .behind dd:hover a::after {
    width: 100%;
    transition: 0.6s all;
}

.part3T li.on .display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url(../images/01img_sel.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li.on .display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url(../images/02img_sel.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li+li.on .display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url(../images/03img_sel.png) no-repeat top center;
    background-size: 100% 100%;
}

.part3T li+li+li+li.on .display {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: url(../images/04img_sel.png) no-repeat top center;
    background-size: 100% 100%;
}
.sp{position: relative;}
.sp .bf{position: absolute;left: 50%;top:50%;transform: translate(-50%,-50%);width: .4rem;height: .4rem;cursor: pointer;z-index: 6;}
.sp>img{height: 4.8rem;width: 100%;}
.vwrap {
    display: none;
    z-index: 1040000;
    width: 100%;
    position: fixed;
}

.vwrap .videobtg {
    z-index: 900;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    overflow: hidden;
}

.vwrap .videobox {
    z-index: 1200;
    width: 1400px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -700px;
    object-fit: cover;
    transform: translateY(-50%)
}

.vwrap .videobox #videobox {
    width: 100%;
    display: inline-block;
    background: #000;
}

.vwrap .videobox #videobox .img_hezi {
    padding-bottom: 60% !important
}

.vwrap .videobox #videobox video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#videobox_wrapper {
    height: 100%!important;
}

.vwrap .close {
    z-index: 999;
    width: 31px;
    height: 31px;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: -42px;
    text-align: center;
}

.vwrap .close i {
    display: block;
    width: 31px;
    height: 31px;
    -webkit-transition: 400ms;
    transition: 400ms;
}

.vwrap .close i svg {
    transition: .6s
}

.vwrap .close:hover i svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media(max-width: 992px) {
    .vwrap .videobox {
        width: 94%;
        left: 3%;
        margin-left: 0;
    }
    .vwrap .close {
        right: 0;
        top: .3rem;
    }
}

@media (max-width: 1024px) {
    .part3T li {
        width: 100%;
        display: block;
    }

    .part3T li .display {
        display: flex;
        align-items: center;
        width: 100%;
        flex-direction: inherit !important;
        justify-content: flex-start !important;
        height: initial;
        padding: .1rem;
    }

    .part3T li span {
        position: absolute;
        top: .35rem;
        left: auto;
        transform: none;
        right: .2rem;
    }

    .part3T li.on {
        width: 100%;
    }

    .part3T li.on .behind {
        height: initial;
        width: 100%;
    }

    .part3T li .display .tit {
        width: auto;
        margin: 0;
    }

    .part3T li .display .s2-icon {
        margin: 0;
        margin-right: .15rem;
    }

    .part3T li.on .behind {
        padding: .2rem;
    }

    .part3T li .display {
        background: #efe6cf;
    }

    .part3T li+li .display {
        background: #a5d0f8;
    }

    .part3T li+li+li .display {
        background: #cbd9ee;
    }

    .part3T li+li+li+li .display {
        background: #9dbce6;
    }
}

@media (max-width: 768px) {
    .index-s2 {
        margin-top: 0;
        padding-bottom: .2rem;
    }

    .index-s2::before {
        display: none;
    }

    .index-s2::after {
        width: 100%;
    }

    .index-s2 .wp::after {
        display: none;
    }

    .part3T {
        padding: 0;
    }

    .part3T li .display .tit h5 {
        font-size: .2rem;
    }

    .part3T li .display .s2-icon {
        width: .5rem;
        height: .5rem;
    }

    .part3T li .display .s2-icon img {
        max-height: .3rem;
    }

    .part3T li.on .behind dd a {
        height: .65rem;
        line-height: .65rem;
    }

    .part3T li.on .behind dd i {
        font-size: .16rem;
    }

    .part3T li.on .behind dd p {
        width: calc(100% - 1.2rem);
    }
.part3T li.on .behind dd .xin{
    background: url(../images/xin_icon.png) no-repeat right top / .4rem auto;
}
}





.index-s3 {
    position: relative;

    margin-top: -.65rem;
    padding-top: 0.8rem;

    z-index: 2;
}

.index-s3::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 2rem;
    background: url(../images/s3-bg.png) no-repeat center top/100% 100%;
}

.index-s3 .wp {
    position: relative;
    z-index: 5;
}

.index-s3 .s3-rl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}

.index-s3 .s3-rll {
    width: 51.28%;
    position: relative;
    z-index: 3;

}

.index-s3 .s3-rlr {
    width: 46.15%;
}

.index-s3 .title001 {
    position: relative;
    display: flex;
    justify-content: center;
}

.index-s3 .title001 .tit {
    display: block;
}

.index-s3 .title001 .tit h2 span {
    color: #fff;
}

.index-s3 .title001 .tit h2 i {
    background: #fff;
}

.index-s3 .title001 .tit h4 {
    color: #fff;
    margin-top: .05rem;
    text-align: center;
}

.index-s3 .title001 .more {
    position: absolute;
    right: 0;
    top: 0.2rem;
    transition: all .6s;
}

.index-s3 .title001 .more:hover {
    right: 3px;
}

.index-s3 .title001 .more a {
    color: #fff;
    background: url(../images/more1.png) no-repeat right center / .51rem auto;
}

.s3-rlr #schedule-box {
    border: none;
    background-color: transparent;
    box-shadow: none;
}

.s3-rlr .ul-box>li {
    border-right: none;
    border-bottom: none;
    height: .6rem;
    line-height: .6rem;
}

.s3-rlr .current-month {
    color: #fff;
    font-family: "alb";
}

.s3-rlr .today {
    font-size: .32rem;
    color: #fff;
    font-family: "alb";
}

.s3-rlr .schedule-hd {
    position: relative;
}

.s3-rlr .schedule-hd>div #prevMonth {
    position: absolute;
    top: .25rem;
    left: 0;
    width: .35rem;
    height: .35rem;
    background: url(../images/rl-l.png) no-repeat center center/.17rem auto;
}

.schedule-hd>div #nextMonth {
    position: absolute;
    top: .25rem;
    right: 0;
    width: .35rem;
    height: .35rem;
    background: url(../images/rl-r.png) no-repeat center center/.17rem auto;
}

.s3-rlr .week-ul>li {
    font-size: .18rem;
    color: #fff;
}

.s3-rlr .today-flag {
    font-size: 0;
    background: url(../images/rl-icon.png) no-repeat center center/.38rem auto;
}

.s3-rlr .today-flag:hover {
    background: url(../images/rl-icon.png) no-repeat center center/.38rem auto !important;
}

.s3-rlr .selected-style::after {
    background: #cdb786;
}
.list3w.active:after{content:"";position:absolute;right: -1px;top:0;width: .4rem;height: .4rem;background: url(../images/list3-new.png) no-repeat center center/100% 100%;z-index: 6;}
.list3w a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: url(../images/list3-bg.png) no-repeat center center/100% 100%;
    padding: .2rem .35rem .5rem .7rem;
}

.list3w .xin {
    background: url(../images/list3-bgxin.png) no-repeat center center/100% 100%;  
}


.list3w a .bg-mask {
    width: 45.2%;
}

.list3w a .bg-mask .pic {
    padding-top: 137.5%;
}
.list3w a .bg-mask .pic img{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
}
.list3w a .txt {
    width: 45.2%;
}

.list3w a .txt span {
    display: block;
    max-width: 1.8rem;
    width: 100%;
    /* height: .3rem; */
    line-height: .3rem;
    text-align: center;
    font-size: .16rem;
    color: #fff;
    background: #cdb786;
    border-radius: .2rem;
    margin-bottom: .15rem;
}

.list3w a .txt h2 {
    line-height: .32rem;
    font-size: .18rem;
    color: #07328e;
    height: .64rem;
    margin-bottom: .2rem;
    font-weight: initial;
}

.list3w a .txt p {
    font-size: .14rem;
    color: #666;
    line-height: .32rem;
}

.list3w a .txt .gd {
    margin-top: .4rem;
    font-size: .14rem;
    color: #07328e;
}

.list3w  .page {
    position: absolute;
    right: 11%;
    bottom: .6rem;
    left: auto;
    width: auto;
    z-index: 6;
}

.list3w .page span {
    opacity: 1;
    width: .25rem;
    height: .25rem;
    margin: 0 .15rem;
    background: url(../images/list3-dot.png) no-repeat center center/.23rem auto;
}

.list3w .page span.active {
    background: url(../images/list3-dot1.png) no-repeat center center/.23rem auto;
}

.s3-notice {
    margin-top: .4rem;
    position: relative;
}

.s3-notice a {
    display: block;
    margin-bottom: .95rem;
    position: relative;
    transition: all .6s;
}

.s3-notice a::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: .45rem;
    border-left: 1px dashed #70b6e2;
    bottom: -.5rem;
}

.s3-notice a::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: .07rem;
    height: .07rem;
    border-radius: 50%;
    bottom: -.7rem;
    background: #70b6e2;
}

.s3-notice .swiper-slide a {
    background: url(../images/s4-bg2.png) no-repeat center center/100% 100%;
    padding: .3rem .15rem;
}

.s3-notice .swiper-slide:nth-child(2n) a {
    background: url(../images/s4-bg1.png) no-repeat center center/100% 100%;
}

.s3-notice .swiper-slide a h2 {
    font-size: .18rem;
    color: #222;
    line-height: .32rem;
    height: .64rem;
    margin-bottom: .15rem;
    font-weight: initial;
}

.s3-notice .swiper-slide a p {
    font-size: .14rem;
    color: #666;
    line-height: .32rem;
}

.s3-notice::after {
    content: "";
    position: absolute;
    left: .2rem;
    right: .2rem;
    bottom: .28rem;
    height: 1px;
    background: #d4d4d4;
}

.s3-notice .prev,
.s3-notice .next {
    position: relative;
    transition: all .6s;
}

.s3-notice .prev:hover::after,
.s3-notice .next:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .4rem;
    height: .4rem;
    border-radius: 50%;
    border: .1rem solid rgba(205, 183, 134, .3)
}

.s3-notice .prev {
    position: absolute;
    left: .1rem;
    bottom: .1rem;
    width: .4rem;
    border-radius: 50%;
    height: .4rem;
    background: #cdb786 url(../images/not-l.png) no-repeat center center/.17rem auto;
    z-index: 6;
    cursor: pointer;
}

.s3-notice .next {
    position: absolute;
    border-radius: 50%;
    width: .4rem;
    right: .1rem;
    bottom: .1rem;
    height: .4rem;
    background: #cdb786 url(../images/not-r.png) no-repeat center center/.17rem auto;
    z-index: 6;
    cursor: pointer;
}

@media (min-width: 1025px) {
   .s3-notice .swiper-slide a:hover {
        background: url(../images/s3-ntbg1.jpg) no-repeat center center/100% 100%;
    }
    .s3-notice .swiper-slide .xin:hover {
        background: url(../images/s3-ntbg1xin.jpg) no-repeat center center/100% 100%;
    }



    .s3-notice .swiper-slide a:hover h2,
    .s3-notice .swiper-slide a:hover p {
        color: #fff;
    }

    .s3-notice a:hover::before {
        border-left: 1px dashed #cdb786;
    }

    .s3-notice a:hover::after {
        bottom: -.8rem;
        width: .27rem;
        height: .27rem;
        background: url(../images/s3-nqq.png) no-repeat center center/100% 100%;
    }
}

@media (max-width: 1024px) {
    .index-s3 .s3-rll {
        width: 100%;
    }

    .index-s3 .s3-rlr {
        width: 100%;
        order: -1;
        margin-bottom: .15rem;
    }
}

@media (max-width: 768px) {
    .index-s3 {
        margin-top: 0;
        background: #225bbb url(../images/s3-bg.png) no-repeat center top / 100% 100%;
        padding-top: .2rem;
    }

    .index-s3 .title001 {
        justify-content: flex-start;
    }

    .schedule-hd {
        padding: .2rem !important;
    }

    .s3-rlr .today {
        font-size: .2rem;
    }

    .list3w a {
        padding: .2rem .2rem .5rem .3rem;
    }

    .list3w a .txt .gd {
        margin-top: .1rem;
    }

    .list3w .page {
        bottom: .3rem;
    }

    .list3w .page span {
        margin: 0 .05rem;
    }

    .list3w a .txt h2 {
        margin-bottom: 0;
        font-weight: initial;
    }

    .s3-notice {
        margin-top: .15rem;
    }
}
@media (max-width: 481px){    .list3w .page {
        bottom: .15rem;
    }}
.index-s4 {
    position: relative;
    padding-top: .9rem;
    padding-bottom: 1rem;
}

.index-s4 .wp {
    position: relative;
    z-index: 6;
}

.index-s4 .title001 {
    position: absolute;
    left: 0;
    top: -.65rem;
    top: 0;
    width: 32.05%;
}

.index-s4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -2rem;
    bottom: -3.2rem;
    background: url(../images/sect4-bg.jpg) no-repeat center top/100% 100%;
}

.h4-t {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.h4t_l {
    width: 32.05%;
    margin-top: 1.2rem;
}

.h4t_l ul li {
    position: relative;
    line-height: .8rem;
    border-bottom: 1px solid #cfcfcf;
    margin-right: .2rem;
    padding-right: .6rem;
    padding-left: .15rem;
    transition: all .6s;
    cursor: pointer;
    background: url(../images/h4l-icon.png) no-repeat right .2rem center;
}

.h4t_l ul li.on {
    padding-left: .35rem;
    background: url(../images/h4l-icon1.png) no-repeat right .2rem center;
}

.h4t_l ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: .24rem;
    background: #d6c49d;
    opacity: 0;
    z-index: -2;
    transition: all .6s;
}

.h4t_l ul li::after {
    content: "";
    position: absolute;
    left: 0;
    right: -.2rem;
    top: 0;
    bottom: -1px;
    background: url(../images/s4l-bg.png) no-repeat center center/100% 100%;
    opacity: 0;
    z-index: -1;
    transition: all .6s;
}

.h4t_l ul li span {
    position: relative;
    font-size: .24rem;
    color: #222;
    z-index: 6;
    transition: all .6s;
}

.h4t_l ul li.on::after {
    opacity: 1;
    z-index: -1;
}

.h4t_l ul li.on span {
    color: #fff;
}

.h4t_l ul li.on::before {
    opacity: 1;
    z-index: 5;
}

.h4t_r {
    width: 66.66%;
}

.h4t_r ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.h4t_r ul li {
    width: 48%;
    transition: all .6s;
}


.h4t_r ul li a {
    position: relative;
    display: block;
    background: url(../images/h4r-bg.jpg) no-repeat center center/cover;
    border-bottom: 1px solid #cecfcf;
    padding: .2rem .3rem;
    padding-top: 0;
    margin-bottom: .2rem;
    transition: all .6s;
}

.h4t_r ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 4px;
    width: 0;
    background: #d0bd91;
    transition: all .6s;
}

.h4t_r ul li a span {
    display: block;
    width: 1.2rem;
    height: .3rem;
    line-height: .3rem;
    text-align: center;
    background: url(../images/h4-datebg.png) no-repeat center center/100% 100%;
    font-size: .18rem;
    color: #fff;
    font-family: "alb";
}

.h4t_r ul li a h2 {
    margin-top: .15rem;
    margin-bottom: .1rem;
    font-size: .2rem;
    color: #222;
    font-weight: initial;
}

.h4t_r ul li a p {
    font-size: .16rem;
    color: #222;
    line-height: .35rem;
    /* height: .64rem; */
}
.h4t_r ul li a h4 {
    font-size: .14rem;
    color: #222;
    line-height: .35rem;
    /* height: .64rem; */
    font-weight: inherit;
}

.index-s4 .more {
    position: absolute;
    left: 24%;

    bottom: .1rem;
    transition: all .6s;
}

.index-s4 .more:hover {
    letter-spacing: 2px;
}

.index-s4 .more a {
    font-size: .16rem;
    line-height: .32rem;
    color: #07328e;
    transition: .5s;
    padding-right: .6rem;
    background: url(../images/more.png) no-repeat right center / .51rem auto;
    display: none;
}

.index-s4 .more a.on {
    display: inline-block;
}

@media (min-width: 1025px) {
    .h4t_r ul li:hover a {
        background: #fff;
        box-shadow: 0px 8px 14.72px 1.28px rgba(79, 165, 219, 0.4), inset 0px -4px 0px 0px rgba(205, 183, 134, 0.004);
    }

    .h4t_r ul li:hover a::after {
        width: 100%;
    }

    .h4t_r ul li:hover a h2,
    .h4t_r ul li:hover a p,
    .h4t_r ul li:hover a h4{
        color: #07328e;
    }
}

@media (max-width: 1024px) {
    .h4t_l {
        width: 100%;
        margin-top: 0;
    }

    .index-s4 .title001 {
        position: static;
        width: 100%;
        margin-bottom: .15rem;
    }

    .h4t_r {
        width: 100%;
        margin-top: .15rem;
    }

    .index-s4 .more {
        position: static;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .index-s4 {
        padding: .2rem 0;
    }

    .h4t_l ul li {
        line-height: .4rem;
    }

    .h4t_l ul li span {
        font-size: .18rem;
    }

    .h4t_r ul li {
        width: 100%;
    }

    .h4t_r ul li a {
        margin-bottom: .15rem;
        padding: .15rem;
        padding-top: 0;
    }
}

.index-s5 {
    position: relative;
    z-index: 6;

}

.index-s5 .wp {
    position: relative;
}

.index-s5 .title001 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.list5w {
    position: relative;
}

.list5w a {
    display: flex;
    position: relative;
    align-items: flex-start;
    z-index: 2;
}

.list5w a .h5-l {
    width: 69.23%;
    margin-left: -30.76%;
}

.list5w a .bg-mask .pic {
    padding-top: 47%;
}

.list5w a .h5-r {
    width: 61.53%;
    order: -1;
    position: relative;
    background: rgba(112, 182, 226, .95);
    z-index: 2;
    padding: .5rem .35rem .75rem .35rem;
    margin-top: 1.5rem;
}

.list5w a .h5-r h3 {
    font-size: .32rem;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: .15rem;
    font-weight: initial;
}

.list5w a .h5-r p {
    line-height: .32rem;
    font-size: .16rem;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 1.28rem;
}

.index-s5 .page {
    position: absolute;
    bottom: .8rem;
    left: .5rem;
    z-index: 6;
}

.index-s5 .page span {
    position: relative;
    width: .12rem;
    height: .12rem;
    border-radius: 50%;
    background: #fff;
    opacity: 1;
    margin: 0 .15rem;
}

.index-s5 .page span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .2rem;
    height: .2rem;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
}

.index-s5 .page span.active {}

.index-s5 .page span.active::after {
    opacity: 1;
    z-index: 6;
}

@media (min-width: 1024px) {}

@media (max-width: 1024px) {
    .index-s5 .title001 {
        position: relative;
    }

    .index-s5 .page {
        bottom: .2rem;
    }
}

@media (max-width: 768px) {
    .list5w a {
        display: block;
    }

    .list5w a .h5-l {
        width: 100%;
        margin-left: 0;
    }

    .list5w a .h5-r {
        width: 100%;
        order: 0;
        margin-top: 0;
        padding: .15rem;
        padding-bottom: .5rem;
    }

    .title001 .tit {
        display: block;
    }

    .title001 .tit h4 {
        margin-top: .05rem;
    }

    .list5w a .h5-r h3 {
        font-size: .2rem;
    }
}

.index-s6 {
    position: relative;
    padding-top: .95rem;
    padding-bottom: 1.4rem;

}

.index-s6::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1.9rem;
    bottom: 2.8rem;
    background: url(../images/sect6-bg.jpg) no-repeat center center/100% 100%;
}

.index-s6::after {
    content: "";
    position: absolute;
    left: 1.8rem;
    bottom: 0;
    top: 2.1rem;
    right: 0;
    background: url(../images/sect6-bg1.jpg) no-repeat center center/100% 100%;
}

.index-s6 .wp {
    position: relative;
    z-index: 6;
}

.index-s6 .wp::after {
    content: "";
    position: absolute;
    left: 0;
    width: 112%;
    background: url(../images/s6-dd1.png) no-repeat center center/100% 100%;
    height: .8rem;
    top: 56%;
}

.index-s6 .title001 {
    justify-content: center;
}

.index-s6 .title001 .tit h2 span {
    color: #fff;
}

.index-s6 .title001 .tit h2 i {
    background: #fff;
}

.index-s6 .title001 .tit {
    display: block;
}

.index-s6 .title001 .tit h4 {
    margin-top: .05rem;
    color: #fff;
    text-align: center;
}

.list6w {
    padding-top: .9rem;
    position: relative;
    width: calc(100% + (100vw - 15.6rem)/2);
    z-index: 6;
    padding-right: 1.2rem;
    overflow: hidden;
}

/* .list6w::before{content: "";position: absolute;left: 0;width: 202%;background: url(../images/s6-xx1.png) repeat-x center center/100% 100%;height: .6rem;top: 47.3%;animation: wave 10s infinite  linear;}
.list6w::after{content: "";position: absolute;left: 0;width: 202%;background: url(../images/s6-xx2.png) repeat-x center center/100% 100%;height: .66rem;z-index: 2;top: 41%;animation: wave 8s infinite  linear;}
@keyframes wave {
    0% {
        left: 0;
         
    }
    100% {
   left: -100%;
   
    }
} */

.list6w a {
    margin-top: .5rem;
    display: block;
}

.list6w a .s6-icon {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/s6-qqbg1.png) no-repeat center center/100% 100%;
    margin: 0 auto;
    transition: all .6s;
}

.list6w a .s6-icon img {
    max-height: .6rem;
}

.list6w a .s6-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1.78rem;
    height: 1.78rem;
    background: url(../images/s6-qq.png) no-repeat center center/100% 100%;
    opacity: 0;
    transition: all .6s;
    z-index: -1;
     animation: rotate1 10s linear infinite; 
}

@keyframes rotate1 {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.list6w a .txt {
    margin-top: .35rem;
    text-align: center;
}

.list6w a .txt h2 {
    font-size: .18rem;
    color: #07328e;
    font-weight: initial;
}

.list6w a .txt h2 span {
    font-size: .48rem;
    font-family: 'SourceHanSerifCN-Heavy';
}

.list6w a .txt p {
    font-size: .18rem;
    color: #222;
}

@media (min-width: 1025px) {
    .list6w a:hover .s6-icon::after {
        opacity: 1;
        z-index: 0;
    }

    .list6w a:hover .s6-icon {
        border: 1px solid transparent;
        background: linear-gradient(to bottom, transparent, #d8fffe);
    }
}

@media (max-width: 1024px) {
    .list6w {
        width: 100%;
        padding-right: 0;
    }

    .index-s6::after {
        left: 0;
    }
}

@media (max-width: 768px) {
    .index-s6 {
        padding: .2rem 0;
    }

    .list6w {
        padding-top: 0;
    }

    .index-s6::after {
        top: 1rem;
    }

    .index-s6 .wp::after {
        top: 43%;
        background-size: cover;
    }

    .list6w a {
        margin-top: .2rem;
    }

    .list6w a .txt {
        margin-top: .15rem;
    }

    .list6w a .txt h2 span {
        font-size: .2rem;
    }

    .list6w a .txt p {
        font-size: .16rem;
    }

    .index-s6::before {
        bottom: 1.7rem;
    }

    .index-s6 .title001 {
        justify-content: flex-start;
    }

    .list6w a .s6-icon {
        width: .8rem;
        height: .8rem;
    }

    .list6w a .s6-icon img {
        max-height: .4rem;
    }
}

.index-s7 {
    position: relative;
    padding-top: .9rem;
    padding-bottom: .8rem;
}

.index-s7 .wp {
    position: relative;
}

.s7-bg {
    display: none;
}

.s7-bg img {
    max-width: 100%;
    margin: 0 auto;
}

.h7 {
    display: flex;
    flex-wrap: wrap;
}

.h7-l {
    width: 5rem;
}

.h7-l .h7-cont h2 {
    font-size: .32rem;
    color: #333;
    font-weight: initial;
}

.h7-l .h7-cont h3 {
    font-size: 1rem;
    color: #07328e;
    font-family: 'SourceHanSerifCN-Heavy';
}

.h7-l .h7-cont p {
    margin-top: .15rem;
}

.h7-l .h7-cont p span {
    display: block;
    font-size: .18rem;
    color: #222;
    line-height: .32rem;
}

.h7-l .h7-cont .h7-lj {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: .15rem;
    z-index: 6;
}

.h7-l .h7-cont .h7-lj a {
    width: 1.7rem;
    margin-left: -.1rem;
    line-height: .4rem;
    font-size: .18rem;
    color: #fff;
    text-align: center;
}

.h7-l .h7-cont .h7-lj a:first-child {
    margin-left: 0;
    background: url(../images/h7-lj1.png) no-repeat center center/100% 100%;
}

.h7-l .h7-cont .h7-lj a:nth-child(2) {
    background: url(../images/h7-lj2.png) no-repeat center center/100% 100%;
}

.h7-l .h7-cont .h7-lj a:nth-child(3) {
    background: url(../images/h7-lj3.png) no-repeat center center/100% 100%;
}

.index-s7 .wp .more {
    position: absolute;
    left: 0;
    bottom: .5rem;
}

.index-s7 .wp .more a {
    display: block;
    margin-top: .8rem;
    width: 1.8rem;
    height: .6rem;
    line-height: .6rem;
    text-align: center;
    border: 1px solid #07328e;
    border-radius: 30px;
    transition: all .6s;
}

.index-s7 .wp .more a:hover {
    width: 2rem;
}

.index-s7 .wp .more a span {
    font-size: .16rem;
    line-height: .32rem;
    color: #07328e;
    transition: .5s;
    padding-right: .6rem;
    background: url(../images/more.png) no-repeat right center / .51rem auto;
}

.h7-r {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 5.52rem;
}

.h7-r::after {
    content: "";
    position: absolute;
    /* left: -1rem; */
    top: 0.3rem;
    bottom: 0;
    right: .7rem;
    width: 11.4rem;
    height: 5.52rem;
    background: url(../images/h7r-map.png) no-repeat center center/100% 100%;
}

.h7r-dz,
.h7r-dz ul {
    position: relative;
    width: 100%;
    height: 100%;
}

.h7-map {
    position: absolute;
    top: -1.8rem;
    right: -1rem;
    background: url(../images/h7r-big.png) no-repeat center center/100% 100%;
    width: 7.5rem;
    height: 8rem;
    z-index: 9;
}

.h7-map::before {
    content: "";
    position: absolute;
    width: .22rem;
    height: .22rem;
    animation: bianda1 2s linear infinite;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #05397f;
    opacity: .05;
}

@keyframes bianda1 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .05;
    }

    100% {
        transform: translate(-50%, -50%) scale(40);
        opacity: 0;
    }
}

.s7-xx {
    position: absolute;
    width: .22rem;
    height: .22rem;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.s7-line {
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
    top: 0;
}

.s7-line ul {
    position: relative;
    width: 100%;
    height: 100%;
}

.s7-line ul li {
    position: absolute;
    transform-origin: left top;
}

.s7-line ul .s7-line1 {
    background: url(../images/s7-xx1.png) no-repeat center center/100% 100%;
    width: .32rem;
    height: .23rem;
    left: 100%;
    top: .1rem;
}

.s7-line ul .s7-line2 {
    background: url(../images/s7-xx2.png) no-repeat center center/100% 100%;
    width: 1.08rem;
    height: 1.71rem;
    right: 0;
    top: .2rem;
}

.s7-line ul .s7-line3 {
    background: url(../images/s7-xx3.png) no-repeat center center/100% 100%;
    width: .99rem;
    height: 1.19rem;
    right: 0;
    top: .2rem;
}

.s7-line ul .s7-line4 {
    background: url(../images/s7-xx4.png) no-repeat center center/100% 100%;
    width: 3.89rem;
    height: 1.23rem;
    right: 0;
    bottom: 0;
}

.s7-line ul .s7-line5 {
    background: url(../images/s7-xx5.png) no-repeat center center/100% 100%;
    width: 3.6rem;
    height: .76rem;
    right: 0;
    bottom: 0;
}

.s7-line ul .s7-line6 {
    width: 3.83rem;
    height: .61rem;
    right: 0;
    bottom: 0;
    background: url(../images/s7-xx6.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line7 {
    background: url(../images/s7-xx7.png) no-repeat center center/100% 100%;
    width: 3.32rem;
    height: .94rem;
    right: 0;
    bottom: 0;
}

.s7-line ul .s7-line8 {
    background: url(../images/s7-xx8.png) no-repeat center center/100% 100%;
    width: 4.2rem;
    height: 1.01rem;
    right: 0;
    bottom: 0;
}

.s7-line ul .s7-line9 {
    background: url(../images/s7-xx9.png) no-repeat center center/100% 100%;
    width: .7rem;
    height: .39rem;
    left: 100%;
    bottom: .1rem;
}

.s7-line ul .s7-line10 {
    background: url(../images/s7-xx10.png) no-repeat center center/100% 100%;
    width: 7.78rem;
    height: 1.84rem;
    right: 0;
    bottom: -.2rem;
}

.s7-line ul .s7-line1.on {
    background: url(../images/s7-xx1h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line2.on {
    background: url(../images/s7-xx2h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line3.on {
    background: url(../images/s7-xx3h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line4.on {
    background: url(../images/s7-xx4h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line5.on {
    background: url(../images/s7-xx5h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line6.on {
    background: url(../images/s7-xx6h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line7.on {
    background: url(../images/s7-xx7h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line8.on {
    background: url(../images/s7-xx8h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line9.on {
    background: url(../images/s7-xx9h.png) no-repeat center center/100% 100%;
}

.s7-line ul .s7-line10.on {
    background: url(../images/s7-xx10h.png) no-repeat center center/100% 100%;
}

.h7r-dz ul li {
    position: absolute;
    width: .16rem;
    height: .16rem;
    background: transparent;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
}

.h7r-dz ul li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .06rem;
    height: .06rem;
    border-radius: 50%;
    background: #07328e;
    transition: all .6s;
}

.h7r-dz ul li::after {
    content: "";
    position: absolute;
    left: .03rem;
    top: .03rem;
    width: .1rem;
    height: .1rem;
    border-radius: 50%;
    background: rgba(7, 50, 142, 0.2);
    animation: bianda 2s linear infinite;
    transition: all .6s;
}

@keyframes bianda {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.h7r-dz ul .h7-q1 {
    right: 19%;
    top: 43%;
}

.h7r-dz ul .h7-q2 {
    left: 67.8%;
    bottom: 25%;
}

.h7r-dz ul .h7-q3 {
    left: 67.8%;
    bottom: 35%;
}

.h7r-dz ul .h7-q4 {
    left: 40%;
    top: 25%;
}

.h7r-dz ul .h7-q5 {
    left: 42%;
    top: 34%;
}

.h7r-dz ul .h7-q6 {
    left: 40%;
    top: 40%;
}

.h7r-dz ul .h7-q7 {
    left: 45%;
    top: 30.5%;
}

.h7r-dz ul .h7-q8 {
    left: 36.8%;
    top: 37%;
}

.h7r-dz ul .h7-q9 {
    right: 15%;
    top: 32%;
}

.h7r-dz ul .h7-q10 {
    left: 3%;
    top: 44%;
}

.h7-xy {
    position: absolute;
    top: .2rem;
    left: -.25rem;
    border: 1px solid #004a9c;
    background: linear-gradient(to bottom, #fff, #f5faff);
    padding: .28rem .15rem 0.1rem .15rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-width: 2rem;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all .6s;
}
.h7-xy:after{content:"";position:absolute;left: .25rem; bottom: 100%;background: url(../images/s7-contbg.png) no-repeat center center/100% 100%;width: .11rem;height: .06rem;}
.h7-xy a {
    width: 100%;
    line-height: .3rem;
    font-size: .14rem;
    color: #222;
}

.h7r-dz ul li.on .h7-xy {
    opacity: 1;
    z-index: 6;
    visibility: visible;
}

.h7r-dz ul li.on {
    background: #d43f3f;
}

.h7r-dz ul li.on::before {
    opacity: 0;
    z-index: -1;
}

.h7r-dz ul li.on::after {
    width: .18rem;
    height: .18rem;
    left: -.01rem;
    top: -.01rem;
    background: rgba(196, 27, 32, 0.2);
}

.h7-map .m-logo {
    position: absolute;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* background: #fff; */
    /* border-radius: 50%; */
    z-index: 9;
}

@media (max-width: 1024px) {
    .h7-l {
        width: 100%;
    }

    .h7-r {
        display: none;
    }

    .s7-bg {
        display: block;
        margin-top: .15rem;
    } .index-s7 .wp  .more{position: static;}
   .index-s7 .wp  .more a {
    margin: 0 auto;
        margin-top: .15rem;
        height: .4rem;
        line-height: .4rem;
        width: 1.5rem;
    }
}

@media (max-width: 768px) {
    .index-s7 {
        padding: .2rem 0;
    }

    .h7-l .h7-cont h2 {
        font-size: .18rem;
        font-weight: initial;
    }

    .h7-l .h7-cont h3 {
        font-size: .24rem;
    }

    .h7-l .h7-cont p {
        margin-top: 0;
    }

}

.index-s8-s9 {
    background: url(../images/s8-bg.jpg) no-repeat center top/cover;
    padding-top: 1rem;
    padding-bottom: 1.2rem;
}

.index-s8 .title001 {
    position: relative;
    justify-content: center;
}

.index-s8 .title001 .more {
    position: absolute;
    right: 0;
    top: 0.2rem;
    transition: all .6s;
}

.index-s8 .title001 .more:hover {
    right: 3px;
}

.index-s8 .title001 .tit {
    display: block;
}

.index-s8 .title001 .tit h4 {
    margin-top: .05rem;
    text-align: center;
}

.h8 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.h8-l {
    width: 52.56%;
}

.h8-l ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.h8-l ul li {
    width: 48%;
}

.h8-l ul li a {
    display: block;
}

.h8-l ul li a .pic {
    padding-top: 55%;
}

.h8-l ul li a .cont {
    padding: .2rem;
}

.h8-l ul li a .cont h2 {
    line-height: .32rem;
    font-size: .18rem;
    color: #222;
    height: .64rem;
    font-weight: initial;
}

.h8-l ul li a .cont p {
    line-height: .32rem;
    font-size: .14rem;
    color: #666;
    height: .64rem;
}

.h8-l ul li a .cont .xx {
    margin: .15rem 0;
    border-top: 1px dashed #d4d4d4
}

.h8-l ul li a .cont span {
    display: block;
    margin-top: .25rem;
    font-size: .14rem;
    color: #666;
}

.h8-r {
    width: 46.15%;
}

.h8r-tit {
    text-align: center;
    margin-bottom: .1rem;
}

.h8r-tit span {
    display: inline-block;
    padding-bottom: .15rem;
    margin: 0 .13rem;
    position: relative;
    font-size: .18rem;
    color: #222;
    transition: all .6s;
    cursor: pointer;
}

.h8r-tit span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: .32rem;
    height: 4px;
    background: #cdb786;
    opacity: 0;
    z-index: -1;
    transition: all .6s;
}

.h8r-tit span.on {
    color: #07328e;
    font-weight: bold;
}

.h8r-tit span.on::after {
    opacity: 1;
    z-index: 6;
}

.h8-list ul li {
    padding: .1rem 0;
    border-bottom: 1px dashed #d4d4d4;
    position: relative;
}

.h8-list ul li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #07328e;
    transition: all .6s;
}

.h8-list ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.h8-list ul li a .date {
    text-align: center;
    color: #222;
    font-family: "alb";
    width: .8rem;
    border-right: 1px solid #d4d4d4;
}

.h8-list ul li a .date p {
    font-size: .32rem;
}

.h8-list ul li a .date span {
    font-size: .16rem;
}

.h8-list ul li a .txt {
    flex: 1;
    min-width: 0;
    padding-left: .15rem;
}

.h8-list ul li a .txt p {
    font-size: .18rem;
    color: #222;
}

.h8-list {
    position: relative;
}

.h8-list ul {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    transition: all .6s;
}

.h8-list ul.on {
    position: relative;
    opacity: 1;
    z-index: 6;
}

@media (min-width: 1025px) {
    .h8-list ul li:hover::after {
        width: 100%;
    }

    .h8-list ul li:hover a .date {
        color: #07328e;
        border-right: 1px solid #07328e;
    }

    .h8-list ul li:hover a .txt p {
        color: #07328e;
    }
}
@media (max-width:1024px){.h8-l{width: 100%;}.h8-r{width: 100%;margin-top: .15rem;}.h8-l ul li{width: 49%;}}
@media (max-width:768px){.index-s8-s9{padding: .2rem 0;}.h8-l ul li a .cont{padding: .1rem 0;}.h8-l ul li a .cont span{margin-top: .1rem;}.h8-list ul li a .date p{font-size: .2rem;}.index-s8 .title001{justify-content: flex-start;}}
.index-s9 {
    padding-top: .9rem;
}

.index-s9 .wp {
    position: relative;
}

.zt {
    position: relative;
}

.zt a {
    display: block;
    position: relative;
}

.zt a .pic {
    padding-top: 44.4%;
}

.zt a p {
    position: absolute;
    left: .2rem;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .24rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.zt .bg-mask:hover .pic .a {
    transform: scale(1);
}

.index-s9 .prev {
    position: absolute;
    right: 101%;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    background: url(../images/zt-l.png) no-repeat center center/100% 100%;
    transition: all .6s;
    cursor: pointer;
}

.index-s9 .next {
    position: absolute;
    left: 101%;
    top: 50%;
    transform: translateY(-50%);
    width: .5rem;
    height: .5rem;
    background: url(../images/zt-r.png) no-repeat center center / 100% 100%;
    transition: all .6s;
    cursor: pointer;
}

.index-s9 .prev:hover {
    background: url(../images/zt-l1.png) no-repeat center center/100% 100%;
}

.index-s9 .next:hover {
    background: url(../images/zt-r1.png) no-repeat center center/100% 100%;
}
@media (max-width:1024px){.index-s9 .prev{z-index: 9; width: .35rem;height: .35rem;right: 99%;}.index-s9 .next{left: 99%; z-index: 9;width: .35rem;height: .35rem;}.index-s9 .wp{max-width: 93%;}.zt a p{font-size: .18rem;}}
@media (max-width:768px){.index-s9{padding-top: .2rem;}.index-s9 .wp{width: 85%;}}