@charset "utf-8";

.gradient-stroke {
    font-size: 60px;
    font-weight: bold;
    position: relative;
    color: transparent;
    /* 主文字透明 */
}

/* 第一层：渐变边框（放大一层做描边） */
.gradient-stroke::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    /* 渐变背景 */
    background: linear-gradient(90deg, #ff0080, #00bfff, #ff0080);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 3px transparent;
    /* 边框宽度 */
    z-index: 1;
}

/* 第二层：白色文字填充（盖住中间，只留边框） */
.gradient-stroke::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    /* 中间文字颜色 */
    z-index: 2;
}


.banner.ani #downPage {
    opacity: 1;
}

.banner {
    position: relative;
    z-index: 9;
    left: 0;
    top: 0;
    /* width: 100%;
    height: 100vh; */
    overflow: hidden;
}

.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;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    height: 1.86rem;
    background: linear-gradient(180deg, rgba(2, 12, 37, 0) 0%, rgba(2, 12, 37, 0.5) 100%);
}

.banner .slick-slide a>img, .banner .slick-slide a>video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner .slick-slide a p {
    position: absolute;
    left: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    bottom: .35rem;
    font-size: 0.3rem;
    font-weight: normal;
    line-height: 0.35rem;
    letter-spacing: 0rem;
    color: #ffffff;
    z-index: 9;
    /* width: 0; */
    right: 6.6rem;
}

.banner .slick-slide.slick-current a>img {
    animation: img_scale linear 8s;
}

.banner .slick-slide.slick-current a p {
    /* width: calc(50% - 1.6rem); */
    transition: all 5s;
}

@keyframes img_scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }

}

.banner .slick-dots {
    position: absolute;
    font-size: 0;
    display: flex !important;
    justify-content: flex-end;
    align-items: flex-end;
    bottom: .35rem;
    left: 0;
    right: 0;
    width: 16rem;
    margin: 0 auto;
    padding-right: .5rem;
}


.banner .slick-dots li {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    transition: all .5s;
    margin: 0;
}

.banner .slick-dots li:before {}

.banner .slick-dots li:after {}

/* .banner .slick-dots li:nth-child(1):before {
    display: none;
} */


.banner .slick-dots li span {
    position: relative;
    transition: all .5s;
    font-size: .16rem;
    line-height: .26rem;
    color: #FFFDFD;
    display: flex;
    align-items: center;
    font-family: DejaVuMathTeXGyre-Regular;
}

.banner .slick-dots li span::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    /* transition: all .5s; */
    right: 0;
    margin-right: .73rem;
    background: #fff;
}

.banner .slick-dots li span::after {
    content: "";
    display: block;
    /* \: translateX(-50%) translateY(-50%) scale(0); */
    width: 0;
    height: 1px;
    transition: all .5s;
    background: #fff;
    opacity: .3;
    margin-left: .1rem;
}


.banner .slick-dots li.slick-active {
    opacity: 1;
    background: transparent;
}

.banner .slick-dots li.slick-active span {}

.banner .slick-dots li.slick-active span::after {
    width: 0.73rem;
}

.banner .slick-dots li.slick-active span::before {
    width: .73rem;
    margin-right: 0;
    transition: all 3s;
}

.banner .slick-dots li.slick-active span::after {}

.banner .slick-dots li.slick-active::after {
    /* opacity: 1; */
}



.banner .slick-dots li {
    display: flex;
    margin: 0 ;
    transition: all 0.3s;
    vertical-align: middle;
    width: .45rem;
    height: .36rem;
    justify-content: center;
    align-items: center;
}

.banner .slick-dots li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/baanner-dot-t.png) no-repeat;
    background-position: center center;
    background-size: auto 100%;
    opacity: 0;
    transition: all .5s;
    transform: scale(0);
}

.banner .slick-dots li button {
    width: .1rem;
    height: .1rem;
    border-radius: 50%;
    background: #fff;
    margin-top: .1rem;
}

.banner .slick-dots li.slick-active::before {
    opacity: 1;
    transform: scale(1);
}

.banner .slick-dots li.slick-active button {
    opacity: 0;
}

.banner-enter {
    position: absolute;
    right: 1.6rem;
    bottom: .35rem;
    z-index: 9;
}

.banner-enter a {
    height: 0.32rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-enter a img {
    display: block;
    width: 0.3rem;
}


.banner .banner-prev {
    position: absolute;
    left: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
    display: none !important;
}

.banner .banner-next {
    position: absolute;
    right: 0;
    width: 10%;
    top: 0;
    bottom: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
    display: none !important;
}

.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:hover .banner-prev span {
    opacity: .4;
    z-index: 9;
}

.banner:hover .banner-next 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;
}

/* index */
.index {
    position: relative;
    z-index: 99;
    /* padding-top: .5rem; */
    font-size: 0;
    /* position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0; */
    z-index: 99;
    overflow: hidden;
    /* background: linear-gradient(#f2f2f9, #ffffff, #f2f2f9); */
}


.tit {
    position: relative;
    z-index: 9;
}

.tit-name {
    display: flex;
    align-items: center;
    padding-left: .6rem;
    position: relative;
}

.tit-name>img {
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    z-index: -1;
}

.tit-name>div h2 {
    margin-top: 0.02rem;
    font-size: 0.4rem;
    font-weight: 600;
    font-stretch: normal;
    line-height: 0.4rem;
    letter-spacing: 0.01rem;
    color: #2a2a2a;
}

.tit-w .tit-name>div h2 {
    color: #fff;
}


.tit-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.tit-more a {
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.4rem;
    color: #2D7BBB;
    transition: all .5s;
    border-radius: 0.25rem;
    padding-right: .3rem;
}

.tit-more a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: .12rem;
    border-radius: 50%;
    background: url(../images/more-icon.png) no-repeat;
    background-position: right center;
    background-size: 100% 100%;
}




.flex-jcct .tit-name {
    padding-left: 0;
}

.flex-jcct .tit-name>img {
    left: 50%;
    top: 10%;
    transform: translateX(-50%) translateY(-50%);
}





.s1 {
    padding: .9rem 0 0 0;
}

.s1-l {}

.s1-lc {
    margin-top: .25rem;
}

.s1-ll {
    width: 5.97rem;
    margin-right: .59rem;
}

.s1-ll .slick {
    position: relative;
}

.s1-ll ul li a {
    display: block;
    transition: all .5s;
}

.s1-ll ul li a .pic {
    padding-top: 60%;
    border-radius: .1rem;
}

.s1-ll ul li a .info {
    padding: .25rem 0 0 0;
}

.s1-ll ul li a .info h3 {
    font-size: 0.24rem;
    font-weight: 600;
    font-stretch: normal;
    line-height: 0.36rem;
    letter-spacing: 0rem;
    color: #111111;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-ll ul li a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #767676;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.6rem;
    margin-top: .15rem;
}

.enterlink {
    display: flex;
}

.enterlink a {
    display: block;
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #005fb7;
    background: url(../images/enterlink.png) no-repeat;
    background-position: left bottom;
    background-size: auto .19rem;
    padding-left: .72rem;
    padding-bottom: .12rem;
    margin-top: .55rem;

}


.s1-ll .slick .slick-dots {
    position: absolute;
    right: .1rem;
    top: 0;
    z-index: 9;
    width: auto;
    left: auto;
    margin-top: 60%;
    transform: translateY(calc(-100% - .1rem));
    bottom: auto;
}

.s1-ll .slick .slick-dots li {
    display: none;
    width: auto;
    height: auto;
}

.s1-ll .slick .slick-dots li div {
    display: flex;
    align-items: flex-end;
    font-family: FuturaBT-Medium;
}

.s1-ll .slick .slick-dots li div span {
    font-size: 0.24rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.32rem;
    letter-spacing: 0rem;
    color: #fff;
}

.s1-ll .slick .slick-dots li div i {
    height: 0.15rem;
    width: 1px;
    background: #fff;
    margin: 0 .05rem;
    transform: rotateZ(26deg);
    margin-bottom: .05rem;
}

