﻿@charset "utf-8";

:root {
    --main-color: #0068B7;
    --dark-color: #333;
    --orange-color: #EB632A;
    --white-color: #FFFFFF;
    --deep-color: #0049B7;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        opacity: 0;
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* index */
.border_white a,
.border_blue a {
    border: 1px solid var(--white-color);
    color: var(--white-color);
}

.border_grey a {
    border: 1px solid #E7E7E7;
}

.dark_grey a {
    border: 1px solid rgba(17, 0, 0, 0.10);
}

.index_more a {
    display: flex;
    position: relative;
    width: 190px;
    padding: 14px 4px 14px 72px;
    align-items: center;
    justify-content: space-between;
    border-radius: 55px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: ' Microsoft YaHei';
    overflow: hidden;
    z-index: 1;
}

.more_eng a {
    font-family: 'Montserrat';
}

.border_blue a {
    border-color: transparent;
}

.border_blue a:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid var(--white-color);
    border-radius: 55px;
    z-index: -1;
}

.border_white a span,
.border_blue a span,
.dark_grey a span {
    background-color: var(--white-color);
}

.border_grey a span {
    background-color: #F9F9F9;
}

.dark_grey a span {
    background-color: rgba(17, 0, 0, 0.10);
}

.index_more a span {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-items: center;
    z-index: -1;
    transition: width 0.3s cubic-bezier(0.99, 0.01, 0.16, 0.99);
}

.index_more a span i {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
}

.border_white a span i,
.border_blue a span i,
.dark_grey a span i {
    background-image: url(../images/orange_jt.svg);
}

.border_grey a span i {
    background-image: url(../images/orange_jt.svg);
}

.index_more a i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.index_more a i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.border_white a:hover,
.border_grey a:hover,
.dark_grey a:hover {
    color: var(--white-color);
}

.border_blue a:hover {
    border-color: transparent;
    color: var(--deep-color);
}

.border_white a:hover {
    border-color: transparent;
}

.index_more a:hover span {
    left: 0;
    width: 100%;
    height: 100%;
}

.border_white a:hover span,
.border_grey a:hover span,
.dark_grey a:hover span {
    background-color: var(--deep-color);
}

.border_blue a:hover span {
    background-color: var(--white-color);
}

.index_more a:hover span i {
    background-color: transparent;
}

.border_white a:hover span i,
.border_grey a:hover span i,
.dark_grey a:hover span i {
    background-image: url(../images/white_jt.svg);
}

.border_blue a:hover span i {
    background-image: url(../images/blue_jt.svg);
}

@media (max-width:1280px) {}

@media (max-width:767px) {

    .index_more a {
        width: 160px;
        padding: 10px 4px 10px 55px;
        font-size: 14px;
    }

    .index_more a span {
        width: 40px;
        height: 40px;
        border-radius: 40px;
    }

    .index_more a span i {
        background-size: 20px 20px;
    }
}

/* footer */
.right_rove {
    position: fixed;
    right: 16px;
    bottom: 40px;
    z-index: 99;
}

.right_rove ul {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.right_rove ul li {
    position: relative;
    margin-bottom: 8px;
    width: 56px;
    overflow: hidden;
}

.right_rove ul li:last-child {
    margin-bottom: 0;
}

.right_rove>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    height: 56px;
    z-index: 1;
}

.right_rove>ul>li>a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 56px;
    height: 100%;
    border-radius: 56px;
    background-color: var(--orange-color);
    transition: width .3s cubic-bezier(0.99, 0.01, 0.16, 0.99);
    z-index: -1;
}

.right_rove>ul>li>a img {
    width: 24px;
}

.right_rove>ul>li.back_top>a::before {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(4px);
    background-color: var(--white-color);
}

.right_rove>ul>li>a span {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0;

    overflow: hidden;
}

.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 span {
    opacity: 1;
    margin-right: 8px;
    transition: opacity .3s ease;
    transition-delay: .3s;
}

.back_top {
    display: none;
    cursor: pointer;
}

footer {
    position: relative;
    width: 100%;
    background: #121212;
    border-bottom: 8px solid var(--main-color);
    z-index: 1;
}

.foot_top {
    padding-top: 45px;
}

.foot_top .foot_logo {
    max-width: 213px;
}

.foot_share ul {
    display: flex;
    margin-left: -9px;
    margin-right: -9px;
}

.foot_share ul li {
    padding: 0 9px;
}

