@charset "utf-8";

.banner {
    position: relative;
    /* z-index: 9; */
    overflow: hidden;
    width: 100%;
}

.banner a {
    display: block;
}

.banner>img {
    display: block;
    width: 100%;
}

.banner .slick {
    position: relative;
    z-index: 9;
}

.banner .slick-slide a {
    display: block;
    position: relative;
}

.banner .slick-slide a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.7rem;
    /* background: linear-gradient(0deg, #014389 0%, rgba(0, 75, 155, 0.5274) 47%, rgba(1, 67, 137, 0) 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);
    }
}

.banner .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.47rem;
    max-width: 15rem;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.banner .slick-dots li {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    margin: 0 .05rem;
}

.banner .slick-dots li::before {
    content: "";
    position: absolute;
    left: .15rem;
    top: 100%;
    transform: scale(0);
    opacity: 0;
    transition: all .5s;
    width: 0.26rem;
    height: 0.09rem;
    background: url(../images/down-page.svg) no-repeat;
    background-position: center center;
    background-size: .26rem;
}

.banner .slick-dots li::after {
    content: "";
    position: absolute;
    background: url(../images/b-train-guang.png) no-repeat;
    background-size: 100% 100%;
    width: 2.38rem;
    height: 1.38rem;
    top: calc(100% - .45rem);
    left: 50%;
    margin-left: -1.19rem;
    transform-origin: center top;
    transform: scale(0);
    transition: all .5s;
    opacity: 0;
}

.banner .slick-dots li button {
    width: 0.57rem;
    height: 0.6rem;
    margin: 0;
    padding: 0;
    background: url(../images/b-train.png) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    transform: scale(.88);
    opacity: 0;
    transition: all .5s;
}

.banner .slick-dots li span {
    width: 0.07rem;
    height: 0.07rem;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.banner .slick-dots li.slick-active {}

.banner .slick-dots li.slick-active::before {
    transform: scale(1);
    opacity: 1;
}

.banner .slick-dots li.slick-active::after {
    transform: scale(1);
    opacity: 1;
}

.banner .slick-dots li.slick-active button {
    transform: scale(1);
    opacity: 1;
}

.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: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;
}

.b-btm {
    position: absolute;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    bottom: 0.05rem;
    width: 100%;
    max-width: 16rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 9;
    opacity: 0;
    transition: all 1s;
    display: none;
}

.b-btm.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.b-btml {
    flex: 1;
    min-width: 0;
    position: relative;
    margin-top: .3rem;
    transform-origin: right center;
    cursor: pointer;
}

.b-btml img {
    width: 100%;
    display: block;
}

.b-btml div {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: url(../images/b-btml-h.svg) no-repeat;
    background-position: right top;
    background-size: auto 100%;
    z-index: 2;
}

.b-btmm {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    margin: 0 .6rem;
}

.b-btmm .b-train {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.b-btmm .b-train .b-train-g {
    position: absolute;
    background: url(../images/b-train-guang.png) no-repeat;
    background-size: 100% 100%;
    width: 3.43rem;
    height: 1.83rem;
    top: .6rem;
    left: 50%;
    margin-left: -1.72rem;
    transform-origin: center top;
}

.b-btmm .b-train>img {
    display: block;
    width: .39rem;
    transform-origin: center top;
}

.b-btmm .b-train .down-page {
    position: absolute;
    left: 50%;
    margin-left: -.17rem;
    bottom: .2rem;
    z-index: 9;
    height: .31rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.b-btmm .b-train .down-page>img {
    display: block;
    width: .34rem;
    animation: bb 2s linear 0s infinite;
}

@keyframes bb {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }

    20% {
        transform: translate(0, 0.03rem);
        opacity: 1;
    }

    80% {
        transform: translate(0, 0.1rem);
        opacity: 1;
    }

    90% {
        transform: translate(0, 0.1rem);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0.1rem);
        opacity: 0;
    }
}

.b-btmm .b-program {
    position: relative;
}

.b-btmm .b-program span {
    content: "";
    position: absolute;
    top: 0.32rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/b-proline.svg) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 1.2rem;
    height: 0.8rem;
}

.b-btmm .b-program>img {
    display: block;
    width: 100%;
}

.b-btmm .b-program>div {
    position: absolute;
    left: -50%;
    top: 0;
    width: 200%;
    height: 100%;
    transform: rotateZ(-180deg);
    transform-origin: center bottom;
    overflow: hidden;
}

.b-btmm .b-program>div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/b-program-h.svg) no-repeat;
    background-position: center center;
    background-size: 1.5rem auto;
    transform: rotateZ(180deg);
    transform-origin: center bottom;
}

.b-btmr {
    flex: 1;
    min-width: 0;
    position: relative;
    margin-top: .3rem;
    transform-origin: left center;
    cursor: pointer;
}

.b-btmr img {
    width: 100%;
    display: block;
}

.b-btmr div {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: url(../images/b-btmr-h.svg) no-repeat;
    background-position: left top;
    background-size: auto 100%;
    z-index: 2;
}

.b-btm.start .b-btml div {
    width: 100%;
    transition: all 3s linear;
}

.b-btm.start .b-btmr div {
    width: 100%;
    transition: all 3s linear;
}

.b-btm.start .b-btmm .b-program>div {
    transform: rotateZ(0deg);
    transition: all 3s linear;
}

.b-btm.start .b-btmm .b-program>div::before {
    transform: rotateZ(0deg);
    transition: all 3s linear;
}


/* index */

.index {
    z-index: 99;
    overflow: hidden;
    padding-top: .5rem;
    font-size: 0;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 99;
    overflow: hidden;
    background: linear-gradient(180deg, #004389 0%, #173476 22%, #295AA4 46%, #102B6A 94%);
}

.tit {
    position: relative;
    z-index: 1;
}

.tit-name a {
    display: block;
}

.tit-name a p {
    font-family: Quantico;
    font-size: 0.96rem;
    font-weight: normal;
    line-height: 0.7rem;
    letter-spacing: normal;
    color: transparent;
    text-align: center;
    -webkit-text-stroke: rgba(255, 255, 255, 0.1) 1px;
    text-transform: uppercase;
}

.tit-name a div {
    display: flex;
    align-items: center;
    font-family: "almm-sh-b";
    font-size: 0.52rem;
    font-weight: bold;
    line-height: 0.5rem;
    text-align: center;
    margin-top: -.22rem;
    justify-content: center;
}

.tit-name a div b {
    color: #FFFFFF;
    display: block;
}

.tit-name a div span {
    display: block;
    color: #27D9B0;
    background-image: linear-gradient(270deg, #27D9B0 30%, #3FC9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tit-more {
    position: absolute;
    right: 0;
    bottom: 0;
}

.tit-more a {
    display: flex;
    align-items: center;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.5rem;
    text-align: right;
    letter-spacing: normal;
    color: #FFFFFF;
    white-space: nowrap;
}

.tit-more a img {
    display: block;
    height: .16rem;
    margin-left: 0.05rem;
}


.tit.normal .tit-name a p {
    color: rgba(19, 53, 105, 0.4);
}

.tit.normal .tit-name a div b {
    color: #133569
}

.tit.normal .tit-name a div span {
    background-image: none;
    -webkit-text-fill-color: #324AE5;
    background-clip: initial;
    color: #324AE5
}

.tit.normal {}

.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(1.5rem);
}

.tab-bd>div.on {
    position: relative;
    z-index: 9;
    opacity: 1;
    transform: translateY(0);
}

.fmeida {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 -.03rem;
    position: absolute;
    right: 0;
    bottom: 0;
}

.fmeida li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 .03rem;
}