.s1-ll .slick .slick-dots li div b {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.28rem;
    letter-spacing: 0rem;
    color: #fff;
}

.s1-ll .slick .slick-dots li.slick-active {
    display: block;
}

.s1-ll .slick .banner-prev {
    position: absolute;
    left: 0;
    width: 10%;
    top: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
    margin-top: 30%;
    transform: translateY(-50%);
}

.s1-ll .slick .banner-next {
    position: absolute;
    right: 0;
    width: 10%;
    top: 0;
    transition: all .6s;
    cursor: pointer;
    z-index: 9;
    margin-top: 30%;
    transform: translateY(-50%);
}

.s1-ll .slick .banner-prev span {
    display: block;
    width: .64rem;
    height: .76rem;
    background: url(../images/prev.png) no-repeat center center;
    background-size: .5rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.s1-ll .slick .banner-next span {
    display: block;
    width: .64rem;
    height: .76rem;
    background: url(../images/next.png) no-repeat center center;
    background-size: .5rem auto;
    opacity: 0;
    z-index: -1;
    cursor: pointer;
    transition: .6s
}

.s1-ll .slick:hover .banner-prev span {
    opacity: 1;
    z-index: 9;
}

.s1-ll .slick:hover .banner-next span {
    opacity: 1;
    z-index: 9;
}

.s1-ll .slick .banner-prev span:hover {
    opacity: 1;
    z-index: 9;
}

.s1-ll .slick .banner-next span:hover {
    opacity: 1;
    z-index: 9;
}

.s1-lr {
    margin-top: -.18rem;
}

.s1-lr ul li a {
    display: block;
    padding: .18rem 0 .1rem 0;
    position: relative;
    z-index: 1;
}

.s1-lr ul li+li a {
    border-top: solid 1px rgba(128, 128, 128, .2);
}

.s1-lr ul li a::before {
    content: "";
    position: absolute;
    left: -.27rem;
    top: 0;
    right: -.27rem;
    bottom: 0;
    background: #0075b7 url(../images/itembg.jpg) no-repeat;
    background-position: right bottom;
    background-size: 5.3rem auto;
    z-index: -1;
    transition: all .5s;
    border-radius: .1rem;
    box-shadow: 0rem 0.08rem 0.1rem 0rem rgba(0, 58, 90, 0.2);
    border-radius: 0.05rem;
    opacity: 0;
    pointer-events: none;
}

.s1-lr ul li a h3 {
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 0.3rem;
}

.s1-lr ul li a span {
    display: block;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    color: #114686;
    margin-top: .05rem;
    font-family: FuturaBT-Medium;
}

.s1-r {
    width: 3.87rem;
    margin-left: .56rem;
}

.s1-r ul {
    margin-top: .24rem;
}

.s1-r ul li+li {
    margin-top: .45rem;
}

.s1-r ul li a {
    display: flex;
    align-items: center;
}

.s1-r ul li a .pics {
    border: 1px solid #95c4ff61;
    width: 1.15rem;
    height: 0.55rem;
    background: #fff;
    margin-right: .18rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.s1-r ul li a .pics img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.s1-r ul li a .info {
    flex: 1;
    min-width: 0;
}

.s1-r ul li a .info h3 {
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: .6rem;
}

.s2 {
    padding-top: 1rem;
}

.s2-c {}

.s2-l {
    width: 6.8rem;
    margin-right: .53rem;
}

.s2-l ul {
    background: #f5f8fd;
    border-radius: .1rem;
    margin-top: .3rem;
}

.s2-l ul li a {
    display: flex;
    align-items: center;
    padding: .22rem 0.2rem .2rem 0;
}

.s2-l ul li+li a {
    border-top: solid 1px rgba(128, 128, 128, .1);
}

.s2-l ul li a span {
    width: 1.54rem;
    font-family: FuturaBT-Medium;
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #114686;
    text-align: center;
}

.s2-l ul li a h3 {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #333333;
}

.s2-r {}

.s2-r .slick>ul {
    margin: 0 -.25rem;
    margin-top: .25rem;
    padding-bottom: .1rem;
}

.s2-r ul .slick-slide {
    display: flex;
    flex-wrap: wrap;
}

.s2-r ul .slick-slide>div {
    /* width: 50%; */
    display: flex;
}

.s2-r ul .slick-slide>div:nth-child(2)~div li a {
    border-top: solid 1px rgba(128, 128, 128, .2);
}

.s2-r ul li {
    display: block !important;
}

.s2-r ul li a {
    display: block;
    padding: .25rem 0;
    margin: 0 .25rem;
    position: relative;
    z-index: 1;
}

.s2-r ul li a::before {
    content: "";
    position: absolute;
    left: -.25rem;
    top: 0;
    right: -.25rem;
    bottom: 0;
    background: #0075b7 url(../images/itembg.jpg) no-repeat;
    background-position: right bottom;
    background-size: 5.3rem auto;
    z-index: -1;
    transition: all .5s;
    border-radius: .1rem;
    box-shadow: 0rem 0.08rem 0.1rem 0rem rgba(0, 58, 90, 0.2);
    border-radius: 0.05rem;
    opacity: 0;
    pointer-events: none;
}

.s2-r ul li a h3 {
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}

.s2-r ul li a span {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #114686;
    display: block;
    margin-top: .02rem;
    font-family: FuturaBT-Medium;
}

.s2-r .slick-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s2-r .slick-dots li {
    width: 0.06rem;
    height: 0.06rem;
    background: #7fbcde;
    border-radius: .1rem;
    margin: 0 .04rem;
    transition: all .5s;
}

.s2-r .slick-dots li.slick-active {
    background: #007abe;
    width: 0.45rem;
}

.s3 {
    position: relative;
    z-index: 3;
    padding-top: 1.1rem;
    padding-bottom: 1.3rem;
    margin-top: .8rem;
}

.s3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: -1.24rem;
    z-index: -1;
    background: url(../images/s3-bg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.s3-c {}

.s3-l {}

.s3-lc {
    margin-top: .35rem;
    display: flex;
}

.s3-ll {
    width: 3.1rem;
    margin-right: .3rem;

}

.s3-ll .slick>ul .slick-list {
    box-shadow: 0rem 0 0.1rem 0rem rgba(0, 58, 90, 0.2);
    border-radius: .1rem;
    overflow: hidden;
}

.s3-ll ul li a {
    display: block;
    opacity: 0;
    transition: all .5s;
}

.s3-ll ul li.slick-current a {
    opacity: 1;
}

.s3-ll ul li a .pic {
    padding-top: 143%;
    border-radius: .1rem;
}

.s3-ll .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    margin-top: .2rem;
}

.s3-ll .slick-dots li {
    width: 0.06rem;
    height: 0.06rem;
    background: #7fbcde;
    border-radius: .1rem;
    margin: 0 .04rem;
    transition: all .5s;
}

.s3-ll .slick-dots li.slick-active {
    background: #007abe;
    width: 0.45rem;
}

.s3-lr {}

.s3-lr ul li {}

.s3-lr ul li a {
    display: block;
    padding: .1rem 0.1rem .13rem 0.2rem;
    position: relative;
    z-index: 1;
}

.s3-lr ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #0075b7 url(../images/itembg.jpg) no-repeat;
    background-position: right bottom;
    background-size: 5.3rem auto;
    z-index: -1;
    transition: all .5s;
    border-radius: .1rem;
    box-shadow: 0rem 0.08rem 0.1rem 0rem rgba(0, 58, 90, 0.2);
    border-radius: 0.05rem;
    opacity: 0;
    pointer-events: none;
}

.s3-lr ul li a p {
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #0075b7;
}

.s3-lr ul li a h3 {
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #2a2a2a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: .04rem;
}

.s3-lr ul li a dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.03rem;
}

.s3-lr ul li a dl dd {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #767676;
    padding-left: .25rem;
    margin-right: .1rem;
}

