﻿@charset "utf-8";

:root {
    --main-color: #3E3A39;
    --dark-color: #333;
    --white-color: #FFFFFF;
    --red-color: #C7000B;
    --black-color: #222;
    --custom-wave-anim: custom_common_wave 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

img {
    max-width: 100%;
}

.index-wrapper {
    overflow: hidden;
}


/*banner*/
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner .black_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    z-index: 2;
}
.ban_button {
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 100%;
    z-index: 99;
}

.ban_button>.my-container {
    justify-content: space-between;
}

.ban_button .ban_border {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
}

.ban_button .ban-next {
    margin-left: 25px;
}

.ban_button .ban_border:hover {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.ban_button .ban_border:hover svg path {
    fill: var(--white-color);
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.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;
}

.left_sch {
    display: flex;
    align-items: center;
    z-index: 9;
}

.left_sch span {
    display: inline-block;
    margin-right: 16px;
    color: var(--white-color);
    width: 100%;
    font-size: 14px;
    font-weight: 400;
}

.scrillm {
    padding: 0 8px;
    width: 20px;
    height: 29px;
    border-radius: 10px;
    border: 1px solid var(--white-color);
    display: flex;
    justify-content: center;
}

.scrillm i {
    width: 2px;
    height: 5px;
    border-radius: 50%;
    background: var(--white-color);
    margin-top: 6px;
}

.scrillm i {
    animation: jumpDown 1.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite
}

.ban_text {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 99;
}

.ban_text .ban_zh {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.1;
}

.ban_text .ban_eng {
    margin-top: 20px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.banner .swiper-slide-active .wave_anim {
    overflow: hidden;
}

.banner .swiper-slide-active .wave_anim .wave {
    opacity: 0;
    -webkit-animation: var(--wave-anim);
    animation: var(--wave-anim);
}

.banner .swiper-slide-active .wave_anim.custom .wave {
    opacity: 0;
    -webkit-animation: var(--custom-wave-anim);
    animation: var(--custom-wave-anim);
}

.wave_anim {
    overflow: hidden;
}

.wave_anim>.wave {
    display: inline-block;
    transform: translateY(125%);
    opacity: 0;
}

.wave_anim.on .wave {
    -webkit-animation: var(--wave-anim);
    animation: var(--wave-anim);
}

.wave_anim.on.custom .wave {
    -webkit-animation: var(--custom-wave-anim);
    animation: var(--custom-wave-anim);
}

@keyframes common_wave {
    0% {
        opacity: 0;
        -webkit-transform: translateY(125%);
        transform: translateY(125%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes custom_common_wave {
    0% {
        opacity: 0;
        -webkit-transform: translateY(125%) rotate(3.5deg);
        transform: translateY(125%) rotate(3.5deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0) rotate(0deg);
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width:1440px) {
    .ban_button {
        bottom: 5%;
    }

}

@media (max-width:1280px) {
    .ban_button .ban_border {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
}

@media (max-width:1024px) {
    .ban_button .ban_border {
        width: 52px;
        height: 52px;
    }


}

@media (max-width:767px) {}


/*footer*/
.right_rove {
    position: fixed;
    right: 32px;
    bottom: 60px;
    z-index: 9;
}

.right_rove ul {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.right_rove ul li {
    position: relative;
    margin-bottom: 2px;
    width: 50px;
    overflow: hidden;
}

#foot_top {
    display: none;
}

.right_rove ul li:last-child {
    margin-bottom: 0;
}

.right_rove ul li .a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
    height: 50px;
    transition: all .35s;
    z-index: 1;
}

.right_rove>ul>li>.a img {
    width: 24px;
}

.right_rove>ul>li>.a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: var(--black-color);
    transition: width .3s cubic-bezier(0.99, 0.01, 0.16, 0.99);
    z-index: -1;
}

.right_rove>ul>li.back_top>.a:hover {
    width: 50px;
}
.right_rove>ul>li.back_top .a{
    justify-content: center;
}
.right_rove>ul>li>.a span {
    color: #FFF;
    font-size: 0;
    font-weight: 400;
    line-height: 26px;
    opacity: 0;
    overflow: hidden;
}

.right_rove>ul>li>.a a {
    display: flex;
    align-items: center;
}

.right_rove>ul>li>.a span a {
    color: inherit;
    font-size: inherit;
}

.right_rove ul li:hover {
    overflow: visible;
    width: auto;
}

.right_rove>ul>li.hover>.a:hover::before {
    width: 100%;
}

.right_rove>ul>li.hover>.a:hover {
    background-color: var(--black-color);
}

.right_rove>ul>li.hover>.a:hover span {
    opacity: 1;
    font-size: 16px;
    margin-left: 8px;
    transition: opacity .3s ease;
}

.back_top {
    cursor: pointer;
}

.foot_swiper {
    height: 64px;
}
.foot_swiper .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
@media (min-width:1025px) {
    .right_rove>ul>li.hover>.a:hover span {
        transition-delay: .2s;
    }

}

#footer {
    position: relative;
    background: var(--main-color);
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.bg_tree {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
}

.bg_tree>div {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

#three01 canvas {
    position: absolute;
    left: 0;
    top: 40%;
}

#footer>.my-container {
    height: 100%;
}

.foot_cont {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
}

.foot_top {
    margin-top: 90px;
    position: relative;
    text-align: center;
}

.foot_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.foot_logo img {
    max-height: 100%;
}

.foot_top .big_title {
    padding-top: 110px;
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
}

.foot_top .line {
    width: 20px;
    height: 1px;
    opacity: 0.5;
    background: #FFF;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.foot_top .small_title {
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
}

.foot_menu {
    padding: 50px 0;
}

.foot_menu ul {
    display: flex;
    justify-content: space-between;
}

.foot_menu ul li a:first-child {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.foot_menu ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 9px;
}

.foot_menu ul li a:last-child {
    margin-bottom: 0;
}

.foot_cont .foot_bottom {
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.foot_cont .foot_bottom a {
    font-size: inherit;
    color: inherit;
}

.foot_cont .foot_bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-height:850px) {
    .foot_cont {
        padding-bottom: 50px;
    }

    .foot_top {
        margin-top: 50px;
    }

    .foot_top .big_title {
        padding-top: 80px;
    }

}

@media (max-height:800px) {
    .foot_top {
        margin-top: 50px;
    }

    .foot_top .big_title {
        padding-top: 50px;
    }

}

@media (max-height:750px) {
    .foot_cont {
        padding-bottom: 30px;
    }

    .foot_top {
        margin-top: 30px;
    }

    .foot_menu {
        padding: 30px 0;
    }

}

@media (max-height:700px) {
    .foot_top {
        margin-top: 20px;
    }

    .foot_top .big_title {
        padding-top: 40px;
    }

    .foot_top .line {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .foot_menu {
        padding: 20px 0;
    }

    .foot_menu ul li a:first-child {
        margin-bottom: 16px;
    }

    .foot_menu ul li a {
        margin-bottom: 6px;
    }

}

@media (max-width:1440px) {
    .right_rove {
        right: 25px;
    }


}

@media (max-width:1279px) {
    .right_rove {
        right: 6px;
        bottom: 20px;
    }


}

@media (max-width:767px) {
    .right_rove {
        right: 4px;
        bottom: 20px;
    }

    .foot_cont {
        padding: 40px 0 20px 0;
    }

    #footer {
        height: auto;
    }

    .foot_top .big_title {
        line-height: 1.4;
        max-width: 270px;
        margin: 0 auto;
        font-size: 24px;
    }

    .foot_top .small_title {
        font-size: 18px;
        line-height: 1.4;
    }

    .foot_menu {
        padding: 60px 0;
    }

    .foot_menu ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .foot_menu ul li {
        padding-right: 15px;
        width: 33.33%;
    }

    .foot_menu ul li a:nth-child(n+2) {
        display: none;
    }

    .foot_menu ul li a:first-child {
        font-size: 18px;
    }

    .foot_cont .foot_bottom {
        line-height: 1.5;
    }
}

/* 产品展示 */
.index_product {
    position: relative;
    z-index: 1;
}

.index_product .product_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.index_product .product_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 整体方案 */
.index_case {
    background-color: #F9F9F9;
}

.index_case .my-container {
    padding-top: 100px;
    padding-bottom: 40px;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.index_title h2 {
    font-weight: 400;
    line-height: normal;
    letter-spacing: 3.6px;
}

.index_title p {
    padding-top: 15px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.black_title h2 {
    color: var(--main-color);
}

.black_title p {
    color: #666;
}

.white_title h2 {
    color: var(--white-color);
}

.white_title p {
    color: rgba(255, 255, 255, 0.5);
}

.index_case_list {
    padding-top: 50px;
}

.index_case_list ul {
    display: flex;
    align-items: stretch;
    margin-left: -14px;
    margin-right: -14px;
}

.index_case_list ul li {
    width: 33.33%;
    padding: 0 14px;
}

.index_case_list .thumb {
    overflow: hidden;
}

.index_case_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.index_case_list .text {
    padding-top: 40px;
}

.index_case_list .text .title {
    color: #000;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.index_case_list .text .des {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.index_case_list .loop:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

@media (max-height:700px) {
    .index_case_list {
        padding-top: 30px;
    }

    .index_case_list .text {
        padding-top: 20px;
    }

    .index_case_list .text .des {
        margin-top: 16px;
    }
}

@media (max-height:650px) {
    .index_case_list {
        padding-top: 30px;
    }

    .index_case_list .text .des {
        margin-top: 10px;
    }

    .index_case_list .thumb {
        max-height: 46vh;
    }
}

@media (max-width:1440px) {
    .index_case_list .thumb {
        max-height: 46vh;
    }
}

@media (max-width:1024px) {
    .index_case_list {
        padding-top: 40px;
    }

    .index_case_list .text {
        padding-top: 30px;
    }

    .index_case_list .text .des {
        margin-top: 10px;
    }

}

@media (max-width:767px) {
    
    .index_title p {
        padding-top: 10px;
    }
    .index_case_list ul {
        flex-wrap: wrap;
    }

    .index_case_list ul li {
        width: 100%;
        padding-bottom: 30px;
    }

    .index_case_list .text {
        padding-top: 20px;
    }

}

/* 产业生态 */
.index_industry {
    position: relative;
    background-color: #FFF;
    z-index: 1;
}

.index_industry .industry_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.index_industry .industry_bg>.my-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.industry_list {
    margin-top: 100px;
}

.industry_button {
    justify-content: flex-end;
}

.industry_button .indus-prev,
.industry_button .indus-next {
    cursor: pointer;
}

.industry_swiper {
    margin-top: 30px;
}

.industry_button .play {
    position: relative;
    height: 16px;
    width: 16px;
    margin-left: 20px;
    margin-right: 20px;
}

.industry_button .play i {
    cursor: pointer;
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    line-height: 0;
}

.industry_button .suspend {
    display: none;
}

.industry_swiper .swiper-wrapper {
    align-items: stretch;
}

.industry_swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.grid-item {
    width: 14.28%;
    /* height: fit-content; */
    height: max-content;
    border-top: 1px solid #CCCCCC;
    border-left: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    border-right: 1px solid transparent;
    transition: transform .4s ease;
}

@media (min-width:768px) {
    .grid-container .grid-item:nth-child(7n) {
        border-right: 1px solid #CCCCCC;
    }

    .grid-container .grid-item:nth-child(n+8) {
        border-top-color: transparent;
    }
}

.grid-item .thumb {
    position: relative;
    padding: 30px 25px;
    background: var(--white-color);
    cursor: pointer;
}

.grid-item .thumb .i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)  translateZ(0);
    width: 70%;
    transition: all .4s ease;
    will-change: transform;
}

.in_product {
    flex: 1;
    position: relative;
    padding-top: 60px;
    max-height: 620px;
}

.in_product .pro_m_box {
    display: none;
}

.in_product .big_cata {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.in_product .big_cata .l_ {
    display: flex;
    align-items: center;
    height: 64px;
}

.in_product .big_cata .l_ .i {
    position: relative;
    margin-top: 18px;
    margin-right: 70px;
    display: flex;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    height: calc(100% - 18px);
    cursor: pointer;
}

.in_product .big_cata .l_ .i::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    transition: width .3s;
}

.in_product .big_cata .l_ .i.active {
    color: var(--white-color);
}

.in_product .big_cata .l_ .i.active::before {
    width: 100%;
}

.in_product .pro_box {
    height: calc(100% - 66px);
    position: relative;
}

.in_product .pro_box .i {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
}

.in_product .pro_box .i.active {
    z-index: 1;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.in_product .pro_box .i_list {
    width: 100%;
    height: 100%;
    position: relative;
}

.in_product .pro_box .i_item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .1s cubic-bezier(0.4, 0.32, 1, 1);
    z-index: -99;
}

.in_product .pro_box .i_item.active {
    z-index: 2;
    opacity: 1;
}

.in_product .pro_box .i_name {
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 190px;
    height: 110px;
    /* height: 154px; */
    z-index: 4;
}

.in_product .pro_box .i_name .swiper-container {
    width: 100%;
    height: 100%;
}

.in_product .pro_box .i_name .swiper-slide {
    color: #fff;
    text-align: right;
    font-size: 20px;
    padding-right: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.5;
    cursor: pointer;
}

.in_product .pro_box .i_name .swiper-slide::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0;
    width: 2px;
    background-color: var(--white-color);
    transition: height .4s;
}

.in_product .pro_box .i_name .swiper-slide-thumb-active,
.in_product .pro_box .i_name .swiper-slide-active {
    opacity: 1;
}

.in_product .pro_box .i_name .swiper-slide-thumb-active::before,
.in_product .pro_box .i_name .swiper-slide-active::before {
    height: 18px;
}

@media screen and (max-width: 767px) {
    .index_industry .industry_bg>.my-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .industry_m_swiper {
        margin-top: 20px;
    }

    .grid-item {
        width: 33.33%;

    }

    .grid-container .grid-item:nth-child(3n) {
        border-right: 1px solid #CCCCCC;
    }

    .grid-container .grid-item:nth-child(n+4) {
        border-top-color: transparent;
    }

    .grid-item .thumb {
        padding: 10px 15px;
    }
}




/* search */
.pro_search {
    width: 254px;
}

.pro_search form {
    height: 46px;
    justify-content: space-between;
}

.pro_search .pro_input {
    width: calc(100% - 30px);
    height: 100%;
    background-color: transparent;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.pro_search .pro_input:focus::placeholder {
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-weight: 400;
}

.pro_search .pro_input::-webkit-input-placeholder {
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-weight: 400;
}

.pro_search .pro_input::-moz-placeholder {
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-weight: 400;
}

.pro_search .pro_input:-moz-placeholder {
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-weight: 400;
}

.pro_search .pro_input:-ms-input-placeholder {
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-weight: 400;
}

.pro_search .btn {
    width: 30px;
    height: 30px;
    background: transparent;
    background-repeat: no-repeat;
    background-image: url(../images/search_p_white.svg);
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.index_product .my-container {
    padding-top: 100px;
    padding-bottom: 60px;
    height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.pro_cont_box {
    justify-content: space-between;
    padding-top: 50px;
    width: calc(100% - 300px);
    height: 100%;
    max-width: 1110px;
}

.pro_cont_box .pro_c_left {
    width: 60%;
}

.pro_cont_box .pro_c_right {
    width: 40%;
    height: 100%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pro_cont_box .pro_c_right img {
    max-height: 100%;
}

.pro_c_left .title {
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.1;
}

.pro_c_left .pro_c_link {
    padding-top: 35px;
}

.pro_c_left .pro_c_link>ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pro_c_left .pro_c_link>ul>li {
    width: 50%;
    padding: 15px 20px;
}

.pro_c_left .pro_c_link>ul>li .line {
    padding-left: 20px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.50);
}

.pro_c_left .pro_c_link .s_t {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pro_c_left .pro_c_link p {
    margin-top: 6px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pro_more {
    padding-top: 50px;
}

.pro_more a {
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition: all .3s;
}

.pro_more a:nth-child(2) {
    margin-left: 24px;
}

.pro_more a i {
    margin-left: 15px;
    width: 24px;
    height: 24px;
    display: block;
}

.pro_more a i svg {
    width: 100%;
    height: 100%;
}

.pro_more .more_b {
    border: 1px solid #FFF;
    color: var(--white-color);
}

.pro_more .more_bg {
    color: var(--dark-color);
    background: #FFF;
    border: 1px solid #FFF;
}

.pro_more .more_b:hover {
    background: #FFF;
    color: var(--dark-color);
}

.pro_more .more_b:hover i svg path {
    fill: var(--dark-color);
}

@media screen and (min-width:768px) {
    .grid-container .grid-item:hover .thumb .i {
        -webkit-transform:translate(-50%, -50%) scale(1.05)  translateZ(0);
        -ms-transform:translate(-50%, -50%) scale(1.05)  translateZ(0);
        transform:translate(-50%, -50%) scale(1.05) translateZ(0);
    }

}

@media (max-height:900px) {
    .in_product {
        padding-top: 40px;
    }

    .pro_c_left .pro_c_link {
        padding-top: 25px;
    }

    .pro_more {
        padding-top: 40px;
    }
}

@media (max-height:850px) {
    .index_product .my-container {
        padding-bottom: 50px;
    }

    .pro_cont_box {
        width: calc(100% - 250px);
    }
}

@media (max-height:750px) {
    .index_product .my-container {
        padding-bottom: 30px;
    }

    .in_product {
        padding-top: 30px;
    }

    .pro_c_left .pro_c_link>ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .pro_c_left .pro_c_link>ul>li {
        padding: 10px 15px;
    }

    .pro_more {
        padding-top: 20px;
    }

    .industry_list {
        margin-top: 60px;
    }


}

@media (max-height:700px) and (min-width:1025px) {
    .in_product .big_cata .l_ {
        height: 54px;
    }

    .in_product .big_cata .l_ .i {
        margin-top: 16px;
    }

    .pro_c_left .pro_c_link>ul>li:nth-child(4n+1) {
        display: none;
    }

    .pro_cont_box {
        padding-top: 25px;
    }

    .industry_list {
        margin-top: 35px;
    }

    .index_industry .index_title {
        margin-top: 40px;
    }

}

@media (max-width:1279px) {
    .pro_cont_box {
        padding-top: 30px;
        width: calc(100% - 170px);
    }

    .in_product .pro_box .i_name {
        width: 160px;
    }

    .pro_cont_box .pro_c_left {
        padding-right: 30px;
    }

    .pro_c_left .pro_c_link>ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .pro_c_left .pro_c_link>ul>li {
        padding: 10px 15px;
    }

    .pro_more {
        padding-top: 30px;
    }

    .in_product .pro_box .i_name .swiper-slide {
        padding-right: 16px;
        font-size: 18px;
    }

}

@media (max-width:1024px) {
    .in_product .pro_m_box {
        display: block !important;
    }

    .in_product .pro_pc {
        display: none !important;
    }

}

@media (max-width:1024px) {
    .in_product .pro_m_box .i {
        position: absolute;
        left: 0;
        top: 0;
        z-index: -999;
        opacity: 0;
        bottom: 0;
        right: 0;
    }

    .in_product .pro_m_box .i.show {
        position: relative;
        z-index: 2;
        opacity: 1;
        transition: all .3s;
    }

    .index_product .my-container {
        height: auto;
        padding-bottom: 100px;
    }

    .in_product {
        flex: none;
        max-height: inherit;
    }

    .pro_c_left {
        padding-top: 40px;
    }

    .pro_c_left .pro_c_link>ul>li {
        width: 33.33%;
    }

    .pro_c_right {
        padding-top: 25px;
        display: flex;
        justify-content: center;
    }

    .pro_c_right img {
        max-width: 360px;
    }

    .pro_more {
        justify-content: center;
    }

    .in_product .pro_m_box .swiper-pagination {
        bottom: 70px;
    }

    .in_product .pro_m_box .swiper-pagination-bullet {
        width: 16px;
        height: 2px;
        background: rgba(255, 255, 255, 0.50);
        border-radius: 0;
        opacity: 1;
        transition: all .4s linear;
        cursor: pointer;
        border-radius: 0;
    }

    .in_product .pro_m_box .swiper-pagination-bullet-active {
        width: 26px;
        background: var(--white-color);

        opacity: 1;
    }

}

@media (max-width:1024px) {

    .index_product .my-container,
    .index_case .my-container,
    .index_industry .my-container {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .index_industry .industry_bg>.my-container {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (max-width:767px) {
    .in_product .big_cata {
        flex-wrap: wrap;
    }

    .in_product .big_cata .l_ {
        width: 100%;
        justify-content: center;
        height: 56px;
    }

    .in_product .big_cata .l_ .i {
        margin-top: 15px;
        margin-right: 10px;
        margin-left: 10px;
        font-size: 18px;
        font-weight: 700;
    }

    .pro_search {
        display: none;
    }

    .pro_c_left .pro_c_link>ul>li {
        width: 50%;
    }

    .pro_c_left .pro_c_link>ul>li .line {
        padding-left: 10px;
    }

    .pro_c_left .pro_c_link p {
        font-size: 14px;
    }

    .pro_c_right {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .pro_c_right img {
        width: 100%;
        height: auto;
    }

    .pro_more a {
        padding: 12px 15px;
        font-size: 16px;
    }

    .pro_more a:nth-child(2) {
        margin-left: 15px;
    }

    .pro_more a i {
        margin-left: 8px;
        width: 20px;
        height: 20px;
    }
}

/* index new */
.index_new_bg {
    background-color: var(--white-color);
}

.in_new_box {
    padding-top: 120px;
    padding-bottom: 120px;
    width: 100%;
    height: 100vh;
}

.in_new_box .my-container {
    height: 100%;
}

.in_new_box .new-list-box {
    margin-top: 50px;
    height: calc(100% - 150px);
    max-height: 556px;
    display: flex;
}

.in_new_box .new-list-box>div:first-child {
    margin-left: -12px;
    margin-right: -12px;
    /* height: 100%; */
    width: calc(100% + 24px);
    display: flex;
    align-items: stretch;
}

.new_one_pic {
    margin: 0 12px;
    width: calc(33.33% - 24px);
    height: 100%;
}

.new_one_pic a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.new_one_pic .thumb {
    width: 100%;
    height: 100%;
}

.new_one_pic .thumb i,
.new_one_pic .thumb img {
    display: block;
    width: 100%;
    height: 100%;
}

.new_one_pic .thumb img {
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.new_one_pic .mask {
    position: absolute;
    padding: 30px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.new_one_pic .mask::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% + 42px);
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: -1;
}

.new_one_pic .mask .title {
    overflow: hidden;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.new_one_pic .mask .time,
.new_one_pic .mask .location {
    display: flex;
    align-items: center;
    margin-top: 12px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_one_pic .mask .time img,
.new_one_pic .mask .location img {
    margin-right: 8px;
}

.new_one_pic .new_label,
.new_two_mid .new_label {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 9;
}

.new_one_pic a:hover .thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.new_one_pic .new_label h3,
.new_two_mid .new_label h3 {
    padding: 6px 10px;
    background: rgba(62, 58, 57, 0.50);
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.new_two_mid {
    margin: 0 12px;
    display: flex;
    flex-flow: column;
    width: calc(33.33% - 24px);
}

.new_two_mid a {

    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    background-color: #F5F5F5;
}

.new_two_mid .thumb {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.new_two_mid .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.new_two_mid .thumb i img {
    width: 100%;
    height: 100%;
    display: none;
}

.new_two_mid .cont {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.new_two_mid .cont .title {
    overflow: hidden;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    height: 56px;
}

.new_two_mid .cont .time {
    margin-top: 12px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.new_two_mid .cont .des {
    margin-top: 12px;
    overflow: hidden;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.new_two_mid a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.new_two_mid a:hover {
    background-color: #EFEFEF;
}

.new-list-box .new_list_scoll {
    margin: 0 12px;
    padding-bottom: 20px;
    display: flex;
    flex-flow: column;
    width: calc(33.33% - 24px);
    height: 100%;
    background: #F5F5F5;
}

.new_list_scoll .new_s_title {
    padding-top: 12px;
    padding-left: 12px;

}

.new_list_scoll .new_s_title h3 {
    display: inline-flex;
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    background-color: rgba(62, 58, 57, 0.50);
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.new_list_scoll ul {
    margin-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.new_list_scoll ul::-webkit-scrollbar {
    width: 3px;
    height: 2px
}

.new_list_scoll ul::-webkit-scrollbar-button:vertical {
    display: none
}

.new_list_scoll ul::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: transparent;
}

.new_list_scoll ul::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #ccc;
}

.new_list_scoll ul li {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EFF0F3;
}

.new_list_scoll ul li .title {
    margin-bottom: 10px;
    overflow: hidden;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.new_list_scoll ul li .title span {
    background-size: 0 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 93%, var(--dark-color) 0%);
    background-repeat: no-repeat;
    transition: all 0.4s;
}

.new_list_scoll ul li .time {
    color: #666;
    /* font-family: "Microsoft YaHei"; */
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 28px;
}

.new_list_scoll ul li a:hover .title span {
    background-size: 100% 100%;
}

.new_more {
    padding-top: 50px;
}

.new_more .index_more {
    justify-content: center;
}

.new_more .index_more a:nth-child(2) {
    margin-left: 25px;
}

.index_more a {
    display: inline-flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #FFF;
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: background-color .3s;
}

.index_more a i {
    margin-left: 15px;
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/scoll_black.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.index_more a:hover {
    background-color: #E6E6E6;
    border-color: #E6E6E6;
}

@media (min-width: 1024px) and (max-height:750px) {
    .in_new_box .new-list-box {
        margin-top: 30px;
        height: calc(100% - 100px);
    }

    .new_two_mid .cont {
        padding: 20px 30px;
    }

    .new_two_mid .cont .time,
    .new_two_mid .cont .des {
        margin-top: 8px;
        line-height: 25px;
    }

    .new_one_pic .mask .time,
    .new_one_pic .mask .location {
        margin-top: 8px;
    }

    .new_more {
        padding-top: 30px;
    }
}

@media (min-width: 1024px) and (max-height: 700px) {

    .in_new_box {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .in_new_box .new-list-box {
        margin-top: 20px;
        height: calc(100% - 90px);
    }

    .new_two_mid .cont .des {
        display: none;
    }

    .new_list_scoll ul {
        margin-top: 30px;
    }
}

@media (max-width:1024px) {
    .in_new_box {
        padding-top: 50px;
        padding-bottom: 50px;
        height: auto;
    }

    .in_new_box .new-list-box {
        margin-top: 50px;
        height: calc(100% - 150px);
        max-height: 430px;
    }

    .new_two_mid .thumb i img {
        display: none;
    }

}

@media (max-width:767px) {

    .in_new_box .my-container,
    .in_new_box .new-list-box {
        height: auto;
        max-height: inherit;
    }

    .in_new_box .new-list-box>div:first-child {
        flex-wrap: wrap;
    }

    .new_one_pic .mask,
    .new_two_mid .cont {
        padding: 20px;
    }

    .new_one_pic .mask .time,
    .new_one_pic .mask .location {
        margin-top: 6px;
    }

    .new_one_pic {
        width: 100%;
        height: auto;
    }

    .new_two_mid {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .new_two_mid a {
        height: auto;
    }

    .new_two_mid .thumb {
        flex: inherit;
    }

    .new_two_mid .thumb i img {
        display: block;
    }

    .new-list-box .new_list_scoll {
        width: 100%;
        height: auto;
    }

    .new_list_scoll ul {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 30px;
        flex: inherit;
        height: auto;
    }

    .new_list_scoll ul li:nth-child(n + 5) {
        display: none;
    }

    .index_more a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .index_more a:nth-child(2) {
        margin-left: 15px;
    }

    .index_more a i {
        margin-left: 8px;
        width: 20px;
        height: 20px;
    }
}

/* 产品定制弹出 */
/* footer form */

body.ovh {
    overflow: hidden;
}

.pro_form_mask {
    position: fixed;

    left: 0;

    top: 0;

    bottom: 0;

    background-color: rgba(0, 0, 0, 0.3);

    width: 100%;

    height: 100%;

    opacity: 0;

    transition: opacity 0.4s ease-in-out;

    z-index: -1;

}

.pro_form {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    flex-flow: column;
    width: 1374px;
    padding: 40px;
    max-width: 95%;
    max-height: 90vh;
    background-color: var(--white-color);
    overflow: hidden;
    opacity: 0;
    transition: transform 0.67s ease-in-out;
    z-index: -100;
}

.pro_form.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.form_close {
    position: absolute;
    right: 40px;
    top: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form_close img {
    width: 30px;
}

.pro_mess_title {
    color: #000;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    width: 100%;
}

.form_cont {
    padding-top: 24px;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

.item_right {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.item_right .col {
    width: 33.33%;
    padding: 12px;
    float: left;
}

.item_right .col.col_two {
    width: 66.66%;
    padding: 12px;
    float: left;
}

.item_right .colw100 {
    width: 100%;
    padding: 12px;
}

.item_right .col_z>span {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
}

.item_right .col_z>span>em {
    margin-left: 8px;
    color: #D80C18;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.item_right .input-container {
    margin-top: 10px;
    position: relative;
    background: #F7F7F7;
}

.item_right .input-container input {
    outline: none;
    z-index: 1;
    padding: 10px 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;
}

.item_right .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';
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #D80C18;
}

.form_cont .input-container input::-webkit-input-placeholder,
.form_cont textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.form_cont .input-container input::-moz-placeholder,
.form_cont textarea::-moz-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.form_cont .input-container input::-ms-input-placeholder,
.form_cont textarea::-ms-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.item_right .yanz {
    padding-top: 10px;
}

.item_right .message_code img {
    width: 80px;
    height: 56px;
}

.last_button {
    display: flex;
    justify-content: center;
}

.p_submit {
    display: flex;
    height: 54px;
    padding: 0px 100px;
    justify-content: center;
    align-items: center;
    background: var(--red-color);
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    cursor: pointer;
}

.pt10 {
    padding-top: 10px;
}

.radio-group {
    display: flex;
    align-items: center;
    margin-left: -4px;
    margin-right: -4px;
}

.radio-group span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    height: 54px;
    color: var(--main-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.radio-option {
    position: relative !important;
    bottom: inherit !important;
    margin-right: 4px;
    margin-left: 4px;
    width: 20%;
    max-width: 132px;
    cursor: pointer;
    background: #F7F7F7;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option input:checked+span {
    background-color: var(--red-color);
    color: white;
}

@media (max-width: 767px) {
    .pro_form {
        padding: 30px 20px;
    }

    .form_close {
        right: 20px;
        top: 16px;
    }

    .item_right .col,
    .item_right .col.col_two {
        width: 100%;
    }

    .radio-group {
        flex-wrap: wrap;
    }

    .radio-option {
        width: calc(25% - 8px);
    }

    .p_submit {
        padding: 0px 50px;
    }
}

@media (max-width: 480px) {
    .radio-option {
        margin-bottom: 8px;
        width: calc(33.33% - 8px);
    }
}

/* page */
.page_banner {
    position: relative;
    width: 100%;
    height: 700px;
    /* overflow: hidden; */
}

.page_banner .page_thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page_banner .page_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_banner .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    z-index: 2;
}

.page_banner .my-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 100%;
    z-index: 9;
}

.page_banner .page_title {
    color: var(--white-color);
    font-weight: 700;
}

.page_banner .page_text {
    margin-top: 20px;
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    line-height: normal;
}

.content {
    min-height: 50vh;
}

.page_menu {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    z-index: 99;
}

.page_menu>ul>li {
    padding: 10px 0;
}

.page_menu>ul>li>a {
    position: relative;
    padding-left: 48px;
    color: rgba(51, 51, 51, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.page_menu>ul>li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width .4s;
}

.page_menu.white_bg>ul>li>a {
    color: rgba(255, 255, 255, 0.6);
}

.page_menu.white_bg>ul>li a::before {
    background-color: rgba(255, 255, 255, 0.8);
}

.page_menu.white_bg>ul>li.active>a {
    color: rgba(255, 255, 255, 1);

}

.page_menu>ul>li:hover>a,
.page_menu>ul>li.active>a {
    color: var(--main-color);
    ;
}

.page_menu>ul>li:hover a::before,
.page_menu>ul>li.active a::before {
    width: 40px;
}

@media (max-width: 1580px) {
    .page_menu>ul>li>a {
        padding-left: 36px;
    }

    .page_menu>ul>li:hover a::before,
    .page_menu>ul>li.active a::before {
        width: 30px;
    }
}

@media (max-width: 1440px) {
    .page_menu>ul>li>a {
        padding-left: 26px;
    }

    .page_menu>ul>li:hover a::before,
    .page_menu>ul>li.active a::before {
        width: 20px;
    }
}

@media (max-width: 1366px) {
    .page_menu>ul>li>a {
        padding-left: 16px;
    }

    .page_menu>ul>li:hover a::before,
    .page_menu>ul>li.active a::before {
        width: 10px;
    }
}

@media (max-width: 1279px) {
    .page_banner {
        height: 600px;
    }

    .page_menu {
        display: none !important;
    }

}

@media (max-width:991px) {

    .page_banner {
        height: 600px;
    }

}

@media (max-width:767px) {

    .page_banner {
        height: 360px;
    }

    .page_banner .my-container {
        padding-top: 80px;
    }

}

/* about */
.p_t100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.about_box .term_box {
    overflow: hidden;
}

.about_company {
    background-color: var(--white-color);
}

.about_title {
    color: var(--main-color);
    ;
    font-style: normal;
    font-weight: 290;
    line-height: 1.2;
}

.about_company .about_text {
    margin-top: 40px;
    color: #666;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 30px;
}

.about_img {
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.about_img_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 95px 40px 40px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}

.about_img_text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.about_img_text p {
    max-width: 744px;
    color: var(--white-color);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.about_gd {
    background-color: #F6F7F8;
}

/* 股东 */
.shareh_swiper {
    margin-top: 70px;
}

.shareh_swiper .swiper-wrapper {
    align-items: stretch;
}

.shareh_swiper .swiper-slide {
    padding-top: 10px;
    height: auto;
    transition: transform 0.3s ease;
}

.shareh_swiper .white_bg {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 80px 40px;
    flex-direction: column;
    align-items: center;
    background-color: var(--white-color);
}

.shareh_swiper .swiper-slide:hover {
    transform: translateY(-10px);
}

.shareh_swiper .white_bg .icon {
    max-height: 50px;
}

.shareh_swiper .white_bg .icon img {
    max-height: 100%;
}

.shareh_swiper .title {
    margin-top: 20px;
    color: var(--main-color);
    ;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.shareh_swiper .text {
    margin-top: 50px;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

/* 董事长 */
.about_leder {
    padding-top: 100px;
    padding-bottom: 0 !important;
}

.about_leder,
.about_culture {
    background-color: var(--white-color);
}
.about_culture {
    padding-top: 100px;
}
.leder_swiper {
    margin-top: 80px;
}

.about_pagination {
    margin-top: 70px;
    text-align: center;
}

.about_pagination span {
    width: 50px;
    height: 4px;
    background: #D9D9D9;
    border-radius: 0;
    opacity: 1;
    margin: 0 2px;
}

.about_pagination .swiper-pagination-bullet-active {
    background: var(--red-color);
}

.honor_button {
    justify-content: center;
    padding-top: 25px;
}

.about_button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 40px;
    height: 40px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    margin: 0 10px;
}

.leder_swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}

.leder_swiper .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader_cont {
    flex: 1;
    margin-left: 30px;
    display: flex;
    padding: 48px 50px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #F6F7F8;
}

.leader_cont .leader_name {
    padding-bottom: 42px;
    width: 100%;
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-bottom: 1px solid #CCC;
}

.leader_text {
    margin-top: 42px;
    width: 100%;
    padding-right: 10px;
    height: 322px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; 
}

.leader_text p {
    padding: 10px 0;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}
.leader_text p:last-child {
    padding-bottom: 0;
}
/* 文化 */
.about_culture {
    padding-bottom: 100px;
}

.culture_text {
    padding-bottom: 50px;
    color: var(--main-color);
    font-weight: 700;
    line-height: normal;
}

.culture_des {
    margin-top: 20px;
}

.culture_text span {
    font-weight: 290;
}

.culture_box {
    position: relative;
    height: 632px;
}

.culture_box .culture_title {
    position: absolute;
    top: 50px;
    left: 12%;
    color: #FFF;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
    z-index: 9;
}

.culture_box .in_top_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (min-width:768px) {
    .in_top_bg .li {
        display: none;
        width: 100% !important;
        height: 100%;
        opacity: 0;
        transition: opacity .3s;
    }

}

.in_top_bg .culture_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 72.47%);
}

.in_top_bg .swiper-slide-active {
    display: block;
    opacity: 1;
}

.in_top_bg .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.culture_swiper .swiper-slide {
    position: relative;
    width: 140px;
    height: 632px;
    padding: 80px 50px 50px 50px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    z-index: 1;
    overflow: hidden;
}

.culture_swiper .swiper-slide:last-child {
    border: none;
}

.culture_swiper .t {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    color: #FFF;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.2;
}

.culture_swiper .des {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    padding: 0 35px;
    min-width: 290px;
    margin-top: 20px;
    color: #FFF;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    opacity: 0;
  
}

.culture_swiper .act .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.culture_swiper .act {
    width: calc(100% - 980px);
}

.culture_swiper .act .des {
    opacity: 1;
    margin-top: 0;
    transition: all .4s;
}

.mo_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mo_text .t {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #FFF;
    font-size: 20px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    opacity: 0.2;
}

.mo_text .des {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    min-width: 290px;
    margin-top: 20px;
    padding: 0 20px;
    color: #FFF;
    font-size: 20px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

/* 荣誉 */
.about_honor {
    padding-top: 100px;
    background-color: #F6F7F8;
}

.honor_swiper {
    margin-top: 60px;
}

.honor_swiper .swiper-slide ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
}

.honor_swiper .swiper-slide ul li {
    width: 25%;
    padding: 10px;
}

.honor_list .white_bg {
    position: relative;
    display: flex;
    min-height: 240px;
    padding: 50px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

.honor_list .thumb {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    opacity: 0;
    transition: opacity .3s;
}

.honor_list .thumb img {
    max-height: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: all .4s;
}

.honor_list .title {
    color: var(--main-color);
    text-align: center;
    font-style: normal;
    font-weight: 290;
    line-height: 1.8;
}

.honor_list .h_bottom {
    color: #999;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.honor_list .white_bg:hover .thumb {
    opacity: 1;
}

.honor_list .white_bg:hover .thumb img {
    opacity: 1;
    transform: scale(1);

}

/* 项目介绍 */
.about_project {
    padding-bottom: 0 !important;
}
.project_text {
    margin: 0 auto;
    margin-top: 40px;
    max-width: 880px;
    color: #666;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 1.6;
}

.project_pic {
    margin-top: 60px;
}

.project_pic .thumb {
    position: relative;
    overflow: hidden;
}

.project_pic .text_list {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-top: 100px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    z-index: 1;
}

.project_pic .text_list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(31, 46, 41, 0.00) 0%, #1F2E29 100%);
    z-index: -1;
}

.project_pic .text_list ul {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.project_pic .text_list ul li {
    padding: 0 10px;
}

.project_pic .text_list .number {
    display: flex;
    color: var(--white-color);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.project_pic .text_list .number span {
    font-family: 'Roboto';
    line-height: 1;

}

.project_pic .text_list .number em {
    margin-left: 10px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.project_pic .text {
    padding: 60px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 30px;
    background-color: #F6F7F8;
}

.project_pic .text_list .p {
    padding-top: 10px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

/* 发展历程 */
.about_develop {
    padding-top: 100px;
    padding-bottom: 100px;
}

.deve_left .deve_text {
    padding-top: 20px;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.about_develop .deve_right {
    flex: 1;
    max-width: 954px;
    max-height: 372px;
    padding-left: 224px;
    overflow-y: auto;
}

.about_develop .deve_right::-webkit-scrollbar {
    width: 1px;
    height: 2px
}

.about_develop .deve_right::-webkit-scrollbar-button:vertical {
    display: none
}

.about_develop .deve_right::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #CCC;
}

.about_develop .deve_right::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.deve_right .deve_list {
    padding-right: 88px;
}

.deve_right .deve_list .line {
    position: relative;
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.deve_right .deve_list .line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
}

.deve_right .deve_list .line:last-child {
    margin-bottom: 0;
}

.deve_right .deve_list .year {
    width: 82px;
    color: var(--dark-color);
    font-family: 'Roboto';
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.7;
}

.deve_right .deve_list .month {
    flex: 1;
    padding-left: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.deve_right .deve_list .month .p {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
}

.deve_right .deve_list .month .p:last-child {
    margin-bottom: 0;
}

.deve_right .deve_list .month .p::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.deve_right .deve_list .month .thumb {
    position: absolute;
    right: calc(100% + 164px);
    top: 0;
    width: 164px;
    opacity: 0;
    transition: opacity .3s;
}

.deve_right .deve_list .month .thumb img {
    width: 100%;
}

.deve_right .deve_list .p:hover .thumb {
    opacity: 1;
}

@media (max-width: 1680px) {
    .culture_swiper .swiper-slide {
        width: 120px;
        padding: 80px 30px 50px 30px;
    }
    .culture_swiper .act {
        width: calc(100% - 840px);
    }
}

@media (max-width: 1440px) {
    .culture_swiper .swiper-slide {
        width: 100px;
    }
    .culture_swiper .act {
        width: calc(100% - 700px);
    }
    .honor_list .white_bg {
        padding: 40px;
    }
}

@media (max-width: 1365px) {
    .honor_list .white_bg {
        padding: 30px;
    }
}

@media (max-width: 1279px) {
    .culture_swiper .swiper-slide {
        width: 80px;
        padding: 80px 20px 50px 20px;
    }

    .culture_swiper .act {
        width: calc(100% - 560px);
    }

    .leader_cont {
        padding: 40px 40px;
    }

    .honor_list .title {
        line-height: 1.6;
    }

    .project_pic .text_list {
        padding-top: 80px;
        padding-bottom: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width:991px) {
    .p_t100 {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .culture_swiper .swiper-slide {
        width: 60px;
        padding: 80px 20px 50px 20px;
    }

    .culture_swiper .act {
        width: calc(100% - 420px);
    }

    .leder_swiper .thumb {
        width: 50%;
    }

    .leader_text {
        margin-top: 32px;
        height: 332px;
    }

    .honor_list .white_bg {
        padding: 50px 20px;
    }

    .honor_list .title {
        line-height: 1.4;
        font-size: 18px;
    }

    .project_pic .text_list {
        padding-top: 60px;
        padding-bottom: 20px;
    }

    .project_pic .text_list ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .project_pic .text_list ul li {
        width: 33.33%;
        padding: 15px 20px;
    }

    .project_pic .text {
        padding: 60px 40px;
    }

    .deve_left {
        width: 30%;
    }

    .about_develop .deve_right {
        padding-left: 160px;
    }

    .deve_right .deve_list {
        padding-right: 40px;
    }

    .deve_right .deve_list .year {
        width: 72px;
    }

    .deve_right .deve_list .month .thumb {
        right: calc(100% + 104px);
        width: 140px;
    }

}

@media (max-width: 767px) {
    .p_t100 {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .about_img_text {
        position: relative;
        padding: 30px 0 0 0;
    }

    .about_img {
        margin-top: 40px;
    }

    .about_img_text p {
        color: #666;
        font-size: 18px;
    }

    .about_img_text::before {
        display: none;
    }

    .shareh_swiper {
        margin-top: 40px;
    }

    .shareh_swiper .white_bg {
        padding: 40px 30px;
    }

    .leder_swiper {
        margin-top: 40px;
    }

    .leder_swiper .swiper-slide {
        flex-wrap: wrap;
    }

    .leder_swiper .thumb {
        width: 100%;
    }
    .shareh_swiper .title {
        margin-top: 16px;
    }
    .shareh_swiper .text {
        margin-top: 40px;
    }
    .leader_cont {
        padding: 40px 20px;
        margin-left: 0;
    }
    .leader_cont .leader_name {
        padding-bottom: 25px;
    }
    .about_culture{
        padding-top: 70px;
    }
    .culture_box .in_top_bg {
        position: relative;
    }

    .culture_box {
        height: 460px;
    }

    .in_bottom {
        display: none;
    }

    .about_pagination {
        margin-top: 30px;
    }

    .about_pagination span {
        width: 16px;
        height: 3px;
    }

    .project_pic {
        margin-top: 40px;
    }

    .project_text {
        font-size: 16px;
    }

    .project_pic .text {
        padding: 30px 25px;
    }

    .project_pic .text_list {
        position: relative;
        padding: 20px 0 0 0;
    }

    .project_pic .text_list::before {
        display: none;
    }

    .project_pic .text_list ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .project_pic .text_list ul li {
        width: 50%;
        padding: 15px 10px;
    }

    .project_pic .text_list .number {
        color: var(--main-color);
    }

    .project_pic .text_list .number em {
        color: var(--main-color);
    }

    .project_pic .text_list .p {
        color: #666;
        max-width: 120px;
    }

    .about_develop {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .about_develop .deve_loop {
        flex-wrap: wrap;
    }

    .deve_left .deve_text {
        padding-top: 10px;
    }

    .deve_left {
        width: 100%;
    }

    .deve_right .deve_list {
        padding-right: 30px;
    }

    .deve_right .deve_list .line {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .about_develop .deve_right {
        width: 100%;
        flex: inherit;
        padding-left: 0;
        margin-top: 40px;
        max-height: 386px;
    }

    .deve_right .deve_list .year {
        width: 65px;
    }

    .deve_right .deve_list .month .thumb {
        margin-top: 15px;
        position: relative;
        right: inherit;
        width: 164px;
        opacity: 1;
    }
    
    .about_develop .deve_right {
        -webkit-overflow-scrolling: touch; 
    }
    .honor_m_swiper {
        margin-top: 40px;
    }
}

/* product */
.product_banner {
    position: relative;
    padding-top: 240px;
    padding-bottom: 50px;
    overflow: hidden;
}

.product_banner .page_thumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product_banner .page_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_banner .mask {
    position: absolute;
    right: 0;
    top: 0;
    width: 63%;
    height: 100%;
    background: linear-gradient(231deg, #1A2025 0%, rgba(26, 32, 37, 0.00) 59.57%);
    z-index: 2;
}

.product_banner .my-container {
    position: relative;
    z-index: 9;
}

.product_ban_left {
    width: 50%;
    margin-right: 50px;
    max-width: 588px;
}

.product_ban_right {
    order: 2;
    display: flex;
    align-items: center;
    width: 50%;
    padding-left: 50px;
}

.product_ban_left {
    flex: 1;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding-top: 64px;
    padding-bottom: 50px;
}

.product_ban_left .title {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.product_ban_left .text {
    padding-top: 30px;
}

.product_ban_left .text p {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 30px;
}

.product_ban_left .pro_more {
    padding-top: 30px;
}

.product_ban_right img,
.product_ban_right video {
    max-width: 641px;
    width: 100%;
}

.product_menu {
    border-bottom: 2px solid #EEE;
    background: var(--white-color);
}

.product_menu .location {
    display: flex;
    align-items: center;
}

.product_menu .location a {
    position: relative;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.product_menu .location a:first-child {
    padding-right: 10px;
    margin-right: 10px;
    color: #AAA;
}

.product_menu .location a:nth-child(1):before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #EEE;
}

.product_menu .location a:nth-child(2) {
    color: var(--red-color);
}

.product_menu_list ul {
    display: flex;
    align-items: center;
    margin-left: -30px;
    margin-right: -30px;
}

.product_menu_list ul li {
    padding: 0 30px;
}

.product_menu_list ul li a {
    display: block;
    position: relative;
    padding: 40px 0;
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.product_menu_list ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
}

.product_menu_list ul li a:hover::before,
.product_menu_list ul li.active a::before {
    width: 100%;
}

.pro_filter {
    padding-top: 50px;
}

.pro_select_box {
    position: relative;
    display: flex;
    margin-right: 15px;
    width: 250px;
    padding: 15px 30px;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    background: #F5F5F5;
    height: 54px;
    z-index: 9;
}

.pro_select_box .span {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}

.pro_select_box .span input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 40px);
    height: 100%;
    padding: 0 30px;
    background: transparent;
    font-size: 16px;
    color: var(--main-color);
    font-weight: 400;
    cursor: pointer;
}

.pro_select_box .span .icon {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url(../images/pro_s_jt.svg);
}

.pro_select_box .span input::-webkit-input-placeholder {
    color: var(--main-color);
    font-size: 16px;
}

.pro_select_box .span input:-moz-placeholder {
    color: var(--main-color);
    font-size: 16px;
}

.pro_select_box .span input::-moz-placeholder {
    color: var(--main-color);
    font-size: 16px;
}

.pro_select_box .span input:-ms-input-placeholder {
    color: var(--main-color);
    font-size: 16px;
}

.pro_submit {
    display: flex;
    height: 54px;
    padding: 20px 30px;
    align-items: center;
    border-radius: 4px;
    background: #F5F5F5;
    color: var(--main-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    cursor: pointer;
}

.pro_submit i {
    margin-left: 15px;
    width: 24px;
    height: 24px;
    background-image: url(../images/pro_search_icon.svg);
}

.pro_select_box .drop_down_ {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    border-radius: 0 0px 4px 4px;
    background: #F5F5F5;
    padding: 10px 30px;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.pro_select_box .drop_down_ p {
    color: var(--main-color);
    font-size: 16px;
    margin: 10px 0;
    line-height: 26px;
    cursor: pointer;
}

.pro_select_box.bg {
    border-radius: 4px 4px 0 0;
}

.comparison_total {
    position: relative;
    margin-right: 15px;
    align-items: center;
    padding: 17px 25px;
    height: 54px;
    border-radius: 4px;
    background: var(--red-color);
    cursor: pointer;
}

.comparison_total .com_total {
    position: absolute;
    bottom: calc(100% - 10px);
    right: -10px;
    padding: 1px 2px;
    min-width: 21px;
    border-radius: 50px;
    justify-content: center;
    background: var(--main-color);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: none;
}

.comparison_total span {
    display: flex;
    align-items: center;
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;

}

.comparison_total span i {
    margin-right: 10px;
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/pro_view_icon.svg);
    background-repeat: no-repeat;
}

.pro_comparison {
    padding-top: 40px;
    padding-bottom: 90px;
}

.pro_comparison .table {
    padding-bottom: 8px;
    width: 100%;
    overflow-x: auto;
}

.pro_comparison .table::-webkit-scrollbar {
    width: 3px;
    height: 2px
}

.pro_comparison .table::-webkit-scrollbar-button:vertical {
    display: none
}

.pro_comparison .table::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #CCC;
}

.pro_comparison .table::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.pro_comparison .table table {
    border-spacing: 0;
    text-align: center;
}

.pro_comparison .table table thead {
    border-bottom: 1px solid #3E3A39;
    background: #F5F5F5;
}

.pro_comparison .table table thead th {
    word-break: keep-all;
    color: var(--main-color);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    padding: 30px 10px;
    min-width: 130px;
}

.pro_comparison .table table thead th:first-child {
    padding-left: 30px;
}

.pro_comparison .table table thead th:last-child {
    padding-right: 30px;
}

.pro_comparison .thumb {
    max-height: 55px;
    max-width: 110px;
}

.pro_comparison .thumb img {
    max-height: 100%;
}

.checkbox_item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox_item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    position: relative;
}

.checkbox_item input[type="checkbox"]:checked {
    background-color: var(--red-color);
    border-color: var(--red-color);
}

.checkbox_item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pro_comparison .table table tbody tr {
    background: #FFF;
}

.pro_comparison .table table tbody tr td {
    padding: 10px 10px;
    border-bottom: 1px solid #EEE;
    color: #3E3A39;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    white-space: nowrap;
}

.pro_comparison .table table tbody tr td:first-child {
    padding-left: 30px;
}

.pro_comparison .table table tbody tr td:last-child {
    padding-right: 30px;
}

.pro_comparison .table .red {
    color: var(--red-color);
}

.pro_eject_table {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    flex-flow: column;
    width: 1440px;
    padding: 30px;
    padding-bottom: 50px;
    max-width: 95%;
    max-height: 91vh;
    background-color: var(--white-color);
    overflow: hidden;
    opacity: 0;
    transition: transform 0.67s ease-in-out;
    z-index: -100;
}

.pro_eject_table.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.pro_com_title {
    padding-top: 40px;
    padding-bottom: 70px;
    color: var(--main-color);
    text-align: center;
    font-weight: 290;
    line-height: normal;
}

.comparison-container {
    width: 100%;
    overflow: hidden;
    flex: 1;
    overflow-y: auto;
}

.table-scroll-wrapper {
    width: 100%;
    padding-bottom: 8px;
    overflow: hidden;
    overflow-x: auto;
}

.table-scroll-wrapper::-webkit-scrollbar {
    width: 4px;
    height: 2px
}

.table-scroll-wrapper::-webkit-scrollbar-button:vertical {
    display: none
}

.table-scroll-wrapper::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: #CCC;
}

.table-scroll-wrapper::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.product_db {
    color: var(--main-color);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.comparison-table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}

.comparison-table th {
    position: relative;
    background-color: #F5F5F5;
    padding: 25px 15px;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.comparison-table th::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #DDD;
}

.comparison-table th:last-child::before {
    display: none;
}

.comparison-table td {
    position: relative;
    padding: 25px 15px;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
}

.comparison-table td::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #DDD;
}

.comparison-table td::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #DDD;
}

.comparison-table td:last-child:before {
    display: none;
}

.product-header {
    color: var(--main-color);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
}

.product-header .text {
    padding-top: 10px;
    color: var(--main-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.comparison-table .thumb {
    margin: 0 auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-table .thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.comparison-table .param-name {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    background-color: var(--white-color);
    border: none;
}

.comparison-table .param-name::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #DDD;
}

.comparison-table .param-name::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #DDD;
}

@media (max-width: 1279px) {
    .product_banner {
        padding-top: 180px;
    }

    .product_ban_left {
        padding-top: 30px;
        padding-bottom: 100px;
    }

    .pro_com_title {
        padding-top: 20px;
        padding-bottom: 50px;
    }

}

@media (max-width: 991px) {
    .product_banner {
        padding-top: 130px;
    }

    .product_ban_left {
        padding-top: 30px;
        margin-right: 30px;
        padding-bottom: 40px;
    }

    .product_ban_right {
        padding-left: 0;
    }

    .product_menu_list ul li a {
        padding: 30px 0;
    }

    .pro_filter {
        flex-wrap: wrap;
    }

    .filter_left {
        width: 100%;
    }

    .comparison_total {
        margin-top: 30px;
    }

}

@media (max-width: 767px) {
    .product_banner .mask {
        width: 100%;
    }
    .product_ban_right {
        /* order: inherit; */
        width: 100%;
    }

    .product_ban_left {
        width: 100%;
        padding-top: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .product_top_box {
        flex-wrap: wrap;
    }

    .product_menu>.my-container {
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .product_menu .location {
        padding-bottom: 20px;
        width: 100%;
    }

    .product_menu_list {
        width: 100%;
    }

    .product_menu_list ul li a {
        padding: 20px 0;
    }

    .product_menu_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .product_menu_list ul li {
        padding: 0 15px;
    }

    .filter_left {
        flex-wrap: wrap;
    }
    .pro_com_title {
        padding-top: 25px;
        padding-bottom: 30px;
    }
    .pro_select_box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .pro_select_box.bg {
        z-index: 99;
    }
    .product-header .text {
        font-size: 18px;
    }
    .pro_submit_box {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .pro_submit_box form {
        width: 100%;
    }

    .pro_submit_box .pro_submit {
        width: 100%;
        justify-content: space-between;
    }

    .comparison_total {
        margin-right: 0;
        width:100%;
        justify-content: center;
    }

    .pro_eject_table {
        padding: 30px 20px;
    }

    .comparison-table th {
        padding: 15px 10px;
    }
    .comparison-table td {
        padding: 15px 16px;
    }
}

/* 人才发展 */
.talent_text {
    padding-top: 20px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
}

.talent_list {
    max-width: 1275px;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.talent_list ul {
    display: flex;

}

.talent_list ul li {
    position: relative;
    width: 25%;
    padding-bottom: 25%;
}

.talent_list .border {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: absolute;
    padding: 50px;
    left: 0;
    top: 0;
    width: calc(100% + 50px);
    height: calc(100% + 50px);
    background-image: url(../images/job_z_cicle01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s;
}

.talent_list ul li:last-child .border {
    background-image: url(../images/job_z_cicle02.svg);
}

.talent_list .border .title {
    color: var(--main-color);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.talent_list .border .text {
    margin-top: 20px;
    max-width: 190px;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
    min-height: 78px;
}

.talent_list ul li:hover .border {
    background-image: url(../images/job_z_cicleh01.svg);
}

.talent_list ul li:last-child:hover .border {
    background-image: url(../images/job_z_cicleh02.svg);
}

.temployee_box {
    background-color: #F6F7F8;
}

.temlo_list {
    padding-top: 70px;
    margin-bottom: -10px;
}

.temlo_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.temlo_list ul li {
    padding: 10px;
}

.temlo_list ul li:nth-child(-n+4) {
    width: 25%;
}

.temlo_list ul li:nth-child(n+5):nth-child(-n+8) {
    width: 33.33%;
}

.temlo_list .thumb {
    position: relative;
    display: flex;
    overflow: hidden;
}

.temlo_list .thumb img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.temlo_list .mask {
    position: absolute;
    padding: 60px 40px 30px 40px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
}

.temlo_list .mask .number {
    font-size: 24px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.temlo_list .mask h3 {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.temlo_list .mask p {
    margin-top: 10px;
    min-height: 40px;
    max-width: 366px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.temlo_list .thumb:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* 工作环境 */
.job_env_list {
    margin-top: 80px;
    position: relative;
}

.job_env_list::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: var(--white-color);
}

.job_env_list .tabs {
    display: flex;
    justify-content: space-between;
}

.job_env_list .tab-btns {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 40%;
    padding-right: 20px;
    background-color: var(--white-color);
    z-index: 9;
}

.job_env_list .tab-content {
    width: 60%;
}

.job_env_list .tab-btns .tab-btn {
    position: relative;
    padding-right: 70px;
    width: 100%;
    height: 100px;
    background-color: transparent;
    text-align: left;
    cursor: pointer;
}

.job_env_list .tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    height: 1px;
    background-color: #DDD;
}

.job_env_list .tab-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width .4s;
}

.job_env_list .tab-btn .title {
    margin-top: 10px;
    color: #999;
    font-size: 24px;
    font-weight: 290;
}

.job_env_list .tab-btn .text {
    display: none;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
    font-weight: 290;
    line-height: normal;
}

.job_env_list .tab-btn.active {
    padding-right: 0;
}

.job_env_list .tab-btn.active::after,
.job_env_list .tab-btn:hover::after {
    width: 100%;
}

.job_env_list .tab-btn:hover .title,
.job_env_list .tab-btn.active .title {
    color: var(--main-color);
}

.job_env_list .tab-btn.active .text {
    display: block;
}

.tab-content .tab {
    display: none;
    width: 100%;
    height: 100%;
}

.tab-content .tab.active {
    display: block;
}

.job_env_list .swiper-container {
    overflow: visible;
    height: 100%;
}

.job_env_list .swiper-slide i {
    display: block;
    width: 100%;
    height: 100%;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {

    .job_env_list .job_ev_button {
        display: none !important;
    }
}

@media (max-width: 1366px) {
    .job_env_list .tab-btns {
        width: 360px;
    }

    .job_env_list .tab-content {
        width: calc(100% - 360px);
    }

}

@media (max-width: 991px) {
    .job_env_list .tab-btns {
        width: 300px;
    }

    .job_env_list .tab-btns .tab-btn {
        padding-right: 40px;
    }

    .job_env_list .tab-content {
        width: calc(100% - 300px);
    }


}

@media (max-width: 767px) {
    .job_env_list {
        margin-top: 40px;
    }

    .job_env_list .tabs {
        flex-wrap: wrap;
    }

    .job_env_list .tab-btns {
        width: 100%;
        padding-right: 0;
    }

    .job_env_list .tab-btns .tab-btn {
        padding-right: 40px;
    }

    .job_env_list .tab-content {
        margin-top: 30px;
        margin-bottom: 20px;
        width: 100%;
    }

    .job_env_list .tab-btns .tab-btn {
        height: 80px;
    }

    .job_env_list .tab-btn::before {
        width: calc(100% - 20px);
    }

    .job_env_list .tab-btn .title {
        font-size: 20px;
    }

    .job_env_list .tab-btn .text {
        margin-top: 6px;
    }

    .job_env_list .about_pagination {
        margin-top: 20px;
    }

}

/*加入力华  */

.join_box {
    position: relative;
    padding-top: 160px;
    padding-bottom: 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

.join_box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(119deg, rgba(13, 38, 40, 0.80) 0%, rgba(13, 38, 40, 0.00) 64.71%), linear-gradient(120deg, rgba(0, 0, 0, 0.80) -38.05%, rgba(0, 0, 0, 0.00) 66.49%);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.join_box .about_title {
    padding-top: 18px;
    padding-bottom: 18px;
    color: var(--white-color);
    font-weight: 700;
}

.join_box .join_text {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

@media (max-width: 1440px) {
    .temlo_list .thumb img {
        min-height: 280px;
    }
}

@media (max-width: 1366px) {
    .temlo_list .thumb img {
        min-height: 250px;
    }

    .temlo_list .mask {
        padding: 50px 30px 30px 30px;
    }

}

@media (max-width: 1280px) {
    .temlo_list .thumb img {
        min-height: 250px;
    }

    .temlo_list .mask {
        padding: 40px 30px 30px 30px;
    }

}

@media (max-width: 1279px) {
    .temlo_list .mask {
        padding: 40px 20px 30px 20px;
    }

}

@media (max-width: 1024px) {

    .join_box .pro_more {
        justify-content: left;
    }

}

@media (max-width: 991px) {
    .talent_text {
        max-width: 650px;
        padding-top: 10px;
    }

    .talent_list {
        overflow: hidden;
        overflow-x: auto;
    }

    .talent_list ul {
        display: inline-flex;

    }

    .talent_list ul li {
        width: 250px;
        padding-bottom: 250px;
    }

    .temlo_list .thumb img {
        min-height: 220px;
    }

    .temlo_list .mask {
        padding: 20px 20px 20px 20px;
    }

    .temlo_list .mask p {
        margin-top: 5px;
        min-height: 60px;
    }
}

@media (max-width: 767px) {

    .talent_list {
        padding-top: 50px;
    }

    .talent_list ul li {
        width: 220px;
        padding-bottom: 220px;
    }

    .temlo_list {
        padding-top: 40px;
    }

    .temlo_list ul li:nth-child(-n+4) {
        width: 100%;
    }

    .temlo_list ul li:nth-child(n+5):nth-child(-n+8) {
        width: 100%;
    }

    .temlo_list .mask {
        padding: 30px 20px 25px 20px;
    }

    .temlo_list .mask p {
        margin-top: 10px;
        min-height: inherit;
    }

    .temlo_list .thumb img {
        min-height: inherit;
    }

    .join_box {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .join_box::before {
        width: 100%;
    }
}

@media (max-width: 480px) {}

/* job list */
.job_list {
    padding-top: 68px;
    padding-bottom: 12px;
}

.job_list ul {
    margin-left: -38px;
    margin-right: -38px;
    display: flex;
    flex-wrap: wrap;

}

.job_list ul li {
    padding: 38px;
    width: 33.33%;
}

.job_list .thumb {
    position: relative;
    overflow: hidden;
}

.job_list .thumb:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(135deg, #00152E 0%, rgba(0, 21, 46, 0.00) 52.54%);
    z-index: 1;
}

.job_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}
.job_list .bg:hover .thumb i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.job_list .status {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    z-index: 1;
}

.status span {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.status .to_star {
    color: var(--white-color);
    border: 1px solid #FFF;
}

.status .to_uder {
    background-color: var(--red-color);
    color: var(--white-color);
}

.status .to_end {
    color: #999;
    background-color: #EEE;
}

.job_list .title {
    margin-top: 20px;
    height: 60px;
    color: var(--main-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.job_list .job_list_bottom {
    padding-top: 20px;
    color: #999;
    font-size: 16px;
    font-weight: 290;
}

.job_list_bottom .time {
    padding-right: 39px;
}

.job_list_bottom .time,
.job_list_bottom .locaiton {
    padding-left: 30px;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 20px;
}

.job_list_bottom .time {
    background-image: url(../images/job_time.svg);
}

.job_list_bottom .locaiton {
    background-image: url(../images/job_location.svg);
}

.job_list_bg {
    padding-top: 130px;
    padding-bottom: 145px;
    margin-bottom: 50px;
    padding-left: 60px;
    padding-right: 60px;
    position: relative;
    /* z-index: 1; */
}

.job_list_bg::before {
    content: '';
    position: absolute;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
}

.school_box::before {
    right: 0;
    background: linear-gradient(270deg, rgba(79, 86, 25, 0.30) 62.8%, rgba(79, 86, 25, 0.00) 100%);
}

.social_box::before {
    left: 0;
    width: 60%;
    background: linear-gradient(90deg, rgba(103, 122, 100, 0.30) 62.8%, rgba(108, 166, 170, 0.00) 100%);
}

.job_list_bg .job_backg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.job_list_bg .job_backg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job_list_bg .job_list_text .s_t {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_list_bg .job_list_text .big_t {
    padding-top: 10px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.school_box {
    display: flex;
    justify-content: flex-end;
}

.school_box .job_list_text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.job_search {
    padding-top: 30px;
}

.job_search .pro_select_box {
    margin-right: 10px;
    width: 360px;
}

.job_search .span input {
    padding: 0 20px;
}

.job_search .span .icon {
    right: 20px;
}
.job_search .pro_select_box .drop_down_ {
    padding: 0 20px;
}
.job_search .drop_down_ {
    max-height: 192px;
}
.social_box .job_search .pro_select_box {
    width: 220px;
}

.job_submit_box .job_submit {
    display: flex;
    height: 54px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--red-color);
    color: var(--white-color);
    font-family: "Microsoft YaHei UI";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
}

.job_link {
    padding-top: 30px;
}

.job_link a {
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_link a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #FFF;
}

.job_link a:last-child {
    padding-right: 0;
    margin-right: 0;
}

.job_link a:last-child:before {
    display: none;
}

.job_search .span input::-webkit-input-placeholder {
    color: #999;
}

.job_search .span input:-moz-placeholder {
    color: #999;
}

.job_search .span input::-moz-placeholder {
    color: #999;
}

.job_search .span input:-ms-input-placeholder {
    color: #999;
}

@media (max-width: 1279px) {
    .job_list {
        padding-bottom: 40px;
    }

    .job_list ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .job_list ul li {
        padding: 20px;
    }


}

@media (max-width:991px) {
    .job_list {
        padding-bottom: 40px;
    }

    .job_list ul {
        margin-left: -20px;
        margin-right: -20px;
    }

    .job_list ul li {
        padding: 20px;
    }

    .job_list .job_list_bottom {
        flex-wrap: wrap;
    }

    .job_list_bottom .time,
    .job_list_bottom .locaiton {
        width: 100%;
        padding-right: 0;
    }

    .job_list_bottom .locaiton {
        margin-top: 10px;
    }

}

@media (max-width:767px) {
    .job_list {
        padding-top: 48px;
    }
    .job_list ul li {
        width: 100%;
    }

    .job_list_bg {
        padding-top: 80px;
        padding-bottom: 100px;
        margin-bottom: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .school_box .job_list_text {
        width: 100%;
    }

    .job_search {
        flex-wrap: wrap;
        width: 100%;
    }

    .job_search .pro_select_box {
        width: 100%;
        margin-right: 0;
    }

    .job_submit_box {
        width: 100%;
    }

    .social_box .job_search .pro_select_box,
    .job_submit_box form,
    .job_submit_box .job_submit {
        width: 100%;
    }

    .job_list_bg::before {
        width: 100%;
    }

    .job_link a {
        padding-right: 10px;
        margin-right: 10px;
    }
}

/* 招聘列表 */
.job_list_ban .my-container {
    padding-top: 260px;
    padding-bottom: 70px;
    justify-content: space-between;
}

.job_list_search .pro_select_box {
    background: rgba(255, 255, 255, 0.30);
    width: 300px;
    -webkit-backdrop-filter: blur(2px);
    -moz-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.job_list_search .pro_select_box .span .icon {
    background-image: url(../images/white_x_jt.svg);
}

.job_list_search .pro_select_box .drop_down_ {
    background: rgba(255, 255, 255, 1);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.job_list_search .pro_submit {
    background-color: var(--white-color);
}

.job_list_search .pro_select_box .span input {
    color: var(--white-color);
}

.job_list_search .span input::placeholder {
    color: var(--white-color);
}

.job_list_search .span input::-webkit-input-placeholder {
    color: var(--white-color);
}

.job_list_search .span input:-moz-placeholder {
    color: var(--white-color);
}

.job_list_search .span input::-moz-placeholder {
    color: var(--white-color);
}

.job_list_search .span input:-ms-input-placeholder {
    color: var(--white-color);
}
.job_list_search .job_search_input input {
    color: var(--white-color);
    font-size: 16px;
}
.job_search_input {
    margin-right: 15px;
    display: flex;
    width: 300px;
    height: 54px;
    padding: 15px 30px;
    align-items: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(2px);
}

.job_search_input input {
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
}

.job_search_input input::placeholder {
    color: var(--white-color);
    font-size: 16px;
}

.job_list_search .pro_select_box.bg {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(2px);
}
.job_list_search .bg .span input {
    color: var(--main-color);
}
.job_list_search .pro_select_box.bg .span .icon {
    background-image: url(../images/pro_s_jt.svg);
}

.job_list_search .bg .span input::-webkit-input-placeholder {
    color: var(--main-color);
}
.job_list_search .bg .span input:-moz-placeholder {
    color: var(--main-color);
}
.job_list_search .bg .span input::-moz-placeholder {
    color: var(--main-color);
}
.job_list_search .bg .span input:-ms-input-placeholder {
    color: var(--main-color);
}

.job_list_box {
    padding-top: 40px;
    padding-bottom: 30px;
}

.job_list_box ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.job_list_box ul li {
    padding: 10px;
    width: 50%;
}

.job_list_box .job_bg {
    position: relative;
    display: flex;
    padding: 40px 40px 30px 40px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    background: #F6F7F8;
}
.job_list_box .job_bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--red-color);
    transition: height .4s;
}
.job_list_box .job_list_loop {
    padding-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.job_list_box .left {
    flex: 1;
    padding-right: 10px;
}

.job_list_box .job_list_loop span {
    padding-right: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    color: #999;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_list_box .job_list_loop span img {
    margin-right: 5px;
}

.job_list_box .right {
    display: flex;
}

.job_list_box .right span {
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    color: #666;
    font-size: 16px;
    font-weight: 400;
    transition: background-color .3s;
}
.job_list_box .job_bg:hover::before{
    height: 100%;
}
.job_list_box .job_bg:hover .right span {
    background-color: var(--red-color);
    color: var(--white-color);
}

@media (max-width: 1279px) {
    .job_list_box .job_bg {
        padding: 40px 30px 30px 30px;
    }

    .job_list_box .job_list_loop span {
        padding-right: 10px;
    }

}

@media (max-width:1200px) {
    .job_list_box .job_list_loop {
        flex-flow: column;
        align-items: flex-start;
    }

}

@media (max-width: 991px) {
    .job_list_ban .my-container {
        padding-top: 200px;
        padding-bottom: 70px;
    }

    .job_list_search .pro_select_box,
    .job_search_input {
        width: 250px;
    }

    .job_list_box .job_bg {
        flex-wrap: wrap;
    }

    .job_list_box .left {
        flex: inherit;
        padding-right: 0;
        width: 100%;
    }

    .job_list_box .right {
        padding-top: 20px;
    }

}

@media (max-width: 767px) {
    .job_list_ban {
        height: auto;
    }

    .job_list_ban .my-container {
        padding-top: 150px;
        padding-bottom: 30px;
    }

    .job_list_search {
        padding-top: 30px;
        flex-flow: column;
        width: 100%;
    }

    .job_list_search .pro_select_box,
    .job_search_input {
        width: 100%;
        margin-right: 0;
    }

    .job_search_input {
        margin-bottom: 15px;
    }

    .job_list_box .job_bg {
        padding: 30px 30px 30px 30px;
    }

    .job_list_box ul li {
        width: 100%;
    }
}

/* 招聘详情 */
.job_detail_box {
    position: relative;
    margin-top: -80px;
    padding: 50px 50px 0px 50px;
    background: #FFF;
    z-index: 9;
}

.job_d_left {}

.job_d_left .title_t {
    color: var(--main-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.job_d_left .job_list_loop {
    padding-top: 30px;
    flex-flow: column;
}

.job_d_left .job_list_loop span {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_d_left .job_list_loop span img {
    margin-right: 5px;
    width: 20px;
}

.job_d_left .job_yp_more {
    padding-top: 40px;
}

.job_d_left .job_yp_more a {
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--red-color);
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    transition: all .3s ease;
}

.job_d_right {
    flex: 1;
    margin-left: 80px;
    padding-bottom: 80px;
    max-width: 850px;
}

.job_d_right .title {
    padding: 10px 0px 20px 0px;
    margin-bottom: 40px;
    border-bottom: 1px solid #DDD;
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_d_right .job_xq_cont .text {
    padding-bottom: 50px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.job_d_right .job_contact {
    color: #666;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.job_d_right .job_contact>div {
    padding-bottom: 30px;
}

.job_d_right .job_contact>div:last-child {
    padding-bottom: 0;
}

.job_eject {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    flex-flow: column;
    width: 1234px;
    padding: 50px;
    max-width: 95%;
    max-height: 91vh;
    background-color: var(--white-color);
    overflow: hidden;
    opacity: 0;
    transition: transform 0.67s ease-in-out;
    z-index: -100;
}

.job_eject .form_close {
    right: 50px;
    top: 50px;
}

.job_eject.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.job_form_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_form_title i {
    margin-right: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #F5F5F5;
}

.job_form_text {
    padding-top: 18px;
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_form_text span {
    margin-left: 4px;
    color: var(--red-color);
}

.job_form_item .item_right {
    margin-left: -15px;
    margin-right: -15px;
}

.job_form_item .item_right .col {
    width: 25%;
    padding: 15px;
}

.input_select_box .drop_down_ {
    position: absolute;
    right: 0;
    top: 60px;
    padding: 24px;
    width: 100%;
    border: 1px solid #DDD;
    background: #FFF;
    z-index: 9;
}

.input_select_box .drop_down_ p {
    padding-bottom: 8px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.job_form_cont {
    margin-top: 50px;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
}

.job_form_cont .item_right .col_z>span,
.job_form_cont .item_right .col_z>span em {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.job_form_cont .item_right .input-container input {
    height: 50px;

}

.job_form_cont .item_right .input-container {
    background: var(--white-color);
    border: 1px solid #DDD;
}

.job_form_cont .input-container input::-webkit-input-placeholder,
.job_form_cont textarea::-webkit-input-placeholder {
    color: #CCC;
}

.job_form_cont .input-container input::-moz-placeholder,
.job_form_cont textarea::-moz-placeholder {
    color: #CCC;
}

.job_form_cont .input-container input::-ms-input-placeholder {
    color: #CCC;
}

/* file upload */
.print-inquiry {
    padding-top: 15px;
}

.print-inquiry .upload-file {
    margin-top: 50px;
    width: 100%;
    max-width: 167px;
    height: 50px;
    display: inline-flex;
    padding: 16px 20px 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(102deg, rgba(52, 186, 228, 0.00) 47.92%, rgba(52, 186, 228, 0.40) 92.5%), #0249D9;
    border: 1px solid transparent;
    transition: background .3s;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.print-inquiry .upload-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print-inquiry .upload-img img {
    cursor: pointer;
    max-width: 100%;
    height: auto;
}

.print-inquiry #img-upload {
    display: none;
}

.print-inquiry .upload-success {
    width: 100%;
    min-height: 54px;
    border: 1px solid #DDD;
    padding: 15px 20px;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    pointer-events: none;
}

.print-inquiry .upload-success.aoo {
    pointer-events: inherit;
}

.print-inquiry .upload-success span {
    font-size: 16px;
    color: var(--dark-color);
    margin-left: 2px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.print-inquiry .upload-success .img-ok {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.print-inquiry .upload-success .img-del {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

.print-inquiry .form_upload_f {
    margin-top: 30px;
    position: relative;
    display: flex;
    padding: 12px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--red-color);
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

.print-inquiry .form_upload_f .webuploader-pick {
    padding: 16px 48px;
    width: 100%;
}

.form_describe {
    width: calc(100% - 30px);
    color: #CCC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_form_bz .title {
    padding-top: 15px;
    color: #CCC;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.job_form_bz .item_right {
    margin: 0;
}

.job_form_bz .input-container {
    margin-top: 20px;
    width: 100%;
}

.job_form_last .last_button {
    padding-top: 60px;
    justify-content: space-between;
    width: 100%;
}

.job_form_last .index_more {
    display: flex;
    height: 50px;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    width: calc(50% - 10px);
    border-radius: 4px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_form_last .border_grey {
    color: #999;
    background: #F5F5F5;
}

.job_form_last .border_red {
    background-color: var(--red-color);
    color: var(--white-color);
}

.aoo .form_describe {
    display: none;
}

@media (max-width:991px) {
    .job_eject {
        padding: 50px 30px;
    }

    .job_eject .form_close {
        right: 30px;
        top: 30px;
    }

    .job_form_item .item_right .col {
        width: 50%;
    }

    .print-inquiry .form_upload_f {
        width: auto;
    }

}

@media (max-width:767px) {

    .job_detail_box {
        margin-top: 0;
        padding: 40px 0 0px 0;
        flex-wrap: wrap;
    }

    .job_d_right {
        flex: inherit;
        padding-top: 30px;
        margin-left: 0;
        padding-bottom: 50px;
        max-width: 100%;
    }

    .job_d_right .title {
        padding: 10px 0px 10px 0px;
        margin-bottom: 30px;
    }

    .job_d_right .job_xq_cont .text {
        padding-bottom: 30px;
        line-height: 1.8;
    }

    .job_eject {
        padding: 40px 20px;
    }

    .job_eject .form_close {
        right: 20px;
        top: 20px;
    }

    .job_form_item .item_right .col {
        width: 100%;
    }

    .job_form_cont {
        margin-top: 30px;
    }

    .print-inquiry .upload-img {
        flex-wrap: wrap;
    }

    .print-inquiry .upload-success {
        margin-right: 0;
        flex: inherit;
        width: 100%;
    }

    .print-inquiry .form_upload_f {
        margin-top: 20px;
        width: 160px;
        height: 50px;
    }

    .print-inquiry .form_upload_f .webuploader-pick {
        padding: 16px 16px;
    }


}

/* paged */
.paged {
  
}

.paged .pagination {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged ul li {
    margin: 0 4px;
}

.paged span,
.paged a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid transparent;
    color: rgba(51, 51, 51, 0.50);
}

.page-item:last-child .page-link {
    background-color: transparent !important;
    border: none !important;
}

.paged .active a,
.paged .active span,
.paged a:hover,
.paged span:hover{
    border-radius: 4px;
    background: #F5F5F5;
    color: rgba(51, 51, 51, 0.50);
}


.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: 50px;
    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 {
        width: 40px;
        height: 40px;
    }
}

/* 解决方案 */
.solution_one {
    background-color: #F6F7F8;
    overflow: hidden;
}

.solution-scrollbar {
    width: 100%;
    height: 1px;
    background-color: #CCC;
}

.solution-scrollbar .swiper-scrollbar-drag {
    background-color: var(--main-color);
}

.solution_swiper {
    margin-top: 80px;
    margin-bottom: 80px;
    overflow: visible;
}

/* .solution_swiper::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width:100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.70) 100%);
    z-index: 8;
} */
/* .solution_swiper::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    width:100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.70) 0%, rgba(255, 255, 255, 0.70) 100%);
    z-index: 8;
} */
.solution_swiper .swiper-slide-prev,
.solution_swiper .swiper-slide-duplicate-prev {
    opacity: 0.5;
}

.solution_button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -70px;
    width: 72px;
    height: 72px;
    background-color: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
}

.solution-prev {
    left: -112px;
}

.solution-next {
    right: -112px;
}

.solution_swiper .thumb {
    overflow: hidden;
}

.solution_swiper .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.solution_swiper .text {
    padding-top: 50px;
}

.solution_swiper .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
}

.solution_swiper .des {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.solution_list {
    padding-top: 20px;
    padding-bottom: 100px;
    max-width: 1380px;
    margin: 0 auto;
}

.solution_list ul li {
    top: 100px;
    position: sticky;
    margin-top: 80px;
    background-color: var(--white-color);
    overflow: hidden;
}

.solution_list ul li a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.solution_list .thumb {
    width: 50%;
    overflow: hidden;
}

.solution_list .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.solution_list .so_list_r {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    width: 50%;
}

.solution_list ul li:nth-child(odd) .thumb {
    order: 2;
}

.solution_list ul li:nth-child(odd) .so_list_r {
    padding-right: 40px;
}

.solution_list ul li:nth-child(even) .so_list_r {
    padding-left: 40px;
}

.so_list_r .title {
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
}

.so_list_r .text {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.so_list_r .more span {
    position: relative;
    display: flex;
    padding: 12px 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #999;
    background: var(--white-color);
    color: #999;
    font-size: 16px;
    font-weight: 400;
    z-index: 1;
}
.so_list_r .more span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #E6E6E6;
transition: width 0.3s ease-in-out;
        z-index: -1;
}
.so_list_r .more {
    padding-top: 60px;
}

.so_list_r .more span i {
    margin-left: 15px;
    width: 24px;
    height: 24px;
    background-image: url(../images/grey_jt.svg);
    background-repeat: no-repeat;
}

.solution_list ul li a:hover .thumb img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.solution_list ul li a:hover .more span {
    color: var(--black-color);
    border-color:#E6E6E6;
}
.solution_list  ul li a:hover .more span::before {
    width: 100%;
}
.solution_list ul li a:hover .more span i {
    background-image: url(../images/scoll_black.svg);
}

@media (max-width: 1366px) {
    .solution_button {
        width: 62px;
        height: 62px;
    }

    .solution-prev {
        left: -80px;
    }

    .solution-next {
        right: -80px;
    }

}

@media (max-width: 991px) {
    .solution_swiper {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .solution_button {
        margin-top: -80px;
        width: 52px;
        height: 52px;
    }

    .solution_swiper .text {
        padding-top: 40px;
    }

    .solution-prev {
        left: -10px;
    }

    .solution-next {
        right: -10px;
    }

    .solution_list .so_list_r {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .so_list_r .more {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .solution_button {
        margin-top: -80px;
        width: 46px;
        height: 46px;
    }

    .solution_swiper .text {
        padding-top: 30px;
    }

    .solution_list {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .solution_list ul li {
        margin-top: 45px;
        position: relative;
        top: 0;
    }

    .solution_list ul li a {
        display: block;
    }

    .solution_list .thumb,
    .solution_list .so_list_r {
        width: 100%;
    }

    .solution_list .so_list_r {
        padding-top: 30px;
        padding-bottom: 0;
    }

    .solution_swiper .title,
    .solution_list .so_list_r .font24 {
        font-size: 22px;
    }

    .solution_list ul li:nth-child(odd) .thumb {
        order: inherit;
    }

    .solution_list ul li:nth-child(odd) .so_list_r {
        padding-right: 0;
    }

    .solution_list ul li:nth-child(even) .so_list_r {
        padding-left: 0;
    }

}

/* 方案详情 */
.re_case_detail {
    padding-top: 100px;
}

.re_case_detail .re_case_title {
    padding-bottom: 30px;
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
    border-bottom: 1px solid #DDD;
}

.re_case_detail .re_case_cont {
    padding-top: 60px;
    color: #666;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.re_case_detail .re_case_cont p {
    padding-bottom: 20px;
}

.re_case_detail .re_case_cont p:last-child {
    padding-bottom: 0;
}

.re_case_box {
    padding-top: 30px;
    padding-bottom: 80px;
}

.re_case_box .re_case_item {
    padding: 30px 0px;
    border-bottom: 1px solid #DDD;
}

.re_case_item .about_title {
    font-weight: 400;
}

.case_button {
    display: flex;
    align-items: center;
}

.case_button>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 12px;
    border: 2px solid rgba(153, 153, 153, 0.5);
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
}

.case_button>div:hover {
    border: 2px solid rgba(153, 153, 153, 1);
}

.case_button>div:hover svg path {
    fill: rgba(153, 153, 153, 1);
}

.case_button>div:nth-child(2) {
    margin-left: 20px;
}

.case_swiper {
    margin-top: 45px;
}

.case_list .title {
    margin-bottom: 25px;
    color: var(--main-color);
    height: 60px;
    font-weight: 400;
    line-height: 30px;
}

.case_list .thumb {
    overflow: hidden;
}

.case_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.case_list .line {
    position: relative;
    margin-top: 30px;
    height: 1px;
}

.case_list .line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--red-color);
    transition: width .4s;
}

.case_list a:hover .title {
    color: var(--red-color);
}

.case_list a:hover .line::before {
    width: 100%;
}

.case_list a:hover .thumb i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.case_more {
    padding-top: 50px;
    justify-content: center;
}

.case_more .pro_more {
    padding-top: 0;
}

.case_more .pro_more a {
    border-radius: 4px;
    border: 1px solid #666;
    background: #FFF;
}

@media (max-width: 991px) {
    .re_case_detail {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .re_case_detail {
        padding-top: 50px;
    }

    .re_case_detail .re_case_cont {
        padding-top: 40px;
    }

    .re_case_box {
        padding-bottom: 50px;
    }

    .case_button>div {
        width: 46px;
        height: 46px;
    }


}

/* 研发制造 */
.reserch_dev_list {
    padding-top: 55px;
    margin-bottom: -25px;
}

.reserch_dev_list ul {
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.reserch_dev_list ul li {
    padding: 25px;
    width: 33.33%;
}

.reserch_dev_list .bg {
    display: flex;
    padding: 50px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #F6F7F8;
    transition: all .3s;
}

.reserch_dev_list .bg:hover {
    transform: translateY(-8px);
}

.reserch_dev_list .re_dev_num {
    display: flex;
    align-items: flex-end;

    color: var(--main-color);
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.reserch_dev_list .re_dev_num em {
    margin-left: 10px;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.reserch_dev_list .text {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    text-align: center;
}

.reserch_dev_list .re_dev_num .re_year {
    font-size: 20px;
    font-family: "Microsoft YaHei UI";
}

.reserch_tech,
.reserch_quality {
    background-color: #F6F7F8;
}

.reserch_loop {
    position: relative;
    padding-bottom: 114px;
}

.techpic_swiper {
    margin-top: 80px;
    overflow: visible;
}

.techpic_swiper .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: var(--white-color);
    z-index: 2;
}

.techpic_swiper .swiper-slide.swiper-slide-active::before {
    display: none;
}

.techpic_swiper .thumb {
    overflow: hidden;
}

.techpic_swiper .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
}

.techpic_swiper .top_title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 56px;
    z-index: 1;
}

.techpic_swiper .top_title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.techpic_swiper .top_title p {
    /* max-width: 890px; */
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 30px;
}

.reserch_tech_bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-width: 740px;
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
}

.reserch_tech_bottom::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #CCC;
}

.techtitle_swiper .swiper-slide {
    width: auto;
}

.techtitle_swiper .title {
    position: relative;
    padding: 20px 30px;
    color: #999;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
}

.techtitle_swiper .title:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: width .4s;
}

.techtitle_swiper .swiper-slide-thumb-active .title {
    color: var(--main-color);
}

.techtitle_swiper .swiper-slide-thumb-active .title:after {
    width: 100%;
}

/* 研发理念 */
.reserch_con_list {
    padding-top: 70px;
    margin-bottom: -10px;
}

.reserch_con_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.reserch_con_list ul li {
    padding: 10px;
    width: 33.33%;
}

.reserch_con_list .bg {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 340px;
    background: #F6F7F8;
    transition: padding .3s;
}

.reserch_con_list .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.reserch_con_list .title span {
    display: block;
}

.reserch_con_list .title span:first-child {
    padding-bottom: 10px;
}

.reserch_con_list .title span:nth-child(2) {
    min-height: 58px;
}

.reserch_con_list .text {
    margin-top: 45px;
    min-height: 102px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
    transition: all .3s;
}

.reserch_con_list .bg:hover {
    padding: 60px 50px;
}

.reserch_con_list .bg:hover .text {
    margin-top: 25px;
}

/* 质量管理 */
.quality_pic {
    margin-top: 80px;
    position: sticky;
    top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: var(--white-color);
}

.quality_pic .thumb {
    position: relative;
    width: calc(50% - 10px);
    overflow: hidden;
}

/* .quality_pic .thumb::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    transition: width .8s ease-in-out;
    transition-delay: .1s;
} */
/* .quality_pic .thumb.animated::before{
    width: 0;
} */
.quality_pic .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality_cont {
    flex: 1;
    padding: 100px;
}

.quality_cont .title {
    padding-bottom: 20px;
    border-bottom: 1px solid #DDD;
}

.quality_cont .title .s_t {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
}

.quality_cont .title .big_t {
    margin-top: 10px;
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.quality_cont .text {
    margin-top: 40px;
}

.quality_cont .text p {
    position: relative;
    margin-bottom: 20px;
    padding-left: 21px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.quality_cont .text p:last-child {
    margin-bottom: 0;
}

.quality_cont .text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 7px;
    background-image: url(../images/qua_cicle.svg);
    background-size: 100%;
}

.quality_tab {
    padding-top: 60px;
}

.quality_tab ul {
    display: flex;
    justify-content: center;
}

.quality_tab ul li {
    position: relative;
    min-width: var(--tab-width);
}

.quality_tab ul li::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.30);
}

.quality_tab ul li a {
    position: relative;
    display: block;
    padding-left: 13px;
    padding-right: 13px;
    padding-bottom: 30px;
    color: var(--dark-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
    text-align: center;
    opacity: 0.5;
}

.quality_tab ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--dark-color);
}

.quality_tab ul li.active a {
    opacity: 1;
}

.quality_tab ul li.active a::before {
    width: 100%;
}

.quality_tabcont {
    padding-top: 50px;
}

.quality_tabcont .pub-t1 {
    display: none;
}

.quality_tabcont .pub-t1.d-show {
    display: block;
}

.quality_tabcont .white_bg {
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--white-color);
}

.quality_tabcont .white_bg .loop {
    position: relative;
    padding-left: 20px;
}

.quality_tabcont .white_bg .loop::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #CCC;
}

/* 定义关键帧动画 */

.quality_tabcont .white_bg .loop::after {
    content: "";
    display: block;
    position: absolute;
    height: 30px;
    width: 2px;
    top: 0;
    left: 0;
    background-color: var(--dark-color);
    transition: height .8s;
    -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

.quality_tabcont .white_bg .loop .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.quality_tabcont .white_bg .loop .text {
    padding-top: 25px;
}

.quality_tabcont .white_bg .loop .text p {
    padding-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}

.quality_tabcont .white_bg .loop .text p:last-child {
    padding-bottom: 0;
}

.quality_tabcont .white_bg .loop:hover::after {
    height: 100%;
}

@media (max-width: 1366px) {
    .quality_cont {
        padding: 80px;
    }
}

@media (max-width: 1279px) {
    .reserch_dev_list ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .reserch_dev_list ul li {
        padding: 15px;
    }

    .reserch_con_list .bg {
        padding: 40px 30px;
    }

    .reserch_con_list .bg:hover {
        padding: 50px 30px;
    }

    .quality_cont {
        padding: 60px;
    }

    .quality_tabcont .white_bg {
        padding: 60px 80px;
    }
}

@media (max-width:1200px) {
    .quality_cont {
        padding: 40px 45px;
    }

    .quality_tabcont .white_bg {
        padding: 60px 60px;
    }
}

@media (max-width: 991px) {
    .reserch_dev_list ul li {
        width: 50%;
    }

    .techtitle_swiper .title {
        padding: 20px 20px;
    }

    .techpic_swiper .top_title {
        padding: 40px 36px;
    }

    .reserch_con_list ul li {
        width: 50%;
    }

    .quality_cont {
        padding: 40px 30px;
    }

    .quality_cont .text {
        margin-top: 30px;
    }

    .quality_cont .text p {
        margin-bottom: 16px;
    }

    .quality_tab ul li a {
        font-size: 22px;
    }

    .quality_tabcont .white_bg {
        flex-wrap: wrap;
        align-items: stretch;
        padding: 60px 40px;
    }

    .quality_tabcont .white_bg .loop {
        width: 50%;
        margin: 15px 0;
    }


}

@media (max-width: 767px) {
    .reserch_dev_list .bg {
        padding: 30px 10px;
    }

    .reserch_dev_list ul {
        margin-left: -5px;
        margin-right: -5px;
    }

    .reserch_dev_list ul li {
        padding: 5px;
        /* width: 100%; */
    }

    .reserch_dev_list .re_dev_num span {
        font-size: 26px;
    }

    .reserch_dev_list .re_dev_num em {
        font-size: 22px;
        margin-left: 4px;
    }

    .reserch_dev_list .re_dev_num .re_year {
        font-size: 16px;
    }

    .reserch_dev_list {
        padding-top: 40px;
        margin-bottom: 0;
    }

    .reserch_tech_top {
        padding-left: 15px;
        padding-right: 15px;
    }

    .techpic_swiper {
        margin-top: 40px;
    }

    .techpic_swiper .swiper-slide {
        opacity: 0.6;
    }

    .techpic_swiper .swiper-slide-active {
        opacity: 1;
    }

    .reserch_loop {
        padding-bottom: 0;
    }

    .reserch_tech_bottom {
        position: relative;
        width: calc(100% - 20px);
    }

    .techpic_swiper .top_title {
        padding: 30px 20px;
    }

    .techpic_swiper .top_title {
        position: relative;
    }

    .techpic_swiper .top_title::before {
        display: none;
    }

    .techpic_swiper .top_title p {
        color: #666;
    }

    .reserch_tech_bottom {
        padding-top: 30px;
    }

    .techtitle_swiper .title {
        padding: 20px 10px;
    }

    .reserch_con_list {
        padding-top: 40px;
        margin-bottom: 0;
    }

    .reserch_con_list ul li {
        width: 100%;
    }

    .reserch_con_list .title {
        font-size: 22px;
        height: auto !important;
    }

    .reserch_con_list .title span:nth-child(2) {
        min-height: inherit;
    }

    .reserch_con_list .text {
        margin-top: 20px;
        height: auto !important;
    }

    .quality_pic {
        position: relative;
        top: inherit;
        display: block;
        margin-top: 40px;
    }

    .quality_pic .thumb {
        width: 100%;
    }

    .quality_tab ul li a {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 20px;
    }

    .quality_tabcont .white_bg {
        padding: 30px 20px;
    }

    .quality_tabcont .white_bg .loop {
        width: 100%;
        margin: 25px 0;
    }
}

@media (max-width: 359px) {

    .reserch_con_list .title,
    .quality_tab ul li a {
        font-size: 20px;
    }

    .reserch_dev_list .text {
        font-size: 14px;
    }
}

/* new */
.new_position {
    padding: 50px;
    background-color: #F5F5F5;
}

.new_swiper {}

.new_swiper .new_p_button {
    position: absolute;
    padding: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid #CCC;
    cursor: pointer;
    z-index: 9;
}

.new_swiper .new_p_left {
    left: 0;
}

.new_swiper .new_p_right {
    left: 86px;
}

.new_swiper .new_p_button:hover {
    border-color: var(--main-color);
}

.new_swiper .new_p_button:hover svg path {
    stroke: var(--main-color);
}

.new_swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    background-color: #F5F5F5;
}

.new_swiper .new_po_cont {
    flex: 1;
    padding-right: 80px;
    padding-top: 60px;
    padding-bottom: 160px;
}

.new_swiper .thumb {
    order: 2;
    width: 45%;
    overflow: hidden;
}

.new_swiper .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}
.new_swiper .thumb i img {
    width: 100%;
}
.new_swiper a:hover .thumb i:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.new_swiper .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: 1.5;
}

.new_po_cont .text {
    margin-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.new_po_cont .new_label {
    padding-top: 50px;
}

.new_label {
    display: flex;
    align-items: center;
    color: #999;
    font-family: 'Roboto';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.new_po_cont .new_label .time {
    display: flex;
    align-items: center;
}

.new_label .time {
    padding-right: 40px;
}

.new_label>div img {
    margin-right: 10px;
    width: 20px;
}

.new_z_title {
    padding-top: 60px;
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: 1.4;
}

.new_box {
    padding-bottom: 70px;
}

.new_search {
    padding-top: 50px;
}

.new_search .pro_select_box {
    padding: 15px 16px;
    margin-right: 24px;
    width: 342px;
}

.new_search .pro_select_box .span input {
    padding: 0 16px;
}

.new_search .pro_select_box .span .icon {
    right: 16px;
}
.new_search .pro_select_box .drop_down_ {
    padding: 0 16px;
    max-height: 195px;
}
.new_s_box {
    flex: 1;
}

.new_s_box {
    height: 54px;
    padding: 14px 16px;
    border-radius: 4px;
    background: #F5F5F5;
}

.new_s_box .new_s_text {
    flex: 1;
    background-color: transparent;
    height: 26px;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    line-height: 26px;
    color: var(--main-color);
}

.new_s_box .new_s_submit {
    width: 24px;
    height: 24px;
    background-color: transparent;
    background-image: url(../images/pro_search_icon.svg);
    cursor: pointer;
}

.new_s_box .new_s_text::placeholder {
    color: rgba(101, 113, 136, 0.50);
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_list {
    padding-bottom: 30px;
}

.new_list ul li {
    position: relative;
    padding: 50px 0;
}

.new_list ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EEE;
}

.new_list .new_item {
    display: flex;
    justify-content: space-between;
}

.new_list .thumb {
    width: 348px;
    overflow: hidden;
}

.new_list .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.new_list .new_item_cont {
    flex: 1;
    padding-top: 36px;
    padding-bottom: 36px;
    padding-left: 50px;
}

.new_list .new_item_cont .title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 290;
    line-height: normal;
    transition: all .3s;
}

.new_list .new_item_cont .text {
    margin-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    height: 52px;
    line-height: 26px;
}

.new_list .new_item_cont .new_label {
    padding-top: 66px;
}

.new_list .new_item:hover .new_item_cont .title {
    font-weight: 400;
}

.new_list .new_item:hover .thumb i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 1280px) {
    .new_swiper .new_po_cont {
        padding-right: 60px;
        padding-top: 50px;
        padding-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .new_position {
        padding: 40px;
    }

    .new_swiper .new_po_cont {
        padding-right: 40px;
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .new_swiper .new_p_button {
        width: 56px;
        height: 56px;
    }

    .new_swiper .new_p_right {
        left: 76px;
    }

    .new_list .thumb {
        width: 300px;
    }

    .new_list .new_item_cont {
        padding-top: 26px;
        padding-bottom: 26px;
        padding-left: 30px;
    }

    .new_list .new_item_cont .new_label {
        padding-top: 46px;
    }
}

@media (max-width: 767px) {
    .new_box {
        padding-bottom: 40px;
    }

    .new_position {
        padding: 30px 20px;
    }

    .new_swiper .swiper-slide {
        flex-wrap: wrap;
    }

    .new_swiper .thumb {
        order: inherit;
        width: 100%;
    }

    .new_swiper .new_po_cont {
        flex: inherit;
        padding-right: 0;
        padding-top: 20px;
        padding-bottom: 80px;
        width: 100%;
    }

    .new_swiper .new_p_button {
        left: 50%;
        transform: translateX(-50%);
        width: 46px;
        height: 46px;
    }

    .new_swiper .new_p_left {
        margin-left: -30px;
    }

    .new_swiper .new_p_right {
        margin-left: 30px;
    }

    .new_po_cont .new_label {
        padding-top: 30px;
    }

    .new_label .time {
        padding-right: 20px;
    }

    .new_z_title {
        padding-top: 50px;
    }

    .new_search {
        padding-top: 40px;
        flex-wrap: wrap;
    }

    .new_search .pro_select_box {
        margin-right: 0;
        width: 100%;
    }

    .new_list .new_item {
        flex-wrap: wrap;
    }

    .new_list ul li {
        padding: 30px 0;
    }

    .new_list .thumb {
        width: 100%;
    }

    .new_list .new_item_cont {
        padding-top: 26px;
        padding-bottom: 0;
        padding-left: 0;
        width: 100%;
    }

    .new_list .new_item_cont .new_label {
        padding-top: 30px;
    }

}

/* 文章详情 */
.article_n {
    padding-top: 100px;
    padding-bottom: 80px;
}

.article_n .article_left {
    float: left;
    width: calc(100% - 432px);
    padding-right: 56px;
    margin-right: 56px;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.article_n .article_right {
    float: left;
    width: 376px;
    position: sticky;
    top: 50px;
    z-index: 9;
}

.article_n .article_right .s_t {
    padding-bottom: 24px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
}

.article_left .article_title {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.article_left .article_title .title {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
}

.article_left .article_title .mid {
    padding-top: 24px;
}

.article_left .article_title .mid .left {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_left .article_title .mid .left img {
    margin-right: 8px;
}

.article_left .article_title .mid .left .line {
    margin-left: 19px;
    margin-right: 19px;
    width: 1px;
    height: 10px;

    background-color: rgba(0, 0, 0, 0.10);
}

.article_left .article_title .right .share_button i {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
}

.share_button .i {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
}

.share_button .i:last-child {
    margin-right: 0;
}

.share_button .bigger {
    background-image: url(../images/big_jia.svg);
}

.share_button .smaller {
    background-image: url(../images/big_jian.svg);
}

.share_button .share_btn {
    background-image: url(../images/new_xq_share.svg);
}

.share_button .i:hover {
    background-color: #EAEAEA;
    opacity: 1;
}

.share_button .bigger:hover {
    background-image: url(../images/big_jia_red.svg);
}

.share_button .smaller:hover {
    background-image: url(../images/big_jian_red.svg);
}

.share_button .share_btn:hover {
    background-image: url(../images/new_xq_share_red.svg);
}

.article_text {
    padding-top: 32px;
}
.article_left .article_text p {
    padding-bottom: 30px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
}
.article_left .article_text p:last-child {
    padding-bottom: 30px;
}
.article_left .article_text p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}
.article_right .thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.article_right .thumb i {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.article_right .thumb .article_r_text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.article_right .thumb .article_r_text .time span {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Roboto';
    font-size: 16px;
    padding-left: 26px;
    background-image: url(../images/new_xq_r_time.svg);
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
}

.article_right .thumb .article_r_text .t {
    margin-top: 8px;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 290;
    line-height: 32px;
}

.article_right .thumb a:hover i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.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);
    transition: all.3s;
}

.article_right .ul .time span {
    color: #666;
    font-family: 'Roboto';
    font-size: 16px;
    padding-left: 26px;
    background-image: url(../images/new_xq_r_time2.svg);
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.article_right .ul .t {
    margin-top: 8px;
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight:290;
    line-height: 32px;
    height: 64px;
}

.article_right .ul a:hover .t {
    color: var(--main-color);
}
.article_right .ul li a:hover {
    border-color: rgba(0, 0, 0, 0.30);
}
.article_right .up_ {
    padding-top: 32px;
}

.article_right .up_ a {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: 26px;
}

.article_right .up_ {
    font-weight: 290;
}
.article_right .up_ .next {
    margin-bottom: 0;
}
.article_right .up_ .t {
    flex: 1;
    color: #666;
    font-size: 16px;
    font-weight: 290;
}

.article_right .up_ a:hover .t {
    color: var(--main-color);
}

.article_right .up_back {
    padding-top: 32px;
}
.article_right .up_back a {
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}
.article_right .up_back a span {
    background-image: url(../images/back_icon_w.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 19px 18px;
    padding-left: 31px;
}

@media (max-width:1365px) {
    .article_n .article_left {
        width: calc(100% - 356px);
        padding-right: 56px;
        margin-right: 56px;
    }

    .article_n .article_right {
        width: 300px;
    }

}

@media (max-width:1280px) {
    .article_n .article_left {
        width: calc(100% - 340px);
        padding-right: 40px;
        margin-right: 40px;
    }

    .article_n .article_right {
        width: 300px;
    }

}

@media (max-width:1200px) {
    .article_n .article_left {
        width: calc(100% - 310px);
        padding-right: 40px;
        margin-right: 40px;
    }

    .article_n .article_right {
        width: 270px;
    }

}

@media (max-width:991px) {
    .pro_xq_back {
        display: none !important;
    }

    .article_cont .white_bg {
        padding: 50px 30px;
    }

    .article_n .article_left {
        width: calc(100% - 230px);
        padding-right: 30px;
        margin-right: 30px;
    }

    .article_n .article_right {
        width: 200px;
    }

    .article_left .article_title .mid .left .line {
        margin-left: 10px;
        margin-right: 10px;
    }

}

@media (max-width:767px) {
    .new_bottom {
        padding-top: 50px;
    }

    .article_cont {
        padding-top: 110px;
        padding-bottom: 50px;
    }

    .article_cont .white_bg {
        padding: 40px 20px 30px 20px;
    }

    .article_n .article_left {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    .article_n .article_right {
        width: 100%;
        position: relative;
        top: 0;
    }

    .article_n {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .article_left .article_title .mid {
        padding-top: 16px;
        flex-wrap: wrap;
    }

    .article_left .article_title .mid .left {
        width: 100%;
        padding-bottom: 15px;
    }

    .article_left .article_title {
        padding-bottom: 16px;
    }

    .article_right .ul .t {
        font-size: 16px;
        line-height: 26px;
        height: auto;
    }

    .fen {
        font-size: 20px;
    }

    .article_right .thumb .article_r_text .t {
        line-height: 26px;
    }
}

/* 分享 */

.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(--main-color);
    font-family: "Roboto";
    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;
}

/* 展会活动 */
.exhibition_bg {
    background-color: #F5F5F5;
}
.exhibit_list {
    padding-top: 90px;
    padding-bottom: 20px;
}
.exhibit_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.exhibit_list ul li {
    padding: 10px;
    width: 50%;
}
.exhibit_list .exhibit_item {
    display: flex;
    flex-direction: column;
    padding: 50px;
    height: 100%;
    background-color: var(--white-color);
}
.exhibit_item .thumb {
    overflow: hidden;
}
.exhibit_item .thumb i  {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    -webkit-transition: transform .4s;
}

.exhibit_item:hover .thumb i {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.exhibit_item .infor_cont {
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin-top: 30px;
}
.infor_cont .address_d {
    margin-top: 10px;
    color: #666;
    font-size: 20px;
    font-style: normal;
    font-weight: 290;
    line-height: 1.5;
}
.infor_cont .title {
    color: var(--main-color);
font-style: normal;
font-weight: 400;
line-height: normal;
}
.infor_cont .bottom {
    padding-top: 50px;
}
.infor_cont .bottom .time,
.infor_cont .bottom .address  {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}
.infor_cont .bottom .left img{
    width: 20px;
    margin-right: 10px;
}
.infor_cont .bottom .address {
    margin-top: 10px;
}
.infor_cont .exhibit_status span{
    display: flex;
padding: 10px 20px;
justify-content: center;
align-items: center;
font-size: 16px;
font-style: normal;
font-weight: 290;
}
.exhibit_status .to_star {
    border: 1px solid var(--main-color);
    color: var(--main-color);
}
.exhibit_status .to_uder {
    border: 1px solid var(--red-color);
    color: var(--red-color);
}
.exhibit_status .to_end {
    color: #999;
    background-color: #EEE;
}
.exhibition_bg  {
    padding-bottom: 70px;
}
.exhibition_bg .paged .active a,
.exhibition_bg .paged .active span,
.exhibition_bg .paged a:hover,
.exhibition_bg .paged span:hover{
    border-color: var(--main-color);
    color: var(--main-color);
}
@media (max-width:1279px) {
    .exhibit_list .exhibit_item {
        padding: 40px;
    }
}
@media (max-width: 991px) {
    .exhibition_bg {
        padding-bottom: 60px;
    }
    .exhibit_list {
        padding-top: 70px;
    }
    .exhibit_list .exhibit_item {
        padding: 30px;
    }
    .infor_cont .address_d{
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .exhibition_bg {
        padding-bottom: 40px;
    }
    .exhibit_list {
        padding-top: 40px;
    }
    .exhibit_list ul li {
        width: 100%;
    }
    .exhibit_list .exhibit_item {
        padding: 30px 20px;
    }
    .exhibit_item .infor_cont {
        margin-top: 20px;
    }
    .infor_cont .title{
        font-size: 20px;
    }
    .infor_cont .address_d{
        font-size: 16px;
    }
    .infor_cont .bottom {
        padding-top: 30px;
        flex-wrap: wrap;
    }
    .infor_cont .bottom .left {
        width: 100%;
        padding-bottom: 20px;
    }
}
/* contact */
.contact_top {
    position: relative;
    padding-top: 100px;
    padding-bottom: 125px;
    overflow: hidden;
}
.contact_top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(267deg, rgba(240, 243, 250, 0.00) 39.71%, #F0F3FA 43.1%);
}
.contact_top .contact_top_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact_top .contact_top_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_top .my-container{
    position: relative;
    z-index: 9;
}
.contact_top .contact_left{
    width: 50%;
    max-width: 710px;
}
.contact_list ul li {
    padding: 40px 0;
    border-bottom: 1px solid #DDD;
}
.contact_list .icon {
    width: 36px;
}
.contact_list .text {
    flex: 1;
    padding-left: 30px;
    text-align: right;
}
.contact_list .text .s_t {
    color: #999;
font-size: 16px;
font-style: normal;
font-weight: 290;
line-height: normal;
}
.contact_list .text .big_t {
    margin-top: 5px;
    color: var(--main-color);
font-size: 24px;
font-style: normal;
font-weight: 290;
line-height: normal;
}
.contact_right {
    flex: 1;
    display:flex;
    justify-content: center;
    position: relative;
}
.contact_right .locaiton{
    padding-top: 50px;
    display:flex;
    flex-flow: column;
   align-items: center;
}
.contact_right .locaiton .icon {
    max-width: 90px;
}
.contact_right .locaiton .border {
    padding-top: 15px;
    display: flex;
}
.contact_right .locaiton .border a {
    padding: 20px;
    display:flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
background: rgba(255, 255, 255, 0.50);
backdrop-filter: blur(2px);
}
.contact_right .locaiton .border .title{
    color: var(--main-color);
font-style: normal;
font-weight: 700;
line-height: normal;
}
.contact_right .locaiton .border span {
    margin-top: 10px;
    display:flex;
    align-items: center;
    justify-content: center;
    color: var(--red-color);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.contact_right .locaiton .border span img {
    margin-left: 10px;
}
.contact_message{
    padding-top: 90px;
    padding-bottom: 65px;
}
.mess_text{
    padding-top: 20px;
    color: #999;
font-size: 16px;
font-style: normal;
font-weight: 290;
line-height: normal;
}
.message_form {
    padding-top: 70px;
}
.message_form .item_box {
    margin-left: -40px;
    margin-right: -40px;
    display: flex;
    flex-wrap: wrap;
}
.item_box .col-2{
    width: 50%;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
}
.item_box .colw100 {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 60px;
}
.item_box .col_z span {
    color: var(--main-color);
font-size: 18px;
font-style: normal;
font-weight: 290;
line-height: 30px;
}
.item_box .col_z span em {
    margin-left: 8px;
    font-style: normal;
}
.item_box .input-container {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #E7EBEE;
}
.item_box .input-container input {
    outline: none;
    z-index: 1;
   
    position: relative;
    background: none;
    width: 100%;
    height: 28px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
    text-align: left;
}
.item_box .input-container textarea {
    outline: none;
    z-index: 1;
    padding: 12px 0;
    position: relative;
    background: none;
    width: 100%;
    height: 76px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei', ' Open Sans', 'PingFang SC';
    text-align: left;
    resize: none;
}
.message_form .input-container input::placeholder,
.message_form textarea::placeholder {
    color: #CCC;
    font-size: 16px;
    font-family: "Microsoft YaHei";
font-style: normal;
font-weight: 290;
line-height: 28px;
}
.message_form .yanz{
    justify-content: space-between;
}
.message_form .yanz .input-container {
flex: 1;
}
.message_form .text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color:var(--red-color);
}
.item_box .last_button {
    padding-bottom: 0;
    justify-content:center;
}
.item_box .last_button button {
    display: flex;
padding: 20px 60px;
justify-content: center;
align-items: center;
margin-left: 10px;
margin-right: 10px;
border-radius: 4px;
cursor: pointer;
}
.item_box .last_button button span {
    font-size: 16px;
    font-style: normal;
    font-weight: 290;
    line-height: normal;
}
.mess_reset {
    border: 1px solid #666;
background: #FFF;
color: #333;
}
.mess_submit {
background-color:var(--red-color);
color: var(--white-color);
}
.item_box .message_code {
    display: flex;
    align-items: flex-end;
    margin-left: 10px;
}
.item_box .message_code img {
    height: 100%;
}

@media (max-width: 991px) {
    .contact_top {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .contact_list {
        padding-top: 10px;
    }
    .contact_list ul li {
        padding: 30px 0;
    }
    .contact_top .contact_left {
        width: 55%;
    }

}

@media (max-width: 767px) {
    .contact_top {
        padding-top: 50px;
        padding-bottom: 0;
    }
    .mess_text {
        padding-top: 10px;
    }
    .contact_cont {
        flex-wrap: wrap;
    }
    .contact_list ul li {
        padding: 20px 0;
        flex-wrap: wrap;
    }
    .contact_list .text {
        flex: inherit;
        width: 100%;
        padding-top: 15px;
        padding-left: 0;
        text-align: left;
    }
    .contact_top .contact_left {
        width: 100%;
    }
    .contact_list .icon {
        width: 30px;
    }
    .contact_right .locaiton .icon {
        max-width: 60px;
    }
    .contact_list .text .big_t{
        font-size: 20px;
    }
    .contact_right {
        margin-top: 20px;
        height: 300px;
    }
    .contact_top_bg {
        z-index: -1;
    }
    .item_box .col-2 {
        width: 100%;
    }
    .item_box .col-2,
    .item_box .colw100 {
        padding-bottom: 40px;
    }
    .item_box .last_button button {
        padding: 12px 24px;
        margin-left: 5px;
        margin-right:5px;
    }
    .contact_message {
        padding-top: 70px;
        padding-bottom: 20px;
    }
    .message_form {
        padding-top: 40px;
    }
}
.job_form_item .message_code{
    margin-top: 38px;
}
.job_form_item .message_code img{
    width: 90px;
    height: 52px;
}
.search_no {
padding-top: 100px;
display: flex;
align-items: center;
justify-content: center;
flex-flow: column;
margin: 0 auto;
}
.search_no .img{
max-width: 311px;
}
.search_no .text {
padding-top: 12px;
color: #333;
text-align: center;
font-size: 18px;
font-weight: 400;
line-height: 32px;
}
@media (max-width: 767px) {
    .search_no .text {
        font-size: 16px;
    }
    .job_form_item .message_code{
        margin-top: 0;
    }
}
.cndns-right-meau {
    position: relative;
}
.cndns-right-meau .cndns-right-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--black-color);
    transition: width .3s cubic-bezier(0.99, 0.01, 0.16, 0.99);
}
.cndns-right-box {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
	display: none;
	padding-right: 8px
}
.cndns-right-box:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
    height: 14px;
    background-image: url(../images/polygon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.cndns-right-box .box-border {
	position: relative;
	display: flex;
	overflow: hidden;
    padding:16px 8px;
    background:var(--black-color);
}
.cndns-right-box .box-border .sev-t {
	padding-left: 12px;
	padding-right: 12px;
	min-width: 124px;
    text-align: center;
}
.cndns-right-box .box-border .sev-t a i{
	padding-top: 0;
}
.cndns-right-box .box-border .sev-t  i {
	padding-top: 8px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 14px;
	width: max-content;
	margin: 0 auto;
}
.meau-contact .box-border .sev-t i {
	font-size: 18px;
}
.cndns-right-meau:hover .cndns-right-box {
    display: block;
}
.exhibit_item_bg {
    padding-top: 50px;
}
.exhibit_item_bg ul{
    position: relative;
    z-index:1;
}
.exhibit_item_bg ul::before{
    content: "";
    position:absolute;
    left: 10px;
    top:0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background-color: #F5F5F5;
    z-index: -1;
}
.exhibit_item_bg .exhibit_item {
    background-color: transparent;
}

/* 2025-05-13 */
.banner .iframe_box {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
}
.banner .iframe_box iframe{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.iframe_swiper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 9;
}
.iframe_swiper::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 9;
}
@media (max-width:1279px) {
    .iframe_swiper::after,
    .iframe_swiper::before {
        width: 8%;
    }

}
@media (max-width:991px) {
    .iframe_swiper::after,
    .iframe_swiper::before {
        width: 0
    }

}