@charset "utf-8";

.head {
    margin-left: 1rem;
}

.head2 {
    margin-left: 0;
}

.top-yc {
    left: 1rem;
}

.top-yc.all {
    left: 0;
}

@font-face {
    font-family: Bebas;
    src: url(../fonts/Bebas.ttf);
}

.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: url() no-repeat;
    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() 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%;
    background: #0F4578;
}

.banner a {
    display: block;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    /* z-index: 9; */
    padding-left: 1rem;
}

.banner-more {
    font-size: .18rem;
    color: #fff;
    padding-left: .15rem;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}



.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);
    left: 0;
    bottom: .45rem;
    width: 1rem;
    z-index: 9;
}

.banner .slick-dots li {
    padding: .07rem 0;
    position: relative;
    transition: all .5s;
    width: auto;
    height: auto;
    margin: 0;
    display: block;
}



@keyframes cilcle {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

.banner .slick-dots li::after {
    content: "";
    transition: all 0.6s;
    display: block;
    width: 1px;
    height: 0;
    background: #5593CD;
    margin: 0 auto;
}

.banner .slick-dots li::before {
    content: "";
    transition: all 0.6s;
    display: block;
    height: 0;
    background: url(../images/banner-dot-act.png) no-repeat;
    background-position: center center;
    background-size: auto 100%;
    margin: 0 auto;
}

.banner .slick-dots li button {
    border-radius: 50%;
    margin: 0;
    padding: 0;
    width: 6px;
    height: 6px;
    transition: all .5s;
    border: 1px solid #5593CD;
    display: block;
    margin: 0 auto;
}

.banner .slick-dots li.slick-active::before {
    height: 0.36rem;
}

.banner .slick-dots li.slick-active::after {
    height: 1.2rem;
}

.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;
}

.banner-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1rem;
    /* z-index: 9; */
}

.nav-menu {
    height: 0.98rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #1F67AC;
    cursor: pointer;
}

.nav-menu img {
    height: 0.26rem;
}

.banner-ltext {
    margin-top: .9rem;
    display: flex;
    justify-content: center;
}

.banner-ltext img {
    width: 0.45rem;
}


.banner-btm {
    position: absolute;
    left: 2.38rem;
    right: 1.28rem;
    bottom: .27rem;
    z-index: 9;
    display: flex;
    align-items: center;
    border-radius: 10px 200px 200px 10px;
    background: rgba(255, 255, 255, 0.9);
}

.banner-btm ul {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-btm ul li {}

.banner-btm ul li a {
    display: block;
}

.banner-btm ul li a span {
    display: block;
    padding: 0 .5rem;
    font-size: 0.24rem;
    font-weight: 500;
    line-height: .9rem;
    text-align: center;
    letter-spacing: normal;
    color: #000000;
    transition: all .5s;
}

.banner-btm ul li>b {
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.18rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: rgba(0, 0, 0, 0.3);
}

.banner-btm .pyxm {
    margin-right: 1px;
    width: 0.88rem;
    height: 0.88rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin-left: .2rem;
}

.banner-btm .pyxm::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/pyxm-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    border-radius: 50%;
    animation: _anirotate 10s linear infinite;
    z-index: -1;
}


.banner-btm .pyxm p {
    font-size: 0.24rem;
    font-weight: bold;
    line-height: 0.28rem;
    letter-spacing: normal;
    color: #FFFFFF;
}

.banner-btm ul li:hover a span {
    background: #D5AE6D;
    color: #fff;
}

/* index */
.index {
    z-index: 99;
    overflow: hidden;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 99;
    background: #fff;
    padding-top: 1.15rem;
}

.itit {
    position: relative;
}

.itit-text {
    padding-top: .3rem;
    position: relative;
    z-index: 1;
}

.itit-text h2 {
    font-size: 0.48rem;
    font-weight: 600;
    line-height: .5rem;
    font-stretch: normal;
    color: #000000;
    transform-origin: left center;
    text-align: center;
}

.itit-text h3 {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 0.8rem;
    z-index: -1;
    color: transparent;
    text-stroke: 1px #DBEDFF;
    -webkit-text-stroke: 1px #DBEDFF;
    mask: linear-gradient(0deg, transparent, #fff 100%);
    -webkit-mask: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    white-space: nowrap;

}


.itit-text div {
    position: relative;
    height: 1px;
    width: 2.91rem;
    background: radial-gradient(50% 50% at 50% 50%, #FAA727 0%, rgba(216, 216, 216, 0) 100%);
    margin-top: .2rem;
}

.itit-text div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 1.42rem;
    height: 3px;
    background: #CBA361;
}


.itit-more {
    position: absolute;
    right: 0;
    top: .3rem;
}

.itit-more a {
    display: block;
    font-family: Times New Roman;
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.4rem;
    letter-spacing: normal;
    color: #0F4578;
    position: relative;
    z-index: 1;
}

.itit-more a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/itit-more-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 0.49rem;
    height: 0.59rem;
    z-index: -1;
}