.s3-lr ul li a dl dd:last-child {
    margin-right: 0;
}


.s3-lr ul li a dl dd.date {
    background: url(../images/icon-date.png) no-repeat;
    background-position: left center;
    background-size: .17rem auto;
}

.s3-lr ul li a dl dd.address {
    background: url(../images/icon-address.png) no-repeat;
    background-position: left center;
    background-size: .19rem auto;
}

.s3-lr ul li a dl dd.user {
    background: url(../images/icons-user.png) no-repeat;
    background-position: left center;
    background-size: .24rem auto;
    padding-left: .3rem;
}

.s3-lr ul li.on a::before {
    opacity: 1;
}

.s3-lr ul li.on a h3 {
    color: #ffffff;
}

.s3-lr ul li.on a p, .s3-lr ul li.on a dl dd {
    color: #ffd71c;
}

.s3-lr ul li.on a dl dd.date {
    background: url(../images/icon-date-w.png) no-repeat;
    background-position: left center;
    background-size: .17rem auto;
}

.s3-lr ul li.on a dl dd.address {
    background: url(../images/icon-address-w.png) no-repeat;
    background-position: left center;
    background-size: .19rem auto;
}

.s3-lr ul li.on a dl dd.user {
    background: url(../images/icon-user-w.png) no-repeat;
    background-position: left center;
    background-size: .24rem auto;
    padding-left: .3rem;
}

.s3-r {
    width: 6rem;
    margin-left: .15rem;
    position: relative;
    z-index: 1;
}

.s3-r>h3 {
    position: absolute;
    right: -.4rem;
    top: 0;
    z-index: -1;
    font-size: 1.19rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: .85rem;
    letter-spacing: 0.06rem;
    color: #ffffff;
    opacity: 0.22;
    font-family: DejaVuMathTeXGyre-Regular;
    /* color: transparent; */
    text-align: center;
    -webkit-text-stroke: rgba(13, 117, 205, .34) 1px;
    text-transform: uppercase;
}

.s3-r .swiper-container {
    width: 3.4rem;
    padding-bottom: .25rem;
    position: absolute;
    z-index: 99;
    padding-top: .2rem;
    pointer-events: none;
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    transition: all .5s;
}

.s3-r .swiper-container.show {
    pointer-events: auto;
    opacity: 1;
}

.s3-r .swiper-container::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    right: 0;
    bottom: 0;
    border-radius: 0.1rem;
    background: rgba(255, 255, 255, 0.95);
    z-index: -1;
}

.s3-r .swiper-container::after {
    content: "";
    position: absolute;
    left: 50%;
    top: .1rem;
    transform: translateX(-50%);
    border-width: 0 .15rem .15rem .15rem;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.95) transparent;
    z-index: -1;
}

.s3-r .swiper-container .swiper-slide a {
    display: block;
    padding: .27rem .3rem 0 .3rem;
}

.s3-r .swiper-container .swiper-slide a div {
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.3rem;
    color: #222222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
}

.s3-r .swiper-container .swiper-slide a div b {
    float: left;
    color: #01267E;
    font-weight: normal;
}

.s3-r .swiper-container .pubpage {
    margin-top: .2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 9;
    opacity: 1;
    bottom: auto;
}

.s3-r .swiper-container .pubpage span {
    width: 0.05rem;
    height: 0.05rem;
    background: #D8D8D8;
    margin: 0 .05rem;
    opacity: 1;
}

.s3-r .swiper-container .pubpage span.swiper-pagination-bullet-active {
    background: linear-gradient(40deg, #C2A66B 38%, #E6D9AC 96%);
}


.s4 {
    position: relative;
    z-index: 99;
}

.s4-c {
    position: relative;
}

.s4-c .swiper-container {
    margin-top: .64rem;
    overflow: visible;
}

.s4-c .swiper-container .swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

.s4-c .swiper-container .swiper-slide.swiper-slide-active {
    opacity: 1;
    pointer-events: auto;
}

.s4-c .swiper-container .swiper-slide.swiper-slide-active+.swiper-slide {
    opacity: 1;
    pointer-events: auto;
}


.s4-c .swiper-container .swiper-slide a {
    display: block;
    position: relative;
}

.s4-c .swiper-container .swiper-slide a .icons {
    position: absolute;
    bottom: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
}

.s4-c .swiper-container .swiper-slide a .icons img {
    display: block;
    filter: drop-shadow(0 .1rem .05rem #fff);
}

.s4-c .swiper-container .swiper-slide a .pic {
    padding-top: 130%;
    border-radius: .1rem;
}

.s4-c .swiper-container .swiper-slide a h3 {
    z-index: 99;
    position: absolute;
    left: 0;
    right: 0;
    top: 1.2rem;
    font-size: 0.38rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.32rem;
    letter-spacing: 0.03rem;
    color: #ffffff;
    text-align: center;
    padding: 0 .2rem;
    font-family: SourceHanSerifCN-Bold;
    transition: all .5s;
}

.s4-c .prev {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, .5) url(../images/icon-prev.svg) no-repeat;
    background-position: center center;
    background-size: auto .25rem;
    position: absolute;
    left: -.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    box-shadow: 0 0 .24rem rgba(0, 117, 183, .1);
}

.s4-c .next {
    width: 0.8rem;
    height: 0.8rem;
    background: rgba(255, 255, 255, .5) url(../images/icon-next.svg) no-repeat;
    background-position: center center;
    background-size: auto .25rem;
    position: absolute;
    right: -.6rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    box-shadow: 0 0 .24rem rgba(0, 117, 183, .1);
}

.s4-c .prev.swiper-button-disabled {
    opacity: 0;
    cursor: no-drop;
}

.s4-c .next.swiper-button-disabled {
    opacity: 0;
    cursor: no-drop;
}

.s5 {
    position: relative;
    z-index: 1;
    padding-bottom: 2.1rem;
}

.s5 .bg1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s5-bluebg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: -2;
    transition: all .5s;
}

.s5 .bg2 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s5-yellobg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    transition: all .5s;
}

.s5-c {
    display: flex;
}

.s5-l {
    padding-top: 2.47rem;
    position: relative;
}

.s5-ldoor {
    position: absolute;
    left: 0;
    width: 4.6rem;
    height: 5.2rem;
    bottom: 0;
    overflow: hidden;
    border-radius: 2.45rem 2.45rem 0rem 0rem;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-left: .15rem;
    /* mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%); */
    /* -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%); */
}

.s5-ldoor .s5-ldoorbg1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/s5-jzw-bluebg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: -2;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    transition: all .5s;
}

.s5-ldoor .s5-ldoorbg2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/s5-jzw-yellobg.png) no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: -1;
    opacity: 0;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    transition: all .5s;
}

.s5-ldoor img {
    display: block;
    width: 100%;
    opacity: .5;
    margin-bottom: .28rem;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 0) 100%);
}

.s5-l .qdx {
    position: relative;
    max-lines: .22rem;
    z-index: 1;
}

