﻿@charset "utf-8";

:root {
    --main-color: #005CAC;
    --light-color: #002341;
    --dark-color: #333;
    --white-color: #FFFFFF;
    --transition-custom2: all 0.8s ease-in-out;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* footer */
.back_top {
    position: fixed;
    bottom: 2%;
    right: 10px;
    display: none;
    z-index: 9;
}

.back_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: var(--main-color);
    border-radius: 50%;
}

footer {
    position: relative;
    background: var(--light-color);
    z-index: 9;
}

.foot_top {
    padding-top: 44px;
    padding-bottom: 36px;
}

.foot_top .l {
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.foot_top .r {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.foot_share {
    padding-left: 12px;
}

.foot_share ul {
    display: flex;
    margin-left: -6px;
    margin-right: -6px;
}

.foot_share ul li {
    padding: 0 6px;
}

.foot_share .w_bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1;
}

.foot_share .w_bg::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background-color: var(--orange-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.foot_share .w_bg img {
    width: 24px;
    height: 24px;
}

.eject_cont {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 8px;
    width: 116px;
    background: #FFFFFF;
    border-radius: 8px;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100px;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

.foot_share .eject_cont:hover .w_bg {
    background-color: rgba(255, 255, 255, 1);
}

.foot_share .eject_cont:hover .w_bg::before {
    width: 100%;
    height: 100%;
}

.foot_mid {
    padding-top: 64px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.foot_mid .mid_left .t {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.foot_more {
    padding-top: 28px;

}

.foot_more a {
    display: inline-flex;
    padding: 12px 26px;
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.foot_more a img {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.mid_menu {
    width: 200px;
}

.mid_menu ul {
    display: flex;
    flex-wrap: wrap;
}

.mid_menu ul li {
    width: 50%;
    padding-bottom: 20px;
}

.mid_menu a {
    position: relative;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.mid_menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--main-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.mid_menu a:hover {
    color: rgba(255, 255, 255, 0.80);
}

.mid_menu a:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.mid_right {
    width: 480px;
}

.mid_right .foot_phone .list {
    width: 50%;
}

.mid_right .foot_phone .t {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 290;
}

.mid_right .foot_phone .a {
    margin-top: 10px;
    color: #FFF;
    font-family: 'Archivo';
    font-size: 30px;
    font-weight: 700;
}

.mid_right .foot_phone .a a {
    font-size: inherit;
    color: inherit;
}

.mid_right .foot_adress {
    padding-top: 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 290;
}

.foot_bottom {
    padding: 25px 0 23px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.foot_bottom .left {
    flex-wrap: wrap;
    flex: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 290;
    line-height: 24px;
}

.foot_bottom .left a {
    font-size: 16px;
    font-weight: 290;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.foot_bottom .left a:hover {
    color: var(--white-color);
}

.foot_bottom .right a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 290;

    line-height: 26px;
}

@media (max-width:1200px) {
    .mid_right {
        width: auto;
    }

    .mid_right .foot_phone {
        flex-wrap: wrap;
    }

    .mid_right .foot_phone .list {
        width: 100%;
        padding-bottom: 20px;
    }

    .mid_right .foot_adress {
        padding-top: 10px;
    }

    .foot_bottom>div:first-child {
        flex-wrap: wrap;
    }

    .foot_bottom .left {
        flex: inherit;
    }

}


@media (max-width:991px) {
    .foot_top {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .foot_mid {
        flex-wrap: wrap;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .mid_right {
        width: 100%;
        padding-top: 20px;
    }

}

@media (max-width:767px) {
    .foot_top {
        flex-wrap: wrap;
        display: none !important;
    }

    .foot_top .l {
        width: 100%;
        padding-bottom: 30px;
    }

    .mid_menu {
        padding-top: 20px;
        width: 100%;
        display: none;
    }

    .mid_menu ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .mid_menu ul li {
        width: auto;
        padding: 10px;
    }

    .foot_mid {
        text-align: center;
        justify-content: center;
        padding-bottom: 30px;
    }

    .mid_right {
        padding-top: 30px;
    }

    .foot_more {
        padding-top: 20px;
    }

    .foot_more a {
        padding: 12px 20px;
    }

    .mid_right .foot_phone .a {
        font-size: 26px;
    }

    .foot_bottom {
        padding: 16px 0;
    }

    .foot_bottom .left,
    .foot_bottom .left a,
    .foot_bottom .right,
    .foot_bottom .right a {
        font-size: 14px;
    }

}

/* button */
.ban_btn {
    display: flex;
}

.ban_btn a {
    position: relative;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    border-radius: 30px;
    border: 1px solid var(--main-color);
    overflow: hidden;
    z-index: 1;
}

.blue_button a {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.ban_btn em {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.ban_btn span {
    margin-left: 13px;
    width: 30px;
    height: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
}

.ban_btn span i {
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/white_right.svg);
    transform: rotate(-45deg);
    transition: all 0.4s;
}

.blue_button span {
    background-color: var(--white-color);
}

.blue_button span i {
    background-image: url(../images/blue_right.svg);
}

.white_button em {
    color: var(--main-color);
}

.w_border_button a {
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
}

.white_button a::before,
.w_border_button a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 120%;
    transform: translate(-50%, -50%);
    background-color: var(--main-color);
    border-radius: 30px;
    transition: width .4s;
    z-index: -1;
}

.w_border_button a:hover {
    border-color: var(--main-color);
}

.white_button a:hover::before,
.w_border_button a:hover::before {
    width: 120%;
}

.white_button a:hover span,
.w_border_button a:hover span {
    background-color: var(--white-color);
}

.white_button a:hover span i,
.w_border_button a:hover span i {
    background-image: url(../images/blue_right.svg);
}

.white_button a:hover em {
    color: var(--white-color);
}

.ban_btn a:hover span i {
    transform: rotate(0deg);
}

/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 9;
}

.banner>div {
    width: 100%;
    height: 100%;
}

.banner .index_banner {
    width: 100%;
    height: 100%;
}

.banner .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #000;
    z-index: 2;

}

.index_banner .img_pc {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img_m {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.index_banner video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.ban_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 9;
}

.ban_text .word-wrap {
    overflow: hidden;
}

.ban_text .t {
    line-height: 1.2;
    color: var(--white-color);
    opacity: 0;
    overflow: hidden;
}

.ban_text .zh {
    margin-top: 16px;
    font-weight: 700;
}

.ban_text .zh_x {
    margin-top: 10px;
    font-weight: 400;
}

.ban_text .eng {
    margin-top: 10px;
}

.ban_text .t:first-child {
    margin-top: 16px;
}

.ban_text .word-wrap:nth-child(2) .t {
    animation-delay: 0.6s;
}

.ban_text .word-wrap:nth-child(3) .t {
    animation-delay: 0.7s;
}

.ban_text .t em {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    line-height: normal;
    font-style: normal;
}

.ban_text .ban_btn {
    margin-top: 30px;
}

.ban_txt1 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.ban_txt1,
.ban_txt2,
.ban_txt3,
.banner .ban_btn {
    opacity: 0;
}

.banner .swiper-slide-active .ban_txt1,
.banner .swiper-slide-active .ban_txt2,
.banner .swiper-slide-active .ban_txt3,
.banner .swiper-slide-active .ban_btn {
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.banner .swiper-slide-active .t {
    animation: an_7 1s 1 both;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0.5s;
}

.swiper-slide-active .ban_txt1 {
    animation-delay: 0.3s;
}

.swiper-slide-active .ban_txt2 {
    animation-delay: 0.5s;
}

.swiper-slide-active .ban_txt3 {
    animation-delay: 0.8s;
}

.banner .swiper-slide-active .ban_btn {
    animation-delay: 0.8s;
}

.banner .swiper-slide-active .main-tit.splitting .char {
    animation: text-active-animation 1.5s cubic-bezier(0.4, 0, 0.2, 1) both;
    transition-delay: calc(20ms + (30ms * var(--char-index)))
}


@keyframes text-active-animation {
    from {
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }

    to {
        opacity: 1.0;
        filter: Alpha(opacity=100);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes an_7 {
    from {
        opacity: 0;
        transform: perspective(1000px) translate3d(0px, 300px, 0px) rotate3d(-100, 0, 0, 45deg);
    }

    to {
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}

.banner .ban_button {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -100px;
    transition: bottom ease-out 1s 0.4s;
    z-index: 9;
}

.ban_button .my-container {
    justify-content: space-between;
}

.ban_button.active {
    bottom: 94px;
}

.ban_button .left {
    display: flex;
    align-items: center;
}

.ban_button .left>div {
    display: flex;
    position: relative;
    width: 72px;
    height: 72px;
    padding: 21px;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    cursor: pointer;
    z-index: 1;
}

.ban_button .left>div.swiper-button-disabled {
    cursor: default;
}

.ban_button .left>div:nth-child(2) {
    margin-left: 30px;
}

.ban_button .left i:before {
    content: '';
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ban-prev i::before {
    background-image: url(../images/arrow_left.svg);
}

.ban-next i::before {
    background-image: url(../images/arrow_right.svg);
}

.ban_button .left i {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.ban_button .left i svg {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 80px;
    height: 80px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2px;
    stroke-dasharray: 101;
    stroke-dashoffset: 101;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all .6s ease;
}

.ban_button .left>div:hover i svg {
    stroke-dashoffset: 0;
}

.ban_down {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.ban_down .my-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ban_down .scrillm {
    width: 20px;
    height: 29px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    margin-left: 16px;
}

.ban_down .scrillm span {
    width: 2px;
    height: 5px;
    background: #fff;
    margin-top: 8px;
}

.ban_down .scrillm span {
    animation: jumpDown 1.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite
}

@media (max-width:1366px) {
    .ban_button.active {
        bottom: 60px;
    }

}

@media (max-width:767px) {
    .ban_text .t {
        font-size: 28px;
    }

    .ban_txt1 {
        max-width: 300px;
    }

    .ban_button.active {
        bottom: 30px;
    }

    .ban_button .left>div {
        width: 50px;
        height: 50px;
        padding: 15px;

    }

    .ban_button .left>div:nth-child(2) {
        margin-left: 10px;
    }

    .ban_button .left i svg {
        width: 56px;
        height: 56px;
    }

    .ban_text .word-wrap .eng {
        font-size: 16px;
    }

    .ban_button .left i:before {
        width: 20px;
        height: 20px;
    }


}

/* index about */
.index_about {
    position: relative;
    padding-top: 70px;
    padding-bottom: 430px;
    overflow: hidden;
    z-index: 1;
}

.index_about .about_top .index_title {
    padding-right: 50px;
}

.index_about .about_top .about_top_r {
    width: 50%;
}

.index_about .about_top_r .text {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.index_about .about_top_r .ban_btn {
    padding-top: 70px;
}

.index_about .about_img {
    position: absolute;
    display: flex;
    align-items: center;
    text-align: center;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 575px;
    z-index: -1;
}

.index_about .about_thumb {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.index_about .about_thumb,
.index_about .about_thumb .about_bg {
    width: 100%;
    height: 100%;
}

.about_thumb .about_bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width:1440px) {
    .about_img .my-container>div {
        padding: 0 50px;
    }
}

@media (max-width:991px) {

    .index_about .about_top .about_top_r {
        width: 55%;
    }

    .index_about {
        padding-bottom: 300px;
    }

    .index_about .about_img {
        height: 55%;
    }
}

@media (max-width:767px) {
    .about_top {
        flex-wrap: wrap;
    }

    .index_about .about_top .index_title {
        padding-right: 0;
        width: 100%;
        padding-bottom: 30px;
    }

    .index_about .about_top .about_top_r {
        width: 100%;
    }

    .index_about .about_top_r .ban_btn {
        padding-top: 50px;
    }

    .index_about {
        padding-top: 50px;
        padding-bottom: 250px;
    }

    .index_about .about_img {
        height: 45%;
    }

    .about_img .my-container>div {
        padding: 0 30px;
    }


}


/* index product */
.index_product {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
    background-color: #F2F9FF;
}

.pro_loop {
    margin-top: 50px;
    position: relative;
    width: 100%;
    height: 526px;
}

.pro_loop .swiper-container {
    width: 100%;
    height: 100%;
}

.pro_loop .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
}

.pro_d_list .swiper-slide {
    width: 40%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.pro_d_list .swiper-slide.act {
    width: calc(60% - 20px);
}

.pro_loop .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.pro_loop .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(102, 102, 102, 0.00) 64.92%, #000 100%);

    z-index: -1;
}

.pro_loop .on .mask,
.pro_loop .act .mask {
    opacity: 0.6;
    background: linear-gradient(180deg, #014392 0%, rgba(0, 37, 82, 0.60) 50%, rgba(0, 0, 0, 0.00) 100%);
}

.pro_loop .pro_cont {
    padding: 50px;
    width: 100%;
    height: 100%;
}

.pro_cont .icon {
    width: 46px;
}

.pro_cont h2 {
    margin-top: 15px;
    color: #FFF;
    font-weight: 700;
    line-height: normal;
}

.pro_cont .label {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.pro_cont .label span {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 5px;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(2px);
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pro_cont .text {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    max-width: 690px;
}

.pro_two_loop .text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_d_list .pro_cont {
    justify-content: flex-end;
}

.pro_d_list .act .pro_cont {
    justify-content: space-between;
}

.pro_d_list .act .pro_button {
    display: block;
}

.pro_d_list .act .text {
    display: block;
    opacity: 1;
}

.pro_d_list .pro-pagination {
    display: none;
    bottom: 0;
    position: absolute;
    text-align: center;
}

.pro_d_list .pro-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

/* 两个产品 */
.pro_two_loop .pro_cont .left,
.pro_two_loop .pro_cont .right {
    min-width: 200px;
}

/* 多条线 */
.pro_three_swiper .pro_swp_01::before {
    content: "";
    position: absolute;
    left: calc(-100% - 20px);
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.5;
    background: #F2F9FF;
    z-index: 8;
}

.pro_three_swiper .pro_swp_01::after {
    content: "";
    position: absolute;
    right: calc(-100% - 20px);
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.5;
    background: #F2F9FF;
    z-index: 8;
}

.pro_swp_01 {
    height: 100%;
}

.pro_swp_01 .races-list {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    left: 0;
    top: 0;
    transition: .3s;
    overflow: visible;
}

.pro_three_swiper .pro_swp_01 .races-list li:not(:last-child) {
    margin-right: 20px;
}

.pro_three_swiper .pro_swp_01 .races-list li {
    position: relative;
    width: 588px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: width .6s;
    z-index: 1;
}

.pro_three_swiper .pro_swp_01 .races-list .on {
    width: calc(100% - 608px);
}

.pro_two_loop .pro_cont,
.pro_three_swiper .pro_cont {
    display: flex;
    position: relative;
}

.pro_two_loop .pro_cont::before,
.pro_three_swiper .pro_cont::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 13px;
    width: 1px;
    height: calc(100% - 26px);
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
    opacity: 0;
}

.pro_two_loop .pro_cont .left,
.pro_three_swiper .pro_cont .left {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
}

.pro_two_loop .pro_cont .right,
.pro_three_swiper .pro_cont .right {
    display: none;
    padding-left: 45px;
}

.pro_three_swiper .pro_button {
    display: none;
}

.pro_buttonw {
    position: absolute;
    display: none;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border-radius: 100px;
    background-color: var(--main-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px;
    cursor: pointer;
    z-index: 9;
}

.pro-prev {
    left: -55px;
    background-image: url(../images/pro_w_left.svg);
}

.pro-next {
    right: -55px;
    background-image: url(../images/pro_w_right.svg);
}

.pro_two_loop .act .pro_cont {
    flex-flow: inherit;
}

.pro_two_loop .act .pro_cont .left,
.pro_three_swiper .on .pro_cont .left {
    padding-right: 45px;
}

.pro_two_loop .act .pro_cont .left,
.pro_two_loop .act .pro_cont .right,
.pro_three_swiper .on .pro_cont .left,
.pro_three_swiper .on .pro_cont .right {
    width: 50%;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    justify-content: space-between;
}

.pro_three_swiper .on .pro_button {
    display: block;
}

.pro_two_loop .act .pro_cont::before,
.pro_two_loop .swiper-slide-active .pro_cont::before,
.pro_three_swiper .on .pro_cont::before {
    opacity: 0.5;
}

.pro_three_swiper .on .pro_cont .text {
    display: block;
    opacity: 1;
}

@media (min-width:768px) {
    .pro_two_swiper .pro_cont {
        display: flex;
        flex-flow: column;
    }

    .pro_cont .text {
        display: none;
        opacity: 0;
        transition: all 0.5s;
    }

    .pro_d_list .pro_button {
        display: none;
    }

}

@media (max-width:1580px) {

    .pro_three_swiper .pro_swp_01 .races-list li {
        width: 400px;
    }

    .pro_three_swiper .pro_swp_01 .races-list .on {
        width: calc(100% - 420px);
    }

}

@media (max-width:1440px) {
    .pro_buttonw {
        width: 80px;
        height: 80px;
        border-radius: 100px;
        background-size: 50px;
    }

    .pro-prev {
        left: -40px;
    }

    .pro-next {
        right: -40px;
    }
}

@media (max-width:1279px) {
    .pro_d_list .swiper-slide {
        width: 45%;
    }

    .pro_d_list .swiper-slide.act {
        width: calc(55% - 20px);
    }

    .pro_loop .pro_cont {
        padding: 50px 30px;
    }

    .pro_three_swiper .pro_swp_01 .races-list li {
        width: 360px;
    }

    .pro_three_swiper .pro_swp_01 .races-list .on {
        width: calc(100% - 380px);
    }

    .pro_three_swiper .on .pro_cont .left {
        padding-right: 30px;
    }

    .pro_three_swiper .pro_cont .right {
        padding-left: 30px;
    }
}

@media (max-width:991px) {
    .pro_three_swiper .pro_swp_01 .races-list li {
        width: 100%;
    }

    .pro_three_swiper .pro_swp_01 .races-list .on {
        width: 100%;
    }

    .pro_three_swiper {
        height: auto;
        padding-bottom: 50px;
    }

    .pro_three_swiper .on .pro_cont .left {
        padding-right: 20px;
    }

    .pro_three_swiper .pro_cont .right {
        padding-left: 20px;
    }

    .pro_swp_01 {
        height: 526px;
    }

    .pro_buttonw {
        top: inherit;
        transform: inherit;
        bottom: 0;
        display: block !important;
        width: 40px;
        height: 40px;
        background-size: 20px;
    }

    .pro-prev {
        left: inherit;
        right: 50px;
    }

    .pro-next {
        right: 0;
    }

    /* 两个产品 */
    .pro_two_loop {
        height: 576px;
    }

    .pro_two_loop .pro_cont::before {
        width: calc(100% - 26px);
        height: 1px;
        left: 13px;
        top: 50%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
    }

    .pro_two_loop .act .pro_cont,
    .pro_two_loop .swiper-slide-active .pro_cont {
        padding: 30px;
        flex-wrap: wrap;
    }

    .pro_two_loop .act .pro_cont .left,
    .pro_two_loop .act .pro_cont .right,
    .pro_two_loop .swiper-slide-active .pro_cont .left,
    .pro_two_loop .swiper-slide-active .pro_cont .right {
        display: block;
        width: 100%;
        padding: 0;
        padding-bottom: 30px;
        height: auto;
    }

    .pro_two_loop .act .label {
        display: none !important;
    }

    .pro_two_loop .act .left .pro_button,
    .pro_two_loop .act .right .pro_button,
    .pro_two_loop .swiper-slide-active .left .pro_button,
    .pro_two_loop .swiper-slide-active .right .pro_button {
        position: relative;
        margin-top: 25px;
        padding-bottom: 15px;
        bottom: inherit;
        left: inherit;
    }

    .pro_buttonw2 {
        display: none !important;
    }

}

@media (max-width:767px) {
    .index_product {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pro_loop {
        margin-top: 35px;

    }

    .pro_d_list {
        height: auto;
        padding-bottom: 15px;
    }

    .pro_two_swiper .swiper-container {
        height: 460px;
    }

    .pro_two_loop .act .pro_cont,
    .pro_two_loop .swiper-slide-active .pro_cont {
        padding: 40px 20px;
    }

    .pro_two_loop .swiper-slide-active .pro_cont .right,
    .pro_two_loop .act .pro_cont .right {
        padding-bottom: 0;
    }

    .pro_buttonw2 {
        display: block !important;
    }

    .pro_loop .swiper-container {
        padding-bottom: 40px;
    }

    .pro_loop .pro_cont {
        padding: 40px 20px;
    }

    .pro_cont .icon {
        width: 36px;
    }

    .pro_cont .label {
        display: none;
    }

    .pro_loop .pro_button {
        position: absolute;
        bottom: 30px;
        left: 20px;
    }

    .pro_d_list .pro-pagination {
        display: block;
    }

    .pro_swp_01 {
        height: auto;
    }

    .pro_three_swiper .pro_cont::before {
        width: calc(100% - 26px);
        height: 1px;
        left: 13px;
        top: 50%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 50%, rgba(255, 255, 255, 0.00) 100%);
    }

    .pro_three_swiper .pro_cont {
        flex-wrap: wrap;
        padding-bottom: 75px;
    }

    .pro_three_swiper .on .pro_cont .left,
    .pro_three_swiper .on .pro_cont .right {
        display: block;
        width: 100%;
        padding: 0;
        padding-bottom: 30px;
        height: auto;
    }

    .pro_three_swiper .on .left .pro_button {
        position: relative;
        margin-top: 25px;
        padding-bottom: 15px;
        bottom: inherit;
        left: inherit;
    }

    .pro_three_swiper .on .pro_cont .text {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width:540px) {
    .pro_d_list .swiper-slide {
        width: 100%;
    }

    .pro_d_list .swiper-slide.act {
        width: 100%;
    }

}


/* index new */
.index_new {
    padding: 70px 0;
    overflow: hidden;
}

.index_title {
    line-height: 1.5;
}

.index_title .title .blue {
    font-weight: 700;
    color: var(--main-color);
}

.index_title .title .black {
    font-weight: 400;
    color: var(--dark-color);
}

.index_new .in_new_list {
    padding-top: 35px;
}

.index_new .in_new_list ul {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    align-items: stretch;
}

.in_new_list ul li {
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}

.in_new_list a {
    padding: 30px;
    display: block;
    border-radius: 10px;
    border: 1px solid #EAF1F6;
    transition: background-color .3s;
}

.in_new_list .time {
    color: #CCC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.in_new_list .title {
    margin-top: 10px;
    color: #333;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    height: 60px;
}

.in_new_list .thumb {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.in_new_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform 1.3s;
    transition: -webkit-transform 1.3s;
    -o-transition: transform 1.3s;
    transition: transform 1.3s;
    transition: transform 1.3s, -webkit-transform 1.3s;
    -webkit-transition: transform 1.3s;
}

.in_new_list a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.in_new_list a:hover .title {
    color: var(--white-color);
}

.in_new_list a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.in_new_list .new-pagination {
    text-align: center;
    padding-top: 10px;
    display: none;
}

.in_new_list .new-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.in_new_list .new-pagination span {
    margin: 0 4px;
}

@media (max-width:991px) {
    .in_new_list a {
        padding: 25px 20px;
    }
}

@media (max-width:767px) {
    .index_new {
        padding: 50px 0;
    }

    .in_new_list .new-pagination {
        display: block;
    }

    .index_product .mo_show .ban_btn,
    .index_new .mo_show .ban_btn {
        padding-top: 25px;
        justify-content: center;
    }
}



/* index last */
.index_last {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    z-index: 1;
    overflow: hidden;
}

.index_last .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.index_last .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: var(--main-color);
    z-index: -1;
}

.index_last .list ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.index_last .list ul li {
    width: 50%;
    padding: 0 20px;
}

.index_last .list .border {
    position: relative;
    padding: 46px 50px;
    height: 100%;
    transition: transform .4s;
    z-index: 1;
}

.index_last .list .border::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(7.5px);
    z-index: -1;
}

.index_last .list .border .s_t {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
}

.index_last .list .border .big_t {
    margin-top: 10px;
    color: #FFF;
    font-weight: 700;
    line-height: 1.5;
}

.index_last .list .border .text {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    min-height: 52px;
}

.index_last .list .border .ban_btn {
    padding-top: 22px;
}

.index_last .list .border:hover {
    transform: translateY(-10px);
}

@media (max-width:991px) {
    .index_last .list .border {
        padding: 40px 35px;
    }

}

@media (max-width:767px) {
    .index_last {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .index_last .list ul li {
        width: 100%;
        padding: 20px;
    }

    .index_last .list .border {
        padding: 30px 20px;
    }

}

/* 内页公共 */
.height100 {
    width: 100%;
    height: 100px;
}

.location {

    padding-top: 32px;
    display: flex;
    align-items: center;
}

.location a {
    margin-right: 10px;
    line-height: 20px;
}

.location a:first-child {
    width: 20px;
    height: 20px;
    background-image: url(../images/home_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    font-size: 0;
}

.location a:nth-child(n + 2) {
    padding-right: 18px;
    color: #CCC;
    font-size: 14px;
    font-weight: 290;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 8px 8px;
}

.location a:nth-child(n + 2):hover {
    color: var(--white-color);
}

.location a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}


@media (max-width:767px) {
    .location a {
        margin-right: 6px;
    }

    .location a:nth-child(n + 2) {
        padding-right: 12px;
    }

    .location a:nth-child(n+2) {
        /* font-size: 12px; */
    }

}

.page_banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.page_banner .page_ban {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page_banner .page_ban img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
}

.page_mask .my-container {
    height: 100%;
}

.page_mask .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-align: center;
    width: max-content;
}

.page_mask .text .title {
    color: var(--white-color);
    font-weight: 700;
    line-height: normal;
}

.page_mask .text .des {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.30);
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.page_menu {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 92, 172, 0.80);
}

.page_menu_left>ul {
    margin-left: -26px;
    margin-right: -26px;
    display: flex;
    justify-content: center;
}

.page_menu_left>ul>li {
    padding: 0 26px;
    position: relative;
}

.page_menu_left>ul>li>a {
    position: relative;
    padding: 18px 0;
    display: block;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.page_menu_left>ul>li>a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: width .4s;
}

.page_menu_left>ul>li>a:hover,
.page_menu_left>ul>li.active>a {
    color: var(--white-color);
}

.page_menu_left>ul>li>a:hover:before,
.page_menu_left>ul>li.active>a::before {
    width: 100%;
}

.page_content {
    min-height: 30vh;
}

@media (max-width:1279px) {
    .page_banner {
        height: 450px;
    }
}

@media (max-width:991px) {
    .height100 {
        height: 80px;
    }

    .page_banner {
        height: 400px;
    }

    .page_menu_left>ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .page_menu_left>ul>li {
        padding: 0 15px;
    }


}

@media (max-width:767px) {
    .location {
        padding-top: 20px;
    }

    .page_banner {
        height: 300px;
    }

    .height100 {
        height: 70px;
    }

    .page_menu_left {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page_menu_left>ul {
        flex-wrap: wrap;
    }

    .page_menu_left>ul>li>a {
        padding: 10px 0;
        font-size: 16px;
    }

}

/* about */
.full_item {
    width: auto;
    height: 100%;
    overflow: hidden;
}

.full_slider {
    width: 100%;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
}

.full_slider>.swiper-wrapper {
    display: block;
}

.full_item .inner {
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}

.sec_footer {
    height: auto;
    overflow: visible;
}


#section1 {
    overflow: hidden;
}

#section2 {
    background-color: #F5F6FA;
    overflow: hidden;
}

#section3 {
    position: relative;
    overflow: hidden;
}

.about_box {
    width: 100%;
    height: 100%;
}

.about_box .my-container {
    height: 100%;
}

.about_box_bg {
    position: relative;
    padding-top: 100px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-slide-active .about_box_bg {
    padding-top: 15%;
}

.about_box_bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/about_big_cicle.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -1;
}

.about_box_right {
    justify-content: flex-end;

}

.about_box_right>div:first-child {
    max-width: 784px;
    width: 55%;
}

.about_box_right .text {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
}

.about_box_number {
    padding-top: 90px;

}

.swiper-slide-active .about_box_number {
    animation: 1s aniStyle3 0.3s;
    animation-fill-mode: forwards;
}

.about_box_number ul {
    display: flex;
    justify-content: space-between;
}

.about_box_number ul li {
    text-align: center;
}

.about_box_number .icon {
    max-width: 90px;
    margin: 0 auto;
}

.about_box_number .title {
    margin-top: 20px;
    color: #333;
    font-weight: 290;
    line-height: 1.6;
}

.about_box_number ul li:hover .icon img {
    animation: spin .8s ease-in-out;
}

@keyframes spin {
    to {
        transform: rotateY(360deg);
    }
}

@keyframes aniStyle3 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        -ms-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.culture_box .my-container {
    height: 100%;
    padding-bottom: 50px;
    padding-top: 10%;
    display: flex;
    align-items: center;
}

.culture_box .my-container>div:first-child {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.culture_box .index_title {
    width: 100%;
}

.culture_box .index_title .des {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.culture_box_list {
    margin-top: 50px;
    flex: 1;
    width: 100%;
    max-height: 540px;
}

.culture_box_list .box {
    position: relative;
    width: calc(17% - 10px);
    height: 100%;
    margin-right: 10px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: all .5s;
}

.culture_box_list .box.act {
    width: 32%;
}

.culture_box_list .bg {
    position: relative;
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    overflow: hidden;
}

.culture_box_list .bg:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: linear-gradient(198deg, rgba(0, 110, 206, 0.00) 42.36%, #006ECE 97.39%);
    z-index: 1;
    height: 100%;
    width: 100%;
}

.culture_box_list .act .bg:after {
    background-image: url(../images/culture_mask.svg);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
}

.culture_box_list .bg .l_ {
    width: 100%;
    position: absolute;
    padding: 30px;
    height: 100%;
    display: inline-flex;
    justify-content: space-between;
    flex-flow: column;
    z-index: 2;
}

.culture_box_list .bg .l_ .title {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.culture_box_list .bg .r_ {
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all .3s;
    z-index: 2;
}

.culture_box_list .bg .r_ .c {
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    opacity: 0;
}

.culture_box_list .bg .r_ .t {
    position: relative;

}

.culture_box_list .icon {
    width: 60px;
}

.culture_box_list .bg .r_ .t .title {
    padding-left: 20px;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
}

.culture_box_list .bg .r_ .list_ {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.culture_box_list .act .bg .l_ {
    opacity: 0;
}

.culture_box_list .act .bg .r_ {
    opacity: 1;
    transform: translateY(0);
}

.culture_box_list .act .bg .r_ .c {
    opacity: 1;
}

.cul-pagination {
    padding-top: 20px;
    text-align: center;
    display: none;
}

.cul-pagination span {
    margin: 0 4px;
}

.develop_box .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.develop_box .bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #005DAE;
}

.develop_box .my-container {
    height: 100%;
    padding-top: 15%;
}

.develop_box .index_title .title {
    color: var(--white-color);
    font-weight: 700;
}

.develop_box .index_title .des {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.develop_list {
    margin-top: 140px;
    overflow: hidden;
}

.deve_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    opacity: 0.5;
    cursor: pointer;
}

.deve-prev {
    left: 0;
    background-image: url(../images/deve_left.svg);
}

.deve-next {
    right: 0;
    background-image: url(../images/deve_r.svg);
}

.deve_button:hover {
    border-color: var(--main-color);
    background-color: var(--main-color);
    opacity: 1;
}

.year_Swiper {
    position: relative;
    padding-left: 70px;
    padding-right: 70px;
}

.develop_list .year {
    color: #FFF;
    text-align: center;
    font-family: 'Archivo';
    font-size: 100px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.5;
}

.year_Swiper .swiper-wrapper {
    align-items: center;
}

.deve_Swiper .swiper-slide {
    padding-left: 50px;
    padding-right: 50px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.deve_Swiper {
    margin-top: 45px;
}

.develop_list .swiper-slide-thumb-active .year {
    opacity: 1;
    font-size: 10rem;
}


@media (max-height:800px) {
    .swiper-slide-active .about_box_bg {
        padding-top: 13%;
    }

    .about_box_number {
        padding-top: 50px;
    }

    .develop_list {
        margin-top: 100px;
    }

}

@media (max-height:750px) {
    .about_box_number .icon {
        max-width: 65px;
    }

    .about_box_number {
        padding-top: 30px;
    }

    .about_box_number .title {
        line-height: 1.4;
    }

    .develop_list {
        margin-top: 70px;
    }

}

@media (max-width:1440px) {
    .develop_list .year {
        font-size: 80px;
    }

    .develop_list .swiper-slide-thumb-active .year {
        font-size: 8rem;
    }


}

@media (max-width:1366px) {
    .develop_list .year {
        font-size: 70px;
    }

    .develop_list .swiper-slide-thumb-active .year {
        font-size: 7rem;
    }


}

@media (max-width:1280px) {
    .about_box_number .icon {
        max-width: 65px;
    }

    .culture_box_list .icon {
        width: 50px;
    }

    .develop_list .year {
        font-size: 60px;
    }

    .develop_list .swiper-slide-thumb-active .year {
        font-size: 6rem;
    }


}

@media (max-width:1279px) {
    .about_box_number .icon {
        max-width: 60px;
    }

    .culture_box_list .bg .l_ {
        padding: 30px 20px;
    }


}

@media (max-width:1024px) {

    body,
    html {
        height: auto;
    }


    .full_slider>.swiper-wrapper {
        display: block;
    }

    .full_slider {
        height: auto;
    }

    .full_slider .home-slide:last-child {
        max-height: inherit;
    }


    .about_box_bg {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .culture_box .my-container {
        padding-bottom: 50px;
        padding-top: 80px;
    }

    .culture_box_list {
        flex: inherit;
        height: 540px;
    }

    .culture_box_list .box {
        height: 540px;
    }

    .develop_box .my-container {
        padding-top: 100px;
        padding-bottom: 100px;

    }

}

@media (max-width:991px) {
    .about_box_right {
        padding-top: 30px;
    }

    .about_box_right>div:first-child {

        max-width: inherit;
        width: 100%;
    }

    .culture_box_list .box {
        width: calc(40% - 10px);
    }

    .culture_box_list .box.act {
        width: calc(60% - 10px);
    }

    .cul-pagination {
        display: block;
    }

    .develop_list .year {
        font-size: 50px;
    }

    .develop_list .swiper-slide-thumb-active .year {
        font-size: 70px;
    }


}

@media (max-width:767px) {
    .about_box_bg {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .about_box_right .text {
        font-size: 18px;
        line-height: 1.8;
    }

    .about_box_number ul {
        flex-wrap: wrap;
    }

    .about_box_number ul li {
        width: 50%;
        padding-bottom: 20px;
    }

    .about_box_number ul li:last-child {
        padding-bottom: 0;
    }

    .about_box_number .title {
        margin-top: 10px;
        font-size: 16px;
        font-weight: 400;
    }

    .about_box_number .icon {
        max-width: 40px;
    }

    .develop_box .index_title .des,
    .culture_box .index_title .des {
        font-size: 14px;
    }

    .culture_box_list {
        height: inherit;
        max-height: inherit;
    }

    .culture_box_list .box {
        height: 440px;
    }

    .culture_box_list .box,
    .culture_box_list .box.act {
        width: 100%;
    }

    .culture_box_list .icon {
        width: 44px;
    }

    .culture_box_list .bg .r_ .c {
        padding: 30px 20px;
    }

    .year_Swiper {
        padding-left: 50px;
        padding-right: 50px;
    }

    .develop_box .my-container {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .develop_list .year {
        font-size: 22px;
    }

    .develop_list .swiper-slide .year {
        opacity: 0;
    }

    .develop_list .swiper-slide-thumb-active .year {
        font-size: 46px;
        opacity: 1;
    }

    .deve_Swiper .swiper-slide {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 18px;
    }

    .deve_button {
        width: 40px;
        height: 40px;
        background-size: 20px;
    }


}

/* paged */
.paged {
    padding-top: 50px;
    padding-bottom: 50px;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged ul li {
    margin: 0 5px;
}

.paged span,
.paged a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    background-color: transparent !important;
    color: #666;
}

.page-item:last-child .page-link {
    background-color: transparent !important;
    border: none !important;
}

.paged .active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    border-radius: 50%;
}

.paged .active span,
.paged .active a {
    color: var(--white-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    width: auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width:767px) {

    .paged span,
    .paged a {
        width: 40px;
        height: 40px;
        padding: 4px;
        font-size: 14px;
    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {
        height: 40px;
    }
}


/* product */
.pro_n_bg {
    background-color: #F5F6FA;
}

.pro_n_list {
    padding-top: 80px;
}

.pro_n_list ul li {
    padding-bottom: 20px;
}

.pro_n_list ul li:last-child {
    padding-bottom: 0;
}

.pro_n_list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 34px;
    border-radius: 20px;
    background: #FFF;
}

.pro_n_list .pro_n_l {
    flex: 1;
    position: relative;
}

.pro_n_list .pro_n_l::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #EEE;
}

.pro_n_list .pro_n_r {
    margin-left: 40px;
    text-align: center;
}

.pro_n_list .pro_n_r .icon {
    width: 16px;
    height: 16px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.pro_n_list .pro_n_r .icon img {
    width: 100%;
    position: absolute;
    top: 0;
    transition: left .4s;
}

.pro_n_list .pro_n_r .icon img:nth-child(1) {
    left: 0;
}

.pro_n_list .pro_n_r .icon img:nth-child(2) {
    left: -100%;
}

.pro_n_list .pro_n_l .thumb {
    width: 222px;
    border-radius: 10px;
    overflow: hidden;
}

.pro_n_l .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transition: transform .6s;
}

.pro_n_l .pro_n_l_r {
    flex: 1;
    margin-left: 50px;
    margin-right: 50px;
    display: flex;
    align-items: center;
}

.pro_n_list .pro_n_l .pro_t {
    position: relative;
    margin-right: 50px;
    padding-right: 15px;
    width: 32%;
    min-width: 200px;
}

.pro_n_list .pro_n_l .pro_t::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #EEE;
}

.pro_n_l .pro_t .t {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
}

.pro_n_l .pro_t .des {
    margin-top: 8px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pro_n_l .pro_text {
    flex: 1;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_n_list .pro_n_r .t {
    margin-top: 10px;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pro_n_list a:hover .pro_t .t {
    color: var(--main-color);
}

.pro_n_list a:hover .pro_n_r .t {
    color: var(--main-color);
}

.pro_n_list a:hover .pro_n_r .icon img:nth-child(2) {
    left: 0;
}

.pro_n_list a:hover .pro_n_r .icon img:nth-child(1) {
    left: 100%;
}

.pro_n_list a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

@media (max-width:1279px) {

    .pro_n_l .pro_n_l_r {
        margin-left: 30px;
        margin-right: 30px;
    }

    .pro_n_list .pro_n_l .pro_t {
        margin-right: 30px;
    }
}

@media (max-width:991px) {
    .pro_n_list a {
        padding: 30px 20px;
    }

    .pro_n_list .pro_n_l .thumb {
        width: 200px;
    }

    .pro_n_l .pro_n_l_r {
        margin-left: 20px;
        margin-right: 20px;
    }

    .pro_n_list .pro_n_l .pro_t {
        margin-right: 20px;
    }

    .pro_n_list .pro_n_l .pro_t {
        min-width: max-content;
    }

    .pro_n_list .pro_n_r {
        margin-left: 20px;
    }

}

@media (max-width:767px) {
    .pro_n_list {
        padding-top: 50px;
    }

    .pro_n_list a {
        flex-wrap: wrap;
    }

    .pro_n_list .pro_n_l {
        flex: inherit;
        width: 100%;
        flex-wrap: wrap;
    }

    .pro_n_list .pro_n_l .thumb {
        width: 100%;
    }

    .pro_n_list .pro_n_r {
        margin-left: 0;
    }

    .pro_n_l .pro_n_l_r {
        margin-left: 0;
        margin-right: 0;
        flex-wrap: wrap;
    }

    .pro_n_list .pro_n_l .pro_t {
        margin: 0;
        padding: 20px 0;
        width: 100%;
    }

    .pro_n_l .pro_text {
        display: none;
    }

    .pro_n_list .pro_n_r .icon {
        display: none;
    }

    .pro_n_list .pro_n_r .t {
        padding-right: 24px;
        background-image: url(../images/pro_jt.svg);
        background-repeat: no-repeat;
        background-position: right;
    }

    .pro_n_list .pro_n_l::before,
    .pro_n_list .pro_n_l .pro_t::before {
        display: none;
    }
}

/* pro detail */
.pro_detail_box {
    padding: 80px 0;

}

.pro_detail_left {
    position: sticky;
    top: 110px;
    height: auto;
    float: left;
}

.pro_detail_left ul {
    position: relative;
}

.pro_detail_left ul::before {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #EEE;
}

.pro_detail_left ul li {
    position: relative;
    margin-bottom: 36px;
}

.pro_detail_left ul li:last-child {
    margin-bottom: 0;
}

.pro_detail_left ul li::before {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--main-color);
    transition: height .4s;
}

.pro_detail_left ul li.active::before {
    height: 100%;
}

.pro_detail_left ul li a {
    padding-left: 20px;
    color: #999;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.pro_detail_left ul li.active a {
    color: var(--dark-color);
}

.pro_detail_right {
    width: calc(100% - 100px);
    padding-left: 140px;
    float: left;
}

.term_content {
    width: 100%;
}

.detail_title {
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #EEE;
}

.detail_title .big_t {
    color: var(--dark-color);
    font-weight: 700;
    line-height: normal;
}

.detail_title .click {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.detail_title .click i {
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../images/pro_d_jt.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.pro_d_line {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #CCC;
    color: var(--dark-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pro_d_line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 1px;
    background-color: var(--main-color);
}

.pro_d_text {
    padding-bottom: 70px;
}

.pro_d_text p {
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 30px;
}

.perform_list {
    margin-top: -15px;
    padding-bottom: 55px;
}

.perform_list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
}

.perform_list ul li {
    width: 33.33%;
    padding: 15px;
}

.perform_list .perform_text {
    width: 100%;
    position: relative;
    height: 100%;
    border-left: 4px solid var(--main-color);
    padding-left: 20px;
}

.perform_list .perform_text h4 {
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.perform_list .perform_text span {
    display: block;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.term_content .table {
    width: 100%;
    overflow-x: auto
}

.term_content .table table {
    width: 100%;
    border-collapse: collapse;
}

.term_content .table table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.term_content .table table tbody tr:nth-child(even) {
    background-color: var(--white-color);
}

.term_content .table table tr {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.term_content .table table tr td {
    padding: 10px 10px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.term_content .table table tr td:first-child {
    width: 35%;
}

.apply_box {
    padding-top: 100px;
}

.apply_list {}

.apply_list ul {
    display: flex;
    align-items: stretch;
    margin-left: -5px;
    margin-right: -5px;
}

.apply_list ul li {
    padding: 0 5px;
    width: 26%;
}

.apply_list ul li:first-child {
    width: 48%;
}

.apply_list .mask {
    border-radius: 0px 0px 20px 20px;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.apply_list .thumb {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    max-height: 407px;
    overflow: hidden;
}

.apply_list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.apply_list .mask {
    position: absolute;
    padding: 10px 50px 40px 50px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.apply_list .mask::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.8;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: -1;
}

.apply_list .title {
    position: relative;
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    z-index: 9;
}

@media (max-width:1279px) {
    .apply_list .mask {
        padding: 10px 30px 40px 30px;
    }


}

@media (max-width:991px) {
    .pro_detail_right {
        padding-left: 100px;
    }

    .apply_box {
        padding-top: 50px;
    }

    .apply_list .mask {
        padding: 10px 20px 30px 20px;
    }


}

@media (max-width:767px) {
    .pro_detail_box {
        padding: 50px 0;
    }

    .pro_detail_left {
        position: relative;
        top: 0;
        display: none;
    }

    .pro_detail_right {
        width: 100%;
        padding-left: 0;
    }

    .detail_title {
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .detail_title .click {
        width: 26px;
        height: 26px;
    }

    .pro_d_text {
        padding-bottom: 30px;
    }

    .term_content .table table tr td:first-child {

        min-width: 170px;
    }

    .term_content .table table tr td {
        word-break: keep-all;
    }

    .perform_list ul li {
        width: 50%;
    }

    .apply_list ul {
        flex-wrap: wrap;
    }

    .apply_list ul li {
        width: 100% !important;
        padding: 10px 5px;
    }

    .apply_list .thumb {
        height: 250px;
    }
}

/* new list */
.new_n_list {
    padding-top: 70px;
}

.new_n_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.new_n_list ul li {
    width: 33.33%;
    padding: 10px;
}

.new_n_list a {
    display: block;

    border-radius: 20px;
    background: #FFF;
    height: 100%;
}

.new_n_list .time {
    color: #999;
    font-family: 'Archivo';
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
}

.no_thumb a {
    padding: 50px 40px;
    transition: all 0.3s;
}

.no_thumb .des {
    margin-top: 20px;
    margin-bottom: 70px;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.new_n_list .title {

    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.no_thumb .title {
    margin-top: 20px;
    height: 72px;
}

.no_thumb .more {
    position: absolute;
    left: 40px;
    bottom: 50px;
}

.no_thumb .more i {
    display: block;
    width: 54px;
    height: 54px;
    background-image: url(../images/new_jt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: all .4s;
}

.new_thumb a {
    padding: 30px 34px 40px 34px;
}

.new_thumb .title {
    margin-top: 10px;
    height: 36px;
}

.new_thumb .time {
    margin-top: 30px;
}

.new_thumb .img {
    width: 100%;

    border-radius: 10px;
    overflow: hidden;
}

.new_thumb .img img {
    width: 100%;
    height: 100%;
}

.new_thumb .img i {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .6s;
    transition: -webkit-transform .6s;
    -o-transition: transform .6s;
    transition: transform .6s;
    transition: transform .6s, -webkit-transform .6s;
    -webkit-transition: transform .6s;
}

.new_n_list .no_thumb a:hover {
    background-color: var(--main-color);
}

.new_n_list .no_thumb a:hover .title {
    color: var(--white-color);
}

.new_n_list .no_thumb a:hover .time,
.new_n_list .no_thumb a:hover .des {
    color: rgba(255, 255, 255, 0.5);
}

.new_n_list .no_thumb a:hover .more i {
    transform: rotate(45deg);
    background-image: url(../images/new_jt2.svg);
}

.new_n_list .new_thumb a:hover .title {
    color: var(--main-color);
}

.new_n_list .new_thumb a:hover .img i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

@media (max-width:991px) {
    .no_thumb a {
        padding: 40px 30px;
    }

    .no_thumb .more {
        left: 30px;
        bottom: 40px;
    }

    .no_thumb .des {
        margin-bottom: 40px;
    }

    .no_thumb .title {
        margin-top: 15px;
    }

    .new_thumb .img i {

        min-height: 160px;

    }

    .new_thumb a {
        padding: 30px 30px 30px 30px;
    }

    .no_thumb .more i {
        width: 40px;
        height: 40px;
    }

}

@media (max-width:767px) {
    .new_n_list {
        padding-top: 40px;
    }

    .new_n_list ul li {
        width: 100%;
    }

    .no_thumb a {
        padding: 30px 20px;
    }

    .new_thumb a {
        padding: 30px 20px 30px 20px;
    }

    .new_thumb .img i {
        min-height: inherit;
    }

    .no_thumb .title {
        margin-top: 20px;
        height: 60px;
        line-height: 30px;
    }

    .no_thumb .more {
        position: relative;
        left: inherit;
        bottom: inherit;
    }

    .no_thumb .more i {
        width: 36px;
        height: 36px;
    }

    .no_thumb .des {
        margin-bottom: 15px;
    }



}

/* article */
.article_mask {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article_mask::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: -1;
}

.article_ban {
    height: 400px;
}

.article_mask>.my-container {
    height: 100%;
}

.article_mask>.my-container>div:first-child {
    position: relative;
    width: 100%;
    height: 100%;
}

.article_text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.article_text .t {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.article_text .des {
    padding-top: 30px;
    display: flex;
    align-items: center;
}

.article_text .des span {
    display: flex;
    padding-right: 25px;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_text .des span img {
    margin-right: 8px;
}

.article_text .des .time {
    font-family: 'Archivo';
}

.share_button .i {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
}

.share_button .share_btn {
    background-image: url(../images/new_x_icon04.svg);
}

.article_n {
    padding-top: 50px;
}

.article_n .article_left {
    float: left;
    width: calc(100% - 368px);
    padding-right: 99px;
}

.article_n .article_right {
    float: left;
    width: 368px;
    position: sticky;
    top: 100px;
    z-index: 9;
}

.article_n .article_left p {
    padding-bottom: 30px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.article_n .article_left p:last-child {
    padding-bottom: 30px;
}

.article_n .article_left p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.article_n .article_right .s_t {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.article_right .ul li {
    padding-top: 24px;
}

.article_right .ul li a {
    display: block;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.article_right .ul .time span {
    color: #666;
    font-family: 'Archivo';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    padding-left: 26px;
    background-image: url(../images/new_xq_r_time2.svg);
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
}

.article_right .ul .t {
    margin-top: 8px;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    height: 64px;
}

.article_right .ul a:hover .time span {
    color: rgba(0, 54, 85, 0.5);
}

.article_right .ul a:hover .t {
    font-weight: 700;
    font-size: 20px;
}

.down_page {
    margin-top: 170px;
    padding: 40px 0;
    border-top: 1px solid #98A9B8;
}

.down_page .n,
.down_page a {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.down_page .n:hover,
.down_page a:hover {
    color: var(--main-color);
}

@media (max-width:1279px) {
    .article_n .article_left {
        padding-right: 80px;
    }

    .down_page {
        margin-top: 100px;
    }


}

@media (max-width:991px) {
    .article_ban {
        height: 350px;
    }

    .article_n .article_left {
        padding-right: 50px;
        width: calc(100% - 300px);
    }

    .article_n .article_right {
        width: 300px;
        top: 100px;
    }

    .down_page {
        margin-top: 60px;
    }


}

@media (max-width:767px) {
    .article_ban {
        height: 300px;
    }

    .article_n .article_right {
        position: relative;
        top: inherit;
        width: 100%;
    }

    .article_n .article_left {
        width: 100%;
        position: relative;
        padding-right: 0;
    }

    .article_text {
        margin-top: 20px;
    }

    .article_text .des {
        flex-wrap: wrap;
    }

    .article_text .des {
        padding-top: 10px;
    }

    .article_text .des span {
        padding-right: 10px;
    }

    .article_text .des span:first-child {
        display: none;
    }

    .article_text .t {
        font-size: 22px;
    }

}



/* 分享 */

.share_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    z-index: 1111;
    display: none;
}

.share_box {
    position: fixed;
    top: 50%;
    width: 298px;
    padding: 0 20px;
    border-radius: 24px;
    background: #FFF;
    left: 50%;
    z-index: 11111;
    display: none;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.share_box .share_list {
    padding-top: 46px;
    padding-bottom: 30px;
}

.share_box .sub {
    text-align: center;
    color: var(--dark-color);
    font-family: "Archivo";
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.share_box .share_list ul {
    display: flex;
    justify-content: space-around;
}

.share_box .share_list ul li {
    padding-top: 22px;
    width: 33%;
    cursor: pointer;
}

.share_box .share_list ul li p {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    margin-top: 8px;
    line-height: 24px;
    text-align: center;
}

.cancel_share {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image: url(../images/share_close.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    z-index: 9;
}

.share_bg {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--main-color);
    margin: 0 auto;
    text-align: center;
}

/* job */
.join_bg {
    padding: 80px 0;
    background-color: #F5F6FA;

}

.join_top_bg {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.join_top_bg::before {
    content: '';
    position: absolute;
    right: 0;
    top: -25%;
    width: 40%;
    background-image: url(../images/job_bg_01.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    height: 100%;
    width: 51%;
    z-index: -1;
}

.join_top_bg::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/job_bg_02.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 696px;
    width: 696px;
    z-index: -1;
}

.job_top {
    position: relative;
    margin: 80px 0 80px 0;
    overflow: hidden;
    z-index: 1;
}

.job_top .index_title {
    position: absolute;
    left: 0;
    width: 55%;
}

.job_bg01 {
    position: absolute;
    right: -5%;
    top: -30px;
    width: 30%;
    z-index: -1;
}

.job_bg02 {
    position: absolute;
    right: 15%;
    bottom: 30px;
    width: 30%;
    max-width: 534px;
    z-index: -1;
}

.sanime__mask {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: -100%;
    transition: top 1.2s ease;
    z-index: 2;
}

.sanime__mask2 {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    top: -100%;
    transition: top 1.2s ease;
    opacity: 0.2;
    z-index: 2;
}

.job_top_img.animated .sanime__mask {
    top: 100%;
    opacity: 1;
    animation-duration: .8s;
}

.job_top_text.animated .sanime__mask2 {
    top: 100%;
    opacity: 1;
    animation-duration: .8s;
}

.job_top_text.animated .job_s_title,
.job_top_text.animated .job_s_text {
    opacity: 1;
}

.job_top_loop {
    padding-top: 58px;
    display: flex;
    justify-content: space-between;
}

.job_t_loop_item {
    width: calc(50% - 40px);
}

.job_top_loop .job_t_loop_item:first-child .job_top_img {
    margin-top: 190px;
}

.job_t_loop_item .job_top_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.job_t_loop_item .job_top_img .job_icon {
    position: absolute;
    right: 32px;
    top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--white-color);
    border-radius: 50%;
}

.job_top_text {
    position: relative;
    padding-top: 24px;
    overflow: hidden;
}

.job_top_text .job_s_title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 32px;
    opacity: 0;
    transition: opacity 4s ease;
}

.job_top_text .job_s_text {
    padding-top: 16px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0;
    transition: opacity 4s ease;
}

.join_list {
    padding-top: 50px;
}

.join_list .join_list_item {
    display: flex;
    padding: 40px 50px;
    margin-bottom: 5px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    background: var(--white-color);
    cursor: pointer;
}

.join_list .join_list_item .job_zw {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.join_list .job_more {
    width: 36px;
}

.join_list_item .yaoqiu,
.join_list_item .neirong,
.join_list_item .join_item2 {
    display: none;
}

.join_list .join_list_item:hover .job_zw {
    color: var(--main-color);
}

@media (max-width:1280px) {

    .job_top .index_title {
        width: 52%;
    }

    .join_top_bg::after {

        height: 600px;
        width: 600px;
    }

}

@media (max-width:991px) {
    .join_top_bg::after {

        height: 400px;
        width: 400px;
    }

    .job_top .index_title {
        position: relative;
        width: 100%;
    }

    .job_top_loop .job_t_loop_item:first-child .job_top_img {
        margin-top: 60px;
    }

    .job_t_loop_item {
        width: calc(50% - 20px);
    }

    .job_t_loop_item .job_top_img .job_icon {
        right: 20px;
        top: 20px;
        width: 60px;
        height: 60px;
    }


}

@media (max-width:767px) {

    .job_top {
        margin: 50px 0 40px 0;
    }

    .job_top_loop {
        padding-top: 0;
        flex-wrap: wrap;
    }

    .job_t_loop_item {
        width: 100%;
        margin-top: 30px;
    }

    .job_top_loop .job_t_loop_item:first-child .job_top_img {
        margin-top: 20px;
    }

    .join_bg {
        padding: 50px 0;
    }

    .join_list {
        padding-top: 30px;
    }

    .join_list .join_list_item {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .join_list .job_more {
        width: 30px;
    }

}

/* mtk */
.mtk_text {
    max-height: 68vh;
    overflow-y: auto;
}

body.m_fix {
    overflow: hidden;
    padding-right: 4px;
}

.mtk {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -999;
    opacity: 0;
}

.mtk.active {
    z-index: 1200;
    opacity: 1;
}

.mtk_box {

    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(100px);
    width: 1440px;
    max-width: 95%;
    padding: 65px 70px;
    border-radius: 20px;
    background: #FFF;
    opacity: 0;
    transition: transform .6s;
    z-index: 10;
}

.mtk_title {
    padding-bottom: 30px;
    border-bottom: 1px solid #DDD;
}

.mtk_title .close {
    cursor: pointer;
}

.mtk_title1 {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mtk_des {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mtk_des .join_item2 {
    display: flex;
    align-items: center;
}

.mtk_des .join_item2 .join_item2_item {
    margin-right: 35px;
    color: #999;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
}

.mtk_des .join_item2 .join_item2_item span {
    margin-right: 6px;
}

.mtk_des .release_time {
    color: #999;

    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.mtk_content {
    padding-top: 30px;
}

.mtk_content1,
.mtk_content3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.mtk_content2 {
    margin-top: 4px;
}

.mtk_content4 p,
.mtk_content2 p {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.mtk_content3 {
    margin-top: 40px;
}

.mtk_content5 {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid #005CAC;
    border-bottom: 2px solid #005CAC;
}

.mtk_content5 .title {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mtk_content5 .title span {
    font-family: 'Archivo';
    margin-left: 10px;
}

.mtk_content5 p {
    padding-top: 10px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mtk.active .mtk_box {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0px);
}

.mtk.active .mtk_box:before {
    opacity: 1;
}

.mtk_box .md-close {
    position: absolute;
    right: 60px;
    top: 60px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid#CCC;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-height:900px) {
    .mtk_text {
        max-height: 55vh;
    }

}

@media (max-height:800px) {
    .mtk_text {
        max-height: 50vh;
    }

}

@media (max-width:1280px) {
    .mtk_box .md-close {
        width: 60px;
        height: 60px;
    }


}

@media (max-width:1279px) {

    .mtk_box {
        padding: 55px 60px;
    }

    .mtk_box .md-close {
        width: 60px;
        height: 60px;
    }

}

@media (max-width:991px) {

    .mtk_box {
        padding: 55px 30px;
    }

    .mtk_box .md-close {
        right: 30px;
        top: 30px;
        width: 40px;
        height: 40px;
        padding: 5px;
    }

}

@media (max-width:767px) {
    .mtk_box {
        padding: 35px 30px;
    }

    .mtk_box .md-close {
        right: 15px;
        top: 15px;
    }

    .mtk_title {
        padding-bottom: 16px;
    }

    .mtk_des .join_item2 {
        flex-wrap: wrap;
    }

    .mtk_des .join_item2 .join_item2_item {
        margin-right: 15px;
        margin-bottom: 5px;
        font-size: 16px;
    }

    .mtk_content4 p,
    .mtk_content2 p {
        padding-top: 10px;
    }

    .mtk_content5 {
        margin-top: 30px;
        padding: 20px 0;
        border-top: 1px solid #005CAC;
        border-bottom: 1px solid #005CAC;
    }

    .mtk_content5 p {
        font-size: 16px;
        line-height: 26px;
    }

}

/* 产品订购 */
.pro_order_box {
    padding-top: 80px;
    padding-bottom: 70px;
}

.pro_order_list {
    padding-top: 65px;
}

.pro_order_list ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
}

.pro_order_list ul li {
    width: 50%;
    padding: 20px;
}

.pro_order_list .bg {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    background-color: var(--white-color);
}

.pro_order_list .bg .label {
    padding: 15px 30px;

    border-radius: 30px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pro_order_list .order_contact {
    padding-top: 44px;
    flex-wrap: wrap;
    width: 100%;
}

.pro_order_list .order_contact span {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-family: 'Archivo';
    font-weight: 400;
    line-height: normal;
}

.pro_order_list .order_contact span img {
    width: 50px;
    margin-right: 10px;
}

@media (max-width:1440px) {
    .pro_order_list .order_contact span img {
        width: 40px;
        margin-right: 6px;
    }

}

@media (max-width:1366px) {
    .pro_order_list .bg {
        padding: 40px 30px;
    }

}

@media (max-width:991px) {
    .pro_order_list {
        padding-top: 40px;
    }

    .pro_order_list .order_contact {
        font-size: 24px;
    }

}

@media (max-width:767px) {
    .pro_order_list ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .pro_order_list ul li {
        padding: 10px;
        width: 100%;
    }

    .pro_order_list .bg {
        padding: 30px 20px;
    }

}

/* contact */
.contact_top {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact_top::before {
    content: "";
    position: absolute;
    left: 6%;
    bottom: -20%;
    width: 50%;
    height: 100%;
    background-image: url(../images/contact_icon.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}

.contact_right {
    flex: 1;
    max-width: 750px;
    margin-left: 100px;
}

.contact_right ul li {
    display: flex;
    padding: 30px 0px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #DDD;
}

.contact_right .icon {
    width: 50px;
}

.contact_right .text {
    text-align: right;
}

.contact_right .text span {
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.contact_right .text .eng {
    color: #333;
    font-family: 'Archivo';
    font-weight: 400;
    line-height: 36px;
}

.contact_right .text .code {
    padding-top: 10px;
}

.contact_right .text .code img {
    width: 100px;
}

.contact_mid {
    width: 100%;
    height: 640px;
}

.contact_bottom {
    padding: 80px 0;
}

.mess_box {
    padding: 40px;
    border-radius: 20px;
    background: #FFF;
}

.mess_box .title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.mess_box .des {
    padding-top: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

/* mess */

.message_form .item_right {
    padding-top: 25px;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
}

.message_form .col-2 {
    width: 50%;
    float: left;
    padding: 15px 12px;
}

.message_form .colw100 {
    float: left;
    width: 100%;
    padding: 15px 12px;
}

.message_form .col_z>span {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.message_form .col_z>span>em {
    margin-left: 8px;
    color: #C30D23;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.message_form .input-container {
    margin-top: 16px;
    position: relative;
    background: #FAFAFA;
}

.message_form .input-container input {
    outline: none;
    z-index: 1;
    padding: 12px 20px;
    position: relative;
    background: none;
    width: 100%;
    height: 56px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
    text-align: left;
}

.message_form .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 160px;
    padding: 20px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    resize: none;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
}

.message_form .yanz {
    padding-top: 16px;
}

.message_form .yanz .input-container {
    margin-top: 0;
    width: 294px;
}

.message_form .message_code {
    margin-left: 16px;
}

.message_form .message_code img {
    height: 64px;
}

.message_form .text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--main-color);
}

.message_form_text {
    padding-top: 28px;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.message_form .pro_public_more {
    width: 160px;
    height: 58px;
    border-radius: 30px;
    cursor: pointer;
}

.message_form .last_button .mess_reset {
    margin-right: 16px;
    border: 1px solid rgba(217, 217, 217, 0.80);
    background: rgba(217, 217, 217, 0.20);
    backdrop-filter: blur(4px);
}

.message_form .last_button .mess_submit {
    background: var(--main-color);
}

.message_form .pro_public_more span {
    color: var(--white-color);
    text-align: center;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

.message_form .last_button .mess_reset span {
    color: #666;
}

.message_form .input-container input::-webkit-input-placeholder,
.message_form textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
}

.message_form .input-container input::-moz-placeholder,
.message_form textarea::-moz-placeholder {
    color: #999;
    font-size: 16px;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
}

.message_form .input-container input::-ms-input-placeholder,
.message_form textarea::-ms-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
}

@media (max-width:991px) {
    .contact_right {
        margin-left: 60px;
    }

    .contact_mid {
        height: 400px;
    }

}

@media (max-width:767px) {
    .contact_top {
        padding: 50px 0;
    }

    .contact_top .my-container {
        flex-wrap: wrap;
    }

    .contact_right {
        margin-left: 0;
        flex: inherit;
        width: 100%;
    }

    .contact_right .icon {
        width: 36px;
    }

    .mess_box {
        padding: 30px 25px;
    }

    .contact_bottom {
        padding: 50px 0;
    }

    .message_form .col-2 {
        width: 100%;
    }

    .message_form .yanz {
        display: block;
    }

    .message_form .yanz .input-container {
        width: 100%;
    }

    .message_form .message_code {
        margin-left: 0;
        margin-top: 30px;
    }


    .message_form .last_button {
        justify-content: space-between;
    }

    .message_form .last_button .mess_reset {
        margin-right: 0;
    }

    .message_form .last_button button {
        width: calc(50% - 5px);
    }

    .message_form .last_button span {
        padding: 12px 14px;
        min-width: inherit;
    }

    .message_form .input-container textarea {
        height: 200px;
    }

    .message_form .input-container input::-webkit-input-placeholder,
    .message_form textarea::-webkit-input-placeholder {
        font-size: 14px;
    }

    .message_form .input-container input::-moz-placeholder,
    .message_form textarea::-moz-placeholder {
        font-size: 14px;
    }

    .message_form .input-container input::-ms-input-placeholder,
    .message_form textarea::-ms-input-placeholder {
        font-size: 14px;
    }

    .message_form .input-container input {
        height: 58px;
    }

    .message_form .message_code img {
        height: 58px;
    }

    .message_form .input_select_box .drop_down_ {
        top: 58px;
    }

    .bg_img .index_five_img>div:first-child {
        display: none;
    }

    .verify-bar-area .verify-msg {
        font-size: 14px;
    }

    .message_form .col_z>span,
    .message_form .col_z>span>em {
        font-size: 16px;
    }

    .message_form .col_z>span>em {
        margin-left: 4px;
    }
    .contact_right .text .eng {
        font-size: 20px;
        line-height: 1.5;
    }
}
/* honor */
.cer_list {
    padding-top: 50px;
}
.cer_list .index_title .des {
    margin-top: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.cer_list .list_ {
    margin: -10px;
    padding-top: 45px;
 
}

.cer_list .list_:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.cer_list .list_ .item {
    float: left;
    width: 25%;
    padding: 10px;
}

.cer_list .list_ .item_ {
    background: #FFFFFF;
    border: 1px solid #E6E9F0;
    padding: 20px;
    cursor: pointer;
}

.cer_list .list_ .item_ .img {
    background: #F5F6FA;
    position: relative;
}

.cer_list .list_ .item_ .img>img {
    width: 100%;
}

.cer_list .list_ .item_ .img i {
    padding: 40px 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cer_list .list_ .item_ .img i>img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.cer_list .list_ .item_ h2 {
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    color: #666666;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 20px;
}

@media(max-width:1366px) {

.cer_list .list_ .item_ .img i {
    padding: 30px 40px;

}

}
@media(max-width:1280px) {
    .cer_list .list_ .item {
        width: 33.33%;
    }

}

@media(max-width:991px) {
    .cer_list .list_ .item {
        width: 50%;
    }

    .cer_list .list_ .item_ .img i {
        padding: 20px;
    }

}

@media(max-width:767px) {
    .cer_list {
        padding-top: 40px;
    }

    .cer_list .list_ .item {
        width: 100%;
    }

}

/*tc*/
.case-swp-tc-close {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 40px;
    top: 20px;
    z-index: 11;
    cursor: pointer;
    background-image: url(../images/nav_close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
}

.case-swp-tc {
    position: fixed;
    z-index: 1111;
    width: 100vw;
    height: 100vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .8);
    display: none;
}

.case-swp-tc .swiper-container {
    transform: scale(0);
    transition: transform .6s;
}

.case-swp-tc .swiper-slide {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-swp-tc .swiper-slide div {
    text-align: center;
}

.case-swp-tc .swiper-slide img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
}

.case-swp-tc .swiper-slide p {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    padding-top: 15px;
}

.case-swp-tc .tc-btn {
    position: absolute;
    width: 50px;
    height: 100px;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    outline: 0;
    background-size:100%;
    opacity: .3;
}

.case-swp-tc .tc-btn:hover {
    opacity: 1;
}

.case-swp-tc .tc-prev {
    left: 50px;
    background-image: url(../images/ban_left_arrow.svg);
}

.case-swp-tc .tc-next {
    right: 50px;
    background-image: url(../images/ban_right_arrow.svg);
}

@media (max-width:768px) {
    .case-swp-tc-close {
        width: 30px;
        height: 30px;
        right: 20px;
        top: 20px;
    }

    .case-swp-tc .tc-btn {
        width: 30px;
        height: 60px;
        opacity: 1;
    }

    .case-swp-tc .swiper-slide p {
        font-size: 16px;
    }

    .case-swp-tc .tc-prev {
        left: 10px;
    }

    .case-swp-tc .tc-next {
        right: 10px;
    }

    .case-swp-tc .swiper-slide div {
        padding: 0 30px;
    }

}

@media (max-width:767px) {}