.itit-more a:hover {
    color: #0071bb;
}

.itit2 {
    position: relative;
    display: flex;
}

.itit2-text {
    display: flex;
    align-items: center;
    position: absolute;
    right: 1.1rem;
    top: .3rem;
    z-index: 9;
}

.itit2-text div {
    position: relative;
}

.itit2-text div+div {
    margin-left: .3rem;
}

.itit2-text div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/itit2-text-bg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: -1;
    opacity: 0;
    transition: all .5s;
}


.itit2-text div p {
    width: 1.8rem;
    font-size: 0.26rem;
    font-weight: normal;
    line-height: .5rem;
    text-align: center;
    letter-spacing: normal;
    color: #333333;
}

.itit2-text div.on p {
    color: #0F4578;
}

.itit2-text div.on::before {
    opacity: 1;
}


.itit2-more.itit-more a {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.itit2-more.itit-more a.on {
    position: relative;
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}


.pub-arrow {
    display: flex;
    align-items: center;
}

.pub-arrow>div {
    width: 0.6rem;
    height: 0.6rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pub-arrow>div+div {
    margin-left: 0.18rem;
}

.pub-arrow>div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, #E4EEF7 98%);
    z-index: -2;
    border-radius: 50%;
}

.pub-arrow>div.pub-prev div {
    width: 100%;
    height: 100%;
    background: url(../images/pub-prev.svg) no-repeat;
    background-position: center center;
    background-size: .39rem auto;
    position: relative;
    z-index: 9;
}

.pub-arrow>div.pub-next div {
    width: 100%;
    height: 100%;
    background: url(../images/pub-next.svg) no-repeat;
    background-position: center center;
    background-size: .39rem auto;
    position: relative;
    z-index: 9;
}

.pub-arrow>div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #0F4578;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all .5s;
}



.s1 {
    padding-top: .5rem;
    position: relative;
    z-index: 1;
}
.s1::before{
    content: "";
    position: absolute;
    left: 0;
    top: -1.15rem;
    right: 0;
    height: 18rem;
    background: url(../images/s1-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.s1-c {
    display: flex;
    margin-top: .54rem;
}

.s1-l {
    width: 8.6rem;
    margin-right: .55rem;
}


.s1-lslick {
    border-radius: .1rem;
    overflow: hidden;
}

.s1-item {
    display: block;
    position: relative;
}

.s1-item .pic {
    padding-top: 65%;
}

.s1-item .info h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.26rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.34rem;
    color: #000000;
    margin-top: .1rem;
    margin-top: .3rem;
}


.s1-item .info p {
    font-size: 0.16rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.28rem;
    color: #9E9E9E;
    margin-top: .17rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s1-lslick .slick-dots {
    display: flex;
    align-items: center;
    width: auto;
    right: .25rem;
    bottom: 1.32rem;
}

.s1-lslick .slick-dots li {
    height: 0.08rem;
    width: 0.08rem;
    border-radius: 50%;
    background: #fff;
    margin-left: .15rem;
}

.s1-lslick .slick-dots li.slick-active {
    background: #0071bb;
}

.s1-lslick .slick-dots li button {
    display: none;
}

.s1-r {
    flex: 1;
    min-width: 0;
}

.s1-r ul li:nth-child(1) a {
    padding-top: 0;
}

.s1-r ul li a {
    display: flex;
    align-items: flex-start;
    padding: .26rem 0;
    position: relative;
}

.s1-r ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E8E8E8;
    height: 1px;
}

.s1-r ul li:last-child a::before {
    display: none;
}

.s1-r ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    transition: all .5s;
    bottom: 0;
    background: #004A90;
    height: 1px;
}

.s1-r ul li a .pics {
    width: 1.8rem;
    margin-right: .32rem;
}

.s1-r ul li a .pics .pic {
    padding-top: 70%;
    border-radius: 0.1rem;
}

.s1-r ul li a .info {
    flex: 1;
    min-width: 0;
}

.s1-r ul li a .info div {
    display: flex;
    align-items: center;
}