.s5-l::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    mask: linear-gradient(0deg, transparent, #fff 100%);
    -webkit-mask: linear-gradient(0deg, rgba(255, 255, 255, .8) 0, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, .3) 100%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.s5-l .qdx div {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-repeat: no-repeat !important;
    background-size: 100% 100% !important;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.s5-l .qdx div:nth-child(8) {
    width: 4.9rem;
    height: 5.49rem;
    /* background-color: rgba(142, 175, 194, .47); */
    /* border-radius: 2.45rem 2.45rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    /* opacity: 0.47; */
    position: relative;
}

.s5-l .qdx div:nth-child(7) {
    width: 5.32rem;
    height: 5.96rem;
    /* background-color: rgba(142, 175, 194, .25); */
    /* border-radius: 2.66rem 2.66rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.5;
}

.s5-l .qdx div:nth-child(6) {
    width: 5.82rem;
    height: 6.47rem;
    /* background-color: rgba(142, 175, 194, .34); */
    /* border-radius: 3.14rem 3.14rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.5;
}

.s5-l .qdx div:nth-child(5) {
    width: 6.35rem;
    height: 7.07rem;
    /* background-color: rgba(142, 175, 194, .35); */
    /* border-radius: 3.18rem 3.18rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.5;
}

.s5-l .qdx div:nth-child(4) {
    width: 6.91rem;
    height: 7.68rem;
    /* background-color: rgba(142, 175, 194, .32); */
    /* border-radius: 3.85rem 3.85rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.5;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.s5-l .qdx div:nth-child(3) {
    width: 7.5rem;
    height: 8.34rem;
    /* background-color: rgba(142, 175, 194, .36); */
    /* border-radius: 3.65rem 3.65rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.41;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.s5-l .qdx div:nth-child(2) {
    width: 8.11rem;
    height: 9.02rem;
    /* background-color: rgba(142, 175, 194, .36); */
    /* border-radius: 4.06rem 4.06rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.41;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.s5-l .qdx div:nth-child(1) {
    width: 8.82rem;
    height: 9.82rem;
    /* background-color: rgba(142, 175, 194, .36); */
    /* border-radius: 4.42rem 4.42rem 0rem 0rem; */
    /* border: solid 1px #6a9ab5; */
    opacity: 0.41;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0.0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.s5-l .year {}

.s5-l .year li {
    position: absolute;
    display: flex;
    align-items: center;
    left: 7rem;
    top: 1.1rem;
    transition: all .5s;
    z-index: 11;
    cursor: pointer;
}

.s5-l .year li.year-bef {
    left: 5rem;
    top: 3.8rem;
    opacity: 0;
    pointer-events: none;
}

.s5-l .year li.year-1 {
    left: 4.35rem;
    top: 3.6rem;
    transform: scale(1.4);
}

.s5-l .year li.year-1 b::after {
    opacity: 1;
}

.s5-l .year li.year-2 {
    left: 2.5rem;
    top: 2.35rem;
}

.s5-l .year li.year-3 {
    left: 3.8rem;
    top: 1.75rem;
}

.s5-l .year li.year-4 {
    left: 5.15rem;
    top: 1.5rem;
}

.s5-l .year li.year-5 {
    left: 6.15rem;
    top: 1.35rem;
}

.s5-l .year li.year-aft {
    left: 7rem;
    top: 1.2rem;
    opacity: 0;
    pointer-events: none;
}

.s5-l .year li b {
    width: 0.1rem;
    height: 0.1rem;
    position: relative;
    z-index: 1;
}

.s5-l .year li b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ffc71c;
    border-radius: 50%;
    z-index: 2;
}

.s5-l .year li b::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.42rem;
    height: 0.42rem;
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0rem 0.04rem 0.18rem 0rem rgba(0, 79, 120, 0.24);
    border-radius: 50%;
    opacity: 0;
    transition: all .5s;
}


.s5-l .year li span {
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #0075b7;
    white-space: nowrap;
    margin-left: .05rem;
    position: relative;
    z-index: 2;
    font-family: DejaVuMathTeXGyre-Regular;
}


.s5-r {
    flex: 1;
    min-width: 0;
    padding-left: 2.4rem;
    padding-top: 2.15rem;
}

.s5-rarr {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.s5-rarr div {
    width: 0.61rem;
    height: 0.61rem;
    border-radius: 50%;
    box-shadow: 0 0 .24rem rgba(0, 117, 183, .1);
    margin-left: .22rem;
    cursor: pointer;
    transition: all .5s;
}

.s5-rarr div.prev {
    background: #fff url(../images/icon-prev2.svg) no-repeat;
    background-position: center center;
    background-size: .21rem auto;
}

.s5-rarr div.next {
    background: #fff url(../images/icon-next2.svg) no-repeat;
    background-position: center center;
    background-size: .21rem auto;
}

.s5-rarr div.slick-disabled {
    opacity: .5;
    cursor: no-drop;
}

.s5-r .slick ul {
    margin-top: .25rem;
    margin-left: .65rem;
}

.s5-r .slick ul li a {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

.s5-r .slick ul li.slick-current a {
    opacity: 1;
    pointer-events: auto;
}

.s5-r .slick ul li a p {
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #2a2a2a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    height: 1.6rem;
}

.s5-r .slick ul li a div {
    margin-top: .15rem;
    display: flex;
}

.s5-r .slick ul li a div b {
    font-size: 2.81rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 2.8rem;
    letter-spacing: 0.14rem;
    color: #f6faff;
    opacity: 0.5;
    color: transparent;
    text-align: center;
    -webkit-text-stroke: #0d75cd 2px;
    text-transform: uppercase;
    font-family: DejaVuMathTeXGyre-Regular;
    display: block;

    color: #fff;
    /* 核心：文字描边宽度 + 渐变描边 */
    -webkit-text-stroke: 2px transparent;
    /* 背景渐变 */
    background-image: linear-gradient(180deg, #ffd737, #0d75cd);
    /* 背景只裁剪到文字描边区域 */
    -webkit-background-clip: text;
    background-clip: text;
}




.s5-train {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-left: .81rem;
    padding-right: .23rem;
    z-index: 9;
}

.s5-train div {
    background: url(../images/s5-train1.png) no-repeat;
    background-position: left bottom;
    background-size: 15.91rem auto;
    height: 3.43rem;
}

.s6 {
    display: flex;
    height: 100vh;
    padding-top: 1.05rem;
    background: url(../images/s6-bg.jpg) no-repeat;
    background-position: left center;
    background-size: cover;
}

.s6>div {
    display: flex;
    flex-direction: column;
}

.s6-c {
    flex: 1;
    min-width: 0;
    margin-top: .44rem;
    position: relative;
    z-index: 1;
    display: flex;
}



.s6-c1 {
    width: 9.8rem;
    height: 100%;
    padding-right: .95rem;
    position: relative;
    z-index: 1;
}

.s6-c1::before {
    content: "";
    position: absolute;
    left: -1.7rem;
    top: 0;
    right: -1.39rem;
    bottom: 0;
    height: 100%;
    box-shadow: 0px 0.05rem 0.49rem 0rem rgba(10, 19, 53, 0.2);
    border-radius: 0.8rem 0rem 0rem 0rem;
    background: url(../images/s6-c1bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
}

.s6-c2 {
    width: 11.5rem;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
}

.s6-c2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: -2.18rem;
    bottom: 0;
    background: url(../images/s6-c2bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: .8rem 0 0 0;
    z-index: -1;
    box-shadow: 0rem 0.05rem 0.46rem 0rem rgba(10, 19, 53, 0.29);
}

.s6-c3 {
    width: 11.15rem;
    height: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 0 1.5rem 0 1rem;
}

.s6-c3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: -1.7rem;
    bottom: 0;
    background: url(../images/s6-c3bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: .8rem 0 0 0;
    z-index: -1;
    box-shadow: 0rem 0.05rem 0.46rem 0rem rgba(10, 19, 53, 0.29);
}

.s6-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .65rem;
}

.s6-tit .s6-titname {
    display: flex;
    align-items: center;
}

.s6-tit .s6-titname img {
    display: block;
    height: .4rem;
    margin-right: .15rem;
}

.s6-tit .s6-titname h3 {
    font-size: 0.36rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.4rem;
    color: #2a2a2a;
}

.s6-tit .tit-more {
    position: static;
    transform: none;
}

.s6-c1logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8.85rem;
    height: 3.54rem;
    background-color: #fefdf8;
    border-radius: 0.1rem;
    border: solid 0.01rem #d7e7f2;
    padding: .64rem 0 .85rem 0;
    margin-top: .54rem;
}

.s6-c1logo1 {
    width: 32%;
    max-width: 2.89rem;
    margin: 0 3%;
}

.s6-c1logo1 img {
    display: block;
    width: 100%;
}

.s6-c1logo2 {
    max-width: 3.43rem;
    width: 38.7%;
    margin: 0 3%;
}

.s6-c1logo2 img {
    width: 100%;
}


.s6-c1bs {
    display: flex;
    margin-top: .54rem;
}

.s6-c1bsl {
    background-color: #fefdf8;
    border-radius: 10px;
    border: solid 1px #d7e7f2;
    width: 2.72rem;
}

.s6-c1bsl a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.s6-c1bsl a img {
    display: block;
    max-width: 95%;
}

.s6-c1bsr {
    flex: 1;
    min-width: 0;
}

.s6-c1bsr ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: space-between;
}

.s6-c1bsr ul li {
    background-color: #fefdf8;
    border-radius: 0.1rem;
    border: solid 1px #d7e7f2;
    width: calc(50% - 0.1rem);
    overflow: hidden;
    margin-left: .1rem;
    height: 2.22rem;
}
.s6-c1bsr ul li:nth-child(-n+2) {
    margin-bottom: 0.1rem;
}

.s6-c1bsr ul li dl {
    display: flex;
    height: 100%;
}

.s6-c1bsr ul li dl dd {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .2rem 0.1rem;
}
.s6-c1bsr ul li dl dd:nth-child(1){
    background-color: #0075b8;
}
.s6-c1bsr ul li dl dd:nth-child(2){
    background-color: #c5171e;
}
.s6-c1bsr ul li dl dd h3 {
    width: 100%;
    font-size: .14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: .3rem;
    letter-spacing: 0px;
    color: #ffffff;
}

.s6-c1bsr ul li dl dd div {
    width: 100%;
}

.s6-c1bsr ul li dl dd div p {
    font-size: 0.11rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.24rem;
    letter-spacing: 0px;
    color: #ffffff;
}

.s6-c1bsr ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.s6-c1bsr ul li a img {
    max-width: 95%;
    max-height: 95%;
}













.s6-c1text {
    display: flex;
    flex-wrap: wrap;
    margin-top: .17rem;
}

.s6-c1text b {
    font-size: 0.2rem;
    font-weight: 600;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #0075b7;
    margin: 0 .4rem 0 .2rem;
}

.s6-c1text div {
    flex: 1;
    min-width: 0;
}

.s6-c1text div p {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.25rem;
    letter-spacing: 0rem;
    color: #000000;
}

.s6-c1text h5 {
    width: 100%;
}

.s6-c1text h5 a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.s6-c1text h5 img {
    height: 0.22rem;
}

.s6-c1text h5 p {
    font-size: 0.18rem;
    line-height: 0.25rem;
    letter-spacing: 0rem;
    color: #333;
    font-weight: 600;
    margin-left: .05rem;
}

.s6-c2 {
    padding: 0 1rem;
}

.s6-jdgy {
    margin-top: .54rem;
    display: flex;
}

.s6-jdgyl {
    flex: 1;
    min-width: 0;
}

.s6-jdgyl .slick1 {
    border-radius: 0.1rem;
    overflow: hidden;
}

.s6-jdgyl .slick1 ul li a {
    display: block;
    position: relative;
}

.s6-jdgyl .slick1 ul li a .pics {
    position: relative;
    border-radius: 0.1rem;
}

.s6-jdgyl .slick1 ul li a .pics .pic {
    padding-top: 59.4%;
}

.s6-jdgyl .slick1 ul li a .pics .pic:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.5rem;
    background: linear-gradient(0deg, #000, transparent);
    opacity: .5;
}

.s6-jdgyl .slick1 ul li a .info {
    flex: 1;
    min-width: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .2rem;
}

.s6-jdgyl .slick1 ul li a .info h3 {
    font-size: .2rem;
    font-weight: normal;
    line-height: .3rem;
    text-align: justify;
    /* 浏览器可能不支持 */
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}


.s6-jdgyl .slick2 {
    margin-top: .1rem;
}

.s6-jdgyl .slick2 ul {}

.s6-jdgyl .slick2 ul li a {
    display: block;
    padding: 0.03rem;
    background: transparent;
    transition: all .5s;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.s6-jdgyl .slick2 ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0rem 0.03rem 0.13rem 0rem rgba(9, 106, 175, 0.46);
    border-radius: 0.1rem;
    border: solid 0.05rem #096aaf;
    z-index: 2;
    opacity: 0;
    transition: all .5s;
}

.s6-jdgyl .slick2 ul li a .pic {
    padding-top: 68%;
    background-color: #00233d;
    border-radius: .1rem;
}

.s6-jdgyl .slick2 ul li a .pic div {
    opacity: .5
}

.s6-jdgyl .slick2 ul li a .pic::after {
    content: "";
}

.s6-jdgyl .slick2 ul li.slick-current a:before {
    opacity: 1;
}

.s6-jdgyl .slick2 ul li.slick-current a .pic div {
    opacity: 1;
}

.s6-jdgyl .slick2 ul li.slick-current a .pic::after {
    opacity: 0;
}

.s6-jdgyl .slick2 ul li.slick-current a {}

.s6-jdgyl .slick2 .slick-prev, .s6-jdgyl .slick2 .slick-next {
    width: .35rem;
    height: .35rem;
    transition: all .5s;
    border-radius: 50%;
}

.s6-jdgyl .slick2 .slick-prev {
    background: rgba(255, 255, 255, .7) url(../images/icon-prev2.svg) no-repeat;
    background-position: center center;
    background-size: .11rem auto;
    left: -.13rem;
}

.s6-jdgyl .slick2 .slick-next {
    background: rgba(255, 255, 255, .7) url(../images/icon-next2.svg) no-repeat;
    background-position: center center;
    background-size: .11rem auto;
    right: -.13rem;
}

.s6-jdgyr {
    width: 3.54rem;
    margin-left: .17rem;
}

.s6-jdgyr ul li+li {
    margin-top: .17rem;
}

.s6-jdgyr ul li a {
    display: block;
}

.s6-jdgyr ul li a .pic {
    padding-top: 66%;
    border-radius: 0.1rem;
}

.s6-sjjd ul {
    display: flex;
    flex-wrap: wrap;
}

.s6-sjjd ul li {
    width: 50%;
    margin-top: .63rem;
}

.s6-sjjd ul li a {
    display: block;
}

.s6-sjjd ul li a div {
    display: flex;
}

.s6-sjjd ul li a div h5 {
    background-color: #0966a9;
    border-radius: 0.15rem;
    border: solid 0.01rem #0075b7;
    display: flex;
    align-items: center;
    padding: 0 .26rem 0 .16rem;
}

.s6-sjjd ul li a div h5 img {
    max-height: .14rem;
    margin-right: .08rem;
}

.s6-sjjd ul li a div h5 span {
    font-family: DejaVuMathTeXGyre-Regular;
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #ffd71c;
}

.s6-sjjd ul li a h4 {
    font-family: DejaVuMathTeXGyre-Regular;
    color: #ffffff;
    margin: .1rem 0;
    display: flex;
    align-items: flex-start;
    font-size: 0.48rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.48rem;
    letter-spacing: 0.02rem;
    color: transparent;
    text-align: center;
}

.s6-sjjd ul li a h4 b {
    font-size: 1.12rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.12rem;
    letter-spacing: 0.06rem;
    font-family: DejaVuMathTeXGyre-Regular;
    display: block;
    position: relative;
}

.s6-sjjd ul li a h4 strong {
    font-size: 1rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 1.12rem;
    letter-spacing: 0.06rem;
    font-family: DejaVuMathTeXGyre-Regular;
    display: block;
    position: relative;
}

.s6-sjjd ul li a h4 b:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    /* 渐变背景 */
    background: linear-gradient(180deg, #ffd737, #0d75cd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1px transparent;
    /* 边框宽度 */
    z-index: 1;
}

.s6-sjjd ul li a h4 strong:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    /* 渐变背景 */
    background: linear-gradient(180deg, #ffd737, #0d75cd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 1px transparent;
    /* 边框宽度 */
    z-index: 1;
}

.s6-sjjd ul li a h4 b:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    /* 中间文字颜色 */
    z-index: 2;
}

.s6-sjjd ul li a h4 strong:after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    /* 中间文字颜色 */
    z-index: 2;
}