.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.44rem;
    height: 0.44rem;
}

.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;
}

.s1 {
    padding-top: 1.03rem;
    position: relative;
    z-index: 2;
}

.s1>div {
    position: relative;
    z-index: 1;
}

.s1 .tit .tit-more {
    bottom: -.1rem;
    right: .77rem;
}

.s1 .vivus-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: .05rem;
    z-index: -1;
    pointer-events: none;
}

.s1 .vivus-svg svg {
    display: block;
    width: 100%;
    height: 8.871rem;
}

.s1 .tit-name a p {}

.s1-c {
    display: flex;
    align-items: flex-start;
    margin-top: 1rem;
    padding-bottom: 1.21rem;
    position: relative;
    z-index: 1;
    padding: 0 0 0 .545rem;
}

.s1-c::before {}

.s1-c::after {}

.s1-l {
    position: relative;
    flex: 1;
    min-width: 0;
}

.s1-l ul li {
    position: relative;
    z-index: 1;
}

.s1-l ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    right: 0;
    z-index: -1;
    background: url(../images/s1-litembg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transition: all .5s;
}

.s1-l ul li a {
    display: flex;
    align-items: center;
    padding: .28rem .46rem .28rem 0;
    z-index: 1;
    position: relative;
}

.s1-l ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .5s;
}

.s1-l ul li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1.3rem;
    border-top: 1px solid #57CDFF;
    transition: all .5s;
}

.s1-l ul li a .pics {
    width: 2.55rem;
    margin-right: .35rem;
}

.s1-l ul li a .pics .pic {
    padding-top: 62%;
}

.s1-l ul li a .date {
    width: 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.s1-l ul li a .date b {
    color: #FFFFFF;
    font-size: .4rem;
    line-height: .5rem;
    font-weight: normal;
}

.s1-l ul li a .date span {
    font-size: .16rem;
    line-height: .24rem;
    color: #FFFFFF;
}

.s1-l ul li a .info {
    flex: 1;
    min-width: 0;
}

.s1-l ul li a .info span {
    display: block;
    font-family: Arial;
    font-size: 0.22rem;
    font-weight: normal;
    line-height: 0.3rem;
    color: #fff;
}

.s1-l ul li a .info h3 {
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.32rem;
    letter-spacing: normal;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .64rem;
    padding-right: .66rem;
    transition: all .5s;
    position: relative;
}

.s1-l ul li a .info h3::before {
    content: "";
    background: url(../images/icon-right.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 0.33rem;
    height: 0.11rem;
    transition: all .5s;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.s1-l ul li a .info h3::after {
    content: "";
    background: url(../images/icon-right-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
    width: 0;
    height: 0.11rem;
    transition: all .5s;
    position: absolute;
    right: 0.33rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.s1-l ul li a .bgline {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.s1-l ul li a .bgline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s1-lsvg.png) no-repeat;
    background-position: left bottom;
    background-size: 8.1rem auto;
    z-index: 1;
}

.s1-l ul li:last-child a .bgline::before {
    opacity: 0;
}

.s1-l ul li a .bgline::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    bottom: 0;
    background: url(../images/s1-lsvg-h.png) no-repeat;
    background-position: left bottom;
    background-size: 8.1rem auto;
    z-index: 2;
    transition: all .5s;
}

.s1-r {
    margin-right: .6rem;
    width: 7.4rem;
    /* margin-top: .28rem; */
}

.s1-r .slick {
    position: relative;
}

.s1-r .slick .slick-list {
    /* overflow: visible; */
}

.s1-r .slick ul li a {
    /* display: block; */
    /* filter: blur(.15rem); */
    /* transform: scale(1.1); */
    transition: all 1s;
}

.s1-r .slick ul li a span {
    display: block;
    font-family: Arial;
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #fff;
    margin-top: .2rem;
}

.s1-r .slick ul li a .pic {
    padding-top: 59.5%;
}

.s1-r .slick ul li a .info {
    margin-top: .2rem;
    padding-right: 1.4rem;
}

.s1-r .slick ul li a .info h3 {
    font-size: 0.24rem;
    font-weight: normal;
    line-height: 0.36rem;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.s1-r .slick ul li.slick-current a {
    /* filter: blur(0); */
    /* transform: scale(1); */
}

.s1-r .slick .pubarr {
    position: absolute;
    right: 0;
    bottom: 0;
}

.pubarr {
    display: flex;
    align-items: center;
}

.pubarr div {
    cursor: pointer;
    position: relative;
}

.pubarr div.pub-prev {
    width: 0.45rem;
    height: 0.42rem;
}

.pubarr div.pub-prev::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/arr_prev.svg) no-repeat;
    background-position: center center;
    background-size: .17rem auto;
    opacity: 0.3;
    transition: opacity .5s;
}

.pubarr2 div.pub-prev::before {
    background: url(../images/arr_prev2.svg) no-repeat;
    background-position: center center;
    background-size: .17rem auto;
}

.pubarr div.pub-next {
    width: 0.45rem;
    height: 0.42rem;
    margin-left: .1rem;
}

.pubarr div.pub-next::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/arr_next.svg) no-repeat;
    background-position: center center;
    background-size: .17rem auto;
    opacity: 0.3;
    transition: opacity .5s;
}

.pubarr2 div.pub-next::before {
    background: url(../images/arr_next2.svg) no-repeat;
    background-position: center center;
    background-size: .17rem auto;
}

.pubarr div:hover::before {
    opacity: 1;
    transition: all .5s;
    transform: rotateX(180deg);
}

.s2 {
    margin-top: 1.8rem;
    position: relative;
    z-index: 1;
    padding-bottom: 1.4rem;
}

.s2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0.8rem;
    background: url(../images/s2-bbg.png) no-repeat;
    background-position: center bottom;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
    width: 9.6rem;
    height: 9.6rem;
    transform: translateX(50%);
}

.s2-train {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    height: 0.3462rem;
}

.s2-train::before {
    content: "";
    position: absolute;
    right: 0;
    top: .1rem;
    width: 19.39rem;
    height: 2.13rem;
    background: url(../images/s2-trainpd.png) no-repeat;
    background-position: right center;
    background-size: 100% auto;
}