.s1-r ul li a .info div b {
    font-family: CanelaWeb-Regular;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #0F4578;
    margin-right: .1rem;
}

.s1-r ul li a .info div span {
    font-family: CanelaWeb-Regular;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #0F4578;
}

.s1-r ul li a .info h3 {
    font-size: 0.22rem;
    font-weight: 500;
    line-height: 0.32rem;
    letter-spacing: normal;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: .64rem;
    margin-top: .1rem;
}



.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 {
    padding-top: 1rem;
}

.s2-c {
    margin: 0 -.5rem;
    margin-top: .7rem;
}

.s2-c .swiper-container {
    overflow: visible;
}

.s2-c .swiper-slide.swiper-slide-active a {
    opacity: 1;
}

.s2-c .swiper-slide.swiper-slide-active+.swiper-slide a {
    opacity: 1;
}

.s2-c .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide a {
    opacity: 1;
}


.s2-c .swiper-slide a {
    display: block;
    transition: all .5s;
    padding: 0.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    border-radius: 0.2rem;
}

.s2-c .swiper-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url(../images/s2-itembg.png) no-repeat;
    background-position: left bottom;
    background-size: 40% auto;
    transform: translateX(-.1rem) translateY(.2rem);
    opacity: 0;
    transition: all .5s;
}

.s2-c .swiper-slide a h3 {
    font-size: 0.22rem;
    font-weight: 500;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
    transition: all .5s;
}

.s2-c .swiper-slide a div {
    display: flex;
    align-items: center;
    position: relative;
    margin: .17rem 0;
}

.s2-c .swiper-slide a div::before {
    content: "";
    display: block;
    flex: 1;
    min-width: 0;
    height: 1px;
    background: linear-gradient(270deg, rgba(216, 216, 216, 0) 0%, #D8D8D8 100%);
    transition: all .5s;
}

.s2-c .swiper-slide a div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 4px;
    background: #004A90;
    transition: all .5s;
}

.s2-c .swiper-slide a div span {
    font-family: CanelaWeb-Regular;
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #004A90;
    margin-left: .1rem;
    transition: all .5s;
}

.s2-c .swiper-slide a p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.24rem;
    letter-spacing: normal;
    color: #9E9E9E;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.48rem;
}

.s3 {
    margin-top: .9rem;
}

.s3-c {
    display: flex;
    align-items: flex-start;
    margin-top: .5rem;
}

.s3-l {
    width: 3.93rem;
    position: relative;
    z-index: 1;
}

#schedule-box {
    height: 5.3rem;
    position: relative;
    padding-right: .5rem;
}

#schedule-box::before {
    content: "";
    position: absolute;
    left: -1.6rem;
    top: 0;
    right: -.34rem;
    bottom: 0;
    background: #042F58;
    z-index: -1;
}

.s3-l .pub-arrow {
    margin-right: .5rem;
    margin-top: .26rem;
}

.s3-r {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 2;
    padding-left: .68rem;
}

.s3-r::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.4rem;
    right: -1.6rem;
    bottom: 0;
    background: url(../images/s3-rbg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
}

.s3-r .swiper-container {
    margin-right: -1.6rem;
    padding-top: .54rem;
    padding-bottom: 1rem;
    padding-right: 1.65rem;
}

.s3-r .swiper-slide a {
    display: block;
    padding: .22rem .32rem .46rem .32rem;
    position: relative;

}

.s3-r .swiper-slide a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff url(../images/s3-ritembg.png) no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0rem 0rem 0.3rem 0rem rgba(0, 0, 0, 0.02);
    z-index: -1;
    border-radius: 0.2rem;
}

.s3-r .swiper-slide a::after {
    content: "";
    position: absolute;
    position: absolute;
    left: 50%;
    top: .54rem;
    transform: translateX(-50%);
    width: 2.15rem;
    height: 0.69rem;
    border-radius: 0.2rem;
    background: #2C98FF;
    filter: blur(0.61rem);
    z-index: -2;
}

.s3-r .swiper-slide a .pic {
    padding-top: 64%;
}

.s3-r .swiper-slide a .info {
    padding-top: .32rem;
}

.s3-r .swiper-slide a .info h3 {
    font-size: 0.22rem;
    font-weight: 500;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.6rem;
}

.s3-r .swiper-slide a .info dl {
    padding-top: .18rem;
    margin-top: .21rem;
    border-top: 1px solid rgba(190, 190, 190, 0.28);
    ;
}

.s3-r .swiper-slide a .info dl dd {
    display: flex;
    align-items: center;
}