.s6-sjjd ul li a p {
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #000000;
}

.fmeida {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
}

.fmeida li {
    display: inline-block;
    vertical-align: middle;
    margin-left: .22rem;
}

.fmeida li:nth-child(1) {
    margin-left: 0;
}

.fmeida li a {
    display: block;
    position: relative;
}

.fmeida li a div:nth-child(1) {
    border-radius: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    background: #D8D8D8;
    border-radius: 50%;
    width: 0.63rem;
    height: 0.63rem;
}

.fmeida li a:hover div:nth-child(1) {
    background: #10A957;
}

.fmeida li a:hover {}

.fmeida li a>div>img {
    display: block;
    width: 100%;
}

.fmeida li a .foot-ewm {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 130%;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    opacity: 0;
    transition: all 1s;
    visibility: hidden;
    box-shadow: 0 0 .1rem rgba(0, 0, 0, .1);
}

.fmeida li a .foot-ewm img {
    display: block;
    width: 100px;
    max-width: none;
    max-height: none;
    height: 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 .icon {
    background-color: #2f73d1;
}

.fmeida li:hover a .icon img {
    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;
}

.fmeida>div {}

.fmeida>div a {
    height: 0.43rem;
    background-color: #0c63ab;
    border-radius: 0.21rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 .16rem;
}

.fmeida>div a img {
    height: .25rem;
}

.s7 {
    padding: .87rem 0 0 0;
    position: relative;
    z-index: 2;
}

.s7-c {
    display: flex;
    margin-top: .3rem;
    justify-content: space-between;
}

.s7-l {
    width: 25.31%;
}

.s7-l .slick {}

.s7-l .slick>ul {
    padding-left: .38rem;
}

.s7-l .slick ul .slick-list {
    background-color: #0075b7;
    border-radius: 0.1rem;
    border: solid 0.01rem #8eafc2;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.05) 95%);
    -webkit-mask: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0.05) 95%);
}