/*.s2-train>div {
    position: absolute;
    right: 0;
    bottom: 0;
    
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: train 10s linear infinite;
    transform: translateX(100%);
} */

.s2-train>div {
    position: absolute;
    right: 0;
    bottom: 0;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* animation: train 10s linear infinite; */
    /* transform: translateX(100%); */
}

@keyframes train {
    0% {
        transform: translateX(100%);
    }

    100% {
        /* transform: translateX(-ms-calc(-100vw - 200%)); */
        transform: translateX(-130vw);
    }
}

.s2-train>div>div {
    width: 0.3462rem;
    height: 0.3462rem;
    background: linear-gradient(270deg, #4E9EFF 0%, #30CAFE 100%);
    border-radius: 50%;
    position: relative;
    transform: translateX(70%);
    z-index: 1;
}

.s2-train>div>div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(87, 205, 255, 0.3);
    animation: _circlescale infinite 3s linear;
    border-radius: 50%;
}

.s2-train>div>div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(87, 205, 255, 0.3);
    animation: _circlescale infinite 3s -1.5s linear;
    border-radius: 50%;
}

.s2-train img {
    display: block;
    width: 2.77rem;
    position: relative;
    z-index: 2;
}

.s2 .tit {}

.s2 .tit .tit-more {
    bottom: .1rem;
    right: .9rem;
}

.s2 .tit .vivus-svg {
    position: absolute;
    right: 0;
    /* left: 0; */
    bottom: 0;
    /* display: flex;
    justify-content: flex-end; */
}

.s2 .tit .vivus-svg svg {
    display: block;
    height: .38rem;
    width: 13.37rem;
}

.s2-c {
    padding-top: .6rem;
}

.s2-c ul {
    margin: 0 -.45rem;
}

.s2-c ul li a {
    display: block;
    margin: 0 .45rem;
}

.s2-c ul li a .date {
    position: relative;
}

.s2-c ul li a .date span {
    display: block;
    font-family: Arial;
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.5rem;
    letter-spacing: normal;
    color: #FFFFFF;
    text-align: center;
    width: 1.9rem;
}

.s2-c ul li a .date .svg-box {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.s2-c ul li a .date .svg-box .vivus-svg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.s2-c ul li a .date .svg-box .vivus-svg svg {
    display: block;
    width: 100%;
    height: auto;
}

.s2-c ul li a .date .svg-box .hover-svg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.s2-c ul li a .date .svg-box .hover-svg svg {
    display: block;
    width: 100%;
    opacity: 0;
    height: auto;
}

.s2-c ul li a h3 {
    padding-left: .44rem;
    padding-right: .33rem;
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: normal;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: .6rem;
    margin-top: .22rem;
}

.vivus-svg svg * {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1px;
}

.hover-svg svg * {
    fill: none;
    stroke: #57CDFF;
    stroke-width: 1px;
}

.s2-c ul li a:hover .date .svg-box .hover-svg svg {
    opacity: 1;
}

.s2-c ul li a:hover .date span {
    color: #57CDFF;
}

.s2-c ul li a:hover h3 {
    color: #57CDFF;
}

.s3 {
    padding-top: 1.33rem;
    position: relative;
    /* overflow: hidden; */
}

.s3 .tit .tit-name {}

.s3 .tit-name a div {
    margin-top: 0;
}

.s3 .tit .tit-name a p {}

.s3 .tit .vivus-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0.65rem;
    z-index: -1;
    pointer-events: none;
}

.s3 .tit .vivus-svg svg {
    display: block;
    width: 100%;
    max-width: 16rem;
    margin: 0 auto;
    height: .85rem;
}

.s3-c {
    display: flex;
    align-items: center;
    margin-top: .6rem;
    position: relative;
}

.s3-c::before {
    content: "";
    position: absolute;
    background: url(../images/s3-lbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 2.19rem;
    height: 8rem;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all .5s;
}

.s3-c::after {
    content: "";
    position: absolute;
    background: url(../images/s3-rbg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 2.19rem;
    height: 8rem;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all .5s;
}

.s3-l {
    flex: 1;
    min-width: 0;
}

.s3-l ul {}

.s3-l ul li {
    position: relative;
    z-index: 1;
}

.s3-l ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    transition: all .5s;
}

.s3-l ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all .5s;
    opacity: 0;
}

.s3-l ul li+li {
    margin-top: .16rem;
}

.s3-l ul li div {
    position: absolute;
    width: 0.08rem;
    height: 0.08rem;
    background: #FFFFFF;
    border-radius: 50%;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) scale(.7);
    transition: all .5s;
}

.s3-l ul li div span {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s;
    visibility: hidden;
}

.s3-l ul li div span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.2rem;
    margin-top: -.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale infinite 3s linear;
}

.s3-l ul li div span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.2rem;
    margin-top: -.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale infinite 3s -1.5s linear;
}

.s3-l ul li:nth-child(1) {
    margin-right: .33rem;
}

