@charset "utf-8";


@font-face {
    font-family: Bebas;
}

.cdot {
    position: fixed;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    z-index: 999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.curdot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    transition: all .5s;
    mix-blend-mode: difference;
}

.curprev {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    transition: all .5s;
}

.curprev svg {
    width: 20px;
    transform: rotate(180deg);
}

.curprev svg path {
    fill: #fff;
}

.curnext {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    transition: all .5s;
}

.curnext svg {
    width: 20px;
}

.curnext svg path {
    fill: #fff;
}

.cdot.prev>* {
    opacity: 0;
}

.cdot.prev .curprev {
    opacity: 1;
}

.cdot.next>* {
    opacity: 0;
}

.cdot.next .curnext {
    opacity: 1;
}




.clabel {
    position: fixed;
    left: 0;
    top: 0;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 1);
    z-index: 999;
    pointer-events: none;
    mix-blend-mode: difference;
}

.banner-line div {
    width: 0;
    height: 1px;
    background: rgba(208, 178, 126, 0.3);
    transition: all 3s;
}

.banner-line {
    flex: 1;
    min-width: 0;
    height: 1px;
    position: relative;
    display: flex;

}

.banner.ani .banner-line div {
    width: 100%;
}

.banner-linel {
    justify-content: flex-end;
}

.banner-liner {
    justify-content: flex-start;
}

.banner-linel::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 0.06rem;
    height: 0.06rem;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-linel::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0.06rem;
    width: 0.06rem;
    height: 0.06rem;
    background: #D0B27E;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-liner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0.06rem;
    height: 0.06rem;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
}

.banner-liner::after {
    content: "";
    position: absolute;
    top: 0;
    width: 0.06rem;
    height: 0.06rem;
    background: #D0B27E;
    border: 1px solid #D0B27E;
    transform: translateY(-50%) rotateZ(45deg);
    left: 0.06rem;
}

#downPage {
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    background-size: 100% 100%;
    cursor: pointer;
    margin: 0 .6rem;
    opacity: 0;
    transition: opacity 2s;
    animation: _ani1 10s infinite linear;
}

.banner.ani #downPage {
    opacity: 1;
}

#downPage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/down-page1.png) no-repeat;
    background-size: 100% 100%;
    animation: ani_bj 3s infinite linear;
    opacity: 0;
}

#downPage img {
    animation: _ani2 10s infinite linear;
}

@keyframes _ani1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes _ani2 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes ani_bj {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.45);
    }

    95% {
        opacity: 0;
        transform: scale(1.8);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.banner {
    position: relative;
    /* z-index: 9; */
    overflow: hidden;
    width: 100%;
}

.banner a {
    display: block;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner-more {
    font-size: .18rem;
    color: #fff;
    padding-left: .15rem;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-slide a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 2.5rem, rgba(0, 0, 0, 0) 100%);
    background-position: center top;
    background-size: auto 100%;
}

.banner .slick-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center bottom;
    z-index: 1;
    height: 2.74rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 226%);
    background-position: center bottom;
    background-size: auto 100%;
}

.banner .slick-slide a>img, .banner .slick-slide a>video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner .slick-slide a div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .slick-slide a div img {
    display: block;
    max-width: 70%;
    max-height: 1.83rem;
    transition: all 1s;
    transform: scale(0);
    opacity: 0;
}

.banner .slick-slide a div img.on {
    opacity: 1;
    transform: scale(1);
}

.banner .slick-slide.slick-current a>img {
    /* animation: img_scale linear 8s; */
}

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.b-dot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.16rem;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b-dot>div {
    width: 0.08rem;
    height: 0.24rem;
    background: rgba(255, 255, 255, .5);
    margin: 0 0.06rem;
    cursor: no-drop;
}