.s7-l .slick ul li a {
    display: block;
}

.s7-l .slick ul li a .pic {
    padding-top: 137%;
}

.s7-l .slick ul.slick-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: auto;
    display: block;
}

.s7-l .slick ul.slick-dots li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: .07rem 0;
    width: auto;
    height: auto;
}

.s7-l .slick ul.slick-dots li b {
    font-size: 0.18rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.26rem;
    letter-spacing: 0rem;
    color: #0075b7;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    margin-bottom: .08rem;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.s7-l .slick ul.slick-dots li span {
    display: block;
    transition: all .5s;
}

.s7-l .slick ul.slick-dots li span::before {
    content: "";
    display: block;
    background: #0075b7;
    width: 0.07rem;
    height: 0.07rem;
    border-radius: 50%;
    margin: 0 auto;
    transition: all .5s;
    opacity: 0.5;
}

.s7-l .slick ul.slick-dots li span::after {
    content: "";
    display: block;
    background: #0075b7;
    width: 1px;
    height: 0.65rem;
    border-radius: 50%;
    margin: 0 auto;
    height: 0;
    transition: all .5s;
    opacity: 0.5;
}

.s7-l .slick ul.slick-dots li.slick-active b {
    display: block;
    opacity: 1;
    visibility: visible;
}

.s7-l .slick ul.slick-dots li.slick-active span::before {
    opacity: 1;
}

.s7-l .slick ul.slick-dots li.slick-active span::after {
    height: 0.65rem;
    opacity: 1;
}

.snjdb {
    margin-top: -.11rem;
    position: relative;
    z-index: 2;
}

.snjdb a {
    display: block;
}

.snjdb a img {
    display: block;
    max-width: 80%;
    width: 2.69rem;
}

.s7-r {
    /* flex: 1; */
    /* min-width: 0; */
    width: 73.417%;
}

.s7-rlist1 {
    display: flex;
    margin: 0 -.1rem;
}

.s7-rlist1 li {
    width: 50%;
}

.s7-rlist1 li a {}

.s7-rlist1 li a .pic {
    border-radius: .1rem;
    padding-top: 61.5%;
}

.s7-rlist1 li a .info {}

.s7-rlist1 li a {
    display: block;
    position: relative;
    margin: 0 .1rem;
}


.s7-rlist1 li a .pic::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 79%, #000000 100%);
}

.s7-rlist1 li a .info {
    position: absolute;
    left: 0.23rem;
    right: 0.23rem;
    bottom: 0.14rem;
    z-index: 9;
    padding-left: .4rem;
}

.s7-rlist1 li a .info .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    height: 0.26rem;
}

.s7-rlist1 li a .info .icons img {
    display: block;
    width: 0.26rem;
}

.s7-rlist1 li a .info h3 {
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s7-rlist2 {}

.s7-rlist2 {
    display: flex;
    margin: 0 -.12rem;
    margin-top: 0.2rem;
}

.s7-rlist2 li {
    width: 33.33%;
}

.s7-rlist2 li a {
    display: block;
    position: relative;
    margin: 0 .12rem;
}

.s7-rlist2 li a.video::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/icon-play.png) no-repeat;
    background-position: center center;
    background-size: .95rem auto;
    z-index: 9;
}

.s7-rlist2 li a .pic {
    border-radius: .1rem;
    padding-top: 62%;
}

.s7-rlist2 li a .pic::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 79%, #000000 100%);
}

.s7-rlist2 li a .info {
    position: absolute;
    left: 0.2rem;
    right: 0.2rem;
    bottom: 0.16rem;
    z-index: 9;
}

.s7-rlist2 li a .info h3 {
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.26rem;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.s8 {
    margin-top: .15rem;
    position: relative;
    z-index: 1;
}

.s8::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.32rem;
    background: url(../images/s8-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    width: 12.98rem;
    height: 11.73rem;
    pointer-events: none;
}

.s8-c ul {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    mask: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
}

.s8-c ul li {}

.s8-c ul li a {
    display: block;
    margin: 0 .05rem;
}

.s8-c ul li a img {
    display: block;
}

.s8-c ul li:nth-child(1) a img {
    width: 1.86rem;
}

.s8-c ul li:nth-child(2) a img {
    width: 2.92rem;
}

.s8-c ul li:nth-child(3) a img {
    width: 3.32rem;
    transform: translateY(.12rem);
}

.s8-c ul li:nth-child(4) a img {
    width: 1.48rem;
    transform: translateY(.1rem);
}

.s8-c ul li:nth-child(5) a img {
    width: 1.79rem;
    transform: translateY(.15rem);
}


.rcxqlink {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
    z-index: 9;
    transition: all .5s;
}

.rcxqlink.on {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
}

.rcxqlink::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
    width: 2.94rem;
    height: 2.94rem;
    border-radius: 50%;
    border: 1px dashed #005fb7;
    animation: _anirotate 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}


@keyframes _anirotate {
    0% {
        transform: translateX(50%) translateY(-50%) rotate(0);
    }

    100% {
        transform: translateX(50%) translateY(-50%) rotate(360deg);
    }
}

.rcxqlink a {
    display: block;
}

.rcxqlink a img {
    display: block;
    width: 1.36rem;
}

@media screen and(-ms-high-contrast:active), (-ms-high-contrast:none) {}