.s3-r .swiper-slide a .info dl dd div {
    position: relative;
    width: 0.23rem;
    display: flex;
    align-items: center;
    margin-right: .11rem;
}

.s3-r .swiper-slide a .info dl dd div::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 0.12rem;
    background: #E1E2E2;
}

.s3-r .swiper-slide a .info dl dd div img {
    display: block;
    width: 0.16rem;
}

.s3-r .swiper-slide a .info dl dd p {
    flex: 1;
    min-width: 0;
    font-size: 0.16rem;
    font-weight: 350;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #777777;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s3-r .swiper-slide a {
    transition: all .5s;
}

.s3-r .swiper-slide.swiper-slide-active+.swiper-slide+.swiper-slide~.swiper-slide a {
    opacity: .31;
}

.s4 {
    padding-top: .85rem;
    padding-bottom: .85rem;
    background: url(../images/s4-bg.png) no-repeat;
    background-position: center top;
    background-size: cover;
}

.s4-c {
    display: flex;
    margin-top: .73rem;
}

.s4-l {
    flex: 1;
    min-width: 0;
    padding-right: .4rem;
    position: relative;
}

.s4-l .slick {
    margin: 0 -.3rem;

}

.s4-l .slick ul li {}

.s4-l .slick ul li a {
    display: flex;
    margin: 0 .3rem;
}

.s4-l .slick ul li a .info {
    flex: 1;
    min-width: 0;
}

.s4-l .slick ul li a .info h3 {
    font-size: 0.26rem;
    font-weight: 500;
    line-height: 0.42rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #000000;
}

.s4-l .slick ul li a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.36rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #9E9E9E;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 1.08rem;
    margin-top: .53rem;
}

.s4-l .slick ul li a .pics {
    width: 3.4rem;
    margin-left: .78rem;
}

.s4-l .slick ul li a .pics .pic {
    padding-top: 141%;
    border-radius: 0.2rem;
}

.s4-l .pub-arrow {
    position: absolute;
    right: 0;
    left: 14.4%;
    bottom: 0;
}

.s4-l .pub-arrow::after {
    content: "";
    display: block;
    flex: 1;
    min-width: 0;
    background: #D8D8D8;
    height: 1px;
}

.s4-r {
    width: 7.2rem;
    padding-top: .58rem;
}

.s4-r .slick {
    margin: 0 -.2rem;
}

.s4-r .slick ul li a {
    display: block;
    margin: 0 .2rem;
}

.s4-r .slick ul li a .pic {
    padding-top: 141%;
    border-radius: 0.2rem;
}

.s5 {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0) 100%);
    padding: .5rem 0 .8rem 0;
    position: relative;
    z-index: 1;
}

.s5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: url(../images/s5-bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
}


.s5-c {
    margin-top: .8rem
}

.s5-c ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -.1rem;
}

.s5-c ul li {
    width: 1.3rem;
}

.s5-c ul li a {
    display: block;
    position: relative;
    border-radius: 0.2rem;
    overflow: hidden;
    margin: 0 .1rem;
}

.s5-c ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .5s;
    background: linear-gradient(207deg, rgba(4, 47, 88, 0.66) 29%, #042F58 130%, #054DB9 130%);
    z-index: 2;
}

.s5-c ul li a .pic {
    padding-top: 5.4rem;
    /* border-radius: 0.1rem; */
    background-color: #000a1b;
    overflow: hidden;
    z-index: 1;
}

.s5-c ul li a .pic div {
    opacity: .8;
    transition: all 0.5s;
    background-position: 79% top;
}

.s5-c ul li a .pic::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url() no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    transform: translateX(-100%);
    transition: all 0.5s;
    background: linear-gradient(245deg, rgba(4, 47, 88, 0) 6%, rgba(2, 70, 135, 0.82) 58%, #024687 100%, #054DB9 100%);
    filter: blur(.2rem);
    opacity: 0;
}

.s5-c ul li a .info-t {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9;
}

.s5-c ul li a .info-t {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: .6rem;
    width: 1.1rem;
    height: 100%;
    box-shadow: 0rem 0rem 0.12rem 0.01rem rgba(13, 81, 121, 0.39);
    border-radius: 50%
}