.banner .slick-dots {
    font-size: 0;
    text-align: right;
    transform: translateY(0);
    right: 0;
    left: 0;
    bottom: .16rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .slick-dots li {
    display: flex;
    vertical-align: middle;
    width: 0.26rem;
    height: 0.34rem;
    justify-content: center;
    align-items: center;
    margin: 0 .1rem;
    position: relative;
    transition: all .5s;
}

.banner .slick-dots li:before {}

.banner .slick-dots li:nth-child(1):before {
    content: none;
}

@keyframes cilcle {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.banner .slick-dots li button {
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 0.12rem;
    height: 0.12rem;
    background-color: #fff;
    transition: all .5s;
    opacity: .5;
}

.banner .slick-dots li.slick-active {
    background: url(../images/banner-dot-act.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
}

.banner .slick-dots li.slick-active button {
    opacity: 0;
}



.banner .banner-prev {
    position: absolute;
    left: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
}

.banner .banner-next {
    position: absolute;
    right: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
}

.banner .banner-prev span {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: 1.27rem;
    height: 1.52rem;
    background: url(../images/prev.png) no-repeat center center;
    background-size: 1.27rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.banner .banner-next span {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    width: 1.27rem;
    height: 1.52rem;
    background: url(../images/next.png) no-repeat center center;
    background-size: 1.27rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.banner .banner-prev:hover span {
    opacity: .4;
    z-index: 9;
}

.banner .banner-next:hover span {
    opacity: .4;
    z-index: 9;
}

.banner .banner-prev span:hover {
    opacity: 1;
    z-index: 9;
}

.banner .banner-next span:hover {
    opacity: 1;
    z-index: 9;
}

body {
    background: #fff url(../images/indexbg.png) repeat;
    background-position: center center;
}

/* index */
.index {
    z-index: 99;
    overflow: hidden;
    /* position: fixed; */
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 99;
}

.itit {
    position: relative;
}

.itit-text {
    display: flex;
    align-items: flex-start;
}

.itit-text h2 {
    font-family: SourceHanSerifCN-Medium;
    font-size: 0.7rem;
    font-weight: normal;
    line-height: .7rem;
    font-stretch: normal;
    letter-spacing: 0.04rem;
    color: #0071bb;
    transform: scaleX(.86);
    transform-origin: left center;
}

.itit-text div {
    margin-left: -.2rem;
}

.itit-text div b {
    font-family: SourceHanSerifCN-Medium;
    font-size: 0.48rem;
    line-height: .52rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0.03rem;
    color: #151515;
    display: block;
    transform: scaleX(.86);
    transform-origin: left center;
}

.itit-text div span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.12rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0.01rem;
    line-height: .15rem;
    color: #151515;
    margin-top: .07rem;
}

.itit-text-reve {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.itit-text-reve h2 {
    margin-left: -.2rem;
}

.itit-text-reve div {
    margin-left: 0;
}

.itit-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.itit-more a {
    display: block;
    font-family: SourceHanSerifCN-Medium;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 1px;
    color: #151515;
    padding-left: .38rem;
    background: url(../images/more-bg.png) no-repeat;
    background-position: left center;
    background-size: .31rem auto;
}

.itit-more a:hover {
    color: #0071bb;
}

.itit2 {
    position: relative;
    display: flex;
}

.itit2-text {
    display: flex;
    align-items: center;
}

.itit2-text h2 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.48rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0.03rem;
    color: #47748f;
    transform: scaleX(.86);
    transform-origin: right center;
    cursor: pointer;
    transition: all .5s;
}

.itit2-text div.on h2 {
    color: #0071bb;
}

.itit2-text div+div {
    position: relative;
    padding-left: .35rem;
    margin-left: .35rem;
}

.itit2-text div+div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0.02rem;
    height: .32rem;
    transform: translateY(-50%) rotate(15deg);
    background: #47748f;
}

.itit2-text div+div h2 {
    transform-origin: left center;
}

.itit2-more .itit-more {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.itit2-more .itit-more.on {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}


.s1 {
    padding-top: 1.15rem;
    position: relative;
    z-index: 1;
}

.s1::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.65rem;
    background: url(../images/s1-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 8.01rem;
    height: 12.55rem;
    z-index: -1;
    pointer-events: none;
}

.s1-c {
    display: flex;
}

.s1-l {
    width: 9.4rem;
    margin-right: .3rem;
}

.s1-r {
    flex: 1;
    min-width: 0;
}


.s1-lslick {
    margin-top: .4rem;
    border-radius: .1rem;
    overflow: hidden;
}


.s1-item {
    display: block;
    position: relative;
}

.s1-item .pic {
    padding-top: 56%;
    border-radius: .1rem;
}

.s1-item .pic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    max-height: 60%;
    pointer-events: none;
}

.s1-item .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 .45rem .32rem .45rem;
}

.s1-item .info span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    color: #ffffff;
    line-height: .2rem;
}

.s1-item .info h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: SourceHanSerifCN-Bold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #ffffff;
    margin-top: .1rem;
}

.s1-item .info h3 i {
    background-image: linear-gradient(#fff, #fff);
}

.s1-item .info p {
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.24rem;
    letter-spacing: 0rem;
    margin-top: .1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: .48rem;
    color: #ffffff;
    opacity: 0.7;
}

.s1-r ul li a {
    margin-top: .32rem;
}

.s1-r ul li a .pic {
    padding-top: 56%;
}

.s1-r ul li a .info {
    padding: .18rem .25rem;
}

.s1-b ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -.37rem;
    margin-top: .67rem;
}

.s1-b ul li {
    width: 33.33%;
}

.s1-b ul li a {
    display: block;
    margin: 0 .37rem;
    padding-bottom: .2rem;
}

.s1-b ul li a h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
    color: #073151;
}

.s1-b ul li a span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.17rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    color: #000f28;
    margin-top: .1rem;
}

.publine {
    display: block;
    position: relative;
}

.publine::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: solid 0.01rem #91b5c7;
    z-index: 1;
}

.publine::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    bottom: 0;
    border-bottom: solid 0.01rem #d2c5a8;
    z-index: 2;
    transition: all .6s;
}

.publine:hover::after {
    left: 0;
    width: 100%;
}

.s1-b .s1-item .info {
    position: static;
    padding: 0;
}


.s2 {
    padding-top: 1.3rem;
}

.tab-bd {
    position: relative;
    overflow: hidden;
}

.tab-bd>div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    z-index: -9;
    transition: all 0.5s;
    transform: translateY(100%);
}

.tab-bd>div.on {
    position: relative;
    z-index: 9;
    opacity: 1;
    transform: translateY(0);
}

.s2-c {
    margin-top: .65rem;
}

.s2-c ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -.32rem;
}

.s2-c ul li {
    width: 33.33%;
}