@media screen and (min-width: 1025px) {
    .s6-c1text h5 a:hover p {
        color: #0c63ab;
    }

    .tit-more a:hover {
        color: #0c63ab;
        background-color: #0c63ab;
        box-shadow: 0px 0px 30px 0px rgba(12, 99, 171, 0.3);
        color: #ffffff;
        padding: 0 .25rem;
    }

    .s1-lr ul li a:hover::before, .s2-r ul li a:hover::before, .s3-lr ul li a:hover::before {
        opacity: 1;
    }

    .s1-lr ul li a:hover h3, .s2-r ul li a:hover h3, .s3-lr ul li a:hover h3 {
        color: #ffffff;
    }

    .s1-lr ul li a:hover span, .s2-r ul li a:hover span, .s3-lr ul li a:hover p, .s3-lr ul li a:hover dl dd {
        color: #ffd71c;
    }

    .s1-r ul li a:hover .pics {
        /* background: rgba(223, 235, 251, 1); */
    }

    .s1-r ul li a:hover .info h3, .s1-ll ul li a:hover .info h3, .s2-l ul li a:hover h3 {
        color: #0075b8;

    }

    .s3-lr ul li a:hover dl dd.date {
        background: url(../images/icon-date-w.png) no-repeat;
        background-position: left center;
        background-size: .17rem auto;
    }

    .s3-lr ul li a:hover dl dd.address {
        background: url(../images/icon-address-w.png) no-repeat;
        background-position: left center;
        background-size: .19rem auto;
    }

    .s3-lr ul li a:hover dl dd.user {
        background: url(../images/icon-user-w.png) no-repeat;
        background-position: left center;
        background-size: .24rem auto;
    }

    .s3-r .swiper-container .swiper-slide a:hover div {
        color: #01267E;
    }


    .s4-c .swiper-container .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide {
        opacity: 1;
        pointer-events: auto;
    }

    .s4-c .swiper-container .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide+.swiper-slide {
        opacity: 1;
        pointer-events: auto;
    }

    .s4-c .prev:hover {
        background-color: #fff;
    }

    .s4-c .next:hover {
        background-color: #fff;
    }

    .s4-c .swiper-container .swiper-slide a:hover h3 {
        font-size: .42rem;
    }

    .s5-rarr div.prev:hover {
        background: #0075b7 url(../images/icon-prev2-w.svg) no-repeat;
        background-position: center center;
        background-size: .21rem auto;
    }

    .s5-rarr div.next:hover {
        background: #0075b7 url(../images/icon-next2-w.svg) no-repeat;
        background-position: center center;
        background-size: .21rem auto;
    }

    .s6-jdgyl .slick2 .slick-prev:hover {
        background: #0075b7 url(../images/icon-prev2-w.svg) no-repeat;
        background-position: center center;
        background-size: .11rem auto;
    }

    .s6-jdgyl .slick2 .slick-next:hover {
        background: #0075b7 url(../images/icon-next2-w.svg) no-repeat;
        background-position: center center;
        background-size: .11rem auto;
    }
}