.s5-c ul li a .info-t b {
    width: 0.36rem;
    height: 0.36rem;
    background: url(../images/s5-more.svg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    margin-top: .3rem;
}

.s5-c ul li a .info-t p {
    font-size: 0.3rem;
    font-weight: 500;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #FFFFFF;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
}

.s5-c ul li a .info-t h3 {
    font-family: SourceHanSansCN-Medium;
    font-size: 0.26rem;
    font-weight: normal;
    line-height: 0.25rem;
    color: #ffffff;
    margin-top: .1rem
}


.s5-c ul li a .info-b {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    padding: 0 2.8rem 0 .48rem;
    transform: translateY(100%);
    transition: all 0.5s;
    z-index: 9;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s5-c ul li a .info-b:after {
    content: "";
    position: absolute;
    right: .46rem;
    bottom: .54rem;
    background: url(../images/s5-more.svg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: .46rem;
    height: .46rem;
}

.s5-c ul li a .info-b b {
    font-family: SourceHanSansCN-Bold;
    font-size: 0.32rem;
    font-weight: normal;
    line-height: 0.32rem;
    color: #fdbd07
}

.s5-c ul li a .info-b h3 {
    font-family: SourceHanSansCN-Bold;
    font-size: 0.32rem;
    font-weight: normal;
    line-height: 0.32rem;
    color: #ffffff;
    margin-top: .15rem
}

.s5-c ul li a .info-b h4 {
    font-family: SourceHanSansCN-Regular;
    font-size: 0.48rem;
    font-weight: normal;
    line-height: 0.5rem;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.s5-c ul li a .info-b p {
    font-family: SourceHanSansCN-Regular;
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.4rem;
    color: #ffffff;
    opacity: 0.8;
    margin-top: .12rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 1.2rem;
    margin-top: .42rem;
    width: 100%;
}

.s5-c ul li.on a .pic::after {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
}

.s5-c ul li.on a .pic div {
    opacity: 1
}

.s5-c ul li.on a .info-t {
    transform: translateX(-100%);
}

.s5-c ul li.on a .info-b {
    transform: translateY(0);
    transition-delay: .4s
}

.s5-c ul li.on a::before {
    opacity: 0;
}


.s6 {
    margin-top: 0.6rem;
    position: relative;
    overflow: hidden;
}

.s6::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .76rem;
    top: 0;
    background: url(../images/s6-bg.png) no-repeat;
    background-position: center bottom;
    background-size: 18.59rem auto;
}

.s6-t {
    max-width: 11rem;
    margin: 0 auto;
    padding: 0 1.4rem;
    position: relative;
    margin-top: .6rem;
}

.s6-t .swiper-slide a {
    display: flex;
    align-items: center;
    padding: 0 .1rem;
}

.s6-t .swiper-slide a .pics {
    width: 3.33rem;
    margin-right: .32rem;
}

.s6-t .swiper-slide a .pics .pic {
    padding-top: 66%;
    border-radius: 0.1rem;
}

.s6-t .swiper-slide a .info {
    flex: 1;
    min-width: 0;
    padding-top: .25rem;
}

.s6-t .swiper-slide a .info h3 {
    font-size: 0.22rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s6-t .swiper-slide a .info p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #999999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 0.6rem;
    margin: .22rem 0 .28rem 0;
}

.s6-t .swiper-slide a .info div {
    display: flex;
    align-items: center;
    font-family: CanelaWeb-Regular;
}

.s6-t .swiper-slide a .info div b {
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #333333;
}

.s6-t .swiper-slide a .info div span {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #333333;
}

.s6-t .pub-arrow>div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.s6-t .pub-arrow>div::before {
    display: none;
}

.s6-t .pub-arrow>div.pub-prev {
    left: 0;
}

.s6-t .pub-arrow>div.pub-next {
    right: 0;
}

.s6-b {
    padding-top: .35rem;
    padding-bottom: 1.34rem;
    position: relative;
    z-index: 1;
}

.s6-b ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.2rem;
}

.s6-b ul li {
    width: 18.75%;
    margin-top: .45rem;
}

.s6-b ul li:nth-child(1) {
    margin-left: 3.125%;
}

.s6-b ul li:nth-child(7) {
    margin-right: 25%;
}

.s6-b ul li a {
    margin: 0 .2rem;
    display: block;
    border: 1px solid transparent;
    transition: all .5s;
    border-radius: 0.1rem;
}

.s6-b ul li.on a {
    border: 1px solid #CDA768;
    background: #FFFFFF;
    box-shadow: 0px 0.04rem 0.3rem 0rem rgba(46, 111, 169, 0.1);
}

.s6-b ul li a .pics {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0rem 0.04rem 0.3rem 0rem rgba(46, 111, 169, 0.1);
    height: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .1rem;
    border-radius: 0.1rem;
}

.s6-b ul li a .pics img {
    max-width: 100%;
    max-height: 100%;
}

.s6-btm {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -.76rem;
    z-index: -1;
}

.s6-btm div {
    position: relative;
}

.s6-btm div img {
    display: block;
    width: 11.09rem;
}

.s6-btm div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
    width: 11rem;
    height: 11rem;
    border: 1px solid rgba(184, 213, 240, 0.5);
    border-radius: 50%;
    z-index: -1;
    animation: _circlescale infinite 5s linear;
    pointer-events: none;
}

.s6-btm div::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(-50%);
    width: 16rem;
    height: 16rem;
    border: 1px solid rgba(184, 213, 240, 0.5);
    border-radius: 50%;
    z-index: -1;
    animation: _circlescale infinite 5s -2.5s linear;
    pointer-events: none;
}