.s2-c ul li a {
    display: block;
    margin: 0 .32rem;
    background: url(../images/s2-itembg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all .5s;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0.1rem;
    padding: .57rem .35rem .2rem .35rem;
}

.s2-c ul li a .bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 100%;
    background: url(../images/s2-itembg2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.s2-c ul li a span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.17rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    color: #000f28;
}

.s2-c ul li a h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: .9rem;
    color: #073151;
    margin: .35rem 0 .3rem 0;
}

.s2-c ul li a div {
    display: flex;
    justify-content: flex-end;
}

.s2-c ul li a div b {
    width: 0.31rem;
    height: 0.26rem;
    transition: all .5s;
    overflow: hidden;
    position: relative;
}

.s2-c ul li a div b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s2-more.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transition: all .5s;

}

.s2-c ul li a div b::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s2-more2.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transform: translateX(-200%);
    transition: all .5s;
}

.s3 {
    padding-top: 1.15rem;
    position: relative;
}

.s3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.9rem;
    background: url(../images/s3-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 19.2rem;
    height: 9.43rem;
    z-index: -1;
    pointer-events: none;
}

.s3-c {
    display: flex;
    margin-top: .85rem;
}

.s3-l {
    width: 5.22rem;
    border-radius: 0.1rem;
    overflow: hidden;
    background: url(../images/s3-lbg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s3-l img {
    display: block;
    width: 100%;
}

.s3-r {
    flex: 1;
    min-width: 0;
}

.s3-r ul {
    display: flex;
    margin-left: .3rem;
}

.s3-r ul li {
    background: #f8f8f8;
    border-radius: 0.1rem;
    border: solid 1px #58585a;
    width: .85rem;
    height: 5.57rem;
    padding: .85rem .25rem .78rem .25rem;
    position: relative;
    z-index: 1;
    background: url(../images/s3-ritembg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all .5s;
    display:none;
}

.s3-r ul li:nth-child(-n+6){
    display:block;
}
.s3-r ul li+li {
    margin-left: .25rem;
}

.s3-r ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s3-item-hw.png) repeat-x;
    background-position: center top;
    background-size: auto .48rem;
    z-index: -1;
    pointer-events: none;
}

.s3-r ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s3-item-hw.png) repeat-x;
    background-position: center bottom;
    background-size: auto .48rem;
    z-index: -1;
    pointer-events: none;
}


.s3-r ul li .bgtop {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 0.48rem;
    z-index: -1;
    pointer-events: none;
}

.s3-r ul li .bgtop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 0.11rem;
    height: 0.11rem;
    background-color: #f8f8f8;
    border: solid 0.01rem #818181;
    border-radius: 50%;
    z-index: 2;
}

.s3-r ul li .bgtop::after {
    content: "";
    position: absolute;
    left: -.13rem;
    height: 0.03rem;
    top: 50%;
    transform: translateY(-50%);
    right: -.13rem;
    background: url(../images/s3-rdot.png) repeat-x;
    background-position: center 100%;
    z-index: 1;
}

.s3-r ul li:first-child .bgtop::after {
    left: 50%;
}

.s3-r ul li:last-child .bgtop::after {
    right: 50%;
}

.s3-r ul li a {
    display: block;
    position: relative;
    z-index: 1;
    height: 100%;
    overflow: hidden;
}

.s3-r ul li a .info-def {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .8s;
}

.s3-r ul li a .info-def h3 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #073151;
}

.s3-r ul li a .info-def span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.2rem;
    color: #baa575;
    /* margin-top: .01rem; */
    /*writing-mode: vertical-lr;
    writing-mode: tb-lr;*/
}

.s3-r ul li a .info {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    transition: all .5s;
}

.s3-r ul li a .info h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #073151;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: .6rem;
}

.s3-r ul li a .info div {
    margin-top: .3rem;
}

.s3-r ul li a .info div p {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.38rem;
    letter-spacing: 0rem;
    color: #baa575;
}

.s3-r ul li .bgbtm {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 0.48rem;
    z-index: -1;
    pointer-events: none;
}

.s3-r ul li .bgbtm::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    width: 0.11rem;
    height: 0.11rem;
    background-color: #f8f8f8;
    border: solid 0.01rem #818181;
    border-radius: 50%;
    z-index: 2;
}

.s3-r ul li .bgbtm::after {
    content: "";
    position: absolute;
    left: -.13rem;
    height: 0.03rem;
    top: 50%;
    transform: translateY(-50%);
    right: -.13rem;
    background: url(../images/s3-rdot.png) repeat-x;
    background-position: center 100%;
    z-index: 1;
}

.s3-r ul li:first-child .bgbtm::after {
    left: 50%;
}

.s3-r ul li:last-child .bgbtm::after {
    right: 50%;
}


.s4 {
    padding-top: .85rem;
    position: relative;

}

.s4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #fff, #f8f4eb 100%);
    z-index: -3;
}

.s4::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/indexbg.png) repeat;
    background-position: center center;
    z-index: -2;
}

.s4-c {
    display: flex;
    align-items: flex-end;
}

.s4-l {
    width: 5.06rem;
    margin-right: .78rem;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
}

.s4-l::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: -2.2rem;
    background-color: #0a5286;
    opacity: .6;
    height: 3.62rem;
}

.s4-l img {
    display: block;
    width: 6.59rem;
    margin-right: .28rem;
}

.s4-r {
    flex: 1;
    min-width: 0;
    padding-bottom: 1.05rem;
}


.s4-r .itit {
    margin-left: .56rem;
}