@media screen and (max-width: 1024px) {

    .banner .banner-prev span, .banner .banner-next span {
        width: 0.63rem;
        height: 0.76rem;
        background-size: 0.35rem auto;
        opacity: 1;
    }

    .banner .slick-slide a p {
        width: auto;
        display: none;
        left: 0;
        font-size: .16rem;
        padding: 0 .2rem;
        bottom: .5rem;
        left: 0;
    }

    .banner .slick-slide.slick-current a p {
        width: calc(100% - 1.5rem);
    }

    .banner-enter {
        right: .1rem;
        bottom: .15rem
    }

    .banner .slick-dots {
        bottom: .15rem;
        right: 0;
        width: auto;
        max-width: none;
        justify-content: center;
        left: auto;
    }

    .banner .slick-slide a img {
        height: auto !important;
    }

    .banner .slick-dots li:before {
        margin: 0 .05rem;
    }

    .banner .slick-dots li::after {
        margin: 0 .05rem;
    }

    .banner .slick-dots li span {}

    .banner .slick-dots li span::before {
        margin-right: .4rem;
    }

    .banner .slick-dots li.slick-active span::before {
        width: .4rem;
    }

    .banner .slick-dots li.slick-active span::after {
        width: 0.4rem;
    }

    .banner .banner-prev, .banner .banner-next {
        bottom: 50%;
        transform: translateY(50%);
        right: 0.1rem;
        width: 0.45rem;
        height: 0.45rem;
        top: auto;
    }

    .banner .banner-prev {
        right: auto;
        left: 0;
    }

    .banner .banner-next {
        right: 0;
        left: auto;
    }

    .banner .banner-prev span, .banner .banner-next span {}


    .rcxqlink {
        transform: translateX(100%) translateY(-50%) scale(.35);
        transform-origin: right center;
    }

    .rcxqlink.on {
        transform: translateX(0) translateY(-50%) scale(.35);
    }

    .index {
        position: static;
        padding-top: 0;
        overflow: hidden;
    }


    .tit-name {
        padding-left: .3rem;
    }

    .tit-name>div h2 {
        font-size: .24rem;
        line-height: .3rem;
    }

    .tit-name>img {
        max-height: .4rem;
    }

    .tit-more a {
        line-height: .3rem;
    }


    .s1-ll ul li a .info {
        padding: .15rem 0 0 0;
    }

    .s1-ll .slick .banner-prev, .s1-ll .slick .banner-next {}

    .s1-ll .slick .banner-prev {
        right: auto;
        left: 0;
    }

    .s1-ll .slick .banner-next {
        right: 0;
        left: auto;
    }

    .s1-ll .slick .banner-prev span, .s1-ll .slick .banner-next span {
        opacity: 1;
        background-size: .35rem auto;
    }

    .enterlink a {
        margin-top: 0.1rem;
        font-size: .18rem;
    }

    .s1-lr ul li a h3 {
        height: auto;
        max-height: .6rem;
    }

    .s1-ll ul li a .info p {
        margin-top: .1rem;
    }

    .s1-lr ul li a {
        padding: .1rem 0;
    }

    .s1-r ul li+li {
        margin-top: .2rem;
    }

    .s2-l ul li a {
        padding: .15rem;
    }

    .s2-l ul li a span {
        width: 1.1rem;
        text-align: left;
    }

    .s2-r .slick>ul {
        margin: 0 -.1rem;
        margin-top: .1rem;
    }

    .s2-r ul li a {
        padding: .15rem 0;
        margin: 0 .1rem;
    }

    .s2-r ul .slick-slide {
        display: block;
    }

    .s2-r ul .slick-slide>div:nth-child(1)~div li a {
        border-top: solid 1px rgba(128, 128, 128, .2);
    }

    .s3-r>h3 {
        right: 50%;
        transform: translateX(50%);
        font-size: .6rem;
        line-height: .7rem;
    }

    .schedule-hd div .today b {
        font-size: .4rem;
    }

    .s3-r .swiper-container {
        transform: none;
        left: 0;
        top: auto;
        width: 100%;
        padding-top: 0;
    }

    .s3-r .swiper-container .swiper-slide a {
        padding: .15rem 0 .15rem 0 .15rem;
    }

    .s3-r .swiper-container::after {
        opacity: 0;
    }

    .s3-r .swiper-container::before {
        top: 0;
    }

    .s4-c {
        margin-left: .25rem;
        margin-right: .25rem;
    }

    .s4-c .prev {
        width: .5rem;
        height: 0.5rem;
        left: -.3rem;
        background-color: #fff;
        background-size: auto .15rem;
    }

    .s4-c .next {
        width: .5rem;
        height: 0.5rem;
        right: -.3rem;
        background-color: #fff;
        background-size: auto .15rem;
    }

    .s4-c .swiper-container .swiper-slide a h3 {
        font-size: .22rem;
        line-height: .3rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .s4-c .swiper-container .swiper-slide a .icons img {
        max-height: .5rem;
    }

    .s5 {
        padding-bottom: 23.458%;
    }

    .s5-c {
        display: block;
    }

    .s5-train {
        padding: 0;
    }

    .s5-train div {
        height: auto;
        padding-top: 23.458%;
        background-size: auto 100%;
    }

    .s5-ldoor {
        width: 2.4rem;
        height: 2.75rem;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .s5-l {
        margin: 0 auto;
        width: 2.3rem;
        padding-top: 2rem;
    }

    .s5-l .qdx div:nth-child(8) {
        width: 2.3rem;
        height: 2.6rem;
        position: relative;
    }

    .s5-l .qdx div:nth-child(7) {
        width: 2.61rem;
        height: 2.98rem;
    }

    .s5-l .qdx div:nth-child(6) {
        width: 2.91rem;
        height: 3.235rem;
    }

    .s5-l .qdx div:nth-child(5) {
        width: 3.175rem;
        height: 3.535rem;
    }

    .s5-l .qdx div:nth-child(4) {
        width: 3.455rem;
        height: 3.84rem;
    }

    .s5-l .qdx div:nth-child(3) {
        width: 3.75rem;
        height: 4.17rem;
    }

    .s5-l .qdx div:nth-child(2) {
        width: 4.055rem;
        height: 4.51rem;
    }

    .s5-l .qdx div:nth-child(1) {
        width: 4.41rem;
        height: 4.91rem;
    }

    .s5-l .year li.year-bef {
        opacity: 0;
        pointer-events: none;
        left: 2.275rem;
        top: 2.4rem;
    }

    .s5-l .year li.year-1 {
        left: 2.175rem;
        top: 2.3rem;
        transform: scale(1.4);
    }

    .s5-l .year li.year-1 b::after {
        opacity: 1;
    }

    .s5-l .year li.year-2 {
        left: 1.7rem;
        top: 1.35rem;
    }

    .s5-l .year li.year-3 {
        left: 1.2rem;
        top: .95rem;
    }

    .s5-l .year li.year-4 {
        left: 2.05rem;
        top: .55rem;
    }

    .s5-l .year li.year-5 {
        left: 2.7rem;
        top: .275rem;
    }

    .s5-l .year li.year-aft {
        opacity: 0;
        pointer-events: none;
        left: 2.8rem;
        top: .25rem;
    }

    .s5-r {
        padding-left: 0;
        padding-top: 0;
        margin-top: -.3rem;
    }

    .s5-rarr {
        justify-content: center;
        margin-top: .1rem;
    }

    .s5-r .slick ul {
        margin-left: 0;
    }

    .s5-rarr div {
        margin: 0 0.1rem;
    }

    .s5-rarr div {
        width: 0.4rem;
        height: 0.4rem;
        background-size: .15rem auto !important;
    }

    .s5-r .slick ul li a div b {
        font-size: 1.2rem;
        line-height: 1.2rem;
        text-align: center;
    }

    .s5-r .slick ul li a div {
        justify-self: center;
    }

    .s5-r .slick ul li a p {
        height: auto;
        max-height: .9rem;
    }

    .s6 {
        height: auto;
        padding: .3rem 0;
        display: block;
    }

    .s6>div {
        display: block;
    }

    .s6-c {
        display: block;
    }

    .s6-tit {
        padding-top: 0;
    }

    .s6-tit .s6-titname h3 {
        font-size: .24rem;
        line-height: .3rem;
    }

    .s6-tit .s6-titname img {
        height: .25rem;
    }

    .s6-c1 {
        width: auto;
        padding-right: 0;
        padding: .3rem .15rem;
    }

    .s6-c1::before {
        left: 0;
        right: 0;
        border-radius: .1rem .1rem 0 0;
    }

    .s6-c1logo {
        width: auto;
        height: auto;
        margin-top: .3rem;
        padding: .3rem 0.15rem;
    }

    .s6-c1text {
        display: block;
    }

    .s6-c1text b {
        display: block;
        margin: 0;
        margin-bottom: .15rem;
    }

    .s6-c2 {
        position: relative;
        width: auto;
        padding: .3rem .15rem;
    }

    .s6-c2::before {
        left: 0;
        right: 0;
        border-radius: 0 0 0 0;
    }

    .s6-jdgy {
        display: block;
    }

    .s6-jdgyl .slick2 .slick-prev, .s6-jdgyl .slick2 .slick-next {
        background-color: #fff;
    }

    .s6-jdgyr ul {
        display: flex;
        justify-content: space-between;
    }

    .s6-jdgyr ul li {
        width: 49%;
    }

    .s6-jdgyr ul li+li {
        margin-top: 0;
    }

    .s6-c3 {
        position: relative;
        width: auto;
        padding: .3rem .15rem;
    }

    .s6-c3::before {
        left: 0;
        right: 0;
        border-radius: 0 0 .1rem .1rem;
    }

    .s6-sjjd ul li {
        margin-top: .3rem;
    }

    .s6-sjjd ul li a h4 b {
        font-size: .4rem;
        line-height: .5rem;
        letter-spacing: 0.02rem;
    }

    .s6-sjjd ul li a h4 strong {
        font-size: .4rem;
        line-height: .5rem;
        letter-spacing: 0.02rem;
    }

    .s6-sjjd ul li a div h5 {
        padding: 0 .1rem;
    }

    .s6-sjjd ul li a div h5 span {
        font-size: .12rem;
        line-height: .26rem;
    }

    .s7 {}

    .s7 .tit {
        flex-wrap: wrap;
        justify-content: center;
    }

    .s7-media {
        width: 100%;
        margin-top: .3rem;
    }

    .fmeida li {
        margin-left: .1rem;
    }

    .fmeida li a div:nth-child(1) {
        width: 0.4rem;
        height: 0.4rem;
    }

    .s7-rlist2 li a.video::after {
        background-size: .5rem auto;
    }

    .s7-rlist2 li a .info, .s7-rlist1 li a .info {
        left: .1rem;
        right: 0.15rem;
        bottom: .05rem;
    }

    .s8::before {
        width: 100%;
        padding-top: 90%;
    }

    .s8-c ul li:nth-child(1) a img {
        width: .73rem;
    }

    .s8-c ul li:nth-child(2) a img {
        width: .75rem;
    }

    .s8-c ul li:nth-child(3) a img {
        width: .8rem;
        transform: translateY(.04rem);
    }

    .s8-c ul li:nth-child(4) a img {
        width: .45rem;
        transform: translateY(.1rem);
    }

    .s8-c ul li:nth-child(5) a img {
        width: .55rem;
        transform: translateY(.15rem);
    }



    .s3-lc {
        display: block;
    }

    .s3-ll {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: .3rem;
    }

    .s1-ll, .s2-l {
        width: auto;
        margin-right: 0;
        margin-bottom: .3rem;
    }

    .s1-r, .s3-r, .s6-jdgyr {
        width: auto;
        margin-left: 0;
        margin-top: .3rem;
    }

    .s1-ll ul li a .info h3, .s1-lr ul li a h3, .s2-r ul li a h3, .s6-jdgyl .slick1 ul li a .info h3, .s7-rlist1 li a .info h3, .s7-rlist2 li a .info h3, .s5-r .slick ul li a p {
        font-size: .18rem;
        line-height: .3rem;
    }

    .s5-l .year li span {
        font-size: .16rem;
    }

    .s5-l .year li b::after {
        width: .3rem;
        height: 0.3rem;
    }


    .s1, .s2, .s3, .s7 {
        padding-top: .5rem;
    }

    .s6-c, .s6-jdgy,.s6-c1bs {
        margin-top: .35rem;
    }

    .s3 {
        margin-top: .5rem;
        padding-bottom: .5rem;
    }


}

@media screen and (max-width: 768px) {
    .s7-c {
        display: block;
    }

    .s7-l {
        margin: 0 auto;
        width: 3rem;
        max-width: 80%;
    }

    .s7-r {
        width: auto;
    }


    .s6-c1bs{
        display: block;
    }
    .s6-c1bsl{width: auto;padding: .2rem 0;margin-bottom: .1rem;}




}

@media screen and (max-width: 480px) {
    .s7-rlist1 {
        flex-wrap: wrap;
    }

    .s7-rlist1 li {
        width: 100%;
        margin-bottom: .1rem;
    }

    .s7-rlist2 {
        flex-wrap: wrap;
        margin-top: 0;
    }

    .s7-rlist2 li {
        width: 100%;
        margin-bottom: .1rem;
    }

    .s6-c1bsr ul{
        display: block;
    }
    .s6-c1bsr ul li{width: auto;margin-left: 0;margin-bottom: .1rem;height: 1.8rem;}
}

.cy {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}