@keyframes _circlescale {
    0% {
        transform: translateX(-50%) translateY(-50%) scale(1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) scale(1.5);
        opacity: 0;
    }
}

.s7 {
    position: relative;
    padding-top: .93rem;
    z-index: 1;
    padding-bottom: .74rem;
}

.s7::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4rem;
    background: #042F58;
    z-index: -1;
    pointer-events: none;
}

.s7-c {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.s7-l {
    width: 45.125%;
}

.s7-tit {
    display: flex;
    align-items: flex-start;
}

.s7-tit .itit-text {
    padding-top: .5rem;
}

.s7-tit .itit {
    flex: 1;
    min-width: 0;
}

.s7-tit .itit-more {
    top: 0.6rem;
}

.s7-tit .itit-more a {
    color: #fff;
}

.s7-tit .itit-more a::before {
    background: url(../images/itit-more-bg-w.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.s7-tit .itit-text h2 {
    text-align: left;
    color: #fff;
}

.s7-tit .itit-text h3 {
    text-align: left;
    left: 0;
    transform: translateX(0);
    opacity: .22;
    font-size: .6rem;
    line-height: .6rem;
}


.s7-m {
    width: 29.0625%;
    position: relative;
    z-index: 9;
}

.s7-r {
    width: 22.6875%;
}

.s7-item {}

a.s7-item {
    display: block;
    position: relative;
}

a.s7-item .pic {
    padding-top: 100%;
    border-radius: 0.1rem;
}

a.s7-item .pic::after {
    content: "";
    position: absolute;
    left: 0;
    height: 0.75rem;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: auto 100%;
    z-index: 9;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

a.s7-item .info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .2rem;
    z-index: 9;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}

a.s7-item .info h3 {
    font-size: 0.2rem;
    font-weight: normal;
    font-stretch: normal;
    line-height: 0.3rem;
    letter-spacing: 0rem;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

a.s7-item .info h3 i {
    background-image: linear-gradient(#fff, #fff);
}

a.s7-item .info div {
    display: flex;
}

a.s7-item .info div p {
    display: flex;
    align-items: center;
    line-height: .3rem;
    font-size: 0.14rem;
    font-weight: normal;
    font-stretch: normal;
    color: #ffffff;
}

a.s7-item .info div p img {
    max-height: .24rem;
    margin-right: .1rem;
}

.fmeida {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: .5rem;
    margin-left: .8rem;
}

.fmeida li {
    vertical-align: middle;
    margin: 0 .13rem;
}

.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;
    width: .56rem;
    height: .56rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
}

.fmeida li a:hover div:nth-child(1) {
    background: rgba(255, 255, 255, .2);
}

.fmeida li a:hover {}

.fmeida li a>div>img {
    display: block;
    max-width: .3rem;
    min-height: .24rem;
}

.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;
}

.s7-l>ul {
    margin-top: .42rem;
}

.s7-l>ul a.s7-item .pic {
    padding-top: 66%;
}

.s7-m>ul a.s7-item .pic {
    padding-top: 66%;
}

.s7-m>ul li+li {
    margin-top: .28rem;
}

.s7-r>ul a.s7-item .pic {
    padding-top: 177%;
}






@media screen and (min-width:1025px) {
    .pub-arrow>div:hover::after {
        opacity: 1;
    }


    .pub-arrow>div.pub-prev:hover div {
        background: url(../images/pub-prev-w.svg) no-repeat;
        background-position: center center;
        background-size: .39rem auto;
    }

    .pub-arrow>div.pub-next:hover div {
        background: url(../images/pub-next-w.svg) no-repeat;
        background-position: center center;
        background-size: .39rem auto;
    }

    .s1-item:hover .info h3, .s1-r ul li a:hover .info h3, .s3-r .swiper-slide a:hover .info h3, .s6-t .swiper-slide a:hover .info h3 {
        color: #004A90;
    }

    .s1-r ul li a:hover::after {
        width: 100%;
        left: 0;
    }

    .s2-c .swiper-slide a:hover h3 {
        color: #0F4578;
    }

    .s2-c .swiper-slide a:hover {
        transform: translateY(-.1rem);
        background: #FFFFFF;
        box-shadow: 0rem 0.04rem 0.3rem 0rem rgba(51, 102, 150, 0.08);
    }

    .s2-c .swiper-slide a:hover::before {
        opacity: 1;
    }

}

@media screen and (max-width:1024px) {
    .index {
        position: relative;
        padding-top: 0;
    }

    .banner .slick {
        padding-left: 0;
    }

    .banner-left {
        display: none;
    }

    .banner .slick-slide a>img, .banner .slick-slide a>video {
        height: auto;
    }

    .banner .slick-slide a::after {
        display: none;
    }

    .banner .slick-dots {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: 0.2rem;
    }

    .banner .slick-dots li {
        display: flex;
        align-items: center;
        height: 0.3rem;
        padding: 0;
        margin: 0 .1rem;
    }

    .banner .slick-dots li.slick-active::before {
        width: 0.3rem;
    }

    .banner .slick-dots li.slick-active::after {
        height: 1px;
        width: .7rem;
    }


    .banner-btm {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        display: block;
        border-radius: 0;
    }

    .banner-btm ul {
        flex-wrap: wrap;
    }

    .banner-btm ul li {
        width: 33%;
    }

    .banner-btm ul li:nth-child(2n) {
        width: 1px;
    }

    .banner-btm ul li a span {
        padding: 0;
        font-size: .18rem;
        line-height: .6rem;
    }

    .banner-btm .pyxm {
        width: auto;
        background: #0f4578;
        border-radius: 0;
        margin-left: 0;
        flex-direction: row;
        height: 0.6rem;
    }

    .banner-btm .pyxm p {
        font-size: .2rem;
    }

    .banner-btm .pyxm::before {
        display: none;
    }

    .itit {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .itit-text h2 {
        font-size: .3rem;
        text-align: left;
        line-height: .4rem;
    }

    .itit-text h3, .s7-tit .itit-text h3 {
        white-space: pre-wrap;
        text-align: left;
        font-size: .4rem;
        left: 0;
        transform: translateX(0);
        line-height: .5rem;
    }

    .itit-text div::before {
        left: 0;
        transform: translateX(0) translateY(-50%);
    }

    .itit-more a {
        font-size: .18rem;
    }

    .itit2-text {
        width: 100%;
        position: static;
        right: auto;
        top: auto;
        margin-top: .32rem;
    }

    .itit2-text div p {
        font-size: .2rem;
        width: 1.5rem;
        height: 0.4rem;
        line-height: .4rem;
    }

    .itit2-text div+div {
        margin-left: .15rem;
    }

    .pub-arrow>div {
        width: 0.45rem;
        height: 0.45rem;
    }

    .pub-arrow>div svg {
        width: .3rem;
    }

    .pub-arrow>div+div {
        margin-left: .1rem;
    }



    .s1-c, .s3-c {
        display: block;
    }

    .s1-l {
        width: auto;
        margin-right: 0;
        margin-bottom: .35rem;
    }

    .s3-l {
        width: auto;
        margin-right: 0;
    }

    .s1-lslick .slick-dots {
        bottom: 1.1rem;
        right: 0.1rem;
    }

    .s1-r ul li a .pics {
        width: 1.6rem;
        margin-right: .2rem;
    }


    .s1-item .info h3 {
        font-size: .2rem;
        margin-top: .15rem;
    }

    .s1-r ul li a .info h3, .s2-c .swiper-slide a h3, .s3-r .swiper-slide a .info h3, .s6-t .swiper-slide a .info h3 {
        font-size: .18rem;
    }

    .s1-r ul li a {
        padding: .15rem 0;
    }

    .s2-c {
        margin-left: -.1rem;
        margin-right: -.1rem;
    }

    .s2-c .swiper-slide a {
        padding: .25rem .2rem;
        margin: 0 .1rem;
        background: #FFFFFF;
        box-shadow: 0rem 0.04rem 0.3rem 0rem rgba(51, 102, 150, 0.08)
    }

    .s2-c .swiper-slide a::before {
        opacity: 1;
    }

    #schedule-box {
        padding-right: 0;
        height: auto;
        min-height: 4.6rem;
    }

    .s3-r {
        padding-left: 0;
    }

    .s3-r .swiper-container {
        padding-top: .5rem;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: .5rem;
    }

    .s3-r .swiper-slide a {
        padding: .2rem;
    }

    .s3-r .swiper-slide a::after {
        filter: blur(.3rem);
    }

    .s3-r::before {
        left: -10px;
        top: 0;
        right: -10px;
    }

    .s3-r .swiper-slide a .info {
        padding-top: .2rem;
    }

    .s3-r .swiper-slide a .info dl {
        padding-top: .1rem;
        margin-top: .1rem;
    }

    .s3-l .pub-arrow {
        margin-right: 0;
    }

    .s4-c {
        display: block;
    }

    .s4-r {
        display: none;
    }

    .s4-l {
        padding-right: 0;
    }

    .s4-l .slick {
        margin: 0;
    }

    .s4-l .slick ul li a {
        margin: 0;
    }

    .s4-l .slick ul li a .pics {
        width: 1.5rem;
        margin-left: .2rem;
    }

    .s4-l .slick ul li a .info h3 {
        font-size: .24rem;
    }

    .s4-l .slick ul li a .info p {
        margin-top: .25rem;
        line-height: .3rem;
        max-height: .9rem;
    }

    .s4-l .pub-arrow {
        position: static;
        left: 0;
    }

    .s6-t {
        padding: 0 .5rem;
    }

    .s6-t .swiper-slide a {
        display: block;
    }

    .s6-t .swiper-slide a .pics {
        width: auto;
        margin-right: 0;
    }

    .s6-t .swiper-slide a .info p {
        margin: .15rem 0;
    }

    .s6-t .swiper-slide a .info div b {
        font-size: .2rem;
    }

    .s6-btm div img {
        width: 130vw;
    }

    .s6-btm div::before {
        width: 100vw;
        height: 100vw;
    }

    .s6-btm div::after {
        width: 100vw;
        height: 100vw;
    }

    .s6-b ul {
        margin: 0 -.05rem;
    }

    .s6-b ul li {
        width: 33.33%;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: .1rem;
    }

    .s6-b ul li a {
        margin: 0 .05rem;
    }

    .s6-b ul li a .pics {
        height: .8rem;
    }

    .s7-c {
        flex-wrap: wrap;
    }

    .s7-tit {
        display: block;
    }

    .s7-tit .itit-text {
        padding-top: .3rem;
    }

    .s7-l {
        width: 100%;
        margin-bottom: 2.5%;
    }

    .s7-m {
        width: 55%;
    }

    .s7-r {
        width: 42.5%;
    }

    .s7-m>ul li+li {
        margin-top: 5%;
    }

    a.s7-item .info {
        padding: .1rem;
    }

    a.s7-item .info h3 {
        font-size: .18rem;
    }

    a.s7-item .info div p img {
        max-height: .2rem;
        margin-right: 0.05rem;
    }

    .fmeida {
        margin-left: 0;
        margin-top: .35rem;
    }














    .s5-c ul {
        display: block;
    }

    .s5-c ul li+li {
        margin-top: .1rem;
    }

    .s5-c ul li, .s5-c ul li:nth-child(1) {
        width: auto;
    }

    .s5-c ul li a .pic {
        padding-top: 1.5rem;
    }

    .s5-c ul li a .info-b {
        padding: .15rem .7rem .15rem 0.15rem;
        transform: translateX(0);
    }

    .s5-c ul li a .info-t {
        transform: translateX(-100%);
    }

    .s5-c ul li a .info-t svg {
        opacity: 0;
    }

    .s5-c ul li a .info-b h4 {
        font-size: .24rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: .3rem;
    }

    .s5-c ul li a .info-b p {
        -webkit-line-clamp: 2;
        max-height: .6rem;
        line-height: .3rem;
        margin-top: .1rem;
        font-size: .16rem;
    }

    .s5-c ul li a .pic::after {
        transform: none;
    }

    .s5-c ul li a .info-t b {
        font-size: .2rem;
    }

    .s5-c ul li a .info-b:after {
        right: .1rem;
        bottom: .2rem;
    }




    .s1, .s2, .s4, .s7 {
        padding-top: .5rem;
    }

    .s4, .s5 {
        padding-bottom: 0;
    }

    .s3, .s6 {
        margin-top: .5rem;
    }

    .s1-c, .s2-c, .s3-c, .s4-c, .s5-c, .s6-t {
        margin-top: .35rem;
    }













}


@media screen and (max-width:768px) {}