.foot_share .w_bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.foot_share .w_bg::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background-color: var(--orange-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.foot_share .w_bg img {
    width: 24px;
    height: 24px;
}

.eject_cont {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 8px;
    width: 116px;
    background: #FFFFFF;
    border-radius: 8px;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100px;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

.foot_share .eject_cont:hover .w_bg {
    background-color: rgba(255, 255, 255, 1);
}

.foot_share .eject_cont:hover .w_bg::before {
    width: 100%;
    height: 100%;
}

.foot_line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    padding-bottom: 30px;
}

.footer-bottom-mean {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.footer-bottom-mean-left {
    display: flex;
    flex-direction: column;
}

.footer-bottom-mean-right {
    flex: 1;
    display: flex;
    padding-left: 30px;
}

.footer-left-title {
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.footer-left-tel {
    padding-bottom: 24px;
    color: var(--white-color);
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.footer-left-tel a {
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.footer-left-adress {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.6;
}

.footer-left-adress img {
    width: 24px;
    margin-right: 16px;
    margin-top: 3px;
}

.footer-bottom-item:first-child {
    margin-left: auto;
}

.footer-bottom-item {
    margin-left: 150px;
}

.footer-bottom-item div {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.footer-bottom-item div>a {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer-bottom-item div>a:last-child {
    margin-bottom: 0;
}

.footer-bottom-item h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.footdown-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.footdown-bottom a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.footdown-bottom .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-item div>a:hover,
.footdown-bottom a:hover {
    color: var(--white-color);
}


@media (max-width:1580px) {

    .footer-bottom-item {
        margin-left: 80px;
    }
}

@media (max-width:1440px) {

    .footer-bottom-item {
        margin-left: 100px;
    }
}

@media (max-width:1366px) {
    .foot_top {
        padding-top: 30px;
    }

    .footer-bottom-mean {
        padding-top: 30px;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom-item {
        margin-left: 80px;
    }


}

@media (max-width:1280px) {

    .footer-bottom-item {
        margin-left: 60px;
    }

    .footer-bottom-item div>a {
        margin-bottom: 10px;
    }
}

@media (max-width:1279px) {
    .right_rove {
        right: 2px;
        bottom: 30px;
    }

    .right_rove ul li {
        width: 46px;
    }

    .right_rove>ul>li>a {
        padding-left: 12px;
        padding-right: 12px;
        height: 46px;
    }

    .right_rove>ul>li>a::before {
        width: 46px;
        border-radius: 46px;
    }

    .right_rove>ul>li>a img {
        width: 20px;
    }

    .right_rove>ul>li.back_top>a::before {
        width: 44px;
        height: 44px;
    }

    .foot_share .w_bg {
        width: 48px;
        height: 48px;
    }

    .footer-left-adress img {
        width: 22px;
        margin-right: 10px;
    }

    .footer-bottom-item {
        margin-left: 30px;
    }

    .foot_line {
        padding-top: 25px;
        padding-bottom: 20px;
    }

}

@media (max-width:991px) {
    .footer-bottom-mean {
        flex-wrap: wrap;
    }

    .footer-bottom-mean-left {
        width: 100%;
    }

    .footer-bottom-mean-right {
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
        flex: inherit;
        justify-content: space-between;
    }

    .footer-bottom-item:first-child {
        margin-left: 0;
    }
}

@media (max-width:767px) {
    .right_rove {
        bottom: 10%;
    }

    footer {
        padding-top: 30px;
        border-bottom: 4px solid var(--main-color);
    }

    .foot_top {
        padding-top: 0;
        flex-wrap: wrap;
    }

    .foot_top .foot_logo {
        max-width: 180px;
    }

    .foot_share {
        padding-top: 20px;
        width: 100%;
    }

    .eject_cont .eject_tc {

        margin-left: -38px;

    }

    .eject_cont .eject_tc:before {

        margin-left: -30px;
    }

    .footer-bottom-mean {
        padding-top: 20px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom-mean-right {
        flex-wrap: wrap;
        padding-top: 20px;
    }

    .footer-bottom-item {
        margin-left: 0;
        padding-bottom: 10px;
        width: 100%;
    }

    .footer-bottom-item div {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .footer-bottom-item div>a {
        margin-right: 10px;
    }

    .footer-left-tel {
        padding-bottom: 16px;
        font-size: 22px;
    }

    .footer-left-adress img {
        margin-top: 1px;
    }

    .foot_line {
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        align-items: flex-start;
    }


    .footer-left-adress {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }

    .footdown-bottom {
        font-size: 14px;
        line-height: 26px;
    }


}


/* 视频弹窗 */
html.act {
    height: 100vh;
    overflow: hidden;
}

html.act body {
    height: 100vh !important;
    overflow: hidden !important;
}

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 1110;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    vertical-align: middle;
}

.z_tanchuang .tbox .modal {
    display: block;
    position: relative;
    width: 90%;
    max-width: 1154px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .out {
    position: absolute;
    width: 68px;
    height: 68px;
    background: var(--main-color) url(../images/white_close.svg) center no-repeat;
    background-size: 30px 30px;
    top: 0;
    right: 0;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-height: 650px;
    margin: 0 auto;
    height: 80vh;
    display: flex;
    align-items: center;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */
.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: mzoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */
@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes mzoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes mzoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@media (max-width:767px) {

    .z_tanchuang .tbox .out {
        width: 58px;
        height: 58px;
        background-size: 30px 30px;

    }


}

/* page  */
.height98 {
    width: 100%;
    height: 98px;
}

.location {
    padding-top: 32px;
    display: flex;
    align-items: center;
}

.location a {
    margin-right: 10px;
    line-height: 20px;
    opacity: 0.5;
}

.location a:first-child {
    width: 20px;
    height: 20px;
    background-image: url(../images/home_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    font-size: 0;
}

.location a:nth-child(n + 2) {
    padding-right: 18px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 8px 13px;
}

.location a:nth-child(n + 2):hover {
    opacity: 1;
}

.location a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}


@media (max-width:767px) {
    .location a {
        margin-right: 6px;
    }

    .location a:nth-child(n + 2) {
        padding-right: 12px;
    }

    .location a:nth-child(n+2) {
        font-size: 12px;
    }

}

/* left menu */
.sidebar {
    display: none;
}

.sidebar {
    width: 134px;
    text-align: left;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.sidebar.sidebar-hidden {
    display: none !important;
}

.sidebar button {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 34px;
    margin-bottom: 16px;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.20);
    background: transparent;
}

.sidebar button::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.3s ease;
}

.sidebar button.active::before {
    width: 24px;
}

.sidebar .active {
    color: var(--main-color);
}

.sidebar.whire .about_item {
    color: rgba(255, 255, 255, 0.5);
}

.sidebar.whire button::before {
    background-color: rgba(255, 255, 255, 0.50);
}

.about-sidebar .active {
    color: var(--orange-color);
}

.about-sidebar button.active::before {
    background-color: var(--orange-color);
}

@media (max-width:1439px) {
    .about-sidebar {
        display: none !important;
    }

}

@media (max-width:767px) {
    .location {
        padding-top: 20px;
    }

    .height98 {
        height: 80px;
    }

}

/* about */
.about_top {
    position: relative;
    width: 100%;
    height: calc(100vh - 86px);
    min-height: 700px;
    z-index: 1;
}

.about_top .about_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about_top .about_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_top_box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about_top_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    background: linear-gradient(108deg, #001B3E 1.91%, rgba(0, 27, 62, 0.30) 78.46%);
    z-index: -1;
}

.about_top_box .my-container {
    height: 100%;
}

.about_top_box .about_cont {
    position: relative;
    width: 100%;
    height: 100%;
}

.about_cicle {
    position: absolute;
    right: 0;
    bottom: 55px;
}

.about_cicle>div:first-child {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    height: 118px;
}

.about_cicle>div:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    background-image: url(../images/about_cicle.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    animation: spin 2.6s linear infinite;

}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.about_cicle span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 67px;
    height: 67px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.about_cicle span i {
    width: 26px;
    height: 38px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
}

.about_cicle span i em {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-top: 8px;
}

.about_cicle span i em {
    animation: jumpDown 1.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite
}

.about_year {
    color: var(--white-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.about_top_left {
    padding-top: 6%;
}

.about_top_left .big_t {
    padding-top: 4px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.about_top_left .big_t strong {
    padding-top: 4px;
    display: block;
}

.about_number {
    padding-top: 56px;
    padding-bottom: 44px;
    max-width: 648px;
    width: 100%;
}

.about_number ul {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.about_number ul li {
    width: 33.33%;
    padding: 12px;
}

.about_number .year {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    min-width: 180px;
}

.about_number .year span {
    padding-right: 5px;
    color: var(--white-color);
    font-family: 'Montserrat bold';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}

.about_number .des {
    padding-top: 8px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.about_number .line {
    margin-top: 16px;
    width: 16px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.about_box {
    position: relative;
}

.about_box::before {
    content: "";
    position: absolute;
    top: -12px;
    width: 100%;
    height: 12px;
    border-radius: 24px 24px 0px 0px;
    background: #FFF;
    z-index: 9;
}

.about_box .about_infor {
    padding-top: 48px;
    padding-bottom: 74px;
    position: relative;
}

.about_infor_left {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 50%;
    z-index: -1;
}

.about_infor_text .left,
.about_infor_text .right {
    width: calc(50% - 34px);
}

.about_infor_text p {
    padding-bottom: 28px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.about_infor_text p:last-child {
    padding-bottom: 0;
}

.about_infor_video {
    position: relative;
    margin-top: 55px;
    border-radius: 16px;
    overflow: hidden;
}

.about_infor_video .video_play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    max-width: 98px;
    cursor: pointer;
}

.about_infor_video .icon {

    animation: spin 10s linear infinite;
}

@media (max-width:1440px) {
    .about_number {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .about_number .year span {
        font-size: 44px;
    }
}

@media (max-width:1366px) {
    .about_number .year span {
        font-size: 42px;
    }

    .about_top_left {
        padding-top: 4%;
    }

}

@media (max-width:1280px) {
    .about_number .year span {
        font-size: 42px;
    }
}

@media (max-width:991px) {
    .about_number .year span {
        font-size: 36px;
    }

    .about_infor_text {
        flex-wrap: wrap;
    }

    .about_infor_text .left {
        padding-bottom: 20px;
    }

    .about_infor_text .left,
    .about_infor_text .right {
        width: 100%;
    }

    .about_infor_text p {
        padding-bottom: 20px;
    }

    .about_infor_video .video_play {
        max-width: 80px;
    }

}

@media (max-width:991px) {

    .about_number ul {
        /* margin-left: 0; */
    }

    .about_number ul li {
        padding-left: 0;
    }


}

.about_deve {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.pb0 {
    padding-bottom: 0;
}

.pt20 {
    padding-top: 20px;
}

.deve_loop {
    padding-top: 80px;
    padding-bottom: 85px;
    background: linear-gradient(59deg, rgba(0, 104, 183, 0.76) 2.07%, rgba(0, 73, 183, 0.85) 71.43%);
    overflow: hidden;
}

.deve_loop .swiper_box {
    padding-top: 120px;
}

.deve_title .t {
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.deve_title .des {
    padding-top: 16px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.white_bt .t,
.white_bt .des {
    color: var(--white-color);
}

.deve_loop .img_box {
    position: relative;
    margin-top: -50px;
    height: 185px;
    margin-left: 8.5vw;
    overflow: hidden;
}

.deve_loop .img_box .img_list {
    position: absolute;
    left: 0;
    width: 100%;

    -webkit-transition: 0.6s ease;
    -o-transition: 0.6s ease;
    transition: 0.6s ease;
}

.deve_loop .img_box .img_list>img {
    height: 185px;
    position: relative;
    left: 0;
    width: auto;
    max-width: inherit;
}

.deve_loop .img_box .img_list .bgimg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/tu2.png) no-repeat;
    background-position: -800px 50%;
    -webkit-transition: 0.6s ease-in;
    -o-transition: 0.6s ease-in;
    transition: 0.6s ease-in;
    background-size: auto 100%;
    -webkit-mask-image: url(../images/tu3.png);
    -webkit-mask-size: auto 100%;
}

.deve_loop .swiper_box .deve_swiper {
    height: 320px;
}

.deve_loop .swiper_box .deve_swiper .swiper-container {
    height: 100%;
}

.deve_loop .swiper_box .deve_swiper .swiper-slide {
    padding-left: 9px;
    cursor: pointer;
}

.deve_loop .swiper_box .deve_swiper .swiper-slide .item {
    padding-left: 26px;
    position: relative;
    max-width: 260px;
    top: 0;
    height: 220px;
    transition: .33s;
}

.deve_swiper .swiper-slide .item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 18px;
    height: 21px;
    background-image: url(../images/white_cicle.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 8px 16px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.deve_swiper .swiper-slide .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 21px;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.20);
    ;
}

.deve_swiper .item .top {
    padding-top: 5px;
    color: var(--white-color);
    font-family: 'Montserrat';
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.deve_swiper .item .bot {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    height: calc(100% - 54px);
    overflow-y: auto;

}

.deve_swiper .item .bot p {
    position: relative;
    margin-bottom: 8px;
    padding-left: 16px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.deve_swiper .item .bot p:before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    opacity: 0.5;
}

.deve_swiper .active .item .top {
    font-size: 30px;
}

.deve_swiper .swiper-slide.active .item::before {
    background-image: url(../images/white_cicle_hover.svg);
    background-size: 100%;
}

.deve_loop .box .deve_swiper01 {
    width: calc(100% - 116px);
    padding-left: 50px;
    padding-right: 50px;
}

.deve_swiper01 .swiper-slide {
    text-align: center;
}

.deve_swiper01 .swiper-slide p {
    display: inline-block;
    color: var(--white-color);
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    opacity: 0.5;
    cursor: pointer;
}

.deve_swiper01 .swiper-slide.active p {
    opacity: 1;
}

.deve_loop .box {
    position: relative;
    margin-top: 40px;
}

.deve_loop .box .button {
    display: flex;
    padding: 12px;
    align-items: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.30);
    cursor: pointer;
}

.deve_loop .box .button:hover {
    border-color: var(--main-color);
    background-color: var(--orange-color);
}

.deve_loop .box .button:hover svg path {
    stroke: var(--white-color);
}

.deve_loop .box .button.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

@media (max-width:767px) {
    .deve_loop {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .deve_loop .swiper_box .deve_swiper .swiper-slide {
        padding-bottom: 40px;
        padding-right: 10px;
    }

    .deve_swiper .item .top {
        font-size: 22px;
    }

    .deve_swiper .active .item .top {
        font-size: 24px;
    }

    .deve_loop .box .deve_swiper01 {
        width: calc(100% - 100px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .deve_loop .swiper_box .deve_swiper .swiper-slide .item {
        max-width: 260px;
    }

    .deve_swiper .item .img {
        max-width: 244px;
    }

    .deve_swiper01 .swiper-slide p {
        font-size: 20px;
    }

    .deve_loop .box .button {
        padding: 8px;
    }

    .deve_loop .box .button svg {
        width: 24px;
        height: 24px;
    }

    .deve_loop .box {
        margin-top: 40px;
    }
}

/* honor pic */
.honor_content {
    position: relative;
    padding: 100px 0 75px 0;
    background-image: url(../images/honor_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.black_bt {
    color: var(--dark-color);
}

.blue_bt {
    color: var(--main-color);
}

.honor_content::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 130px;
    width: 100%;
    height: 100px;
    background-image: url(../images/honor_bg2.png);
    background-repeat: no-repeat;
    background-position: center top;
    z-index: -1;
}

.honor_b_title .deve_title {
    flex: 1;
}

.honor_tab ul {
    margin-left: -4px;
    margin-right: -4px;
    display: flex;
    align-items: center;
}

.honor_tab ul li {
    padding: 0 4px;
}

.honor_tab ul li a {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    border-radius: 40px;
    background: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    overflow: hidden;
}

.honor_tab ul li a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--orange-color);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.honor_tab ul li.active a {
    color: var(--white-color);
    background-color: transparent;
}

.honor_tab ul li.active a::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.tab_box .pub-show {
    width: 100%;
    display: none;
    opacity: 0;
}

.tab_box .pub-show.d-show {
    display: inline-block;
    opacity: 1;
}

.honor_content .rs_cen {
    padding-top: 54px;
}

.honor_content .rs_cen .bg {
    position: relative;
    z-index: 1;
}


.honor_content .bg img {
    width: 100%;
}

.honor_content .rs_cen .swiper-slide .bg {
    transition: 0.4s;
    transform: scale(0.8);
    transform-origin: center bottom;
    width: 100%;
}

.honor_content .rs_cen .swiper-slide-active .bg {
    transform: scale(1);
}

.honor_content .rs_cen .swiper_list p {
    display: none;
    padding-top: 32px;
    color: var(--dark-color);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.honor_content .rs_cen .swiper_list p.active {
    display: block;
}

.honor-pagination {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.honor-pagination span {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.20);
    margin: 0 4px;
    opacity: 1;
    transition: width .4s;
    cursor: pointer;
}

.honor-pagination span.swiper-pagination-bullet-active {
    background-color: var(--orange-color);
    width: 20px;
}

@media (max-width:991px) {
    .honor_b_title {
        flex-wrap: wrap;
    }

    .honor_b_title .deve_title {
        flex: inherit;
        width: 100%;
    }

    .honor_tab {
        padding-top: 30px;
    }

    .honor_tab ul li a {
        padding: 12px 28px;
    }

    .honor-pagination span.swiper-pagination-bullet-active {
        width: 16px;
    }


}

@media (max-width:767px) {
    .about_top {
        height: auto;
        min-height: inherit;
    }

    .about_cicle {
        display: none;
    }

    .about_top_left {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .about_number .year {
        font-size: 16px;
    }

    .about_number .year span {
        font-size: 32px;
    }

    .about_number .des {
        padding-top: 0;
        font-size: 14px;
        line-height: 20px;
    }

    .about_infor_video {
        margin-top: 30px;
        height: 250px;
    }

    .about_infor_video>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about_box .about_infor {
        padding-top: 25px;
        padding-bottom: 50px;
    }

    .honor_content .rs_cen .t {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
    }

    .honor_b_title {
        display: block;
    }

    .honor_tab {
        padding-top: 25px;
    }

    .honor_tab ul {
        justify-content: flex-end;
    }

    .honor_tab ul li a {
        padding: 10px 20px;
    }

    .honor-pagination {
        padding-top: 25px;
    }

    .honor-pagination span.swiper-pagination-bullet-active {
        width: 30px;
    }

    .deve_loop .swiper_box {
        padding-top: 60px;
    }

    .deve_loop .swiper_box .deve_swiper {
        height: 260px;
    }

    .deve_loop .swiper_box .deve_swiper .swiper-slide .item {
        top: 0 !important;
    }

}

/* job */
.term_box {
    overflow: hidden;
}

.job_top {
    position: relative;
    height: calc(100vh - 86px);
    z-index: 1;
}

.job_top .job_video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.job_top .job_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job_top_box {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
}

.job_top_content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.job_top_content .top_t {
    color: #FFF;
    text-align: center;

    font-weight: 700;
    line-height: 1.5;
}

.job_top_content .des {
    padding-top: 16px;
    max-width: 820px;
    margin: 0 auto;
}

.job_top_content .des p {
    padding-bottom: 25px;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.job_top_content .des p:last-child {
    padding-bottom: 0;
}

.job_icon {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
}

.job_icon img {
    animation: jumpDown 1.9s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite
}

.hot_job_box {
    padding-top: 48px;
    padding-bottom: 65px;
    background: #F0F5F9;
}

.job_box::before {
    background: #F0F5F9;
}

.hot_title {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.job_table ul li a {
    min-width: 110px;
    z-index: 1;
}

.job_table ul li a::before {
    background-color: var(--main-color);
}

.join_all {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-top: 32px;
    margin-left: -12px;
    margin-right: -12px;
}

.join_item {
    margin-left: 12px;
    margin-right: 12px;
    margin-bottom: 24px;
    width: calc(33.33% - 24px);
    padding: 32px;
    border-radius: 16px;
    background-color: #FFF;
    position: relative;
    transition: background-color 0.3s;
    cursor: pointer;
}

.join_item1 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.join_item2_item {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    padding-right: 16px;
    padding-left: 16px;
    position: relative;
}

.join_item2 .join_item2_item:last-child {
    padding-right: 0;
}

.join_item2_item::after {
    content: '';
    position: absolute;
    height: 14px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    ;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.join_item2_item:last-child::after {
    display: none;
}

.join_item2_item:nth-child(1) {
    padding-left: 0;
}

.join_item2 {
    padding-bottom: 20px;
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
}

.join_item2 {
    padding-bottom: 30px;
}

.join_item3 {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.2;
}

.join_item3left span {
    color: #000;
    margin-right: 10px;
    font-family: "Montserrat";
    font-size: 16px;
    line-height: 28px;

    font-weight: 400;
}

.join_item3right img:nth-child(2) {
    display: none;
}

.join_itemtop {
    border-bottom: 1px solid #DCDDE0;
}

.join_item:hover {
    background-color: var(--main-color);
    background-image: url(../images/job_icon.svg);
    background-repeat: no-repeat;
    background-size: 222px 64px;
    background-position: right bottom;

}

.join_item:hover .join_item1 {
    color: #FFF;
}

.join_item:hover .join_item3 {
    opacity: 0.4;
}

.join_item:hover .join_item2_item {
    color: rgba(255, 255, 255, 0.60);
}

.join_item:hover .join_item3left span {
    color: var(--white-color);
}

.join_item:hover .join_item2_item::after {
    background-color: rgba(255, 255, 255, 0.20);
}

.join_item:hover .join_itemtop {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.join_item:hover .join_item3right img:nth-child(2) {
    display: block;
}

.join_item:hover .join_item3right img:nth-child(1) {
    display: none;
}

.job_button {
    margin-top: 30px;
}

.job_button .job-pagination {
    flex: 1;
    margin-right: 38px;
    position: relative;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.10);
}

.job_button .job-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--orange-color);
}

.job_button .job_b_bg>div {
    position: relative;
    padding: 12px;
    border-radius: 50px;
    background-color: #FFF;
    transition: background-color 0.3s;
    cursor: pointer;
}

.job_button .job_b_bg>div::before {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.job_button .job_b_bg>div.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.job_button .job_b_bg>div:nth-child(2) {
    margin-left: 16px;
}

.job-button-prev::before {
    background-image: url(../images/main_left.svg);
}

.job-button-next::before {
    background-image: url(../images/main_right.svg);
}

.job_button .job_b_bg>div:hover {
    background-color: var(--main-color);
}

.job-button-prev:hover:before {
    background-image: url(../images/white_left.svg);
}

.job-button-next:hover:before {
    background-image: url(../images/white_right.svg);
}

@media (max-width:1439px) {

    .job_sidebar {
        display: none !important;
    }

}

@media (max-width:1279px) {
    .join_item {
        padding: 32px 20px;
    }

    .join_item2_item {
        padding-right: 10px;
        padding-left: 10px;
    }


}

@media (max-width:991px) {
    .join_item2 {
        flex-flow: column;
    }

    .join_item2_item {
        padding-right: 0;
        padding-left: 0;
    }

}

@media (max-width:767px) {
    .hot_job_box {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .hot_title {
        flex-wrap: wrap;
    }

    .honor_tab {
        width: 100%;
    }

    .honor_tab ul {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .job_table ul li a {
        min-width: inherit;
    }

    .join_item {
        padding: 26px 20px 16px 20px;
        width: 100%;
    }

    .join_item1 {
        font-size: 18px;
    }

    .join_item2 {
        flex-flow: nowrap;
        padding-bottom: 12px;
    }

    .join_item2_item {
        padding-right: 8px;
        padding-left: 8px;
    }

    .join_item3 {
        padding-top: 10px;
    }

    .join_item3left span {
        font-size: 14px;
    }

    .job_button {
        margin-top: 10px;
    }

}

.job_career {
    padding-top: 60px;
}

.job_career_box {
    width: 100%;
}

.job_career_box .care_left {
    width: 352px;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    z-index: 9;
}

.job_career_box .care_right {
    width: calc(100% - 352px);
    position: relative;
    z-index: 1;
}

.care_right:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 20;
}

.job_career_swiper {
    overflow: visible !important;
}

.job_career_swiper .swiper-slide {
    height: auto;
}

.job_career_swiper .bg {
    height: 100%;
    padding: 32px;
    border-radius: 16px;
    background-color: #F0F5F9;
    transition: background-color .4s;
}

.job_career_swiper .bg .num {
    color: rgba(0, 0, 0, 0.20);
    font-family: 'Montserrat bold';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.job_career_swiper .bg .t {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.job_career_swiper .bg .line {
    margin-top: 24px;
    margin-bottom: 24px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.job_career_swiper .bg .des {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.job_care_button {
    display: flex;
}

.job_care_button>div {
    position: relative;
    display: flex;
    padding: 12px;
    align-items: center;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    cursor: pointer;
}

.job_care_button>div.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.job_care_button>div::before {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    display: block;
}

.job-care-next {
    margin-left: 16px;
}

.job-care-prev::before {
    background-image: url(../images/main_left.svg);
}

.job-care-next::before {
    background-image: url(../images/main_right.svg);
}

.job_care_button>div:hover {
    background-color: var(--main-color);
}

.job-care-prev:hover:before {
    background-image: url(../images/white_left.svg);
}

.job-care-next:hover:before {
    background-image: url(../images/white_right.svg);
}

.job_career_swiper .bg:hover {
    background-color: var(--main-color);
}

.job_career_swiper .bg:hover .num {
    color: rgba(255, 255, 255, 0.20);
}

.job_career_swiper .bg:hover .t {
    color: var(--white-color);
}

.job_career_swiper .bg:hover .line {
    background-color: rgba(255, 255, 255, 0.20);
}

.job_career_swiper .bg:hover .des {
    color: rgba(255, 255, 255, 0.8);
}

.growth_box {
    margin-top: 32px;
    position: relative;
    min-height: 300px;
}

.growth_box .deve_title {
    position: absolute;
    left: 0;
    top: 64px;
}


.grow_list ul {
    display: flex;

}

.grow_list ul li {
    width: 25%;
    padding-top: 94px;
}

.grow_list .bg {
    position: relative;
    width: 100%;
    padding: 32px 32px 12px 32px;
    z-index: 1;
}

.grow_list .bg .img {
    position: absolute;
    left: 50%;
    top: -90px;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    opacity: 0;
    transition: opacity .4s;
}

.grow_list .bg::before {
    content: "";
    width: 100%;
    height: 120px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 16px 0px 0px 0px;
    background: linear-gradient(180deg, #F0F5F9 0%, rgba(240, 245, 249, 0.00) 100%);
    overflow: hidden;
    transition: all .4s;
    z-index: -1;
}

.grow_list ul li .bg {
    height: 300px;
}

.grow_list .bg .num {
    color: rgba(0, 0, 0, 0.20);
    font-family: 'Montserrat bold';
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.grow_list .bg .t {
    color: var(--dark-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.grow_list .bg .des {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0;
    transition: opacity .4s;
}

@media (min-width:768px) {

    .grow_list ul li:nth-child(1) .bg {
        margin-top: 180px;
    }

    .grow_list ul li:nth-child(2) .bg {
        margin-top: 120px;
    }

    .grow_list ul li:nth-child(3) .bg {
        margin-top: 60px;
    }

    .grow_list .active .bg::before,
    .grow_list .bg:hover::before {
        background: linear-gradient(180deg, #0068B7 0%, rgba(240, 245, 249, 0.00) 100%);
    }

    .grow_list .active .num {
        color: rgba(255, 255, 255, 0.50);
    }

    .grow_list .active .t {
        color: var(--main-color);
    }

    .grow_list .active .des {
        opacity: 1;
    }

    .grow_list .active .bg .img {
        opacity: 1;
    }

}


.job_vr {
    padding-top: 64px;
    background: #F0F5F9;
}

.stre_swiper {
    margin-top: 30px;
    overflow: visible;
}

.stre_swiper .swiper-slide {
    border-radius: 16px;
    opacity: 0.5;
    overflow: hidden;
}

.stre_swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.stre_swiper .swiper-slide .i {
    display: block;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -webkit-transition: -webkit-transform 1.3s;
    transition: -webkit-transform 1.3s;
    -o-transition: transform 1.3s;
    transition: transform 1.3s;
    transition: transform 1.3s, -webkit-transform 1.3s;
    -webkit-transition: transform 1.3s;
}

.stre_swiper .swiper-slide:hover .i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}


.stre_swiper .stre_swiper_t {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 32px;
    color: #FFF;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: 1;
}

.job_vr .job_button .job_b_bg>div {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color: transparent;
}

.job_vr .job_button .job_b_bg>div:hover {
    background-color: var(--main-color);
}

.job_global {
    position: relative;
    padding-top: 34px;
    padding-bottom: 80px;
    background-color: #F0F5F9;
    background-image: url(../images/global_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media (max-width:1279px) {
    .job_career_box .care_left {
        width: auto;
        margin-right: 100px;
    }

    .job_career_box .care_right {
        flex: 1;
    }

    .grow_list .bg .img {
        top: -80px;
        width: 80px;
        height: 80px;
    }

}

@media (max-width:991px) {

    .grow_list .bg {
        padding: 32px 20px 12px 20px;
    }

    .grow_list .bg .num {
        font-size: 28px;
    }

}

@media (max-width:767px) {
    .job_career_box {
        flex-wrap: wrap;
    }

    .job_career_box .care_left {
        width: 100%;
        margin-right: 0;
    }

    .job_career_box .care_right {
        flex: inherit;
        width: 100%;
    }

    .growth_box {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .growth_box .deve_title {
        position: relative;
        top: inherit;
    }

    .grow_list ul {
        flex-wrap: wrap;
    }

    .grow_list ul li {
        width: 100%;
        padding-top: 20px;
    }

    .grow_list .bg .img {
        display: none !important;
    }

    .grow_list ul li .bg {
        height: auto;
    }

    .grow_list .bg .des {
        opacity: 1;
    }

    .grow_list .bg .num {
        font-size: 24px;
    }

    .job_care_button>div,
    .job_button .job_b_bg>div {
        padding: 10px;
    }

    .job_button .job_b_bg>div::before {
        width: 20px;
        height: 20px;
    }

    .stre_swiper .stre_swiper_t {
        padding: 26px 20px 10px 20px;
    }

    .stre_swiper .stre_swiper_t>div {
        font-size: 18px;
    }

    .job_vr {
        padding-top: 50px;
    }

    .job_career {
        padding-top: 50px;
    }

    .job_care_button {
        padding: 10px 0 20px 0;
        justify-content: flex-end;
    }

    .job_career_swiper .bg {
        padding: 30px 20px;
    }

    .job_career_swiper .bg .num {
        font-size: 26px;
    }

    .job_career_swiper .bg .line {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .job_global {
        padding-top: 34px;
        padding-bottom: 40px;
    }
}

/* job detail */
.grey_location a:nth-child(n + 2) {
    color: rgba(0, 0, 0, 0.20);
    background-image: url(../images/page_jt2.svg);
}

.grey_location a:first-child {
    background-image: url(../images/home_icon2.svg);
}

.grey_location a:last-child {
    background-image: none;
}

.grey_location a:nth-child(n + 2):hover {
    color: rgba(0, 0, 0, 0.5);
}

.job_detail_cont {
    background-color: #F0F5F9;
}

.job_xq_top {
    position: relative;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.job_xq_top .job_b_list_l {
    flex: 1;
    max-width: 960px;
    margin-right: 200px;
}

.job_xq_top .zhiwei {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.job_xq_top .job_xq_more {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 60px;
    background: var(--main-color);
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.job_xq_cont {
    padding-bottom: 30px;
}

.job_xq_cont .title {
    padding-top: 32px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.job_xq_cont .text {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.job_xq_cont .text p {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.job_detail_position {
    padding-top: 30px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    ;
}

.job_title {
    color: var(--dark-color);

    font-weight: 700;
    line-height: 1.5;
}

.job_b_list_r_t {
    padding-top: 24px;
}

.job_b_list_r_t_l {
    display: flex;
    align-items: center;
}

.job_b_list_r_t_l span {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 24px;
    margin-right: 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_b_list_r_t_l span img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.job_b_list_r_t_l span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.10);
}

.job_b_list_r_t_l span:last-child:after {
    display: none;
}

.job_b_list_r_t_r {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

@media (max-width:1279px) {

    .job_xq_top .job_b_list_l {

        margin-right: 100px;
    }

}

@media (max-width:991px) {
    .job_xq_top .job_b_list_l {
        margin-right: 100px;
    }

    .job_b_list_r_t_l span:last-child {
        margin-right: 0;
    }

    .job_xq_top .job_b_list_r_t_l span {
        padding-right: 10px;
        margin-right: 10px;
    }

    .job_xq_top {
        flex-wrap: wrap;
    }

    .job_xq_top .job_b_list_l {
        margin-right: 0;
        flex: inherit;
        width: 100%;
        padding-bottom: 30px;
    }

    .job_xq_top .job_xq_more {
        padding: 10px 30px;
        font-size: 16px;
    }

}

@media (max-width:767px) {


    .job_b_list_r_t_l span {
        padding-right: 7px;
        margin-right: 5px;
        font-size: 14px;
    }

    .job_b_list_r_t_r {
        display: none;
    }

    .position_n {
        font-size: 20px;
    }

    .job_b_list_r_t {
        padding-top: 16px;
    }
}

/* job form */
.job_form {
    position: relative;
    z-index: 1;
}

.job_form::before {
    content: '';
    position: absolute;
    top: 0;
    height: 30%;
    width: 100%;
    background: #F0F5F9;
    z-index: -1;
}

.job_form::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 70%;
    width: 100%;
    background-color: #FFFFFF;
    z-index: -1;
}

.job_form_top {
    padding-top: 40px;
}

.job_form_top .s_t {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.job_form_top .b_t {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.job_form_top .right a {
    display: flex;
    padding: 16px 33px;
    align-items: center;
    border: 1px solid #D2D2D2;
}

.job_form_top .right span {
    padding-left: 32px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background-image: url(../images/arrow-left.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: left;
}

.job_form_top .right a:hover {
    background-color: var(--main-color);
}

.job_form_top .right a:hover span {
    color: var(--white-color);
    background-image: url(../images/arrow-left2.svg);

}

.job_form_cont {
    margin-top: 40px;
    padding: 56px;

    background: var(--white-color);
    overflow: hidden;
}

.job_form_cont .job_form_item {
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    ;
}

.job_form_cont .job_form_item .item_left {
    width: 30%;
    color: var(--dark-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.job_form_cont .job_form_item .item_right {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.item_right {
    margin-left: -12px;
    margin-right: -12px;
}

.item_right .col {
    width: 50%;
    padding: 16px 12px;
    float: left;
}

.item_right .colw100 {
    width: 100%;
    padding: 16px 12px;
}

.item_right .col_z>span {
    display: block;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.item_right .col_z>span>em {
    margin-left: 8px;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.item_right .input-container {
    margin-top: 16px;
    position: relative;
    background: #FAFAFA;
}

.item_right .input-container input {
    outline: none;
    z-index: 1;
    padding: 12px 20px;
    position: relative;
    background: none;
    width: 100%;
    height: 56px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei';
    text-align: left;
}

.item_right .input-container input[type="date"] {
    -webkit-appearance: none;
    text-align: left;
}

.input_select_box .icon {
    width: 24px;
    height: 24px;
    right: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.input_select_box .drop_down_ {
    position: absolute;
    left: 0;
    top: 56px;
    width: 100%;
    background: #FAFAFA;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-top: none;
    padding-bottom: 10px;
    z-index: 9;
}

.input_select_box .drop_down_ p {
    padding: 8px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.item_right .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 230px;
    padding: 20px;
    line-height: 26px;
    border: 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    resize: none;
    font-family: "Microsoft YaHei";
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--main-color);
}

.job_form_item .input-container input::-webkit-input-placeholder,
.job_form_item textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.job_form_item .input-container input::-moz-placeholder,
.job_form_item textarea::-moz-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.job_form_item .input-container input::-ms-input-placeholder,
.job_form_item textarea::-ms-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}



.item_right .yanz {
    padding-top: 16px;
}

.item_right .yanz .input-container {
    margin-top: 0;
}

.item_right .message_code {
    margin-left: 16px;
}

.item_right .message_code img {
    width: 128px;
    height: 56px;
}

.item_right .index_more {
    padding: 16px 8px;
    margin-right: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 58px;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

.item_right .border_grey {
    border: 1px solid var(--dark-color);
    background: rgba(255, 255, 255, 0.00);
    backdrop-filter: blur(4px);
    color: var(--dark-color);
}

.item_right .border_black {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    backdrop-filter: blur(4px);
    color: #FAFAFA;

}

.item_right .pt0 {
    padding-top: 0;
}

@media (max-width:991px) {
    .job_form_cont {
        padding: 50px 40px;
    }

}

@media (max-width:767px) {
    .job_form_cont {
        padding: 40px 20px;
    }

    .job_form_cont .job_form_item {
        flex-wrap: wrap;
    }

    .job_form_cont .job_form_item .item_left {
        width: 100%;
    }

    .job_form_cont .job_form_item .item_right {
        width: 100%;
        padding-top: 20px;
    }

    .job_form_cont .job_form_item .item_right>.col:first-child {
        padding-bottom: 32px;

    }

    .job_form_cont .job_form_item.job_form_last .item_right {
        padding-top: 0;
    }

    .item_right {
        margin: 0;
    }

    .item_right .col,
    .item_right .colw100 {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .item_right .yanz {
        flex-wrap: wrap;
    }

    .item_right .yanz .input-container {
        width: 100%;
    }

    .item_right .message_code {
        margin-left: 0;
        margin-top: 20px;
    }

    .job_form_top .right a {
        padding: 10px 20px;
    }

    .job_form_top .right span {
        font-size: 16px;
        background-size: 20px 20px;
    }

    .job_form_cont .job_form_item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .last_button {
        justify-content: space-between;
    }

    .item_right .index_more {
        width: calc(50% - 10px);
        margin-right: 0;
        padding: 10px 8px;
    }

}

/* 全球布局 */
.page_banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    z-index: 1;
}

.page_banner .page_ban {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page_banner .page_ban img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
}

.page_mask .my-container {
    height: 100%;
}

.page_mask .text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-align: center;
    width: max-content;
}

.page_mask .text .t {
    color: var(--white-color);
    /* font-size: 24px; */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.page_mask .text .des {
    margin-top: 10px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.global_bg {
    padding-bottom: 95px;
    background-color: #F5F8FB;
    background-image: url(../images/global_bj_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

.global_bg::before {
    background-color: #F5F8FB;
}

.partner_title {
    padding-top: 48px;
    align-items: flex-end;
}

.partner_title .about_number {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 60%;
    width: inherit;
}

.partner_title .about_number ul li {
    width: auto;
    padding: 0;
    padding-right: 32px;
}

.partner_title .about_number ul li:last-child {
    padding-right: 0;
}

.partner_title .about_number .year span {
    color: var(--main-color);
}

.partner_title .about_number .des {
    color: var(--dark-color);
}

.partner_title .about_number .year {
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    min-width: inherit;
}

.partner_list {
    padding-top: 36px;
}

.partner_list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.partner_list ul li {
    width: 16.66%;
    float: left;
    padding: 12px;
}

.partner_list .bg {
    position: relative;
    border-radius: 16px;
    background-color: #FFF;
    transition: all 0.3s;
    overflow: hidden;
}

.partner_list .bg i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.partner_list .bg:hover {

    box-shadow: 0px 0px 20px 0px rgba(0, 104, 183, 0.10);
}

.load_more {
    display: flex;
    justify-content: center;
}

.load_more a {
    padding-top: 36px;
}

.load_more span {
    display: inline-flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: #FFF;
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.load_more span i {
    display: block;
    margin-left: 16px;
    width: 24px;
    height: 24px;
    background-image: url(../images/load_icon.svg);
    background-repeat: no-repeat;

}


@media (max-width:767px) {
    .page_mask .text .des {
        font-size: 24px;
    }
}

/*业务*/
.about_work_cont {
    position: relative;
    overflow: hidden;
}

.about_work_cont .pub-t1 {
    position: relative;
    overflow: hidden;
    height: 0;
    opacity: 0;
    z-index: 1;
}

.about_work_cont .pub-t1.d-show {
    padding-top: 190px;
    padding-bottom: 70px;
    z-index: 2;

    height: auto;
    overflow: visible;
    opacity: 1;
}

.china_bg {
    /* background-image: url(../images/china_bg.png); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.china_bakground {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.china_bakground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_work .about_work_tab {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.about_work .about_work_tab ul {
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
}

.about_work .about_work_tab ul li {
    padding: 0 8px;
}

.about_work .about_work_tab ul li span {
    display: flex;
    justify-content: center;
    padding: 16px 40px;
    background: var(--white-color);
    box-shadow: 0px 0px 20px 0px #EEF0F2;
    border-radius: 40px;

    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

.about_work .about_work_tab ul li.active span {
    background: var(--main-color);
    color: var(--white-color);

    box-shadow: 0px 0px 20px 0px #EEF0F2;
}

.work_top_text {
    position: absolute;
    left: 0;
    top: 84px;
    width: 100%;
    z-index: 9;
}

.busi_text {
    padding-top: 16px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.about_busi .map_point {
    margin-bottom: 77px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.about_busi .map_point .map_line {
    display: block;
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.about_busi .map_point svg path {
    stroke: #0562AF;
    stroke-dasharray: 2000;
    stroke-dashoffset: -2000;
    -webkit-animation: circle-draw 6s cubic-bezier(.215, .61, .355, 1) infinite forwards;
    animation: circle-draw 6s cubic-bezier(.215, .61, .355, 1) infinite forwards
}

@keyframes circle-draw {
    0% {
        stroke-dashoffset: -2000
    }

    40% {
        stroke-dashoffset: 0
    }

    70% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: 2000
    }

}

@-webkit-keyframes circle-draw {
    0% {
        stroke-dashoffset: -2000
    }

    40% {
        stroke-dashoffset: 0
    }

    70% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: 2000
    }

}

.map_point {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.world-map .dot {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
}

.world-map .dot span {
    position: absolute;
    left: 25px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    width: max-content;
}

.world-map .dot i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-color);
    margin-right: 16px;
    position: relative;
}

.world-map .dot i::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: rgba(235, 99, 42, .7);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aboutbjRing 1.5s linear infinite;
    opacity: 0;
}

.world-map .dot i::before {
    animation-delay: .6s;
}

@keyframes aboutbjRing {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.8)
    }

    5% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3)
    }

}

.world-map .dot {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
}

.world-map .dot.active {
    flex-direction: column-reverse;
    justify-content: center;
}

.world-map .dot.active em {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    border-left: 1px dashed var(--main-color);
}

.world-map .dot.active i {
    margin-right: 0;
    background: var(--main-color);
    width: 12px;
    height: 12px;
}

.world-map .dot.active span {
    position: absolute;
    bottom: 56px;
    width: 84px;
    left: 50%;
    transform: translateX(-50%);
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    border: 2px solid #FFF;
    background: var(--main-color);
}

.world-map .dot.active span:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    /* background-image: url(../images/busi_jt.svg); */
    background-repeat: no-repeat;
    background-size: contain;
}

.world-map .dot.active i::before {
    background-color: rgba(0, 104, 183, .7);
}

.world-map .dot.zhongguo {
    left: 36.8%;
    top: 41.9%;
}

.world-map .dot.deguo {
    left: 7.9%;
    top: 28.5%;
}

.world-map .dot.yindu {
    left: 25.4%;
    top: 49.2%;
}

.world-map .dot.yinni {
    left: 32.8%;
    top: 62.8%;
}

.world-map .dot.hanguo {
    left: 39.3%;
    top: 38.5%;
}

.world-map .dot.aodaliya {
    left: 40.3%;
    top: 75.8%;
}

.china_img {
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
}

.china_cont {
    position: relative;
}

.china_cont .china_text {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #E3E4E7;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.9px;
}

.china_cont .china_img .dot {
    cursor: pointer;
}

.map_tab_cont .white_border {
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}

.map_tab_cont .white_border.d-show {
    opacity: 1;
    z-index: 9;
}

.white_border {
    position: absolute;
    left: 50px;
    border-radius: 16px;
    width: 360px;
    padding: 32px;
    background: var(--white-color);
    box-shadow: 0px 0px 20px 0px rgba(0, 104, 183, 0.10);
    z-index: 99;
}

.white_border::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 19px;
    background-image: url(../images/map_polygon.svg);
    background-repeat: no-repeat;
}

.white_border .map_title {
    color: var(--dark-color);
    font-weight: 700;
}

.white_border .map_line {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.white_border .map_text p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.white_border .map_text p:last-child {
    margin-bottom: 0;
}

.white_border .map_text p img {
    margin-right: 8px;
    margin-top: 5px;
}

.ipad_show {
    display: none !important;
}

@media (max-width:1279px) {

    .partner_title .about_number ul li {
        padding-right: 20px;
    }

    .white_border {
        width: 260px;
        padding: 30px 20px;
    }

}

@media (max-width:991px) {
    .about_number ul {
        margin-left: 0;
    }

    .partner_title {
        flex-wrap: wrap;
    }

    .partner_title .about_number {
        max-width: inherit;
        width: 100%;
        padding-top: 30px;
    }

    .china_cont,
    .about_busi,
    .china_bakground {
        display: none !important;
    }

    .ipad_show {
        display: block !important;
    }

    .white_border {
        /* width: 200px; */
        padding: 20px 20px;
    }

    .ipad_show .white_border {
        position: relative;
        width: 100%;
        left: inherit;
        margin-bottom: 20px;
        box-shadow: 0px 0px 10px 0px rgba(0, 104, 183, 0.10);
        z-index: 9;
    }

    .white_border::before {
        display: none;
    }


}

@media (max-width:767px) {
    .page_banner {
        height: 300px;
    }

    .partner_list ul {
        margin-left: -8px;
        margin-right: -8px;
    }

    .partner_list ul li {
        width: 33.33%;
        padding: 8px;
    }

    .load_more span {
        padding: 14px 20px;
    }

    .load_more span i {
        margin-left: 10px;
        width: 20px;
        height: 20px;
        background-size: cover;
    }

    .about_busi {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .work_top_text {
        position: relative;
        top: inherit;
    }

    .about_work {
        padding-top: 50px;
    }

    .about_work .about_work_tab {
        position: relative;
        padding-top: 30px;
        bottom: inherit;
        left: inherit;
        transform: none;
    }

    .about_work .about_work_tab ul {
        justify-content: center;
    }

    .about_busi .busi_title {
        padding-bottom: 20px;
    }

    .about_work .about_work_tab ul li span {
        padding: 12px 30px;
        font-size: 16px;
    }

    .about_work_cont .pub-t1.d-show {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .about_busi .world-map {
        margin-top: 30px;
    }


}

/* 社会责任 */
.welfare_box {
    padding-top: 65px;
    padding-bottom: 70px;
}

.welfare_box .text {
    padding-top: 24px;
    max-width: 650px;
    margin: 0 auto;
    ;
}

.welfare_box .text p {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.welfare_list {
    margin-top: 40px;
    position: relative;
    width: 100%;
    height: 540px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    z-index: 1;
    overflow: hidden;
}

.welfare_list .wel_tab {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
}

.welfare_list .wel_tab ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
}

.wel_tab ul li {
    width: 25%;
    padding: 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    transition: all .4s;
}

.wel_tab ul li:last-child {
    border-right: none;
}

.wel_tab .icon {
    width: 56px;
}

.wel_tab .t {
    margin-top: 16px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.6;
}

.wel_tab .des {
    display: none;
    transform: translateY(20px);
    margin-top: 16px;
    padding-top: 56px;
    position: relative;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    transition: transform .4s ease-in-out;
}

.wel_tab .des::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.5);
}

.wel_tab:hover ul li {
    opacity: 0.5;
}

@media (min-width:768px) {
    .wel_tab ul li {
        background-image: none !important;
    }

    .wel_tab:hover ul li.active,
    .wel_tab ul li.active {
        background: rgba(0, 104, 183, 0.80);
        opacity: 1;
    }

    .wel_tab ul li.active .des {
        display: block;
        transform: translateY(0);
    }

}

.wel_tab_cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.wel_tab_cont .pub-t1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .4s;
}

.wel_tab_cont .pub-t1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wel_tab_cont .pub-t1.d-show {
    opacity: 1;
}


.action_box {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #F0F5F9;
}

.action_cont {
    position: relative;
}

.action_cont:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../images/action_bg.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 31;
}

.action_cont:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #F0F5F9;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 20;
}

.action_box .swiper-container-01 {
    margin-top: 30px;

    z-index: 19;
    overflow: initial;
}

.swiper-container-01 .swiper-slide a {
    display: block;
}

.swiper-container-01 .swiper-slide a h2 {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: var(--dark-color);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 64px;
}

.swiper-container-01 .swiper-slide a .des {
    font-size: 14px;
    color: #666;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}

.swiper-container-01 .swiper-slide a .pic {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.swiper-container-01 .swiper-slide .pic i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    transition: transform 0.4s;
}

.m_time {
    margin-top: 24px;
    color: var(--main-color);
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.swiper-container-01 .swiper-slide a .pic img {
    width: 100%;
}

.swiper-container-01 .swiper-slide a:hover .pic i {
    transform: scale(1.03);
}

.swiper-container-01 .swiper-slide a:hover h2 {
    color: var(--m-blue);
}

.m_button {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.m_button .l {
    flex: 1;
    overflow: hidden;
}

.m_button .r {
    padding-left: 30px;
}

.m_button .pub-pagination {
    position: relative;
    height: 2px;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

.m_button .pub-pagination:before {
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #C5D8E7;
}

.m_button .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 30px;
    background: var(--orange-color);
}

.safe_box_top {
    padding: 64px 0;
    background-color: var(--white-color);
}

.safe_box_bottom {
    padding: 64px 0;
    background-color: #F0F5F9;
}


.index_ser_con .service_pagination {
    position: relative;
    bottom: 0;
    margin-top: 15px;
    text-align: center;
    display: none;
}

.index_ser_con .service_pagination span {
    border-radius: 8px;
}

.index_ser_con .swiper-pagination-bullet-active {
    background-color: var(--main-color);
    width: 14px;
    border-radius: 4px;
}

.index_ser_con {
    position: relative;
    margin-top: 40px;
}

.index_ser_con .swiper-slide {
    width: calc(16% - 24px);
    height: 550px;
    transition: all .5s;
    border-radius: 4px;
    overflow: hidden;
}

.index_ser_con .swiper-slide.active {
    width: calc(52% - 24px);
}

.index_ser_con .slide-item {
    height: 100%;
    width: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
}

.index_ser_con .slide-item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    height: 100%;
    width: 100%;
}

.index_ser_con .slide-item .l_ {
    width: 100%;
    position: absolute;
    padding: 30px;
    height: 100%;
    display: inline-flex;
    justify-content: space-between;
    flex-flow: column;
    z-index: 2;
}

.index_ser_con .slide-item .l_ .icon img {
    width: 50px;
}

.index_ser_con .slide-item .l_ .title {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.index_ser_con .slide-item .r_ {
    width: 100%;
    height: 0;
    position: relative;

    z-index: 2;
}

.index_ser_con .slide-item .r_ .c {
    width: 100%;
    height: 100%;
    padding: 30px;
    opacity: 0;
}

.index_ser_con .r_ .t {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}

.index_ser_con .r_ .t::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 16px;
    height: 2px;
    background-color: #FFF;
    opacity: 0.5;
}

.index_ser_con .r_ .list_ {
    margin-top: 16px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 660px;
}

.index_ser_con .r_ .index_more {
    margin-top: 30px;
}

.index_ser_con .active .slide-item:after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.index_ser_con .active .slide-item .l_ .title {
    opacity: 0;
}

.index_ser_con .active .slide-item .r_ {
    height: auto;
    transition: height .3s .4s;
}

.index_ser_con .active .slide-item .r_ .c {
    opacity: 1;
    transition: opacity .3s 0.4s;
}

@media (max-width:1440px) {
    .index_ser_con .slide-item .l_ {
        padding: 30px 20px;
    }

    .index_ser_con .slide-item .l_ .title {
        font-size: 26px;
    }

}

@media (max-width:1366px) {

    .index_ser_con .slide-item .l_ {
        padding: 30px 10px;
    }

    .index_ser_con .slide-item .l_ .title {
        font-size: 24px;
    }

}

@media (max-width:991px) {

    .index_ser_con .slide-item .l_ .title {
        font-size: 22px;
    }

}

@media (max-width:991px) {
    .index_ser_con .service_pagination {

        display: block;
    }

    .index_ser_con .swiper-slide-active .slide-item .l_ .title {
        opacity: 0;
    }

    .index_ser_con .swiper-slide-active .slide-item .r_ {
        height: auto;
        transition: height .3s .4s;
    }

    .index_ser_con .swiper-slide-active .slide-item .r_ .c {
        opacity: 1;
        transition: opacity .3s 0.4s;
    }

}

@media (max-width:767px) {
    .index_four {
        padding-top: 50px;
    }

    .index_ser_con .swiper-slide {
        height: 400px;
    }

    .index_ser_con .slide-item .l_ .icon img {
        width: 40px;
    }

    .index_ser_con .slide-item .r_ .c {
        padding: 30px 25px;
    }



}

.index_five_cont {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
}

.index_five_cont .index_five_img {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.index_five_cont .index_five_img>div:first-child {
    top: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 1s linear;
    -o-transition: 1s linear;
    transition: 1s linear;
    z-index: 30;
}

.index_five_cont .index_five_img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_five_cont .index_five_text {
    position: relative;
    width: 50%;
    padding: 72px 38px;
    background: #FFF;
}


.index_five_text .text {
    padding-top: 30px;
}

.index_five_text .text p {
    padding-bottom: 30px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.index_five_text .index_more {
    margin-top: 80px;
}

.index_five_text .index_more span {
    border: 1px solid var(--dark-color);
    background: rgba(255, 255, 255, 0.00);
    backdrop-filter: blur(4px);
}

@media (max-width:1279px) {
    .wel_tab ul li {
        padding: 50px 16px;
    }

}

@media (max-width:991px) {
    .wel_tab .icon {
        width: 46px;
    }

    .index_five_cont .index_five_text {
        padding: 30px 28px;
    }


}

@media (max-width:767px) {
    .welfare_list {
        height: auto;
        background-image: none !important;
        border-radius: 0;
    }

    .welfare_box {
        padding-top: 35px;
        padding-bottom: 30px;
    }

    .welfare_list .wel_tab {
        background: none;
    }

    .welfare_list .wel_tab ul {
        flex-wrap: wrap;
    }

    .welfare_list .wel_tab ul li {
        position: relative;
        width: 100%;
        border-right: none;
        margin-bottom: 20px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: 16px;
        overflow: hidden;
    }

    .welfare_list .wel_tab ul li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.50);
    }

    .wel_tab .des {
        display: block;
        transform: none;
        padding-top: 0;

    }

    .wel_tab .des::before {
        display: none;
    }

    .wel_tab_cont {
        display: none;
    }

    .wel_tab .icon {
        position: relative;
        width: 36px;
        z-index: 9;
    }

    .wel_tab .t {
        position: relative;
        z-index: 9;
    }

    .swiper-container-01 .swiper-slide a h2 {
        font-size: 18px;
        line-height: 26px;
        height: 52px;
    }

    .index_five_cont {
        flex-wrap: wrap;
    }

    .index_five_cont .index_five_text {
        width: 100%;
    }

    .index_five_cont .index_five_img {
        width: 100%;
    }

    .index_five_text .text {
        padding-top: 0;
    }

    .index_five_text .text p {
        padding-bottom: 20px;
    }

    .index_five_text .text p:last-child {
        padding-bottom: 0;
    }

    .index_five_cont .index_five_img img {
        position: relative;
    }
}

/* new list */
.new_bg {
    min-height: 50vh;
    padding-bottom: 50px;
    background-color: #F0F5F9;
}

.new_top {
    padding-top: 48px;
}

.new_top_box {
    padding-top: 40px;
}

.new_top .new_top_left {
    width: 66%;
}

.new_top_left .new_swiper {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.new_swiper .new_swiper_img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.new_swiper .new_swiper_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.new_swiper_mask {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.new_swiper a:hover .new_swiper_img img {
    transform: scale(1.05);
}

.new_top_left .time {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_top_left .new_top_bottom {
    padding-top: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.new_top_left .new_top_bottom .t {
    flex: 1;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;

    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.new_swiper .new-pagination {
    position: absolute;
    right: 24px;
    top: 24px;
    bottom: inherit;
    width: auto;
    text-align: right;
    z-index: 9;
}

.new_pagination span {
    background: rgba(0, 0, 0, 0.20);
    border-radius: 40px;
    opacity: 1;
    margin: 0 4px;
}

.new_pagination span.swiper-pagination-bullet-active {
    background-color: var(--orange-color);
    border-radius: 4px;
    width: 20px;
}



.new_top_right {
    margin-left: 24px;
    width: calc(34% - 24px);
}

.new_top_right ul {
    margin-top: -12px;
    margin-bottom: -12px;
}

.new_top_right ul li {
    padding: 12px 0;
}

.new_top_right a {
    position: relative;
    display: flex;
    width: 100%;
    height: 260px;
    padding: 32px;
    flex-direction: column;
    border-radius: 16px;
    background-color: var(--white-color);
    transition: background-color 0.3s ease-in-out;
    overflow: hidden;
}

.new_top_right .time {
    color: var(--main-color);
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_top_right .t {
    margin-top: 20px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 32px;
    height: 64px;
}

.new_more.grey_new_more {
    left: 32px;
    color: var(--dark-color);
}

.grey_new_more span img:nth-child(2) {
    display: none;
}

.new_more.grey_new_more span::before {
    background-color: var(--white-color);
}

.new_top_right a:hover {
    background-color: var(--main-color);
}

.new_top_right a:hover .time {
    color: rgba(255, 255, 255, 0.50);
}

.new_top_right a:hover .t {
    color: var(--white-color);
}

a:hover .grey_new_more {
    opacity: 1;
    color: var(--white-color);
}

a:hover .grey_new_more span::before {
    width: 100%;
    height: 100%;
}

a:hover .grey_new_more span img:nth-child(1) {
    display: none;
}

a:hover .grey_new_more span img:nth-child(2) {
    display: block;
}

.all_new {
    padding-top: 75px;
}

.public_search {
    width: 380px;
    height: 54px;
    border-radius: 60px;
    background-color: var(--white-color);
    opacity: 1;
    position: relative;
}

.public_search input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    height: 26px;
    display: block;
    width: 100%;
    padding: 0 20px;
    background-color: transparent;
    font-size: 16px;
    color: #333;
}

.public_search button {
    position: absolute;
    width: 53px;
    height: 53px;
    background: var(--main-color);
    opacity: 1;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-image: url(../images/search_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    cursor: pointer;
    z-index: 2;
}


@media(max-width:767px) {
    .new_top {
        padding-top: 30px;
    }

    .public_search {
        margin-top: 20px;
        width: 100%;
    }
}

.subject_list {
    padding-top: 28px;
}

.subject_list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.subject_list ul li {
    float: left;
    width: 33.33%;
    padding: 12px;
}

.subject_list a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: var(--white-color);
    transition: background-color .4s;
    overflow: hidden;
}

.subject_list .sca {
    position: relative;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}

.subject_list .sca i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s;

}

.subject_list .bottom {
    position: relative;
    padding: 24px;
}

.no_thumb .bottom {
    width: 100%;
    height: 100%;
}

.subject_list .bottom .date_year {
    color: var(--main-color);
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.subject_list .bottom .t {
    margin-top: 8px;
    color: var(--dark);
    font-weight: 700;
    height: 56px;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.subject_list .no_thumb .bottom .t {
    margin-top: 24px;
}

.subject_list .bottom .text {
    margin-top: 56px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.subject_list .bottom .new_more {
    position: relative;
    margin-top: 24px;
    left: inherit;
    bottom: inherit;
}

.subject_list .no_thumb .bottom {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.subject_list .no_thumb .bottom .new_more {
    margin-top: 0;
}

.subject_list .read_more {
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    padding-top: 24px;
    display: flex;
}

.subject_list .read_more span:first-child {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.subject_list .read_more span:nth-child(2) {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F5F6F8;
}

.subject_list .list:hover {
    background-color: var(--main-color);
}

.subject_list .list:hover .date_year,
.subject_list .list:hover .t,
.subject_list .list:hover .text {
    color: var(--white-color);
}

.subject_list .list:hover .read_more {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.subject_list .list:hover .read_more span:first-child {
    color: var(--white-color);
}

.subject_list .list:hover .sca i {
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);

}

@media (max-width:991px) {
    .subject_list .bottom .text {
        margin-top: 30px;
    }

    .new_top_right a {
        padding: 30px 20px;
        height: 240px;
    }

    .new_more.grey_new_more {
        left: 30px;
    }

}

@media (max-width:767px) {
    .new_top_box {
        padding-top: 30px;
        flex-wrap: wrap;
    }

    .new_top .new_top_left {
        width: 100%;
        height: 300px;
    }

    .new_top_right {
        margin-left: 0;
        width: 100%;
        margin-top: 30px;
    }

    .new_swiper_mask {
        padding: 30px 20px 20px 20px;
    }

    .new_top_left .time {}

    .new_top_left .new_top_bottom .t {
        font-size: 18px;
    }

    .all_new {
        padding-top: 35px;
        flex-wrap: wrap;
    }

    .subject_form form {
        display: block;
    }

    .subject_form .form_search {
        margin-top: 15px;
        margin-left: 0;
    }

    .year_select_box {
        width: 100%;
    }

    .year_select_box>.span {
        padding: 12px 16px;
    }

    .form_search .submit_icon {
        width: 50px;
        height: 50px;
        background-size: 20px 20px;
    }

    .subject_list ul li {
        width: 50%;
    }

    .subject_form {
        padding-top: 50px;
    }

}

@media (max-width:540px) {
    .subject_list ul li {
        width: 100%;
    }


    .subject_list .bottom {
        padding: 30px 20px 20px 20px;
    }

    .subject_list .read_more {
        margin-top: 24px;
    }

    .subject_list .no_thumb .bottom .t {
        font-size: 18px;
    }
}



/*page*/
.paged {
    padding: 30px 0 30px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    padding: 4px;
    height: 48px;
    width: 48px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 55px;
    border: 1px solid #CCC;
}

.paged a:hover,
.paged .active span {
    color: #fff;
    background-color: var(--orange-color);
    border-color: var(--orange-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    width: 48px;
    height: 48px;
}

.paged a:hover svg path {
    stroke: var(--white-color);
}

@media (max-width:767px) {
    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 0 5px;
        margin: 0 2px;
        width: 40px;
        height: 40px;
    }

    .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;
    }

}

/* article */
.article_mask {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article_mask::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: -1;
}

.article_mask>.my-container {
    height: 100%;
}

.article_mask>.my-container>div:first-child {
    position: relative;
    width: 100%;
    height: 100%;
}

.article_text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.article_text .t {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.article_text .des {
    padding-top: 24px;
}

.article_text .des span {
    display: inline-block;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_text .des span:nth-child(2) {
    margin-left: 16px;
    margin-right: 16px;
}

.article_text .des span:nth-child(3) {
    font-family: 'Montserrat';
}

.article_box {
    max-width: 1196px;
    margin: 0 auto;
    padding-top: 55px;
}

.article_content p {
    padding-bottom: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.article_content p img {
    display: block;
    border-radius: 16px;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.article_box .ar_label {
    padding-top: 24px;
    padding-bottom: 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid #F5F6F8;
}

.article_box .ar_label .label_t,
.article_box .ar_down .t {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.article_box .ar_label .label_list {
    padding-top: 10px;
}

.article_box .ar_label .label_list ul {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.article_box .ar_label .label_list ul li {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    float: left;
}

.article_box .label_list a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 40px;
    background: #F5F6F8;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #BBB;

}

.article_box .label_list a:hover {
    background-color: var(--orange-color);
    color: #fff;
}


/* 底部分享 */
.new_xqfx {
    text-align: center;
}

.new_xqfxtitle {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 24px;
}

.new_xqfxbox {
    display: flex;
    justify-content: center;
}

.new_xqfxbox span {
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid #ECECEC;
    border-radius: 50%;
    transition: background-color .3s;
    cursor: pointer;
}

.new_xqfxbox span img:nth-child(2) {
    display: none;
}

.new_xqfxbox img:last-child {
    margin-right: 0;
}

.new_xqfxbox span:hover {
    background-color: var(--main-color);
}

.new_xqfxbox span:hover img:first-child {
    display: none;
}

.new_xqfxbox span:hover img:nth-child(2) {
    display: inline-block;
}

.new_xqfxbox {
    margin-bottom: 56px;
}

.new_page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
}


.newxq_prev span,
.newxxq_next span {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.newxq_prev span em,
.newxxq_next span em {
    font-style: normal;
    margin-left: 16px;
}

.newxq_list,
.newxq_prev,
.newxxq_next {
    padding: 16px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;

    border-radius: 70px;

    font-size: 16px;
    cursor: pointer;
}

.newxq_list {
    justify-content: center;
    background: #F0F5F9;

}

.newxq_prev svg {
    margin-right: 16px;
}

.newxxq_next svg {
    margin-left: 16px;
}

.newxq_list::after {
    content: '';
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    left: -40px;
}

.newxq_list::before {
    content: '';
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    right: -40px;
}

.newxq_list {
    margin-left: 34px;
    margin-right: 34px;
    position: relative;
}

.newxq_list svg {
    margin-left: 16px;
}

.newxq_prev {
    margin-right: 34px;
}

.newxxq_next {
    margin-left: 34px;
}

.newxq_prev:hover span {
    color: #fff;
    transition: .3s;
}

.newxq_prev:hover {
    background-color: var(--main-color);
    transition: .3s;
}

.newxxq_next:hover {
    background-color: var(--main-color);
    transition: .3s;
}

.newxq_prev:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.newxxq_next:hover span {
    color: #fff;
    transition: .3s;
}

.newxxq_next:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.newxq_list:hover {
    background: var(--main-color);
    color: #FFF
}

.newxq_list:hover a {
    color: #fff;
}

.newxq_list:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.article_postion {
    padding: 70px 0;
    background-color: #F0F5F9;
}

.article_postion .new_xq_swiper {
    padding-bottom: 40px;
}

.article_postion .new-xq-pagination {
    position: absolute;
    text-align: center;
    bottom: 0;
}

@media (max-width:767px) {
    .article_text .des span:nth-child(2) {
        margin-left: 10px;
        margin-right: 10px;
    }

    .article_box {
        padding-top: 30px;
    }

    .new_page {
        flex-wrap: wrap;
        padding-bottom: 40px;
    }

    .newxq_list,
    .newxq_prev,
    .newxxq_next {
        padding: 10px 16px;
        font-size: 12px;
        margin: 0;
    }

    .newxq_prev span,
    .newxxq_next span {
        font-size: 12px;
    }

    .newxq_list {
        margin-left: 5px;
        margin-right: 5px;
    }

    .newxq_list svg {
        margin-left: 4px;
        width: 16px;
    }

    .newxq_prev svg {
        margin-right: 4px;
        width: 16px;
    }

    .newxxq_next svg {
        margin-left: 4px;
        width: 16px;
    }

    .newxq_list::before,
    .newxq_list::after {
        display: none;
    }

    .newxq_prev span {
        font-size: 12px;
    }

    .new_xqfxbox {
        margin-bottom: 30px;
    }

    .new_xqfxbox span {
        margin-right: 10px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }

}

/* product list */
.product_box {
    padding-top: 43px;
}

.product_menu {
    position: sticky;
    top: 0px;
    padding: 12px;
    background-color: #F0F5F9;
    z-index: 9;
}

.product_menu ul {
    margin-left: -5px;
    margin-right: -5px;
    display: flex;
    flex-wrap: wrap;
}

.product_menu ul>li {
    padding: 5px;
}

.product_menu ul>li>a {
    display: flex;
    padding: 16px 23px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: var(--white-color);
    color: var(--dark-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    transition: background-color .3s;
}

.product_menu ul>li a:hover,
.product_menu ul>li.active a {
    background-color: var(--main-color);
    color: var(--white-color);
}

.product_list_swiper {
    margin-top: 2px;
    margin-bottom: 16px;
    height: 540px;
    border-radius: 16px;
}

.product_list_swiper .thumb {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.product_list_swiper .thumb div {
    width: 100%;
    height: 100%;
}

.product_list_swiper .thumb div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_list_swiper a {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product_list_swiper .text {
    padding: 130px 200px;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.product_list_swiper .s_t {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.product_list_swiper .big_t {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.product_list_swiper .more {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.product_list_swiper .more img {
    margin-left: 7px;
    width: 20px;
}

.product_list_swiper .product_list_pagination {
    position: absolute;
    bottom: 60px;
    text-align: center;
    z-index: 9;
}

.product_list_swiper .product_list_pagination span {
    background: rgba(255, 255, 255, 0.20);
}

.product_list_swiper span.swiper-pagination-bullet-active {
    background-color: var(--orange-color);
}


.product_t {
    padding-top: 40px;
}

.product_t .t {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.product_list_box .term_box {
    overflow: inherit;
}

.product_list_box .term_box:last-child .product_list {
    border-bottom: none;
    padding-bottom: 0;
}

.product_list {
    padding-top: 12px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.product_list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* .product_hide {
    display: none;
} */
.product_list .more {
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_list .more a {
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.product_list ul li {
    width: 25%;
    padding: 12px;
}

.product_list .bg {
    border-radius: 16px;
    background: #FFF;
    padding: 16px 26px 26px 26px;
    transition: box-shadow .3s;
}

.product_list .thumb {
    display: block;
    max-width: 220px;
    margin: 0 auto;
    overflow: hidden;
}

.product_list .thumb i {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    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;
}

.product_list .t {
    margin-top: 16px;
    display: block;
    text-align: center;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.product_list .text {
    margin-top: 8px;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    height: 52px;
    line-height: 26px;
}

.product_list .button {
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.product_list .button a {
    width: 92px;
    display: flex;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.product_list .button a img {
    width: 18px;
    margin-left: 8px;
    transition: all 0.3s;
}

.product_list .button a:first-child {
    margin-right: 20px;
}

.product_list .bg:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.product_list .bg:hover .t {
    color: var(--main-color);
}

.product_list .bg:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.product_bottom {
    padding: 108px 0 88px 0;
    margin-top: 60px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.product_bottom::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    background: #000;
}

.product_bottom .my-container {
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    z-index: 8;
}

.product_bottom .t {
    margin-bottom: 32px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

@media (min-width:992px) {
    .product_list .bg .button a:hover img {
        margin-left: 10px;
    }


}

@media (max-width:1279px) {
    .product_list_swiper {
        height: 500px;
    }

    .product_list_swiper .text {
        padding: 100px 80px;
    }


    .product_list .button {
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .product_list .button a {
        width: 100%;
        justify-content: center;
    }

    .product_list .button a:first-child {
        margin-right: 0;
    }

}

@media (max-width:991px) {
    .product_list_swiper {
        height: 400px;
    }

    .product_list_swiper .text {
        padding: 80px 60px;
    }

    .product_list_swiper .product_list_pagination {
        bottom: 30px;
    }

    .product_list .bg {
        padding: 16px 20px 26px 20px;
    }

}

@media (max-width:767px) {
    .product_box {
        padding-top: 10px;
    }

    .product_box {
        overflow: hidden;
    }

    .product_menu {
        position: relative;
        padding: 12px 0;
    }

    .product_menu ul>li {
        width: 33.33%;
    }

    .product_menu ul>li>a {
        padding: 12px 5px;
    }

    .product_list_swiper {
        height: 400px;
    }

    .product_list_swiper .text {
        padding: 40px 30px 30px;
        height: 260px;
    }

    .product_list_swiper .product_list_pagination {
        bottom: 16px;
    }

    .product_list ul li {
        width: 50%;
    }

    .product_bottom {
        padding: 70px 0 60px 0;
        margin-top: 40px;
        background-position: 32% 0;
    }

    .product_list .button {
        padding-top: 20px;
        flex-wrap: wrap;
    }

    .product_list .button a {
        width: auto;
        justify-content: center;
    }

    .product_list .button a:first-child {
        margin-right: 10px;
    }


}

@media (max-width:540px) {
    .product_list ul li {
        width: 100%;
    }

}

/* product xq */
.pro_xq_top {
    position: relative;
    padding-bottom: 38px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pro_xq_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    /* opacity: 0.8; */
    /* background: linear-gradient(279deg, #496481 0.64%, rgba(73, 100, 129, 0.00) 64.06%); */
    z-index: -1;
}

.xq_top_box {
    padding-top: 35px;
    align-items: center;
}

.xq_top_box .xq_top_left {
    flex: 1;
    margin-right: 100px;
}

.xq_top_box .xq_top_right {
    max-width: 650px;
}

.xq_top_box .xq_top_left .s_t {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.xq_top_box .xq_top_left .big_t {
    margin-top: 8px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.xq_top_box .xq_top_left .text {
    margin-top: 30px;
    margin-bottom: 50px;
    min-height: 192px;
}

.xq_top_box .xq_top_left .text p {
    position: relative;
    padding-bottom: 8px;
    padding-left: 14px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.xq_top_box .xq_top_left .text p::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.xq_top_left .button .index_more:first-child {
    margin-right: 16px;
}


.pro_showcenter {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(240, 245, 249, 0.80);
    backdrop-filter: blur(8px);
    padding-top: 20px;
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 9;
}

.pro_showcenter_boxleft {
    color: var(--main-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.pro_showcenter_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pro_showcenter_boxright {
    display: flex;
    align-items: center;
}

.pro_showcenter_boxrightnav {
    display: flex;
    margin-right: 24px;
    align-items: center;
}

.pro_showcenter_boxrightnav_item {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-right: 40px;
    position: relative;
    cursor: pointer;
}

.pro_showcenter_boxrightnav_item:last-child {
    margin-right: 0;
}

.pro_showcenter_boxrightnav_item::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 2px;
    left: 0;
    background-color: var(--orange-color);
    bottom: -32px;
    transition: .3s;
}

.pro_showcenter_boxrightnav_item.active {
    color: var(--orange-color);
}

.pro_showcenter_boxrightnav_item.active::after {
    width: 100%;
    transition: .3s;
}

.pro_showcenter_boxrightnav_item:hover {
    color: var(--orange-color);
}

.pro_showcenter_boxrightnav_item:hover::after {
    width: 100%;
    transition: .3s;
}

.pro_showcenter_button a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 40px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.pro_infor {
    padding-top: 66px;
}

.pro_infor .text {
    margin-top: 20px;
}

.pro_infor .text p {
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.pro_infor .text p:last-child {
    padding-bottom: 0;
}

.pro_infor .text p img {
    border-radius: 16px;
}

.pt64 {
    padding-top: 64px;
}

.pro_xq_left_t .t {
    position: relative;
    padding-bottom: 16px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
}

.pro_xq_left_t .t::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 2px;
    background-color: var(--orange-color);
}

.parameter_box .table {
    padding-top: 40px;
}

.parameter_box .table table {
    width: 100%;
}

.parameter_box .table table tr td {
    padding: 16px 24px;
    border-radius: 4px;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.parameter_box .table table tr td:first-child {
    width: 140px;
    text-align: center;
    background-color: var(--main-color);
    color: var(--white-color);
}

.parameter_box .table table tr td:nth-child(2) {
    background-color: var(--white-color);
}

.apply_box .border_grey a {
    border: 1px solid rgba(17, 0, 0, 0.10);

}

.apply_box .border_grey a span {
    background-color: rgba(17, 0, 0, 0.10);
}

.apply_box .border_grey a:hover span {
    background-color: var(--deep-color);
}

.apply_box .border_grey a:hover {
    border-color: transparent;
}

.pro_xq_apply {
    padding-top: 28px;
}

.pro_xq_apply ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
    align-self: stretch;
}

.pro_xq_apply ul li {
    width: 25%;
    padding: 12px;
}

.pro_xq_apply a {
    background-color: transparent !important;
}

.pro_xq_apply .line {
    position: relative;
    margin-top: 16px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.pro_xq_apply .line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.6s;
}

.pro_xq_apply .bottom {
    padding: 24px 0 0 0;
}

.pro_xq_apply .bottom .t {
    margin-top: 0;
    line-height: 30px;
    height: 60px;
}

.pro_xq_apply .bottom .new_more {
    margin-top: 16px;
    opacity: 0.3;
}

.pro_xq_apply .new_more span::before {
    display: none;
}

.pro_xq_apply a:hover .bottom .t {
    color: var(--main-color);
}

.pro_xq_apply a:hover .grey_new_more {
    opacity: 0.3;
    color: #000;
}

.pro_xq_apply a:hover .grey_new_more span img:nth-child(1) {
    display: block;
}

.pro_xq_apply a:hover .line::before {
    width: 100%;
}

.pro_xq_down {}

.pro_xq_down_list {
    padding-top: 40px;
    padding-bottom: 34px;
}

.pro_xq_down_list ul li {
    padding-bottom: 24px;
}

.pro_xq_down_list ul li:last-child {
    padding-bottom: 0;
}

.pro_xq_down_list ul li a {
    display: flex;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    background-color: var(--white-color);
    transition: background-color .3s;
}

.pro_xq_down_list .t {
    padding-left: 38px;
    flex: 1;
    margin-right: 24px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    background-image: url(../images/pdf_blue.svg);
    background-size: 24px 24px;
    background-repeat: no-repeat;
    background-position: left center;
}

.pro_xq_down_list .more_b {
    display: flex;
}

.pro_xq_down_list .more_b div {
    display: flex;
    position: relative;
    padding: 13px;
    align-items: center;
    justify-content: flex-end;
    border-radius: 40px;
    background-color: #F0F5F9;
    transition: all 0.5s ease;
}

.pro_xq_down_list .more_b span {
    position: absolute;
    right: 42px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    width: max-content;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pro_xq_down_list .more_b i {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../images/down_blue.svg);
    background-repeat: no-repeat;
}

.pro_xq_down_list a:hover {
    background-color: var(--main-color);
}

.pro_xq_down_list a:hover .t {
    color: var(--white-color);
    background-image: url(../images/pdf_white.svg);
}

.pro_xq_down_list a:hover .more_b div {
    background: var(--white-color);

    border-color: var(--marin-color);
}

@media (min-width:768px) {
    .pro_xq_down_list a:hover .more_b div {
        padding-left: 50px;
    }

    .pro_xq_down_list a:hover .more_b span {
        opacity: 1;
    }

}

.pro_xq_down .new_page {
    padding-top: 30px;
    justify-content: space-between;
}

.pro_xq_down .newxq_list {
    width: 282px;

}

.pro_xq_down .newxq_prev {
    margin-right: 0;
}

.pro_xq_down .newxxq_next {
    margin-left: 0;
}

.pro_xq_down .newxq_prev,
.pro_xq_down .newxxq_next {
    padding: 20px 24px;
}

.pro_xq_down .new_page a:first-child,
.pro_xq_down .new_page a:nth-child(3) {
    width: calc(50% - 220px);
}

.pro_xq_down .newxq_list {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #FFF;
    font-size: 16px;
    cursor: pointer;
}

.pro_xq_down a:hover .newxq_list {
    background-color: var(--main-color);
}


.pro_xq_content {
    overflow: hidden;
}

.pro_xq_content .term_box {
    overflow: inherit;
}

.pro_xq_position {
    margin-left: -20px;
    margin-right: -20px;
}

.pro_tj_swiper {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.pro_tj_swiper .product_list {
    padding-top: 12px;
    padding-bottom: 28px;
    border-bottom: none;
}

.pro_tj_swiper .product_list .button a:first-child {
    margin-right: 0;
}

.pro_tj_swiper .pro-tj-pagination {
    text-align: center;
}

@media (max-width:1279px) {
    .xq_top_box .xq_top_left {
        margin-right: 60px;
    }

}

@media (max-width:991px) {
    .pro_xq_apply ul li {
        width: 33.33%;
    }

    .xq_top_box {
        flex-wrap: wrap;
    }

    .xq_top_box .xq_top_left {
        margin-right: 0;
        width: 100%;
    }

    .xq_top_box .xq_top_left .text {
        margin-top: 30px;
        margin-bottom: 50px;
        min-height: inherit;
    }

    .subject_list .bottom .t {
        font-size: 18px;
    }

    .pro_showcenter_boxrightnav {
        display: none;
    }

    .pro_showcenter_button a {
        width: auto;
    }

    .pro_xq_down .new_page a:first-child,
    .pro_xq_down .new_page a:nth-child(3) {
        width: calc(50% - 120px);
    }

    .pro_xq_down .newxq_list {
        width: 160px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .pro_xq_down .newxq_list::before,
    .pro_xq_down .newxq_list::after {
        display: none;
    }
}

@media (max-width:767px) {
    .pro_xq_top {
        margin-top: 80px;
    }

    .pro_xq_apply ul li {
        width: 50%;
    }

    .parameter_box .table {
        overflow-y: auto;
    }

    .parameter_box .table table {
        width: max-content;
    }

    .pro_xq_down .newxq_list {
        width: 100px;
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px 10px;
        font-size: 12px;
    }

    .pro_xq_down .new_page a:first-child,
    .pro_xq_down .new_page a:nth-child(3) {
        width: calc(50% - 10px);
    }

    .pro_xq_down .newxq_prev,
    .pro_xq_down .newxxq_next {
        padding: 10px 10px;
    }

    .pro_xq_down .newxxq_next span {
        text-align: right;
    }

    .pro_xq_down_list ul li a {
        padding: 24px 20px;
    }

    .pro_infor {
        padding-top: 50px;
    }

    .pt64 {
        padding-top: 50px;
    }

    .pro_xq_apply .bottom .t {
        height: auto;
    }

    .xq_top_left .button {
        justify-content: space-between;
    }

    .xq_top_left .button .index_more {
        width: calc(50% - 10px);
    }

    .xq_top_left .button .index_more a {
        width: 100%;
    }

}

@media (max-width:540px) {

    .pro_xq_apply ul li {
        width: 100%;
    }

}

@media (max-width:359px) {

    .pro_xq_down .newxq_prev span,
    .pro_xq_down .newxxq_next span {
        display: none;
    }

    .pro_xq_down .newxxq_next {
        justify-content: flex-end;
    }
}

/* 首台套应用 */
.first_set_title {
    padding-top: 48px;
}

.set_box {
    padding-bottom: 30px;
}

.set_menu ul {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.set_menu ul li {
    padding: 0 8px;
}

.set_menu a {
    position: relative;
    display: flex;
    min-width: 110px;
    padding: 16px 23px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #F0F5F9;
    color: var(--dark-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    transition: background-color .3s;
    overflow: hidden;
}

.set_menu ul li a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--main-color);
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.25s ease-in-out;
}

.set_menu .active a,
.set_menu a:hover {
    color: var(--white-color);
    background-color: transparent;
}

.set_menu ul li.active a::before,
.set_menu ul li a:hover::before {
    transform-origin: center left;
    transform: scaleX(1);
}

.first_set_list {
    padding-bottom: 10px;
}

.first_set_list .set_bottom {
    padding-top: 16px;
    display: flex;
    align-items: center;
}

.first_set_list .set_bottom span {
    position: relative;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.first_set_list .set_bottom span img {
    margin-right: 8px;
    width: 20px;
}

.first_set_list .set_bottom span:first-child {
    padding-right: 24px;
    margin-right: 24px;
}

.first_set_list .set_bottom span:first-child:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.10);
}

.first_set_list .set_bottom span:nth-child(2) {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

@media (max-width:1365px) {
    .first_set_title {
        flex-wrap: wrap;
    }

    .set_menu ul {
        margin-left: -4px;
        margin-right: -4px;
    }

    .set_menu ul li {
        padding: 0 4px;
    }

}

@media (max-width:1279px) {
    .first_set_title .set_menu {
        flex: inherit;
        padding-top: 30px;
        width: 100%;
    }

}

@media (max-width:767px) {
    .set_menu ul li {
        width: 33.33%;
        padding-bottom: 8px;
    }

    .set_menu a {
        min-width: inherit;
        padding: 14px 5px;
    }

    .pro_xq_apply .bottom {
        padding: 16px 0 0 0;
    }

    .first_set_list .set_bottom span:first-child {
        padding-right: 16px;
        margin-right: 16px;
    }

    .first_set_list .set_bottom span {
        display: flex;
        align-items: center;
    }

    .first_set_list .set_bottom span img {
        margin-right: 6px;
    }
}

@media (max-width:359px) {
    .set_menu ul li {
        width: 50%;
    }


}

/* 首台套详情 */
.position_case {
    padding: 72px 0;
    background-color: #F0F5F9;
}

.case_tj_swiper {}

.case-tj-pagination {
    padding-top: 20px;
    text-align: center;
}

.case_xq_top {
    padding-top: 48px;
}

.case_x_title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.case_position {
    padding-bottom: 90px;
}

.case_position .case_list {
    padding-top: 28px;
}

.case_xq_cont {
    margin-top: 32px;
    padding-top: 42px;
    padding-bottom: 45px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.case_xq_cont .xq_cont {
    padding-bottom: 75px;
}

.case_xq_cont .xq_cont .xq_cont_left {
    width: 246px;
    float: left;
    padding-right: 24px;
    position: sticky;
    top: 100px;

    z-index: 9;
}

.case_xq_cont .xq_cont .xq_cont_right {
    float: left;
    width: calc(100% - 246px);
    padding-left: 88px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
}

.case_xq_cont .xq_cont_left .s_t {
    color: #666;

    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.case_xq_cont .xq_cont_left .big_t {
    padding-top: 4px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
}

.case_xq_cont .xq_cont_left .pt16 {
    padding-top: 16px;
}

.case_xq_cont .xq_cont_right .title {
    color: var(--dark-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.case_xq_cont .xq_cont_right .s_title {
    padding-top: 16px;
    color: var(--dark-color);
    font-family: "Microsoft YaHei";
    font-weight: 700;
    line-height: 30px;
}

.case_xq_cont .xq_cont_right .text {
    padding-top: 14px;
}

.case_xq_cont .xq_cont_right .text p {
    padding-top: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.case_xq_cont .xq_cont_right .text p:last-child {
    padding-bottom: 0;
}

.case_xq_cont .xq_cont_right .text p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
    border-radius: 16px;
}

.case_xq_down .new_page {
    padding-top: 0;
    padding-bottom: 20px;
}

.case_xq_down .newxq_list,
.case_xq_down .newxq_prev,
.case_xq_down .newxxq_next {
    background-color: #F0F5F9;
}

.case_xq_down .newxq_list {
    color: var(--dark-color);
}

.case_xq_down .newxq_list {
    padding-top: 20px;
    padding-bottom: 20px;
}

.case_xq_down a:hover .newxq_list {
    color: var(--white-color);
}

.case_xq_down a:hover .newxq_prev,
.case_xq_down a:hover .newxxq_next {
    background-color: var(--main-color);
}

@media (max-width:1279px) {
    .case_xq_cont .xq_cont .xq_cont_left {
        width: 200px;
    }

    .case_xq_cont .xq_cont .xq_cont_right {
        width: calc(100% - 200px);
        padding-left: 60px;
    }

}

@media (max-width:991px) {

    .case_xq_cont .xq_cont .xq_cont_right {
        padding-left: 40px;
    }

}

@media (max-width:767px) {
    .case_xq_top {
        padding-top: 30px;
    }

    .case_xq_cont {
        margin-top: 25px;
        padding-top: 20px;
        padding-bottom: 15px;
    }

    .case_xq_cont .xq_cont .xq_cont_left {
        width: 100%;
        position: relative;
        top: 0;
        padding-right: 0;
    }

    .case_xq_cont .xq_cont .xq_cont_right {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
        border-left: none;
    }

    .case_xq_cont .xq_cont {
        padding-bottom: 35px;
    }

    .case_xq_cont .xq_cont_left .pt35 {
        padding-top: 25px;
    }

    .case_xq_down .newxq_list {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .position_case {
        padding: 50px 0;
    }
}

/* 行业解决方案 */
.indus_case {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.indus_case .scrill {
    opacity: 1 !important;
}

.indus_location {
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    z-index: 9;
}

.application_cont {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 200px;
    padding-bottom: 100px;
}

.application_cont .my-container {
    height: 100%;
}

.application_cont .application_c {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.application_left {
    flex: 1;
    position: relative;
    margin-right: 50px;
    max-width: 748px;
}

.index_page_current .application_left {
    animation: 1s aniStyle2 0.3s;
    animation-fill-mode: forwards;
}

.index_page_current .application_right {
    animation: 1.4s aniStyle2 0.3s;
    animation-fill-mode: forwards;
}

.application_left .index_more {
    margin-top: 40px;
}

.application_left .deve_title .t {
    color: var(--white-color);
}

.application_text {
    margin-top: 24px;
    height: 50%;
    overflow: hidden;
}

.application_text p {
    padding-bottom: 20px;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.application_right {
    order: 2;
    width: 560px;
    display: flex;
    align-items: center;
}

.application_cont .tab_cont_box {
    padding-top: 125px;
    max-width: 550px;
}

@media screen and (min-width:768px) {
    .application_cont .tab_cont_box .pub-t1 {
        transform: translateY(30px);
        transition: transform .6s;
    }

    .application_cont .tab_cont_box .pub-t1.d-show {
        transform: translateY(0);
    }
}

.application_cont .tab_cont_box .t {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.application_cont .tab_cont_box .des {
    margin-top: 24px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.application_cont .tab_cont_box .des P {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.application_cont .button .index_more:first-child {
    margin-right: 16px;
}


.application_cont .tab_box {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.application_cont .tab_cont_box .pub-t1,
.application_cont .tab_box .pub-t1 {
    position: relative;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.application_cont .tab_cont_box .pub-t1.d-show,
.application_cont .tab_box .pub-t1.d-show {
    opacity: 1;
    height: 100%;
}

.application_cont .apli_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, #000 100%);
    z-index: 1;

}

.application_cont .apli_mask::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 30%;
    max-width: 1132px;
    background-image: url(../images/apli_icon2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left bottom;
    z-index: 1;

}

.application_cont .tab_box .apli_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.8s ease;
    transform-origin: center;
}

.application_cont .tab_box .d-show .apli_img {
    transform: scale(1.03);
}

.application_tab {
    width: 100%;
    height: 100%;
}

.application_tab ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    height: 100%;
}

.application_tab ul li {
    width: 50%;
    height: 25%;
    float: left;
    padding: 12px;
}

.application_tab .border {
    position: relative;
    padding: 24px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 16px;
    transition: background-color .3s;
    overflow: hidden;
    cursor: pointer;
}

.application_tab .active .border {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.application_tab .active .border::before {
    opacity: 0;
}

.application_tab .active .border:after {
    height: 100%;
}

.application_tab .border h3 {
    position: relative;
    padding-bottom: 12px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.application_tab .border h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16px;
    height: 1px;
    background-color: #FFF;
}

.application_tab .border span {
    position: absolute;
    bottom: 24px;
    right: 24px;
    max-width: 42px;
}

.apli_cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (max-height:800px) {
    .application_cont {
        padding-top: 160px;
        padding-bottom: 100px;
    }

}

@media (max-height:750px) {
    .application_cont {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .application_cont .tab_cont_box {
        padding-top: 60px;
    }
}

@media (max-width:1440px) {
    .application_right {
        width: 500px;
    }

}

@media (max-width:1366px) {
    .application_right {
        width: 460px;
    }

    .application_tab .border span {
        bottom: 16px;
        right: 16px;
        max-width: 36px;
    }
}

@media (max-width:1280px) {
    .application_right {
        width: 40%;
    }

    .application_tab .border {
        padding: 20px;
    }

    .application_tab .border span {
        bottom: 12px;
        right: 12px;
        max-width: 30px;
    }
}

@media (max-width:1279px) {
    .deve_title .t {
        font-size: 34px;
    }

    .application_cont .tab_cont_box {
        padding-top: 60px;
    }

}

@media (max-width:991px) {
    .application_cont {
        padding-top: 140px;
        padding-bottom: 80px;

    }

    .application_left {
        flex: inherit;
        width: 54%;
        margin-right: 30px;
    }

    .application_right {
        width: 46%;
    }

    .application_tab ul li {
        height: 120px;
    }

    .application_tab .border {
        padding: 16px;
    }

    .application_tab .border h3 {
        font-size: 18px;
    }

    .deve_title .t {
        font-size: 26px;
    }

    .application_left .index_more {
        width: calc(50% - 8px);
    }

    .application_left .index_more a {
        width: 100%;
    }

}

@media (max-width:767px) {
    .indus_case {
        height: auto;
    }

    .indus_location {
        top: 75px;
    }

    .application_cont {
        padding-top: 135px;
        padding-bottom: 60px;
    }

    .application_text {
        margin-top: 24px;
        height: auto;
    }

    .application_cont .application_c {
        flex-wrap: wrap;
    }

    .application_left {
        flex: inherit;
        margin-right: 0;
        max-width: inherit;
        width: 100%;
    }

    .deve_title .t {
        font-size: 24px;
    }

    .application_right {
        width: 100%;
        padding-top: 50px;
    }

    .application_left .index_more {
        margin-top: 30px;
    }

    .application_tab ul {
        margin-left: -6px;
        margin-right: -6px;
    }

    .application_tab ul li {
        width: 50%;
        height: 25%;
        padding: 6px;
    }

    .application_tab .border {
        padding: 16px;
        padding-top: 12px;
    }

    .application_tab .border span {
        bottom: 10px;
        right: 10px;
        max-width: 26px;
    }

    .application_tab .border h3 {
        padding-bottom: 12px;
        font-size: 18px;
    }

    .application_left .button {
        max-width: 400px;
    }

    .indus_case .scrill {
        display: none;
    }

    .application_cont .apli_mask::before {
        width: 100%;
    }
}

@media (max-width:360px) {
    .deve_title .t {
        font-size: 22px;
    }

}

@media (max-width:359px) {
    .deve_title .t {
        font-size: 20px;
    }

}

/* 行业解决方案详情 */
.indus_detail_box {
    position: relative;
    width: 100%;
    min-height: calc(100vh + 12px);
    /* min-height: 600px; */
    overflow: hidden;
}

.indus_detail_box .indus_d_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.indus_detail_box .indus_d_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indus_first_box {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9;

}

.indus_first_box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: -1;
}

.indus_first_box>.my-container {
    height: 100%;
    padding-top: 98px;

}

.indus_first_cont {
    padding-top: 135px;
    padding-top: 4.5%;
    width: 100%;
    height: calc(100% - 52px);

}

.indus_first_cont .first_cont_n {
    position: relative;
    padding-top: 55px;
    padding-bottom: 50px;
    z-index: 1;
}

.indus_first_cont .first_cont_n:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 172px;
    height: 124px;
    background-image: url(../images/case_dou.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    z-index: -1;
}

.first_cont_n .small_box {
    max-width: 656px;
    margin-right: 100px;
}

.small_box .title .left {
    flex: 1;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.small_box .title .right img {
    width: 58px;
}

.small_box .prog_line {
    margin-top: 16px;
    margin-bottom: 16px;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.20);
}

.small_box .text .t {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.small_box .text .m_scoll {
    margin-top: 8px;
    margin-bottom: 50px;
    height: 258px;
    overflow-y: auto;
}

.small_box .text .m_scoll p {
    padding-bottom: 20px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.small_box .text .m_scoll p:last-child {
    padding-bottom: 0;
}

.small_box .button .index_more:first-child {
    margin-right: 16px;
}

.indus_d_bottom,
.indus_d_bottom::before {
    background-color: #F0F5F9;
}

.indus_d_b_top {
    padding-top: 48px;
}

.indus_b_title {
    position: relative;
    padding-bottom: 18px;
    color: var(--dark-color);

    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.indus_b_title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16px;
    height: 2px;
    background-color: var(--orange-color);
}

.indus_pro_list {
    margin-left: -20px;
    margin-right: -20px;
}

.indus_d_b_top .indus_line {
    margin-top: 48px;
    margin-bottom: 48px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

@media (max-width:1440px) {
    .indus_first_cont .first_cont_n {
        padding-top: 25px;
    }

    .indus_first_cont .first_cont_n::after {
        width: 150px;
    }

    .small_box .text .m_scoll {
        margin-bottom: 30px;
        height: 208px;
    }

}

@media (max-width:1365px) {
    .indus_first_cont .first_cont_n::after {
        width: 130px;
    }

}

@media (max-width:991px) {
    .indus_first_cont .first_cont_n::after {
        width: 90px;
    }

}

@media (max-width:767px) {
    .indus_first_cont .first_cont_n {
        padding-top: 30px;
    }

    .indus_first_cont .first_cont_n::after {
        width: 60px;
    }

    .first_cont_n .small_box {
        margin-right: 0px;
    }

    .small_box .title .right img {
        width: 36px;
    }

    .small_box .text .m_scoll {
        height: auto;
    }

    .small_box .button {
        max-width: 320px;
    }

    .small_box .button .index_more {
        width: calc(50% - 8px);
    }

    .indus_d_bottom {
        overflow: hidden;
    }
}

/* 样本下载 */
.service_box .set_menu a {
    padding: 12px 23px;
}

.ser_down_title {
    padding-top: 48px;
}

.sam_down_cont {
    padding-top: 45px;

}

.sam_left_menu {
    display: flex;
    width: 352px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.sam_down_cont .sam_right {
    flex: 1;
    padding-left: 42px;
}

.sam_left_menu .sub_title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 28px;
}

.sam_left_menu>ul {
    padding-top: 16px;
    width: 100%;
}

.sam_left_menu>ul>li {
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.sam_left_menu>ul>li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.sam_left_menu>ul>li:last-child:after {
    display: none;
}

.sam_left_menu>ul>li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.sam_left_menu>ul>li>a {
    display: block;
    position: relative;
    width: 100%;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    transition: all 0.4s;
}

.sam_left_menu>ul>li>a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--white-color);
    transform: translateY(-50%);
    background-image: url(../images/down_menu_grey.svg);
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: center;
    transition: background-color 0.4s;
}

.sam_left_menu>ul>li.active>a,
.sam_left_menu>ul>li>a:hover {
    color: var(--main-color);
}

.sam_left_menu>ul>li.active>a:after,
.sam_left_menu>ul>li>a:hover:after {
    background-color: var(--main-color);
    background-image: url(../images/menu_white.svg);

}

.sam_right_list ul {
    margin-left: -23px;
    margin-right: -23px;
    display: flex;
    flex-wrap: wrap;
}

.sam_right_list ul li {
    width: 50%;
    padding: 20px 23px;
}

.sam_right_list ul li:first-child,
.sam_right_list ul li:nth-child(2) {
    padding-top: 0;
}

.sam_right_list .box {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.sam_right_list .thumb {
    width: 44%;
    height: 284px;
    border-radius: 8px 12px 12px 8px;
    overflow: hidden;
}

.sam_right_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;
}

.sam_right_list .box:hover .thumb img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.sam_right_list .box_right {
    position: relative;
    width: 56%;
    margin-left: 24px;
}

.sam_right_list .box_right .t {
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.sam_right_list .box_specs {
    padding-top: 16px;
    display: flex;
    align-items: center;
}

.sam_right_list .box_specs span {
    position: relative;
    padding-right: 15px;
    color: rgba(0, 0, 0, 0.30);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.sam_right_list .box_specs span:nth-child(1) {
    margin-right: 8px;
}

.sam_right_list .box_specs span:nth-child(1):before {
    content: "-";
    position: absolute;
    right: 0;
    color: rgba(0, 0, 0, 0.30);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.sam_right_list .down_load {
    position: absolute;
    left: 0;
    bottom: 0;
}

.sam_right_list .down_load a {
    display: flex;
    height: 44px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #F0F5F9;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    transition: background-color .4s;
}

.sam_right_list .down_load a i {
    display: block;
    margin-left: 8px;
    width: 20px;
    height: 20px;
    background-image: url(../images/down_blue.svg);
    background-repeat: no-repeat;
}

.sam_right_list .box:hover .down_load a {
    background-color: var(--orange-color);
    color: var(--white-color);
}

.sam_right_list .box:hover .down_load a i {
    background-image: url(../images/down_white.svg);
}


@media (max-width:1439px) {
    .sam_right_list .thumb {
        height: 260px;
    }

}

@media (max-width:1365px) {
    .sam_right_list .thumb {
        height: 240px;
    }

}

@media (max-width:1279px) {
    .sam_left_menu {
        width: 250px;
    }

    .sam_right_list ul {
        margin-left: -16px;
        margin-right: -16px;
    }

    .sam_right_list ul li {
        padding: 20px 16px;
    }

    .sam_right_list .thumb {
        height: 200px;
    }

}

@media (max-width:991px) {
    .sam_right_list ul li {
        width: 100%;
        padding: 10px 16px;
    }
}

@media (max-width:767px) {

    .sam_down_cont {
        flex-wrap: wrap;
    }

    .sam_left_menu {
        width: 100%;
    }

    .sam_down_cont .sam_right {
        margin-top: 30px;
        flex: inherit;
        padding-left: 0;
    }

}

/* video */
.video_box .product_bottom {
    margin-top: 30px;
}

.video_list {
    padding-top: 36px;
    overflow: hidden;
}

.video_list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.video_list ul li {
    width: 33.33%;
    padding: 12px;
}

.video_list a {
    display: block;
    width: 100%;
    height: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: var(--white-color);
    transition: background-color .4s;
    overflow: hidden;
}

.video_list .sca {
    position: relative;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}

.video_list .sca i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s;
}

.video_list .sca .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
}

.video_list .sca .icon img {
    -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;
}

.video_list .bottom {
    padding: 32px 0;
    width: 100%;
}

.video_list .bottom .t {
    flex: 1;
    margin-right: 8px;
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.video_list .bottom .video_time {
    color: #999;
    font-size: 16px;
    font-weight: 400;
}

.video_list .line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.10);
}

.video_list .line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width 0.6s;
}

.video_list a:hover .line::before {
    width: 100%;
}

.video_list a:hover .sca i {
    -webkit-transform: translate(-50%, -50%) scale(1.03);
    -ms-transform: translate(-50%, -50%) scale(1.03);
    transform: translate(-50%, -50%) scale(1.03);
}

.video_list a:hover .sca .icon img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@media (max-width:991px) {
    .ser_down_title {
        flex-wrap: wrap;
    }

    .ser_down_title .set_menu {
        width: 100%;
        padding-top: 26px;
    }

    .video_list .sca .icon {
        width: 40px;
        height: 40px;
    }

}

@media (max-width:767px) {
    .ser_down_title {
        padding-top: 20px;
    }

    .ser_down_title .set_menu ul li {
        width: 50%;
    }

    .video_list ul li {
        width: 50%;
    }

}

@media (max-width:540px) {

    .video_list ul li {
        width: 100%;
    }

}

/* contact */
.contact_box {
    background-color: var(--white-color);
}

.contact_menu {
    padding-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.contact_menu ul {
    margin-left: -25px;
    margin-right: -25px;
    display: flex;
}

.contact_menu ul li {
    float: left;
    padding: 0 25px;
}

.contact_menu ul li a {
    position: relative;
    display: block;
    padding-bottom: 14px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
}

.contact_menu ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--main-color);
    transition: width 0.3s ease-in-out;
}

.contact_menu ul li a:hover,
.contact_menu ul li.active a {
    color: var(--main-color);
}

.contact_menu ul li a:hover::before,
.contact_menu ul li.active a::before {
    width: 100%;
}



@media (max-width:767px) {
    .contact_menu {
        padding-top: 20px;
    }

    .contact_menu ul {
        margin-left: -15px;
        margin-right: -15px;
    }

    .contact_menu ul li {
        /* width: 33.33%; */
        padding: 0 15px;
        text-align: center;
    }

    .contact_menu ul li a {
        display: inline-block;
        padding-bottom: 10px;
        /* font-size: 16px;
        font-weight: 500; */
    }

    .contact_menu ul li a::before {
        height: 2px;
    }

}




.tab_box .pub-t1 {
    display: none;
    opacity: 0;
    width: 100%;
    overflow: hidden;
}

.tab_box .pub-t1.d-show {
    display: block;
    opacity: 1;
}

.contact_text {
    position: relative;
    padding-top: 30px;
    padding-bottom: 65px;
    width: 100%;
    min-height: 15vh;
    overflow: hidden;
    z-index: 1;
}

.contact_text .bg {
    position: absolute;
    right: 0;
    top: 33%;
    width: 50%;
    max-width: 681px;
    z-index: -1;
}

.contact_text .t {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}


.text_cont {
    display: flex;
    padding-top: 24px;
}

.text_cont .text_left {
    width: 45%;
    padding-right: 50px;
}

.text_cont .text_left p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.text_cont .text_left strong {
    display: block;
    padding-top: 10px;

}

.text_cont .text_left strong a {
    color: var(--main-color);
    font-family: 'Montserrat';
    font-weight: 600;
    line-height: 1.2;
}

.text_cont .text_right p {
    display: flex;
    /* align-items: center; */
    padding-bottom: 16px;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.text_cont .text_right p img {
    width: 20px;
    height: 20px;
    margin-top: 5px;
    margin-right: 10px;
}

.text_cont .text_right .index_more {
    padding-top: 10px;
}

.contact_map {
    position: relative;
    width: 100%;
    height: 682px;
}

.contact_map .label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 106px;
}

.contact_map .map_id {
    width: 100%;
    height: 100%;
}

.contact_map .map_id img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:991px) {
    .contact_map {
        height: 500px;
    }

}

@media (max-width:767px) {
    .text_cont {
        flex-wrap: wrap;
    }

    .text_cont .text_left {
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .contact_map {
        height: 300px;
    }

    .contact_text {
        padding-top: 30px;
        padding-bottom: 45px;
    }

    .contact_map .label {
        max-width: 50px;
    }

}

/* message */


.contact_message {
    position: relative;
    padding: 70px 0 75px 0;
    background-color: #FFF;
    overflow: hidden;
    z-index: 1;
}

.mess_bg01 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    z-index: -1;
}

.mess_bg02 {
    position: absolute;
    left: 8%;
    bottom: -45%;
    width: 30%;
    max-width: 534px;
    z-index: -1;
}

.black {
    color: var(--dark);
}

.blue {
    color: var(--main-color);
}

.orange {
    color: var(--orange-color);
}


.mess_left .title {
    font-weight: 700;
    line-height: 1.5;
}

.mess_left .title strong {
    display: block;
}

.mess_left .title .black {
    color: var(--dark);
}

.mess_left .title .blue {
    color: var(--main-color);
}

.mess_left .text {
    padding-top: 30px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.mess_left .text span {
    margin-right: 8px;
}

.mess_right {
    flex: 1;
    padding-left: 155px;
}

.indus_mess .indus_form ._list {
    padding-bottom: 30px;
    margin-left: -12px;
    margin-right: -12px;
}

.indus_form ._list .text {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
}

.indus_mess .indus_form ._list .w50 {
    float: left;
    width: calc(50% - 24px);
    margin-right: 12px;
    margin-left: 12px;
}

.indus_mess .indus_form .big_width {
    padding-left: 12px;
    padding-right: 12px;
}

.indus_mess .indus_form ._list .i_ {
    margin-top: 8px;
    border-radius: 8px;
    background-color: #F0F5F9;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    position: relative;
}

.indus_mess .indus_form ._list .i_.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.indus_mess .indus_form ._list .input_box {
    float: left;
    padding: 10px 0;
    height: 56px;
    width: 100%;
    position: relative;
}

.indus_mess .indus_form ._list .textarea_box {
    height: 196px;
}

.indus_mess .indus_form ._list .textarea_box .input_box {
    height: 100%;
}

.indus_mess .indus_form ._list .textarea_box textarea {
    width: 100%;
    height: 100%;
    line-height: 36px;
    border: none;
    background-color: transparent;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-weight: 400;
    color: #333;
    resize: none;
}

.indus_mess .indus_form ._list .other .select_box {
    width: 100%;
}

.indus_mess .other .input {
    width: calc(100% - 95px);
    right: 0;
    left: inherit;
    padding-left: 16px;
}

.indus_mess .indus_form ._list label {
    float: left;
    width: 85px;
    font-size: 16px;
    color: #999999;
    margin-bottom: 0;
}

.indus_mess .star {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--orange-color);
}

.indus_mess .input {
    display: block;
    height: 36px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 400;
    color: #333;
    outline: 0;
    line-height: 36px;
    border: none;
    background: none;
    font-family: "Microsoft YaHei";
}

.indus_mess .indus_form label.error {
    position: absolute;
    left: -14px;
    top: 100%;
    font-size: 14px;
    color: var(--orange-color);
    line-height: 24px;
    width: auto;
}

.last_submit .code_w50 {
    max-width: 492px;
}

.indus_mess .indus_form .btn {
    padding-top: 40px;
    display: flex;
}

.pop_tc .indus_mess .indus_form .btn button {
    width: 100%;
}

.indus_mess .indus_form .btn button {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.indus_mess .indus_form .btn .index_more:first-child {
    margin-right: 16px;
}


.select_box .span {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 1;
}

.select_box .span input {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    line-height: 46px;
    border: none;
    background: transparent;
    padding-right: 16px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.select_box .span .icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.select_box .span .icon:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    background-image: url(../images/arrow-right-g.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

.select_box .drop_down_ {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -8px;
    right: 0;
    max-height: 300px;
    overflow-y: auto;

    background-color: #F0F5F9;
    padding: 10px 20px;
    border-radius: 0px 0px 8px 8px;
    display: none;
    width: 100%;
    z-index: 8;
}

.select_box .drop_down_ p {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
}

.select_box .drop_down_ p:hover {
    color: #666;
}

.indus_mess .indus_form ._list .i_ input::-webkit-input-placeholder,
.indus_mess .indus_form ._list .i_ textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.20);
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.indus_mess .indus_form ._list .i_ input::-moz-placeholder,
.indus_mess .indus_form ._list .i_ textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.20);
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.indus_mess .indus_form ._list .i_ input::-ms-input-placeholder,
.indus_mess .indus_form ._list .i_ textarea::-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.20);
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.last_submit {
    padding-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.code {
    margin-top: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.code_yz {
    display: flex;
}

.code_yz .i_ {
    width: calc(100% - 128px);
    margin-right: 14px;
}

.code img {
    width: 128px;
    height: 56px;
}

@media (max-width:1200px) {
    .mess_right {
        padding-left: 100px;
    }
}

@media (max-width:991px) {
    .ipad_flex {
        flex-wrap: wrap;
    }

    .mess_right {
        padding-left: 0;
        flex: inherit;
        width: 100%;
        padding-top: 30px;
    }


}

@media (max-width:767px) {
    .contact_text .bg {
        top: 60%;
        width: 60%;
    }

    .contact_message {
        padding: 40px 0 50px 0;
    }

    .mess_right {
        flex: inherit;
        padding-left: 0;
    }

    .indus_mess .indus_form ._list {
        margin: 0;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .indus_mess .indus_form ._list .w50 {
        width: 100%;
        margin: 0;
        margin-bottom: 30px;
    }

    .last_submit {
        padding-top: 30px !important;
    }

    .indus_mess .indus_form .btn {
        justify-content: space-between;
    }

    .indus_mess .indus_form .btn button {
        width: 49%;
        margin-right: 0 !important;
    }

    .last_submit .index_more a {
        width: 100%;
    }
}

.map_top {
    padding-top: 80px;
    padding-bottom: 30px;
}

.wzdt_xt {
    float: left;
    width: calc(100% - 200px);
}

.wzdt_xt ul li {
    float: left;
    padding-left: 20px;
    line-height: 45px;
}

.wzdt_xt ul li a {
    font-size: 16px;
    color: #657188;
}

.wzdt_xt ul li a:hover {
    color: var(--blue-color);
}

.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.sitemapy {
    width: 200px;
    float: left;
    background: none;
    border: 1px solid var(--main-color);
    text-align: center;
}

.sitemapy h3 {
    margin: 0;
}

.sitemapy h3 a {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 45px;
}

@media (max-width:767px) {
    .map_top {
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .sitemapy h3 a {
        font-size: 18px;
    }

    .dtzuo {
        width: 100%;
    }

    .sitemapy {
        width: 100%;
    }

    .wzdt_xt {
        padding: 10px 0;
        width: 100%
    }

    .wzdt_xt ul li {
        line-height: 30px;
        padding-left: 15px;
    }

    .wzdt_xt ul li a {
        font-size: 16px;
    }

    .have_no_method {
        display: none !important;
    }

}


.search_xq_top {
    padding-top: 40px;
    }
    .search_xq_top .xq_top_n {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    
    .xq_top_n h2 {
        text-align: center;
    
        color: var(--dark-color);
        font-weight: 700;
        line-height: 1.5;
    }
    .xq_top_n h2 span {
        color: var(--main-color);
    }
    
    .search_form {
        max-width: 952px;
        margin: 0 auto;
        margin-top: 24px;
        display: flex;
        padding:6px 16px;
        justify-content: space-between;
        align-items: center;
        height: 64px;
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.05);
    }
    
    .search_form .sear_input {
        position: relative;
        width: calc(100% - 40px);
        height: 26px;
    }
    
    .search_form .sear_input input {
        width: 100%;
        height: 100%;
        line-height: 26px;
        font-size: 16px;
        background-color: transparent;
    }
    
    .clear_btn {
        position: absolute;
        right: 12px;
        top: 0;
        width: 24px;
        display: none;
        cursor: pointer;
    }
    
    .search_form .sear_input input::-webkit-input-placeholder {
        color: rgba(101, 113, 136, 0.50);
        font-size: 16px;
    }
    
    .search_form .sear_input::-moz-placeholder {
        color: rgba(101, 113, 136, 0.50);
        font-size: 16px;
    }
    
    .search_form .sear_input:-moz-placeholder {
        color: rgba(101, 113, 136, 0.50);
        font-size: 16px;
    }
    
    .search_form .sear_input:-ms-input-placeholder {
        color: rgba(101, 113, 136, 0.50);
        font-size: 16px;
    }
    
    .submit_icon {
        width: 24px;
        height: 24px;
        background-image: url(../images/sear_icon.svg);
        background-color: transparent;
        outline: 0;
        cursor: pointer;
    }
    
    
    .search_title {
        padding-top: 32px;
        color: #666;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
    }
    
    .search_title span {
        color: #0D9ED7;
        margin-left: 2px;
        margin-right: 4px;
    }
    
    
    .search_xq_top .page_menu_right a:first-child {
        background-image: url(../images/home_grey.svg);
    }
    
    .search_xq_top .page_menu_right a:nth-child(n + 2) {
        color: rgba(0, 0, 0, 0.20);
        background-image: url(../images/line_grey.svg);
    }
    
    .search_xq_top .page_menu_right a:last-child {
        margin-right: 0;
        padding-right: 0;
        background-image: none;
    }
    
    .search_xq_top .page_menu_right a:nth-child(n + 2):hover {
        color: #666;
        opacity: 1;
    }
    
    .search_bottom {
    
    }
    .search_bottom .tab-js {
        display: flex;
        border-bottom:1px solid rgba(0, 0, 0, 0.20);
    }
    .search_bottom .tab-js a {
    position: relative;
    display: block;
    margin-right: 24px;
    padding-bottom: 16px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    }
    .search_bottom .tab-js a span {
        color: var(--main-color);
    }
    .search_bottom .tab-js a::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 0;
        height: 2px;
        background-color: var(--main-color);
        transition: width .3s;
    }
    .search_bottom .tab-js a.active::before {
        width: 100%;
    }
    .search_bottom .pub-t1 {
        display: none;
        padding: 30px 0;
    }
    .search_bottom .pub-t1.d-show {
        display: block;
    }
    .search_bottom .search_no {
    padding-top: 100px;
    padding-bottom: 100px;
        display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    }
    .search_bottom .search_no .img{
        max-width: 311px;
    }
    .search_bottom .search_no .text {
        padding-top: 12px;
        color: #333;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
    }
    
    
    
    @media all and (max-width: 767px) {
        .search_xq_top {
            padding-top: 0;
        }
    .search_bottom .search_no {
        padding-top: 20px;
        padding-bottom: 50px;
    }
    
    }