.s3-l ul li:nth-child(1)::before {
    background: url(../images/s3-litembg1.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(1)::after {
    background: url(../images/s3-litembg1-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(1)>div {
    margin-left: .3rem;
}

.s3-l ul li:nth-child(2) {
    margin-right: .88rem;
}

.s3-l ul li:nth-child(2)::before {
    background: url(../images/s3-litembg2.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(2)::after {
    background: url(../images/s3-litembg2-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(2)>div {
    margin-left: .3rem;
}

.s3-l ul li:nth-child(3) {
    margin-right: 1.27rem;
}

.s3-l ul li:nth-child(3)::before {
    background: url(../images/s3-litembg3.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(3)::after {
    background: url(../images/s3-litembg3-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(3)>div {
    margin-left: .38rem;
}

.s3-l ul li:nth-child(4) {
    margin-right: 1.52rem;
}

.s3-l ul li:nth-child(4)::before {
    background: url(../images/s3-litembg4.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(4)::after {
    background: url(../images/s3-litembg4-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(4)>div {
    margin-left: .45rem;
}

.s3-l ul li:nth-child(5) {
    margin-right: 1.65rem;
}

.s3-l ul li:nth-child(5)::before {
    background: url(../images/s3-litembg5.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(5)::after {
    background: url(../images/s3-litembg5-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(5)>div {
    margin-left: .52rem;
}

.s3-l ul li:nth-child(6) {
    margin-right: 1.52rem;
}

.s3-l ul li:nth-child(6)::before {
    background: url(../images/s3-litembg6.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(6)::after {
    background: url(../images/s3-litembg6-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(6)>div {
    margin-left: .48rem;
}

.s3-l ul li:nth-child(7) {
    margin-right: 1.27rem;
}

.s3-l ul li:nth-child(7)::before {
    background: url(../images/s3-litembg7.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(7)::after {
    background: url(../images/s3-litembg7-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(7)>div {
    margin-left: 0.45rem;
}

.s3-l ul li:nth-child(8) {
    margin-right: 0.88rem;
}

.s3-l ul li:nth-child(8)::before {
    background: url(../images/s3-litembg8.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(8)::after {
    background: url(../images/s3-litembg8-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(8)>div {
    margin-left: .45rem;
}

.s3-l ul li:nth-child(9) {
    margin-right: .33rem;
}

.s3-l ul li:nth-child(9)::before {
    background: url(../images/s3-litembg9.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(9)::after {
    background: url(../images/s3-litembg9-h.png) no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.s3-l ul li:nth-child(9)>div {
    margin-left: .4rem;
}

.s3-l ul li a {
    display: block;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.5rem;
    padding: 0 .6rem;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s3-m {
    width: 5.5rem;
    position: relative;
    margin-top: .25rem;
}

.s3-mnum {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.s3-mnum b {
    font-family: Graduate;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 0.6rem;
    text-align: center;
    letter-spacing: -0.12em;
    color: #FFFFFF;
}

.s3-mnum p {
    font-family: Arial;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.5rem;
    text-align: center;
    letter-spacing: normal;
    color: #FFFFFF;
}

.s3-mnum .s3-mzz {
    margin-top: .18rem;
}

.s3-mnum .s3-mzz img {
    display: block;
    width: 0.26rem;
    transform-origin: center .225rem;
}

.s3-mbg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.s3-mbg>div {}

.s3-mbg>div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: url(../images/s3-mc.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 11.54rem;
    width: 193.46%;
    padding-top: 105.72%;
}

.s3-mbg>div>img {
    display: block;
    width: 6.29rem;
}

.s3-mbg>div .s3-kd {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 32%;
}

.s3-mbg>div .s3-kd img {
    display: block;
    width: 2.77rem;
}

.s3-mbg>div .s3-kd div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.s3-mbg>div .s3-kd div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/s3-mkd2.png) no-repeat;
    background-position: center center;
    background-size: cover;
}

.s3-m {}

.s3-r {
    flex: 1;
    min-width: 0;
}

.s3-r ul li {
    position: relative;
    z-index: 1;
}

.s3-r ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    transition: all .5s;
}

.s3-r ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: all .5s;
    opacity: 0;
}

.s3-r ul li+li {
    margin-top: .16rem;
}

.s3-r ul li div {
    position: absolute;
    width: 0.08rem;
    height: 0.08rem;
    background: #FFFFFF;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    right: 100%;
    transition: all .5s;
}

.s3-r ul li div span {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .5s;
    visibility: hidden;
}

.s3-r ul li div span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.2rem;
    margin-top: -.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale infinite 3s linear;
}

.s3-r ul li div span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -.2rem;
    margin-top: -.2rem;
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: _circlescale infinite 3s -1.5s linear;
}

.s3-r ul li:nth-child(1) {
    margin-left: .23rem;
}

.s3-r ul li:nth-child(1)::before {
    background: url(../images/s3-ritembg1.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(1)::after {
    background: url(../images/s3-ritembg1-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(1)>div {
    margin-right: .4rem;
}

.s3-r ul li:nth-child(2) {
    margin-left: .78rem;
}

.s3-r ul li:nth-child(2)::before {
    background: url(../images/s3-ritembg2.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(2)::after {
    background: url(../images/s3-ritembg2-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(2)>div {
    margin-right: .4rem;
}

.s3-r ul li:nth-child(3) {
    margin-left: 1.17rem;
}

.s3-r ul li:nth-child(3)::before {
    background: url(../images/s3-ritembg3.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(3)::after {
    background: url(../images/s3-ritembg3-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(3)>div {
    margin-right: .45rem;
}

.s3-r ul li:nth-child(4) {
    margin-left: 1.42rem;
}

.s3-r ul li:nth-child(4)::before {
    background: url(../images/s3-ritembg4.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(4)::after {
    background: url(../images/s3-ritembg4-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(4)>div {
    margin-right: .53rem;
}

.s3-r ul li:nth-child(5) {
    margin-left: 1.55rem;
}

.s3-r ul li:nth-child(5)::before {
    background: url(../images/s3-ritembg5.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(5)::after {
    background: url(../images/s3-ritembg5-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(5)>div {
    margin-right: .62rem;
}

.s3-r ul li:nth-child(6) {
    margin-left: 1.42rem;
}

.s3-r ul li:nth-child(6)::before {
    background: url(../images/s3-ritembg6.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(6)::after {
    background: url(../images/s3-ritembg6-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(6)>div {
    margin-right: .56rem;
}

.s3-r ul li:nth-child(7) {
    margin-left: 1.17rem;
}

.s3-r ul li:nth-child(7)::before {
    background: url(../images/s3-ritembg7.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(7)::after {
    background: url(../images/s3-ritembg7-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(7)>div {
    margin-right: .54rem;
}

.s3-r ul li:nth-child(8) {
    margin-left: 0.78rem;
}

.s3-r ul li:nth-child(8)::before {
    background: url(../images/s3-ritembg8.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(8)::after {
    background: url(../images/s3-ritembg8-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(8)>div {
    margin-right: .52rem;
}

.s3-r ul li:nth-child(9) {
    margin-left: .23rem;
}

.s3-r ul li:nth-child(9)::before {
    background: url(../images/s3-ritembg9.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(9)::after {
    background: url(../images/s3-ritembg9-h.png) no-repeat;
    background-position: left center;
    background-size: auto 100%;
}

.s3-r ul li:nth-child(9)>div {
    margin-right: .55rem;
}

.s3-r ul li a {
    display: block;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 0.5rem;
    padding: 0 .6rem;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: normal;
    color: #FFFFFF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.s4 {
    padding-top: 1.45rem;
    position: relative;
    z-index: 2;
}

.s4::before {}

.s4 .tit .tit-name a p {
    transform: translateX(-.15rem);
}

.s4 .tit .vivus-svg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0.7rem;
    z-index: -1;
    pointer-events: none;
}

.s4 .tit .vivus-svg svg {
    display: block;
    height: 1.4rem;
}

.s4-text {
    margin-top: .65rem;
}

.s4-text p {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    text-align: center;
    letter-spacing: normal;
    color: #FFFFFF;
}

.s4-c {
    margin-top: 1.09rem;
}

.s4-c ul {
    display: flex;
    justify-content: center;
}

.s4-c ul li {
    display: flex;
    justify-content: center;
}

.s4-c ul li a {
    padding: 0 .78rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s4-c ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotateZ(-90deg);
    background: url(../images/s4-itembg.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    width: 2.35rem;
    height: 2.17rem;
    opacity: 0;
    transition: all .5s;
}

.s4-c ul li a div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.s4-c ul li a div strong {
    font-family: Canela;
    font-size: 0.6rem;
    font-weight: normal;
    line-height: 0.6rem;
    letter-spacing: normal;
    color: #FFFFFF;
    opacity: 0;
}

.s4-c ul li a div strong.cnum {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
}

.s4-c ul li a div span {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.34rem;
    letter-spacing: normal;
    color: #FFFFFF;
    margin-left: .05rem;
}

.s4-c ul li a p {
    font-size: 0.2rem;
    font-weight: normal;
    line-height: 0.34rem;
    letter-spacing: normal;
    color: #FFFFFF;
    margin-top: 0.05rem;
    text-align: center;
}

.s4-c ul li a .bef {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../images/s4-num-bef.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    height: 0.83rem;
    width: 0.07rem;
}

.s4-c ul li a .aft {
    position: absolute;
    left: 0;
    top: 0.4rem;
    background: url(../images/s4-num-after.png) no-repeat;
    background-position: center top;
    background-size: 100% auto;
    width: 0.32rem;
    height: 4.04rem;
    transition: all .5s;
    height: 0;
}

.s4-c ul li:nth-child(1) a .bef {
    opacity: 0;
}

.s4-c ul li:nth-child(1) a .aft {
    opacity: 0;
}

.s4-train {
    position: relative;
    pointer-events: none;
    z-index: -1;
    margin-top: 1.18rem;
}

.s4-train .s4-train-pd {
    position: absolute;
    left: 0;
    top: 0;
    width: 19.2rem;
}

.s4-train .s4-train-pd img {
    display: block;
    width: 100%;
}

/*.s4-train-gt {
    position: absolute;
    top: .1rem;
    right: 100%;
    transform: translateX(0) translateY(-50%);
    animation: train2 10s linear infinite;
} */


.s4-train-gt {
    position: absolute;
    top: .1rem;
    /* right: 100%; */
    transform: translateX(0) translateY(-50%);
    /* animation: train2 10s linear infinite; */

    left: 0;
}

@keyframes train2 {
    0% {
        transform: translateX(0) translateY(-50%);
    }

    100% {
        /* transform: translateX(-ms-calc(100vw + 200%)) translateY(-50%); */
        transform: translateX(130vw) translateY(-50%);
    }
}


.s4-train-gt-img {
    position: relative;
    z-index: 2;
}

.s4-train-gt-img img {
    display: block;
    height: .12rem;
}

.s4-train-gt-dot {
    position: absolute;
    width: 0.3462rem;
    height: 0.3462rem;
    background: linear-gradient(270deg, #4E9EFF 0%, #30CAFE 100%);
    border-radius: 50%;
    transform: translateX(-55%) translateY(-40%);
    z-index: 1;
    top: 50%;
    left: 100%;
}

.s4-train-gt-dot::before {}

.s4-train-gt-dot::after {}

.s4-train-gt-dot div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.s4-train-gt-dot div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: _circlescale infinite 3s linear;
    background: rgba(87, 205, 255, 0.3);
}

.s4-train-gt-dot div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: _circlescale infinite 3s -1.5s linear;
    background: rgba(87, 205, 255, 0.3);
}

.s4-train-gt-dot div:nth-child(2) {
    width: 188%;
    height: 188%;
}

.s4-train-gt-dot div:nth-child(2)::before {}

.s4-train-gt-dot span {
    /* background: url(
    ../images/s4-train-guang.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%; */
}

.s4-train-gt-dot span b {}

@keyframes _circlescale {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes _anirotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes _anirotate2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.s5 {
    position: relative;
    padding-top: 2rem;
    z-index: 3;
}


.s5-c {
    display: flex;
}

.s5-l {
    margin-right: 1.7rem;
}

.s5-l .tit {
    min-height: 7.52rem;
}

.s5-l .tit .tit-name a {
    display: flex;
    flex-direction: row-reverse;
}

.s5-l .tit .tit-name a p {
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    position: absolute;
    right: 100%;
    top: 0;
    margin-right: -.15rem;
}

.s5-l .tit .tit-name a div {
    display: block;
    margin-top: .97rem;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    letter-spacing: -0.1rem;
}

.s5 .tit .vivus-svg {
    position: absolute;
    left: 45%;
    top: 0;
    z-index: -1;
    pointer-events: none;
}

.s5 .tit .vivus-svg svg {
    display: block;
    width: .77rem;
    height: 7.53rem;
}

.group-media {
    position: absolute;
    bottom: .26rem;
    left: .24rem;
}

.group-media ul li a {
    display: block;
    position: relative;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-media ul li a img {
    display: block;
    height: 0.24rem;
    transition: all 0.5s;
}

.group-media ul li a .icons {
    overflow: hidden;
    border-radius: 50%;
    width: 0.5rem;
    height: 0.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.group-media ul li a .icons img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 100%;
}

.group-media ul li a:hover .icons {
    background: #014389;
}

.group-media ul li a .group-ewm {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 130%;
    margin-right: 0.1rem;
    border-radius: 0.05rem;
    padding: 0.05rem;
    background: #fff;
    opacity: 0;
    transition: all 1s;
    visibility: hidden;
    z-index: 9;
    box-shadow: 0rem 0.02rem 0.07rem 0rem rgba(2, 79, 164, 0.35);
    border-radius: 0.05rem;
}

.group-media ul li a .group-ewm img {
    display: block;
    width: 1rem;
    height: auto;
}

.group-media ul li a .group-ewm::after {
    content: "";
    position: absolute;
    left: 100%;
    transform: translateY(-50%);
    top: 50%;
    border-width: 0.08rem 0 0.08rem 0.08rem;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.group-media ul li a .icon {
    width: .44rem;
    height: .44rem;
    border-radius: 50%;
    text-align: center;
    font-size: 0;
    position: relative;
    z-index: 1;
}

.group-media ul li:hover a {
    overflow: visible;
}

.group-media ul li:hover a .icon {
    background-color: #2f73d1;
}

.group-media ul li:hover a .icon img {
    opacity: 1;
}

.group-media ul li a .icon img {
    vertical-align: middle;
    display: block;
    width: 100%;
}

.group-media ul li:hover a .group-ewm {
    opacity: 1;
    right: 100%;
    visibility: visible;
}

.s5-r {
    flex: 1;
    min-width: 0;
    padding-top: .4rem;
    display: flex;
    flex-wrap: wrap;
}

.s5-rl {
    width: 28.26%;
}

.s5-rl a {
    display: block;
    position: relative;
}

.s5-rl a .pic {
    padding-top: 174.35%;
}

.s5-r .s5-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: .3rem;
}

.s5-r .s5-info p {
    font-family: Arial;
    font-size: 0.14rem;
    font-weight: normal;
    line-height: 0.2rem;
    letter-spacing: 0.11em;
    color: #293C4B;
}

.s5-r .s5-info h3 {
    font-size: 0.32rem;
    font-weight: normal;
    line-height: 0.42rem;
    letter-spacing: normal;
    color: #293C4B;
}

.s5-r .s5-info.w p {
    color: #FFFFFF;
}

.s5-r .s5-info.w h3 {
    color: #FFFFFF;
}

.s5-rl a .s5-info p {
    font-size: .17rem;
    line-height: .2rem;
}

.s5-rl a .s5-info h3 {
    font-size: .42rem;
    line-height: .54rem;
    margin-top: 0.03rem;
}

.s5-rr {
    flex: 1;
    min-width: 0;
}

.s5-rr dl {
    display: flex;
    flex-wrap: wrap;
}

.s5-rr dl dd {
    margin-left: 2.025%;
}

.s5-rr dl dd:nth-child(1) {
    width: 48.48%;
}

.s5-rr dl dd:nth-child(1) a .pic {
    padding-top: 62.5%;
}

.s5-rr dl dd:nth-child(2) {
    width: 47.47%;
    margin-bottom: 2.025%;
}

.s5-rr dl dd:nth-child(2) a .pic {
    padding-top: 63.829%;
}

.s5-rr dl dd:nth-child(3) {
    width: 37.37%;
}

.s5-rr dl dd:nth-child(3) a .pic {
    padding-top: 97.29%;
}

.s5-rr dl dd a {
    display: block;
    position: relative;
}

.s5-rr dl dd a .pic {}

.s5-rb {
    margin-left: 2.025%;
    flex: 1;
    min-width: 0;
}

.s5-rb ul {}


.s5-rb ul li a {
    display: block;
    position: relative;
}

.s5-rb ul li a .icons {
    position: absolute;
    right: .14rem;
    top: 0.14rem;
    border-radius: 20px;
    height: 0.32rem;
    min-width: 1rem;
    padding: 0 .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.s5-rb ul li a .icons img {
    max-width: .22rem;
    min-width: .17rem;
    margin-right: 0.08rem;
}

.s5-rb ul li a .icons span {
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.28rem;
    letter-spacing: normal;
    color: #FFFFFF;
}

.s5-rb ul li a .icons.icon-sph {
    background: #FB9D39;
}

.s5-rb ul li a .icons.icon-wx {
    background: linear-gradient(270deg, #27D9B0 0%, #3FC9FF 98%);
}

.s5-rb ul li a .icons.icon-wb {
    background: linear-gradient(286deg, #E56D45 13%, #C23535 42%);
}

.s5-rb ul li a .pic {
    padding-top: 62.2%;
}

.s5-rb ul li a .pic::before {
    display: none;
}

.s5-rb ul li a .pic::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1.4rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.s5-rb ul li a h3 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 0.22rem;
    font-weight: normal;
    line-height: 0.28rem;
    letter-spacing: normal;
    color: #FFFFFF;
    padding: .2rem .3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.s5-rb ul li.video a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/icon-play.svg) no-repeat;
    background-position: center center;
    background-size: .7rem auto;
    z-index: 1;
}

.s5-rb .slick-dots {
    display: flex;
    align-items: center;
    width: auto;
    position: absolute;
    left: .3rem;
    bottom: 0.92rem;
}

.s5-rb .slick-dots li {
    width: 6px;
    height: 6px;
    opacity: 0.3;
    border: 1px solid #FFFFFF;
    transition: all .5s;
    border-radius: 50%;
    margin: 0 0.05rem;
}


.s5-rb .slick-dots li.slick-active {
    background: #FFFFFF;
    opacity: 1;
}

.trip {
    margin-top: 1rem;
    position: relative;
    z-index: 3;
}

.trip-pd {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: flex-start;
}

.trip-pd>div {
    background: url(../images/trip-pd.svg) no-repeat;
    background-position: left center;
    background-size: 19.2rem auto;
    height: 1.55rem;
    width: 19.2rem;
    transition: all .5s;
}

.trips {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.trips>div {
    position: absolute;
}

.trips>div img {
    display: block;
    transition: all .5s;
    opacity: 0;
}

.trips>div img:nth-child(1) {
    opacity: 1;
}

.trips>div img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
}

.trips>div:hover img {
    opacity: 1;
}

.trips>div:nth-child(1) {
    left: 0.49rem;
    bottom: calc(100% - 0.07rem);
}

.trips>div:nth-child(1) img {
    width: 2.09rem;
}

.trips>div:nth-child(2) {
    left: 4.79rem;
    bottom: 0.18rem;
}

.trips>div:nth-child(2) img {
    width: 2.27rem;
}

.trips>div:nth-child(3) {
    right: 0.57rem;
    bottom: 0.21rem;
}

.trips>div:nth-child(3) img {
    width: 2.39rem;
}

.trips>div:nth-child(4) {
    right: 7.3rem;
    top: 0;
}

.trips>div:nth-child(4) img {
    width: 3.09rem;
}

.rfixed {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 999;
    padding-right: .2rem;
    transition: all .5s;
    opacity: 0;
    pointer-events: none;
}

.rfixed.show {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.rfixed ul {
    padding-top: .45rem;
    position: relative;
    z-index: 1;
}

.rfixed ul::before {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    width: .4rem;
    height: .45rem;
    border-left: 2px solid #4884BB;
    border-top: 2px solid #4884BB;
    border-radius: .3rem 0 0 0;
    z-index: -1;
}

.rfixed ul::after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    width: .4rem;
    bottom: 0;
    border-left: 2px solid #1E4C95;
    border-top: 2px solid #1E4C95;
    border-radius: .3rem 0 0 0;
    z-index: -2;
}

.rfixed ul li {
    padding-bottom: .4rem;
    position: relative;
}

.rfixed ul li:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px solid #4884BB;
    top: 0;
    height: 100%;
    transition: all .5s;
}

.rfixed ul li a {
    display: block;
    width: 0.3rem;
    position: relative;
}

.rfixed ul li a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #FFFFFF;
    width: 0.05rem;
    height: 0.05rem;
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    transition: all .5s;
}

.rfixed ul li a div {
    height: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rfixed ul li a div::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.37rem;
    height: 0.37rem;
    background: #508CC1;
    border-radius: 50%;
    opacity: 0;
}

.rfixed ul li a div::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 0.47rem;
    height: 0.47rem;
    background: rgba(80, 140, 193, 0.2);
    border-radius: 50%;
    opacity: 0;
}

.rfixed ul li a div img {
    max-width: .22rem;
    max-height: .22rem;
    transition: all .5s;
    opacity: 0;
    z-index: 2;
    position: relative;
}

.rfixed ul li a p {
    position: absolute;
    width: 1.17rem;
    right: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    font-size: 0.16rem;
    font-weight: normal;
    line-height: .35rem;
    text-align: right;
    letter-spacing: normal;
    color: #FFFFFF;
    background: linear-gradient(270deg, rgba(80, 140, 193, 0.7) 0%, rgba(80, 140, 193, 0) 100%);
    z-index: 1;
    text-align: left;
    padding-left: .2rem;
    transition: all .5s;
    opacity: 0;
    pointer-events: none;
}

.rfixed ul>div {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
}

.rfixed ul>div a {
    display: block;
    border: 2px solid #1E4C95;
    height: 0.38rem;
    width: 0.38rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rfixed ul>div a img {
    width: 0.14rem;
}


.rfixed ul li.active~li::before {
    height: 0;
}

.rfixed ul li.active a::before {
    opacity: 0;
}

.rfixed ul li.active a div {
    border-color: transparent;
}

.rfixed ul li.active a div::before {
    opacity: 1;
}

.rfixed ul li.active a div::after {
    opacity: 1;
}

.rfixed ul li.active a div img {
    opacity: 1;
}

.rfixed ul li.active a p {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}




@media screen and(-ms-high-contrast:active),
(-ms-high-contrast:none) {
    .tit-name a p {
        color: rgba(255, 255, 255, 0.1);
    }
}

@media screen and (min-width: 1025px) {
    .s3-c:hover::before {
        transform: translateX(-.2rem) translateY(-50%) scale(1.2);
    }

    .s3-c:hover::after {
        transform: translateX(.2rem) translateY(-50%) scale(1.2);
    }

    .s1-l ul li:hover {
        z-index: 9;
    }

    .s1-l ul li:hover::before {
        opacity: 1;
    }

    .s1-l ul li:hover a::before {
        opacity: 0;
    }

    .s1-l ul li:hover a::after {
        opacity: 0;
    }

    .s1-l ul li a:hover .bgline::after {
        width: 100%;
    }

    .s1-r .slick ul li a:hover .info h3 {
        color: #57CDFF;
    }

    .s1-l ul li a:hover .info h3::after {
        /* width: .33rem;
        right: 0; */
    }

    .s3-l ul li:hover div {
        transform: translateY(-50%) scale(1);
    }

    .s3-l ul li:hover div span {
        opacity: 1;
        visibility: visible;
    }

    .s3-l ul li:hover::before {
        opacity: 0;
    }

    .s3-l ul li:hover::after {
        opacity: 1;
    }

    .s3-r ul li:hover div {
        transform: translateY(-50%) scale(1);
    }

    .s3-r ul li:hover div span {
        opacity: 1;
        visibility: visible;
    }

    .s3-r ul li:hover::before {
        opacity: 0;
    }

    .s3-r ul li:hover::after {
        opacity: 1;
    }

    .s4-c ul li:hover a::before {
        transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
        opacity: 1;
    }

    .s4-c ul li:hover a div strong {
        color: #57CDFF;
    }

    .s4-c ul li:hover a div span {
        color: #57CDFF;
    }

    .s4-c ul li:hover a p {
        color: #57CDFF;
    }
}

@media screen and (max-width: 1024px) {
       .s2-train>div {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: train 10s linear infinite; 
     transform: translateX(100%);
}
    .s4-train-gt {
    position: absolute;
    top: .1rem;
    right: 100%;
    left: auto;
    transform: translateX(0) translateY(-50%);
    animation: train2 10s linear infinite;
}




    .banner .slick-dots {
        bottom: 0;
    }

    .banner .slick-dots li {
        transform: scale(.7);
        margin: 0;
    }

    /* .banner .slick-dots li button {
        width: 0.26rem;
        height: 0.3rem;
    }

    .banner .slick-dots li::before {
        width: 0.26rem;
        height: 0.12rem;
    }

    .banner .slick-dots li::after {
        width: 1.06rem;
        height: 0.42rem;
        margin-left: -.4rem;
    }
 */
    .banner .slick-slide a img {
        height: auto !important;
    }

    .banner .banner-prev span,
    .banner .banner-next span {
        width: 0.63rem;
        height: 0.76rem;
        background-size: 0.63rem auto;
    }

    .index {
        position: static;
        padding-top: 0;
        overflow: hidden;
    }

    .b-btm {
        padding: 0 .15rem;
        bottom: -.5rem;
    }

    .b-btmm {
        width: 1rem;
        height: 1rem;
        margin: 0 .3rem;
    }

    .b-btmm .b-train>img {
        width: .26rem;
    }

    .b-btmm .b-train .down-page {
        bottom: 0.1rem;
        margin-left: -.11rem;
        display: none;
    }

    .b-btmm .b-train .down-page>img {
        width: .23rem;
    }

    .b-btmm .b-train .b-train-g {
        top: 0.4rem;
        width: 2.24rem;
        height: 1.22rem;
        margin-left: -1.12rem;
    }

    .b-btmm .b-program>div::before {
        background-size: 1rem auto;
    }

    .b-btmm .b-program span {
        top: .2rem;
        width: 0.8rem;
        height: 0.57rem;
    }

    .s1 .vivus-svg,
    .s2 .tit .vivus-svg,
    .s4 .tit .vivus-svg,
    .s3 .tit .vivus-svg {
        display: none;
    }

    .s1 .tit-name a p {
        padding-left: 0;
    }

    .tit-name a div {
        font-size: .3rem;
        line-height: .3rem;
        margin-top: -.1rem;
    }

    .tit-name a p {
        font-size: .4rem;
        line-height: .3rem;
        text-align: left;
        transform: none !important;
    }

    .s1-c {
        display: block;
    }

    .s1-c::before {
        display: none;
    }

    .s1-c::after {
        display: none;
    }

    .s1-l {
        width: auto;
        margin-top: .35rem;
    }

    .s1-l ul li a {
        padding: .2rem 0;
    }

    .s1-l ul li a .bgline::before {
        display: none;
    }

    .s1-l ul li a .bgline::after {
        display: none;
    }

    .s1-l ul li a .bgline {
        height: 1px;
        top: auto;
        background: rgba(255, 255, 255, 0.2);
    }

    .s1-r {
        padding-right: 0;
        width: auto;
        margin-right: 0;
    }

    .s2-c ul {
        margin: 0 -.1rem;
    }

    .s2-c ul li a {
        margin: 0 .1rem;
        padding: .15rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .s2-c ul li a .date .svg-box .hover-svg,
    .s2-c ul li a .date .svg-box .vivus-svg {
        display: none;
    }

    .s2-c ul li a .date span {
        width: auto;
        line-height: .3rem;
        text-align: left;
    }

    .s2-c ul li a h3 {
        padding: 0;
        margin-top: .15rem;
    }

    .s2-train img {
        width: 2.5rem;
    }

    .s4-c ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .s4-c ul li {
        width: 50%;
    }

    .s4-c ul li:nth-child(-n+3) {
        width: 33.33%;
        margin-bottom: .3rem;
    }

    .s4-c ul li a {
        padding: 0 .1rem;
        width: 100%;
    }

    .s4-c ul li a div strong {
        font-size: .24rem;
        line-height: .4rem;
    }

    .s4-c ul li a div {
        justify-content: center;
    }

    .s4-c ul li a p {
        text-align: center;
        font-size: .16rem;
        line-height: .3rem;
        margin-top: 0;
    }

    .s5-c {
        display: block;
    }

    .s5-l {
        width: auto;
        margin-right: 0;
    }

    .s5-l .tit .tit-name a {
        display: block;
        text-align: center;
    }

    .s5-l .tit .tit-name a p {
        padding-top: 0;
        writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        right: auto;
        left: 0;
        position: relative;
        margin-right: 0;
        white-space: nowrap;
        text-align: center;
    }

    .s5-l .tit .tit-name a div {
        margin-top: 0;
        display: flex;
        justify-content: center;
        writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
        letter-spacing: 0;
        justify-content: center;
    }

    .s5 .tit .vivus-svg {
        display: none;
    }

    .group-media {
        position: static;
    }

    .group-media ul {
        display: flex;
        justify-content: baseline;
    }

    .group-media ul {
        margin-top: .2rem;
        flex-direction: row;
        justify-content: center;
    }

    .group-media ul li {
        margin: 0 .05rem;
    }

    .group-media ul li a .icons,
    .group-media ul li a {
        width: 0.48rem;
        height: 0.48rem;
    }

    .group-media ul li a img {
        opacity: 1;
    }

    .group-media ul li a .group-ewm {
        top: 130%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        margin-right: 0;
        margin-top: .1rem;
    }

    .group-media ul li a .group-ewm::after {
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: 100%;
        border-width: 0 0.08rem 0.08rem 0.08rem;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
    }

    .group-media ul li:hover a .group-ewm {
        right: auto;
        top: 100%;
    }

    .s5-l .tit {
        min-height: auto;
    }



    .s5-rb ul li.video a::before {
        background-size: .4rem auto;
    }

    .s5-rb ul li a h3 {
        padding: .2rem .15rem;
        padding: .1rem;
    }

    .trip-pd>div {
        background-size: 100% auto;
        height: auto;
        padding-top: 8.59375%;
    }

    .trips>div:nth-child(1) {
        left: 2.5%;
    }

    .trips>div:nth-child(2) {
        left: 24.9%;
        bottom: 16.9%;
    }

    .trips>div:nth-child(3) {
        right: 2.968%;
        bottom: 18.78%;
    }

    .trips>div:nth-child(4) {
        right: 36.9%;
        top: 6.66%;
    }

    .trips>div:nth-child(1) img {
        width: 10.8vw;
        height: auto;
        left: 2.5%;
    }

    .trips>div:nth-child(2) img {
        width: 11.79vw;
        height: auto;
        left: 24.9%m;
        bottom: 16.9%m;
    }

    .trips>div:nth-child(3) img {
        width: 12.34vw;
        height: auto;
        right: 2.968%;
        bottom: 18.78%;
    }

    .trips>div:nth-child(4) img {
        width: 16vw;
        height: auto;
        right: 36.9%m;
        top: 6.66%;
    }

    .tit {
        display: flex;
        justify-content: flex-start;
    }

    .tit-name {
        display: flex;
        justify-content: flex-start;
    }

    .tit-name a div {
        justify-content: center;
        justify-content: flex-start;
    }

    .s2 {
        margin-top: .5rem;
        padding-bottom: 1rem;
    }

    .s1 {
        padding-top: .35rem;
    }

    .banner .slick-slide a::after {
        height: 50%;
    }

    .s1-c,
    .s3-c {
        margin-top: .4rem;
    }

    .s1-c {
        padding-bottom: .5rem;
        padding: 0;
    }

    .s2-c {
        padding-top: .4rem;
    }

    .s1-l ul li a .info h3,
    .s1-r .slick ul li a .info h3,
    .s2-c ul li a h3,
    .s5-rb ul li a h3 {
        font-size: .18rem;
    }

    .s1-l ul li a .info span,
    .s1-r .slick ul li a span {
        font-size: .2rem;
    }

    .s1-r,
    .s4-text,
    .s4-c,
    .trip {
        margin-top: .35rem;
    }

    .s1-r .slick ul li a .info {
        margin-top: .1rem;
        padding-right: 0;
    }

    .s3 {
        padding-top: .5rem;
        padding-bottom: .5rem;
        min-height: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

    .s3-c {
        display: block;
    }

    .s3-l {
        position: relative;
        z-index: 2;
    }

    .s3-m {
        width: 100%;
        max-width: 5rem;
        margin: 0 auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .s3-l ul {
        /* display: flex; */
        /* flex-wrap: wrap; */
        /* align-items: flex-start; */
    }

    .s3-l ul li {
        margin-right: 0 !important;
        /* width: 50%; */
        margin-top: 0rem !important;
    }

    .s3-l ul li div {
        left: 0 !important;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        margin-left: 0 !important;
    }

    .s3-l ul li::before {
        background: none !important;
    }

    .s3-l ul li::after {
        background: none !important;
    }

    .s3-l ul li a {
        padding: 0 .2rem !important;
        text-align: left;
    }

    .s3-r {}

    .s3-r ul li {
        margin-left: 0 !important;
        /* width: 50%; */
        margin-top: 0rem !important;
    }

    .s3-r ul li div {
        left: 0 !important;
        right: auto;
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        margin-left: 0 !important;
    }

    .s3-r ul li::before {
        background: none !important;
    }

    .s3-r ul li::after {
        background: none !important;
    }

    .s3-r ul li a {
        padding: 0 .2rem !important;
        text-align: left;
    }

    .s4 {
        padding-top: .5rem;
    }

    .s4::before {
        top: -.3rem;
    }

    .s5 {
        padding-top: .75rem;
    }

    .s5-l .tit {
        display: block;
    }

    .s5-l .tit .tit-name {
        justify-content: center;
    }

    .s5-r .s5-info {
        padding: .1rem;
    }

    .s5-r .s5-info h3 {
        font-size: .2rem;
        line-height: .3rem;
    }

    .s5-r .s5-info p {
        letter-spacing: 0;
    }

    .s5-rl a .s5-info h3 {
        font-size: .26rem;
        line-height: .3rem;
    }

    .s5-rl a .s5-info p {
        font-size: .16rem;
    }

    .imageBody {
        height: 1rem;
        width: auto;
    }

    .c-imageTaxi.-left {
        padding-left: 14rem;
    }

    .s1-l ul li a .date {
        width: 1rem;
    }

    .s1-l ul li a .date b {
        font-size: .3rem;
    }

    .s1-l ul li a .date span {}
    .s1 .tit .tit-more { right: 0;}
    .s2 .tit .tit-more {
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .s1-l ul li a {
        padding: .2rem 0;
    }

    .s1-l ul li a .pics {
        width: auto;
        margin-right: 0;
        margin-bottom: .2rem;
    }

    .s5-rb ul {
        display: block;
    }

    .s5-rb ul li {
        width: auto;
    }

    .s5-rb ul li+li {}

    .s5-r {
        display: block;
    }

    .s5-rl {
        width: auto;
    }

    .s5-rr {}
}

@media screen and (max-width:1240px) {
  #adu0 {display:none;}
}

#adu0 {z-index:9999 !important;}