.s4-r ul {
    margin-top: .5rem;
}

.s4-r ul li a {
    display: block;
    padding: .43rem 0 .16rem 0;
}

.s4-r ul li a h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #073151;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}

.s4-r ul li a span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.17rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    color: #000f28;
    margin-top: .08rem;
}


.s5 {
    background: url(../images/s5-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s5 ul {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
}

.s5 ul li {
    width: 16.666%;
    height: 33.33%;
    border-top: 1px solid rgba(255, 255, 255, .3);
    border-left: 1px solid rgba(255, 255, 255, .3);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.s5 ul li .bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 100%;
    background: #0071bb;
    opacity: .5;
    z-index: -1;
}

.s5 ul li a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .45rem;
}

.s5 ul li a div .cnum {
   /* display: block;*/
    font-family: CanelaWeb-Regular;
    font-size: 0.46rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.6rem;
    letter-spacing: 0rem;
    color: #ffffff;
}

.s5 ul li a div  .cnumdw{
    font-size: 0.16rem; 
   color: #ffffff;
}


.s5 ul li a div p {
    font-family: MicrosoftYaHei;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.28rem;
    letter-spacing: 0rem;
    color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: .84rem;
    margin-top: .2rem;
}

.s5 ul li a h3 {
    font-family: SourceHanSerifCN-Medium;
    font-size: 0.7rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.81rem;
    letter-spacing: 0.14rem;
    color: #58585a;
    text-align: center;
    transform: scaleX(.86);
}

.s5 ul li.s5-tit {
    background: url(../images/s5-titbg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s5 ul li.s5-tit a {
    flex-direction: column;
}

.s6 {
    padding: 1.35rem 0 2.4rem 0;
    background: url(../images/s6-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s6-c {
    display: flex;
    margin-top: .7rem;
}

.s6-l {
    width: 4.23rem;
    margin-right: .45rem;
}

.s6-r {
    flex: 1;
    min-width: 0;
}

.s6-l ul li a {
    display: block;
    padding: .4rem 0;
}

.s6-l ul li:nth-child(1) a {
    padding-top: 0;
}

.s6-l ul li a h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    color: #073151;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s6-r {}

.s6-r ul {
    display: flex;
    justify-content: space-between;
}

.s6-r ul li {
    width: calc(50% - .16rem);
}


.s6-r ul li a {
    display: block;

}

.s6-r ul li a .pic {
    padding-top: 68%;
    border-radius: 0.1rem;
}

.s6-r ul li a .info {
    border: solid 1px #b3b3b3;
    padding: .48rem .35rem .84rem .35rem;
    position: relative;
    margin-top: -1.12rem;
    margin-left: .65rem;
    background: url(../images/s5-ritembg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all .6s;
    z-index: 9;
}

.s6-r ul li a .info h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #073151;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .52rem;
}

.s6-r ul li a .info p {
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.24rem;
    letter-spacing: 0rem;
    color: #333333;
    opacity: 0.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    height: .72rem;
    margin-top: .1rem;
}

.s7 {
    margin-top: -1.25rem;
    position: relative;
    overflow: hidden;
}


.s7-c ul {
    display: flex;
    margin-top: .5rem;
}

.s7-c ul li {
    width: 14.2857%;
}

.s7-c ul li a {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    height: 7.94rem;
    border-top: 0.06rem solid #d7bd95;
    padding-top: 1.42rem;
    position: relative;
    z-index: 1;
    transition: all .7s;
}

.s7-c ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    pointer-events: none;
}

.s7-c ul li:nth-child(1) a::before {
    background: url(../images/s7-itembg1.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(2) a::before {
    background: url(../images/s7-itembg2.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(3) a::before {
    background: url(../images/s7-itembg3.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(4) a::before {
    background: url(../images/s7-itembg4.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(5) a::before {
    background: url(../images/s7-itembg5.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(6) a::before {
    background: url(../images/s7-itembg6.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li:nth-child(7) a::before {
    background: url(../images/s7-itembg7.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s7-c ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: url(../images/s7-item-zz.png) repeat;
    background-position: center center;
    z-index: -1;
}

.s7-c ul li a div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.s7-c ul li a div img {
    display: block;
    width: 0.43rem;
}

.s7-c ul li a p {
    font-family: SourceHanSerifCN-Medium;
    font-size: 0.36rem;
    font-weight: bolder;
    line-height: 0.3rem;
    letter-spacing: 0.03rem;
    color: #cdb560;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    margin-top: .1rem;
}

.s7-c ul li:nth-child(4) a p {
    text-shadow: 0rem 0rem 0.08rem rgba(0, 74, 128, 0.58);
}

.s7-c ul li:nth-child(5) a p {
    color: #004a80;
}

.s7-tree {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 8;
    pointer-events: none;
    transform: translateY(-3.3rem);
}

.s7-tree img {
    display: block;
    width: 100%;
}

.s7-jianz {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(-3.6rem);
    z-index: 9;
    pointer-events: none;
}

.s7-jianz img {
    display: block;
    width: 98.33%;
}

.s8 {
    padding-top: 1.5rem;
    padding-bottom: 4.04rem;
    background: url(../images/s8-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    /* position: relative; */
}

.s8-c {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.58rem;
    margin: 0 auto;
    margin-top: 1.05rem;
    position: relative;
    z-index: 9;
    width: 19.2rem;
    left: 50%;
    transform: translateX(-50%);
}

.s8-link{
    position:absolute;
    top:50%;
   
    z-index: 9;
}

.s8-link:before{
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    animation: _circlescale2 infinite 4.2s  linear;
    z-index: 1;
}
.s8-link:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    animation: _circlescale2 infinite 4.2s -2.1s linear;
    z-index: 1;
}

.s8-linkl{
    left: 22%;
    transform: translateY(200%);
}
.s8-linkr{
    right: 14%;
    transform: translateY(-130%);
}

.s8-link a{
    display:block;
    width: .3rem;
    height: .3rem;
    background: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 9;
}

.s8-zsch {
    position: absolute;
    right: 50%;
    bottom: 50%;
    background: url(../images/zuo.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
    width: 12.29rem;
    height: 3.71rem;
    margin-right: -2.7rem;
    margin-bottom: -.58rem;
    pointer-events: none;
}

.s8-ysch {
    position: absolute;
    left: 50%;
    bottom: 50%;
    background: url(../images/you.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
    width: 9.89rem;
    height: 4.03rem;
    margin-bottom: .2rem;
    margin-left: -.7rem;
    pointer-events: none;
}


.s8-ch {
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/lu.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 19.2rem;
    height: 6.77rem;
    margin-top: -.6rem;
    pointer-events: none;
}

.s8-zxjz {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-.45rem);
    background: url(../images/tiyuguan.png) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 7.25rem;
    height: 3.34rem;
    pointer-events: none;
}

.s8-rsjz {
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/youbianjianzhu.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 6.19rem;
    height: 4.57rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0.05rem;
    pointer-events: none;
}

.s8-dbch {
    position: absolute;
    left: 0;
    top: 0;
    background: url(../images/dibushanm.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 15.12rem;
    height: 2.29rem;
    top: 100%;
    margin-top: -.45rem;
    margin-left: -.05rem;
    pointer-events: none;
}



.s8-c>a {
    display: block;
    position: relative;
    z-index: 9;
}

.s8-btn {
    position: relative;
}

.s8-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/vr-bw.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    animation: _circlescale2 infinite 4.2s -1.4s linear;
}

.s8-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/vr-bw.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale2 infinite 4.2s -2.8s linear;

}

.s8-btn .s8-vr {
    width: 1.39rem;
    height: 1.39rem;
    background: url(../images/s8-vrbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: -1;
    pointer-events: none;

}

.s8-btn .s8-vr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/vr-bw.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale2 infinite 4.2s linear;


}

@keyframes _circlescale2 {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.s8-btn b {
    font-family: CanelaWeb-Regular;
    font-size: 0.34rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0.08rem;
    color: #074f83;
}

.s8-btn span {
    font-family: SourceHanSerifCN-Bold;
    font-size: 0.28rem;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0.03rem;
    color: #074f83;
}

.s9 {
    position: relative;
    background: #f5f1ed url(../images/indexbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 9;
}

.s9::before {
    content: "";
    position: absolute;
    left: 0;
    top: -3.95rem;
    right: 0;
    background: url(../images/huaban.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    height: 4.56rem;
    z-index: -1;
    pointer-events: none;
}

.s9::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3rem;
    right: 0;
    background: url(../images/yingxingye.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 8.89rem;
    height: 10.15rem;
    z-index: -1;
    pointer-events: none;
}

.s9-c {
    display: flex;
    margin-top: .55rem;
}

.s9-l {
    width: 6.97rem;
    margin-right: .21rem;
    background: url(../images/s9-lbg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: .1rem;
    padding: .1rem .62rem .4rem 0.62rem;
}

.s9-l ul li a {
    display: block;
    padding: .48rem 0 .4rem 0;
}

.s9-l ul li:last-child a::before {
    display: none;
}

.s9-l ul li a.publine::before {
    border-bottom: 1px solid rgba(88, 88, 90, .4);
}

.s9-l ul li a.publine::after {
    border-bottom: 1px solid #3d6c89;
}

.s9-l ul li a div {
    display: flex;
    align-items: center;
}

.s9-l ul li a div b {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #3d6c89;
}

.s9-l ul li a div span {
    display: block;
    font-family: CanelaWeb-Regular;
    font-size: 0.17rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #3d6c89;
}

.s9-l ul li a h3 {
    font-family: SourceHanSerifCN-Bold;
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    color: #3b3b3d;
    margin-top: .18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s9-r {
    flex: 1;
    min-width: 0;
    border-radius: .1rem;
    overflow: hidden;
}

.s9-r ul li a {
    display: flex;
}

.s9-r ul li:nth-child(1) a {
    background: #145c91 url(../images/s7-item-zz.png) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s9-r ul li:nth-child(2) a {
    background: #58585a url(../images/s7-item-zz.png) no-repeat;
    background-position: center center;
    background-size: cover;
    flex-direction: row-reverse;
}

.s9-r ul li:nth-child(3) a {
    background: #b98647 url(../images/s7-item-zz.png) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s9-r ul li a .pics {
    width: 3.8rem;
}

.s9-r ul li a .pics .pic {
    padding-top: 76%;
}

.s9-r ul li a .info {
    flex: 1;
    min-width: 0;
    padding: .7rem .5rem 0.3rem .5rem;
}

.s9-r ul li a .info div {
    display: flex;
    align-items: center;
}

.s9-r ul li a .info div img {
    height: .24rem;
    display: block;
}

.s9-r ul li a .info div h3 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: SourceHanSerifSC-SemiBold;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #ffffff;
    position: relative;
    padding-left: .09rem;
    margin-left: .09rem;
}

.s9-r ul li a .info div h3 i {
    background-image: linear-gradient(#fff, #fff);
}

.s9-r ul li a .info div h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.22rem;
    background: rgba(255, 255, 255, .4);
}

.s9-r ul li a .info p {
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.24rem;
    letter-spacing: 0rem;
    color: #ffffff;
    opacity: 0.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    max-height: 1.2rem;
    margin-top: .12rem;
}


.fmeida {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.fmeida li {
    display: inline-block;
    vertical-align: middle;
    margin-left: .2rem;
}

.fmeida li:nth-child(1) {
    margin-left: 0;
}

.fmeida li a {
    display: block;
    position: relative;
}

.fmeida li a:hover {
    opacity: 1;
}

.fmeida li a>div:nth-child(1) {
    width: .56rem;
    height: 0.56rem;
    border-radius: 50%;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0.05rem .1rem rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
}

.fmeida li a>div:nth-child(1) img {
    height: .3rem;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all .5s;
    z-index: 1;
    opacity: 1;
}

.fmeida li a>div:nth-child(1) img:nth-child(1) {
    opacity: 0;

}

.fmeida li a>div>img {
    display: block;

}

.fmeida li a .foot-ewm {
    position: absolute;
    left: -48%;
    transform: translateX(-50%);
    bottom: 130%;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    opacity: 0;
    transition: all 1s;
    visibility: hidden;
}

.fmeida li a .foot-ewm img {
    display: block;
    width: 100px;
}

.fmeida li a .foot-ewm::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.fmeida li a .icon {
    width: .44rem;
    height: .44rem;
    border-radius: 50%;
    text-align: center;
    font-size: 0;
    position: relative;
    z-index: 1;
}

.fmeida li:hover a {
    overflow: visible;
}
.fmeida li:hover a div{
    transform:scale(1.1);
}
.fmeida li:hover a div:nth-child(1) img {
    opacity: 0;
}

.fmeida li:hover a div:nth-child(1) img:nth-child(1) {
    opacity: 1;
}

.fmeida li a .icon img {
    vertical-align: middle;
    /* opacity: .6; */
    display: block;
    width: 100%;
}

.fmeida li:hover a .foot-ewm {
    opacity: 1;
    bottom: 100%;
    visibility: visible;
}


.s10 {
    padding-top: 1.35rem;
    background: #f5f1ed url(../images/indexbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    background: linear-gradient(to bottom, #f5f1ed, #fff);
    position: relative;
}

.s10::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/indexbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s10 .itit {
    padding-top: 1.02rem;
}

.s10-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-right: .5rem;
}

.s10-svg svg {
    display: block;
    width: 23.35rem;
}

.s10-c {
    position: relative;
    height: 2.95rem;
    padding-top: .62rem;
    margin-top: .3rem;
}

.s10-c::before {
    content: "";
    position: absolute;
    left: -2.2rem;
    top: 0;
    width: 19.2rem;
    background: url(../images/s10-csd.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
    height: 2.95rem;
    pointer-events: none;
}

.s10-c ul {
    display: flex;
}

.s10-c ul li {
    position: relative;
}

.s10-c ul li::before {
    content: "";
    position: absolute;
    width: 0.15rem;
    height: 0.15rem;
    background-color: rgba(158, 25, 14, .2);
    z-index: 1;
    border-radius: 50%;
    left: 0;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
    animation: _circlescale infinite 2s linear;
}

.s10-c ul li::after {
    content: "";
    position: absolute;
    width: 0.15rem;
    height: 0.15rem;
    background-color: rgba(158, 25, 14, .2);
    z-index: 1;
    border-radius: 50%;
    left: 0;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
    animation: _circlescale infinite 2s -1s linear;
}


@keyframes _circlescale {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) scale(2);
        opacity: 0;
    }
}

.s10-c ul li:nth-child(1) {
    height: 0.78rem;
    width: 20%;
}

.s10-c ul li:nth-child(2) {
    height: 1.09rem;
    width: 23%;
    margin-left: 10%;
}

.s10-c ul li:nth-child(3) {
    height: 1.98rem;
    width: 27%;
    margin-left: 1%;
}

.s10-c ul li:nth-child(4) {
    height: 1.01rem;
    width: 10%;
    margin-left: 12%;
}


.s10-c ul li a {
    height: 100%;
    display: block;
    position: relative;
    padding-left: .15rem;
    border-left: 1px dashed #9e190e;
}

.s10-c ul li a::before {
    content: "";
    position: absolute;
    width: 0.09rem;
    height: 0.09rem;
    background-color: #9e190e;
    z-index: 1;
    border-radius: 50%;
    left: -1px;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.s10-c ul li a h3 {
    font-family: SourceHanSerifCN-SemiBold;
    font-size: 0.24rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #004a80;
    transform: translateY(-.05rem);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: .9rem;
}

.s10-c ul li a h3 i {
    /* background-image: linear-gradient(#004a80, #004a80); */
}





@media screen and (min-width:1025px) {

    .s3-r ul li.on {
        width: calc(100% - .85rem * 5 - .25rem * 5);
    }

    .s3-r ul li.on .info-def {
        opacity: 0;
        transform: translateX(-100%);
    }

    .s3-r ul li.on .info {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        transition-delay: .3s;
    }

    .s2-c ul li a:hover h3 {
        color: #58585a;
    }

    .s2-c ul li a:hover div b::before {
        transform: translateX(200%);
    }

    .s2-c ul li a:hover div b::after {
        transform: translateX(0);
    }

    .s6-r ul li a:hover .info {
        background: url(../images/s5-ritembg2.jpg) no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .s1-b ul li a:hover h3, .s4-r ul li a:hover h3, .s6-l ul li a:hover h3 {
        color: #baa575;
    }

    .s7-c ul li a:hover {
        padding-top: 1rem;
    }

    .s8-zsch {
        width: 0;
    }

    .s8-ysch {
        width: 0;
    }

    .s8-c.aos-animate .s8-zsch {
        width: 12.29rem;
        transition: all 3s 1s !important;
    }

    .s8-c.aos-animate .s8-ysch {
        width: 9.89rem;
        transition: all 3s 1s !important;
    }

    .s8-zxjz {
        margin-top: .5rem;
        opacity: 0;
    }

    .s8-rsjz {
        margin-top: .5rem;
        opacity: 0;
    }

    .s8-c.aos-animate .s8-zxjz {
        margin-top: 0;
        opacity: 1;
        transition: all 2s 2s !important;
    }

    .s8-c.aos-animate .s8-rsjz {
        margin-top: 0;
        opacity: 1;
        transition: all 2s 2.5s !important;
    }



    .s10-c::before {
        width: 0;
    }

    .s10-c.aos-animate::before {
        width: 19.2rem;
        transition: all 2s;
    }

    .s10-c ul li:nth-child(4) {

        transform: translateY(-.28rem);
    }

    .s10-c ul li:nth-child(4) a {
        padding-top: .28rem;
        margin-right: -.3rem;
    }

    .s10-c ul li:nth-child(4)::before {
        top: 0;
    }

    .s10-c ul li:nth-child(4)::after {
        top: 0;
    }

    .s10-c ul li:nth-child(4) a::before {
        top: 0;
    }

}

@media screen and (max-width:1024px) {

.cursor{
  display:none;
}
    .banner .slick-slide a>img, .banner .slick-slide a>video {
        height: auto;
    }

    .banner .slick-slide a::after {
        display: none;
    }

    .itit-text h2 {
        font-size: .46rem;
        line-height: .5rem;
    }

    .itit-text div b {
        font-size: .24rem;
        line-height: .3rem;
    }

    .itit-text div {
        margin-left: -.1rem;
    }

    .itit-text-reve div {
        margin-left: 0;
    }

    .itit2-text h2 {
        font-size: .3rem;
        line-height: .3rem;
    }

    .itit2-text div+div {
        margin-left: .15rem;
        padding-left: .15rem;
    }

    .itit2-text div+div::before {
        height: .24rem;
    }

    .itit-text-reve h2 {
        margin-left: 0rem;
    }


    .s1-b ul li a {
        margin: 0;
        padding-top: .2rem;
    }

    .s1-r ul li a {
        margin-top: 0.2rem;
    }

    .s1-item .info, .s1-r ul li a .info {
        padding: .18rem .2rem;
    }

    .s2 .itit2 {
        justify-content: flex-start;
        margin-left: -.2rem;
    }

    .s2-c ul li+li {
        margin-top: .2rem;
    }

    .s2-c ul li a {
        padding: .2rem;
        margin: 0;
    }

    .s2-c ul li a h3 {
        font-size: .18rem;
        margin: .2rem 0;
        height: auto;
        max-height: .9rem;
    }

    .s3-l {
        padding-bottom: .2rem;
        margin-bottom: .3rem;
    }

    .s3-r ul {
        width: auto;
        margin-left: 0;
        display: block;
    }

    .s3-r ul li {
        width: auto;
        height: auto;
        padding: .35rem .2rem;
    }

    .s3-r ul li+li {
        margin-left: 0;
        margin-top: 0.1rem;
    }

    .s3-r ul li a .info-def {
        flex-direction: row;
    }

    .s3-r ul li a .info-def h3, .s3-r ul li a .info-def span {
        writing-mode: horizontal-tb;
    }

    .s3-r ul li::before, .s3-r ul li::after {
        background-size: auto .3rem;
    }

    .s3-r ul li a .info-def span {
        margin-top: 0.05rem;
        margin-left:0.05rem;
    }

    .s4-r .itit {
        margin-left: 0;
    }

    .s4-r ul li a {
        padding: .2rem 0;
    }

    .s5 ul {
        height: auto;
    }

    .s5 ul li {
        width: 33.33%;
        height: 2.5rem;
    }

    .s5 ul li.s5-tit {
        width: 66.66%;
    }

    .s5 ul li a {
        padding: 0 .15rem;
    }

    .s5 ul li a div b {
        font-size: .36rem;
        line-height: .4rem;
    }

    .s5 ul li a h3 {
        font-size: .4rem;
        line-height: .4rem;
    }

    .s6-r {
        margin-top: .3rem;
    }

    .s6-r ul li {
        width: 49%;
    }

    .s6-l ul li a {
        padding: .2rem 0;
    }

    .s6-r ul li a .pic {
        border-radius: .1rem .1rem 0 0;
    }

    .s6-r ul li a .info {
        padding: .2rem .15rem;
        margin-left: 0;
        margin-top: 0;
    }

    .s7-c ul li a {
        padding-top: 1rem;
        height: 5rem;
    }

    .s7-c ul li a p {
        font-size: .2rem;
    }

    .s7-c ul li a div img {
        width: .3rem;
    }

    .s9 .itit {
        display: block;
    }

    .s9 .itit .itit-text {
        justify-content: center;
    }

    .fmeida {
        justify-content: center;
        margin-top: .25rem;
    }

    .s9-l {
        padding: .1rem .15rem;
        margin-bottom: .3rem;
    }

    .s9-l ul li a {
        padding: .25rem 0;
    }

    .s9-r ul li a {
        border-radius: .1rem .1rem 0 0;
    }

    .s9-r ul li a .pics .pic {
        border-radius: .1rem .1rem 0 0;
    }

    .s7-tree {
        transform: translateY(-50%);
    }

    .s7-jianz {
        transform: translateY(-45%);
    }

    .s8-c {
        transform: translateX(-50%) scale(.7);
        margin-top: .25rem;
    }
.s8-link a{
     width: .2rem;
        height: .2rem;
}
    .s8-linkl{
        left:auto;
        right:50%;
        margin-right:2rem;
        transform: translateY(420%);
    }
    .s8-linkr{
        right:auto;
        left:50%;
        margin-left:2rem;
        transform: translateY(200%);
    }

    .s1, .s2, .s3, .s4, .s6, .s8, .s10 {
        padding-top: .5rem;
    }

    .s4-r {
        padding-bottom: .5rem;
    }

    .s1-lslick, .s2-c, .s3-c, .s7-c ul, .s9-c, .s6-c {
        margin-top: .35rem;
    }

    .s4-r ul {
        margin-top: .3rem;
    }

    .s6, .s8 {
        padding-bottom: 1.8rem;
    }

    .s9::before {
        top: 0;
        background-size: 100% auto;
        width: 1024px;
        height: 243px;
        background-position: center top;
        transform: translateY(-100%);
    }

    .s10-svg {
        padding-right: .2rem;
    }

    .s10-svg svg {
        width: 12rem;
    }

    .s10 .itit {
        padding-top: .5rem;
    }

    .s10-c::before {
        display: none;
    }

    .s10-c ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .s10-c ul li {
        width: 49% !important;
        margin-left: 0 !important;
        height: auto !important;
    }

    .s10-c ul li a h3 {
        height: .9rem;
    }

    .s10-c ul li:nth-child(-n+2) {
        margin-bottom: .4rem;
    }

    .s10-c ul li::before, .s10-c ul li a::before, .s10-c ul li::after {
        top: 0;
    }

    .s10-c {
        padding-top: 0.3rem;
    }


    .s3-r ul li .bgtop, .s3-r ul li .bgbtm, .s4-l, .s5 ul li.null {
        display: none;
    }

    .s3-c, .s4-c, .s6-c, .s9-c {
        display: block;
    }

    .s1-c, .s1-b ul, .s2-c ul {
        display: block;
        margin: 0;
    }

    .s1-l, .s3-l, .s6-l, .s9-l {
        width: auto;
        margin-right: 0;
    }

    .s1-b ul li, .s2-c ul li {
        width: auto;
    }


    .s1-b ul li a h3, .s1-item .info h3, .s3-r ul li a .info-def h3, .s4-r ul li a h3, .s6-l ul li a h3, .s9-r ul li a .info div h3, .s10-c ul li a h3 {
        font-size: .18rem;
    }

    .s1-b ul li a h3, .s4-r ul li a h3 {
        height: auto;
        max-height: .6rem;
    }



}


@media screen and (max-width:768px) {
    .s5 ul li {
        width: 50%;
        height: 1.8rem;
    }

    .s5 ul li.s5-tit {
        width: 50%;
    }

    .s5 ul li a div p {
        margin-top: .1rem;
    }

    .s9-r ul li+li {
        margin-top: .2rem;
    }

    .s9-r ul li a {
        display: block;
    }

    .s9-r ul li a .pics {
        width: auto;
    }

    .s9-r ul li a .info {
        padding: .2rem .15rem;
    }

    .s7-c ul li a {
        height: 4rem;
    }
}






.s1-list{}
.s1-list ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.2rem;
}
.s1-list ul li{
    width: 33.33%;
    margin-top: .38rem;
}
.s1-list ul li a{
    display: block;
    margin: 0 .2rem;
}
.s1-list ul li a .pic{
    padding-top: 66%;
    border-radius: 0.1rem;
}
.s1-list ul li a .info{
    padding-top: .3rem;
}
.s1-list ul li a .info h3{
    font-size: 0.2rem;
	font-weight: normal;
	font-stretch: normal;
	line-height: 0.3rem;
	color: #073151;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}
.s1-list ul li a:hover .info h3{
    color: #baa575;
}

@media screen and (max-width:1024px){
    .s1-list ul {
        margin: 0 -.1rem;
    }
    .s1-list ul li{
        width: 50%;
        margin-top: .25rem;
    }
    .s1-list ul li a{
        margin: 0 .1rem;
    }
    .s1-list ul li a .info{
        padding-top: .15rem;
    }
    .s1-list ul li a .info h3{
        font-size: .18rem;
    }
}