﻿@charset "utf-8";

.page_content {
    min-height: 50vh;
}

.about_title {
    font-style: normal;
    font-weight: 700;
    overflow: hidden;
}

.about_title .strong {
    line-height: 1.2;
    opacity: 0;
    overflow: hidden;
}

.about_big_t {
    overflow: hidden;
}

.about_big_t .strong {
    opacity: 0;
    overflow: hidden;
}

.animated .strong,
.aos-animate .strong {
    animation: an_7 1s 1 both;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-delay: 0.1s;
}

@keyframes an_7 {
    from {
        opacity: 0;
        transform: perspective(1000px) translate3d(0px, 300px, 0px) rotate3d(-100, 0, 0, 45deg);
    }

    to {
        opacity: 1;
        transform: perspective(500px) translate3d(0, 0, 0);
    }
}

.text_white {
    color: var(--white-color);
}

.text_blue {
    color: var(--main-color);
}

/* about */
.about_box {
    overflow: hidden;
}

.about_top {
    padding-top: 64px;
}

.about_big_t {
    position: relative;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
}

.about_top .content-section {
    position: relative;
}

.about_top .content-section .bg-image {
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
    width: calc(100% - 68px);
    height: 78%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.47, 0, 0.75, 0.72);
}

.about_top .content-section .bg-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}

.about_top .content-section .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_top .content-section .overlay {
    position: relative;
    padding: 167px 0;
    margin-top: 70px;
}

.about_top .your-class {
    padding-top: 80px;
}

.about_top .your-class .about_big_t {
    color: var(--white-color);

}

.about_top .your-class .overlay {
    margin-top: 0;
    padding-top: 100px;
}

.about_top .your-class .bg-image {
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 0;
}

.about_t_left {
    flex: 1;
    margin-right: 100px;
    max-width: 1000px;
}

.about_t_left h2 {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.about_t_left .text {
    padding-top: 20px;
}

.about_t_left p {
    padding-bottom: 20px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.about_t_left p:last-child {
    padding-bottom: 0;
}

.play-button-container {
    position: relative;
    width: 130px;
    height: 130px;
}

.breath-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--white-color);
    border-radius: 50%;
    animation: breath 3s infinite ease-in-out;
}

.circle-outer {
    width: 130px;
    height: 130px;
    opacity: 0.2;
    animation-delay: 0s;
}

.circle-middle {
    width: 96px;
    height: 96px;
    animation-delay: 0.5s;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background-color: var(--white-color);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn svg {
    width: 20px;
    height: 20px;
}

/* 呼吸动画关键帧 */
@keyframes breath {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}



.about_num_box {
    /* margin-top: 50px; */
    padding: 100px 0;
    background: var(--main-color);
}

.about_num_box .list {
    padding-top: 40px;
}

.about_num_box .list ul {
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.about_num_box .list ul li {
    padding: 16px;
    width: 33.33%;
}

.about_num_box .list .bg {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.90);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.about_num_box .list .number span {
    color: var(--deep-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 0.8;
}

.about_num_box .list .number em {
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.about_num_box .list .card-title {

    margin-top: 10px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    height: 56px;
}

.about_num_box .list .card-icon {
    margin-top: 24px;
    width: 60px;
}

.about_num_box .list .bg:hover {
    background-color: var(--white-color);
}

/* culture */
.about_culture {
    padding-top: 58px;
    padding-bottom: 100px;
    overflow: hidden;
    background: var(--white-color);
}

.culture_box {
    margin-top: 48px;
    position: relative;
    height: 640px;
    border-radius: 16px;
    overflow: hidden;
}

.culture_box .in_top_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media (min-width:768px) {
    .in_top_bg .li {
        display: none;
        width: 100% !important;
        height: 100%;
        opacity: 0;
        transition: opacity .3s;
    }

}

.in_top_bg .culture_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #000;
}

.in_top_bg .swiper-slide-active {
    display: block;
    opacity: 1;
}

.in_top_bg .bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.culture_swiper .swiper-slide {
    position: relative;
    width: 300px;
    height: 640px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    overflow: hidden;
}

.culture_swiper .swiper-slide:last-child {
    border: none;
}

.mo_text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.mo_text .icon {
    display: flex;
    align-items: center;
    justify-content: center;

}

.mo_text .title {
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
}

.mo_text .des {
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
}

.mo_text .des p {
    margin-top: 10px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
}

.culture_swiper .t {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    flex-flow: column;
    align-items: center;
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    text-align: center;
    line-height: normal;
    word-break: keep-all;

}

@media (min-width:1365px) {
    .culture_swiper .t {
        white-space: nowrap;
    }

}

.culture_swiper .t img {
    margin-bottom: 10px;
    width: 36px;
}

.culture_swiper .des {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding-left: 90px;
    padding-right: 20px;
    min-width: 290px;
    margin-top: 20px;
    color: var(--white-color);
    font-style: normal;
    opacity: 0;
}

.culture_swiper .des .title {
    position: relative;
    font-weight: 700;
    line-height: 1.2;
}

.culture_swiper .des .title::before {
    content: "";
    position: absolute;
    left: calc(-100% - 18px);
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #FFF;
}

.culture_swiper .des p {
    margin-top: 26px;
    font-weight: 400;
    line-height: 1.5;
}

.culture_swiper .act .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
}

.culture_swiper .act .bg:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(0, 62, 150, 0.00) 0%, #003E96 100%);
    z-index: -1;
}

.culture_swiper .act {
    width: calc(100% - 900px);
}

.culture_swiper .act .des {
    opacity: 1;
    margin-top: 0;
    transition: all .4s;
}

.about_pagination {
    margin-top: 30px;
    text-align: center;
}

.about_pagination span {
    width: 16px;
    height: 3px;
    background: #D9D9D9;
    border-radius: 0;
    opacity: 1;
    margin: 0 2px;
}

.about_pagination .swiper-pagination-bullet-active {
    background: var(--main-color);
}

/*  */
.about_culture_two {
    padding-top: 95px;
    padding-bottom: 110px;
    background-color: #F0F3F7;
    overflow: hidden;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.content-area {
    flex: 1;
    margin-right: 80px;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about_culture_two .image-area {
    width: 50%;
    border-radius: 16px;
    overflow: hidden;
}

.factory-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_culture_two .main-title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.about_culture_two .sub-title {
    padding-top: 24px;
}

.sub-title p {
    padding-bottom: 20px;
    color: #788493;
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.sub-title p:last-child {
    padding-bottom: 0;
}

.stats-container {
    padding-top: 40px;
    display: flex;
}

.stats-container .stat-item {
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-container .stat-item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.stats-container .stat-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background-color: #000;
    opacity: 0.2;
}

.stats-container .stat-item:last-child:after {
    display: none;
}

.stats-container .stat-item>div {
    align-items: flex-end;
}

.stats-container .stat-number {
    color: var(--deep-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 0.9;
}

.stat-unit {
    margin-left: 2px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.stat-desc {
    margin-top: 15px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
}

.cta-button {
    margin-top: 56px;
}

.cta-button a {
    display: flex;
    height: 60px;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 0 8px 8px;
    background: var(--main-color);
    color: var(--white-color);
    text-align: justify;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    min-width: 200px;
    transition: all .3s;
}

.cta-button a:hover {
    transform: translateY(-2px);
}

.cta-button .arrow-icon {
    margin-left: 8px;
    line-height: inherit;
    width: 20px;
    height: 20px;
}

@media (max-width: 1439px) {
    .about_culture_two .image-area {
        width: 580px;
    }

    .content-area {
        margin-right: 50px;
    }
}

@media (max-width: 1280px) {
    .about_culture_two .image-area {
        width: 540px;
    }

}

@media (max-width: 1200px) {
    .hero-section {
        align-items: stretch;
    }

    .about_culture_two .image-area {
        width: 55%;
    }

}

@media (max-width: 1024px) {
    .about_t_left {
        margin-right: 65px;
    }

    .hero-section {
        flex-direction: column;
    }

    .content-area {
        margin-right: 0;
        max-width: inherit;
        width: 100%;
    }

    .about_culture_two {
        padding-top: 50px;
        padding-bottom: 60px;
    }

    .about_culture_two .image-area {
        margin-top: 30px;
        width: 100%;
    }


}

@media (max-width: 767px) {
    .cta-button a {
        padding: 20px 24px;
        min-width: inherit;
    }

    .cta-button .arrow-icon {
        margin-left: 12px;
    }
.sub-title p {
    text-align: left;
}
}

@media (max-width: 480px) {
    .description {
        font-size: 13px;
    }

    .stat-number {
        font-size: 28px;
    }

    .main-title {
        font-size: 22px;
    }
}

@media screen and (max-width: 1580px) {
    .culture_swiper .des {
        padding-left: 70px;
    }

    .culture_swiper .swiper-slide {
        width: 250px;
    }

    .culture_swiper .act {
        width: calc(100% - 750px);
    }

}

@media screen and (max-width: 1440px) {

    .culture_swiper .des {
        padding-left: 60px;
    }

}

@media screen and (max-width: 1280px) {
    .culture_swiper .swiper-slide {
        width: 200px;
    }

    .culture_swiper .act {
        width: calc(100% - 600px);
    }

    .culture_swiper .des {
        padding-left: 40px;
    }

}

@media screen and (max-width: 1100px) {
    .culture_swiper .swiper-slide {
        width: 150px;
    }

    .culture_swiper .act {
        width: calc(100% - 450px);
    }

    .culture_swiper .swiper-slide {
        padding: 0 10px;
    }

    .culture_swiper .des {
        padding-left: 40px;
    }

}

@media screen and (max-width: 991px) {
    .culture_swiper .des {
        min-width: 255px;
    }

    .culture_swiper .des p {
        font-size: 18px;
    }

}

@media screen and (max-width: 767px) {
    .culture_box {
        height: 400px;
        overflow: visible;
        border-radius: 0;
    }

    .culture_box .in_top_bg {
        position: relative;
        border-radius: 16px;
    }

    .in_bottom {
        display: none;
    }


}

/* honor */

.about_honor {
    background-color: #F0F3F7;
}

.honor_top .des {
    margin-top: 16px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.honor_top .left {
    flex: 1;
    margin-right: 30px;
    max-width: 650px;
}

.honor_swiper {
    margin-top: 66px;
}

.honor_swiper .swiper-slide {
    height: auto;
}

.honor_swiper .bg {
    padding: 24px;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
}

.honor_swiper .thumb {
    display: inline-block;
    padding: 10px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.10);
}

.honor_swiper .thumb>div {
    position: relative;
}

.honor_swiper .thumb img:nth-child(2) {
    display: block;
    max-height: 240px;
    margin: 0 auto;
}

.honor_swiper .thumb img:first-child {}

.honor_swiper .thumb img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor_swiper .title {
    margin-top: 29px;
    padding-top: 29px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--deep-color);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}


.honor_button {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.honor_button .pro-pagination {
    margin-left: 10px;
    margin-right: 10px;
}

.honor_button .pro-pagination span {
    margin: 0 3px;
    border-radius: 4px;
    background: #D9D9D9;
    opacity: 1;
}

.honor_button .pro-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    width: 16px;
    height: 8px;
    background-color: var(--main-color);
}

.honor_button .page_button>div {
    position: relative;
    padding: 11px;
    width: 46px;
    height: 46px;
    border-radius: 50px;
    border-radius: 23px;
    border: 1px solid #666;
    transition: all 0.3s;
    cursor: pointer;
}

.honor_button .page_button>div.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.honor_button .pro_b_bg>div:nth-child(2) {
    margin-left: 16px;
}

.honor_button .page_button>div:hover {
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.honor_button .page_button>div:hover svg path {
    stroke: var(--white-color);
}

/* last */
.about_last {
    padding: 80px 0;
    background-color: #E0F0F9;
    overflow: hidden;
}

.about_last .card-wrapper {
    margin-top: 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
}

.about_last .card {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    flex-flow: column;
    width: calc(33.33% - 20px);
    overflow: hidden;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
}

.about_last .card .thumb {
    position: relative;
    overflow: hidden;
}

.about_last .card .thumb img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.about_last .card-content {
    flex: 1;
    position: relative;
    padding: 32px;

    padding-bottom: 100px;
}

.about_last .card-content h3 {
    color: var(--deep-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.about_last .card-content p {
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    min-height: 52px;
}

.about_last .card-content span {
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: 46px;
    height: 46px;
    background-color: #F0F3F7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.about_last a:hover .card-content span {
    background-color: var(--main-color);
}

.about_last a:hover .card-content span svg path {
    stroke: var(--white-color);
}

.about_last a:hover .thumb img:first-child {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* honor */
.about_honor {
    padding-top: 90px;
    padding-bottom: 60px;
    background-color: #F0F3F7;
    overflow: hidden;
}

@media (max-width:1280px) {
    .about_top .content-section .overlay {
        padding: 100px 0;
    }

    .about_num_box .list .number span {
        font-size: 38px;
    }

    .play-button-container,
    .circle-outer {
        width: 120px;
        height: 120px;
    }

    .circle-middle {
        width: 86px;
        height: 86px;
    }


}

@media (max-width:1100px) {
    .about_num_box .list .number span {
        font-size: 34px;
    }
}

@media (max-width: 991px) {
    .about_top .your-class .about_big_t {
        padding-left: 50px;
        padding-right: 50px;
    }

    .about_top .content-section .overlay {
        padding: 90px 50px 100px 50px;
    }

    .about_top .content-section .overlay .my-container {
        flex-flow: column;
    }


    .about_t_left {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about_num_box {
        padding: 70px 0;
    }

    .about_last .card-content {
        padding: 32px 20px;
        padding-bottom: 100px;
    }

    .about_last .card-content span {
        left: 20px;
        bottom: 25px;
    }

    .about_num_box .list ul li {
        width: 50%;
    }

    .about_num_box .list .bg {
        padding: 32px 20px;
    }

    .about_num_box .list .card-icon {
        width: 50px;
    }
    .about_last .card {
        margin-bottom: 15px;
        width: 100%;
    }


}

@media (max-width: 767px) {
    .about_big_t {
        font-size: 28px;
    }

    .about_top .content-section .bg-image {
        height: 88%;
        width: calc(100% - 50px);
    }

    .about_top .content-section .overlay {
        padding: 40px 20px 80px 20px;
    }

    .about_top .content-section .overlay {
        margin-top: 50px;
    }

    .about_top .your-class {
        padding-top: 50px;
    }

    .about_top .your-class .overlay {
        margin-top: 0;
    }

    .about_top .your-class .bg-image {
        height: 100%;
        width: 100%;
    }

    .about_top .your-class .about_big_t {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about_t_right {
        width: 100%;
    }

    .play-button-container,
    .circle-outer {
        width: 100px;
        height: 100px;
    }

    .circle-middle {
        width: 70px;
        height: 70px;
    }

    .play-btn {
        padding: 10px;
        width: 44px;
        height: 44px;
    }

    .about_num_box {
        padding: 50px 0;
    }

    .about_num_box .list ul li {
        width: 100%;
    }

    .honor_swiper .swiper-container {
        overflow: visible;
    }

    .about_last {
        padding: 50px 0;
    }

    
    .about_last .card-wrapper {
        margin-top: 30px;
    }

    .about_culture {
        padding-top: 70px;
    }

    .about_honor {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .about_last .card-content {
        padding-bottom: 85px;
    }

    .about_last .card-content span {
        left: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    
.honor_swiper .bg {
    padding: 20px;
}
}


/* about_deve */
.about_deve {
    position: relative;
    width: 100%;

}

.a_deve_background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.a_deve_background::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(136deg, #1B2389 5.91%, #2782C5 84.35%);
    mix-blend-mode: multiply;
}

.about_deve::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 70%;
    background-image: url(../images/deve_top.svg);
    background-repeat: no-repeat;
    background-position: top center;
}

.a_deve_right {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

.a_deve_right>.my-container {
    height: 100%;
}

.a_deve_right>.my-container>.pr {
    width: 100%;
    height: 100%;
}

.his_r_cont {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

.his_r_cont>.my-container {
    height: 100%;

}

.about_deve .a_deve_cont {
    position: relative;
    width: 100%;
    height: 100%;
}

.about_deve .a_deve_icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    max-width: 557px;
    display: flex;
    align-items: flex-end;
}

.a_deve_title {
    padding-top: 60px;
    width: 60%;
    max-width: 600px;
}

.a_deve_title .page_title .text {
    padding-top: 16px;
    color: var(--white-color);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.historyMain {
    position: relative
}

.historyMain .historyYearBox {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: none
}

.historyMain .historyYearBox .historyYear {
    width: 39%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 230px;
    height: -webkit-calc(190px * 3);
    height: calc(190px * 3);
    line-height: 1.2;
    color: var(--main-color);
    font-family: 'Montserrat';
    font-weight: 700;
}

.historyMain .historyYearBox .historyYear .Year {
    position: relative;
    text-align: right;
    z-index: 10
}

.historyMain .historyYearBox .historyYear .YearList {
    height: 190px;
    position: relative;
    z-index: 10
}

.historyMain .historyYearBox .historyYear .YearList .swiper-slide {
    color: #E7ECF2;
    font-weight: 700;
}

.historyMain .historyYearBox .historyYear .YearList .swiper-slide-active {
    opacity: 1;
    color: var(--main-color);
}

.historyMain .historyYearBox .historyYear .roundBox {
    position: absolute;
    width: 444px;
    height: 444px;
    left: 55%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%
}

.historyMain .historyYearBox .historyYear .roundBox svg {
    position: absolute;
    left: -18px;
    top: -18px;
    right: -18px;
    bottom: -18px
}

.historyMain .historyYearBox .historyYear .roundBox svg .path-loop {
    fill: none;
    stroke: var(--main-color);
    stroke-miterlimit: 10;
    stroke-width: 0.1px;
    opacity: 0.1;
}

.historyMain .historyYearBox .historyYear .roundBox svg .path-loop1 {
    fill: none;
    stroke: var(--main-color);
    stroke-miterlimit: 10;
    stroke-width: 0.1px;
    stroke-dashoffset: 157;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease
}

.historyMain .historyYearBox.historyYearFixed {
    position: fixed
}

.historyMain .historyYearBox.historyYearBottom {
    position: absolute;
    bottom: 0px;
    top: auto
}

.historyMain .historyTextBox {
    min-height: 100vh;
    position: relative;
    z-index: 30
}

.historyMain .historyTextBox .pageContainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.historyMain .historyTextBox .historyText {
    width: 100%;
    padding: 20px 0px 40px
}

.historyMain .historyTextBox .historyText .list {
    /* padding: 24px 0px; */
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.20);
}

.historyMain .historyTextBox .historyText .list .time {
    display: flex;
    align-items: center;
    color: var(--deep-color);
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    opacity: 0.6;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease
}

.historyMain .historyTextBox .historyText .list .time .year {
    font-size: 0;
}

.historyMain .historyTextBox .historyText .list .time span {
    margin-left: 4px;
    color: var(--deep-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}

.historyMain .historyTextBox .historyText .list .desc {
    margin-top: 8px;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    -webkit-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease
}

.historyMain .historyTextBox .historyText .list .desc p {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.historyMain .historyTextBox .historyText .list .desc p::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.historyMain .historyTextBox .historyText .list img {
    margin-top: 14px;
    margin-bottom: 24px;
    width: 100% !important;
    max-width: 376px !important;
    height: auto !important;
}

.historyMain .historyTextBox .historyText .list .imgBox {
    margin-top: 24px;
    max-width: 376px;
}

.historyMain .historyTextBox .historyText .list .imgBox img {
    display: block;
    width: 100%;
    border-radius: 16px;
}

.historyMain .historyTextBox .pageContainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.historyMain .historyTextBox .historyText .list.cur .time,
.historyMain .historyTextBox .historyText .list.cur .desc p {
    opacity: 1;
}

@media (min-width:768px) {
    .historyMain .historyYearBox {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex
    }

    .historyMain .historyYearBox .historyYear {
        width: 45%;
        font-size: 11.75vw;
        height: -webkit-calc(11.875vw * 3);
        height: calc(11.875vw * 3);
        line-height: 1.2
    }

    .historyMain .historyTextBox .historyText {
        width: 55%;
        padding: 36vh 0 12.5vw 6.125vw;
    }

    .historyMain .historyYearBox .historyYear .YearList {
        height: 11.875vw
    }

    .historyMain .historyYearBox .historyYear .Year {
        height: 11.875vw;
        width: 170px;
    }

    .historyMain .historyYearBox .historyYear .roundBox {
        width: 19.688vw;
        height: 19.688vw
    }

    .historyMain .historyYearBox .historyYear .roundBox svg {
        left: -1.125vw;
        top: -1.125vw;
        right: -1.125vw;
        bottom: -1.125vw
    }

}

@media (min-width:1200px) {

    .historyMain .historyYearBox .historyYear .YearList {
        height: 12.896vw
    }

    .historyMain .historyYearBox .historyYear .Year {
        height: 12.896vw;
        width: 270px;
    }

    .historyMain .historyYearBox .historyYear .roundBox {
        width: 23.2vw;
        height: 23.2vw
    }

    .historyMain .historyYearBox .historyYear .roundBox svg {
        left: -0.938vw;
        top: -0.938vw;
        right: -0.938vw;
        bottom: -0.938vw
    }
}

@media (max-width:991px) {

    .a_deve_title {
        padding-top: 50px;
        width: 100%;
        max-width: 570px;
    }
}

@media (max-width:767px) {
    .a_deve_background {
        height: 100%;
        background-attachment: fixed;
    }

    .about_deve .a_deve_icon {
        align-items: flex-start;
    }

    .his_r_cont {
        position: relative;
        height: auto;
    }

    .a_deve_title {
        padding-top: 50px;
        width: 100%;
        max-width: 570px;
    }

    .historyMain .historyTextBox .historyText .list .time {
        font-size: 20px;
    }

    .historyMain .historyTextBox .historyText .list .time span {
        font-size: 18px;
    }

    .historyMain .historyTextBox .historyText .list .desc {
        margin-top: 10px;
    }

    .historyMain .historyTextBox .historyText {
        padding: 30px 0px 40px;
    }

    .honor_top {
        flex-flow: column;
    }

    .honor_top .left {
        flex: inherit;
        margin-right: 0;
        max-width: inherit;
    }

    .honor_top .stats-container {
        justify-content: center;
    }

    .stats-container .stat-item {
        margin-right: 0;
        padding-right: 0;
        margin-bottom: 25px;
    }

    .stats-container .stat-item:last-child {
        margin-bottom: 0;
    }

    .stats-container .stat-item::after {
        height: 46px;
        display: none;
    }

    .stats-container {
        flex-flow: column;
    }

    .mo_text .des p {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.8;
    }

    .historyMain .historyTextBox {
        min-height: inherit;
    }

}

/* pro list */
.prod_background {
    background: #F2F7FC;
    box-shadow: 0 16px 54px 0 rgba(0, 0, 0, 0.15);

}

.pro_list_top {
    padding-top: 65px;
    padding-bottom: 70px;
}

.product_list {
    padding-top: 35px;
}

.product_list ul {
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.product_list ul li {
    padding: 16px;
    width: 50%;
}

.product_list .bg {
    padding: 32px;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(53, 82, 124, 0.10);
    background: var(--white-color);
    transition: all .3s;
}

.product_list .top .title {
    flex: 1;
    margin-right: 20px;
    color: var(--deep-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
}

.product_list .top .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #F0F3F7;
    border-radius: 50%;
}

.product_list .top .icon img:nth-child(2) {
    display: none;
}

.product_list .bottom {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.product_list .bottom span {
    display: block;
    position: relative;
    padding: 4px 0;
    padding-right: 8px;
    padding-left: 12px;
    width: 33.33%;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.product_list .bottom span::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 3px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.product_list .bottom span em {
    margin-left: 4px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.product_list .bg:hover {
    box-shadow: 0 16px 54px 0 rgba(57, 73, 96, 0.15);
}

.product_list .bg:hover .title {
    color: var(--main-color);
}

.product_list .bg:hover .icon {
    background-color: var(--main-color);
}

.product_list .bg:hover .icon img:first-child {
    display: none;
}

.product_list .bg:hover .icon img:nth-child(2) {
    display: block;
}

.pro_tech {
    padding: 100px 0;
    background: var(--main-color);
    overflow: hidden;
}

.pro_tech .text {
    max-width: 1050px;
    margin-top: 16px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.tech_box {
    margin-top: 55px;
}

.tech_box .tech_swiper {
    overflow: visible;
}

.tech_swiper .title {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}

.tech_swiper .thumb {
    position: relative;
    border-radius: 16px;
    background: var(--white-color);
    overflow: hidden;
}

.tech_swiper .thumb img:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_button {
    margin-top: 48px;
}

.pro_button .pro-pagination {
    flex: 1;
    max-width: 200px;
    margin-right: 38px;
    position: relative;
    height: 2px;
    background-color: transparent;
}

.pro_button .pro-pagination::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    height: 2px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.10);
}

.pro_button.white_bg .pro-pagination::before {
    background-color: rgba(255, 255, 255, 0.20);
}

.pro_button .pro-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--main-color);
}

.pro_button.white_bg .pro-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: rgba(255, 255, 255, 1);
}

.pro_button .page_button>div {
    position: relative;
    padding: 11px;
    border-radius: 50px;
    border: 1px solid #666;
    transition: all 0.3s;
    cursor: pointer;
}

.pro_button.white_bg .page_button>div {
    border: 1px solid rgba(255, 255, 255, 1);
}

.pro_button .page_button>div::before {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
}

.pro_button .page_button>div.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.pro_button .pro_b_bg>div:nth-child(2) {
    margin-left: 16px;
}

.pro_button .page_left::before {
    background-image: url(../images/main_left.svg);
}

.pro_button .page_right::before {
    background-image: url(../images/main_right.svg);
}

.pro_button.white_bg .page_left:before {
    background-image: url(../images/white_left.svg);
}

.pro_button.white_bg .page_right:before {
    background-image: url(../images/white_right.svg);
}

.page_button>div:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.pro_button .page_left:hover:before {
    background-image: url(../images/white_left.svg);
}

.pro_button .page_right:hover:before {
    background-image: url(../images/white_right.svg);
}

.pro_choose {
    padding: 100px 0 84px 0;
    background-color: var(--white-color);
}

.choose_box {
    padding-top: 40px;
}

.choose_box .card-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -16px;
    margin-right: -16px;
}

.choose_box .card {
    margin: 16px;
    padding: 32px;
    width: calc(33.33% - 32px);
    border-radius: 16px;
    background: #F0F3F7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.choose_box .card:hover {
    background: #FFF;
    box-shadow: 0 16px 54px 0 rgba(57, 73, 96, 0.15);
}

.choose_box .card:hover .card-title {
    color: var(--main-color);
}

/* 卡片头部 */
.choose_box .card-header {
    display: flex;
    flex-flow: column;
}

.choose_box .hexagon {
    width: 50px;
}

.choose_box .card-title {
    margin-top: 16px;
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.choose_box .card-text {
    margin-top: 40px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.pro_case {
    padding: 88px 0;
}

.pro_case .pro_case_bg {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.pro_case .pro_case_bg>img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_case_mask {
    position: relative;
    padding: 118px 70px;
    z-index: 1;
}

.pro_case_mask::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
    max-width: 1014px;
    background: linear-gradient(270deg, rgba(0, 62, 150, 0.00) 0%, #003E96 100%);
    z-index: -1;
}

.pro_case_mask .des {
    margin-top: 16px;
    color: var(--white-color);
    /* text-align: justify; */
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    max-width: 600px;
}

.white_button a {
    border-radius: 8px 0 8px 8px;
    border: 1px solid var(--white-color);
    background-color: transparent;
}

@media (max-width:1365px) {

    .choose_box .card {
        padding: 32px 20px;

    }

    .product_list .bottom span {
        width: 50%;
    }

}

@media (max-width:1279px) {
    /* .product_list .bottom span {
        width: 50%;
    } */

    .choose_box .card {
        padding: 30px 20px;
    }

    .choose_box .card-text {
        margin-top: 30px;
    }
}

@media (max-width:991px) {

    .product_list .bg {
        padding: 30px 20px;
    }

    .choose_box .card {
        width: calc(50% - 32px);
    }

    .pro_case_mask {
        padding: 80px 50px;
    }

    .pro_choose {
        padding: 80px 0 60px 0;
    }

}

@media (max-width:767px) {
    .pro_list_top {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .product_list ul li {
        width: 100%;
    }

    .product_list .bottom span {
        width: 100%;
    }

    .pro_tech {
        padding: 50px 0;
    }

    .pro_choose {
        padding: 50px 0 44px 0;
    }

    .choose_box {
        padding-top: 30px;
    }

    .choose_box .card {
        width: calc(100% - 32px);
    }

    .choose_box .card-text {
        margin-top: 20px;
    }

    .pro_case {
        padding: 60px 0;
    }

    .pro_case_mask {
        padding: 80px 30px;
    }

    .product_list .top .icon {
        padding: 8px;
        width: 40px;
        height: 40px;
    }

    .choose_box .hexagon {
        width: 46px;
    }

    .pro_button {
        margin-top: 35px;
    }

    .pro_button .page_button>div {
        padding: 8px;
    }

    .pro_button .pro_b_bg>div:nth-child(2) {
        margin-left: 10px;
    }

    .product_list .bottom span::before {
        content: "";
        left: 0;
        top: 11px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #788493;

    }
}

@media (max-width:359px) {
    .product_list .bottom span {
        width: 100%;
    }
}

/* product detail */
.pro_d_cs {
    padding: 100px 0;
    background-color: var(--white-color);
}

.pro_d_cs p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.pro_d_application {
    padding: 80px 0 88px 0;
}

.pro_d_application .pro_case {
    padding: 0;
    padding-top: 70px;
}

.pro_d_top {
    padding-top: 110px;
    padding-bottom: 70px;
}

.pro_d_left {
    flex: 1;
    margin-right: 50px;
    max-width: 890px;
}

.pro_d_right {
    width: 485px;
    border-radius: 16px;
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
    height: fit-content;
    overflow: hidden;
}

.pro_d_right .thumb {
    width: 100%;
}

.pro_d_right .thumb img {
    width: 100%;
}

.pro_d_right .cont {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    background-color: #FFF;
}

.pro_d_right .cont .t {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
}

.pro_d_right .cont .loop {
    padding-top: 24px;
}

.pro_d_right .cont .loop p {
    margin-bottom: 8px;
    display: flex;
    color: #586F8C;
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

.pro_d_right .cont .loop p a {
    color: #586F8C;
    font-family: 'Montserrat';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}

.pro_d_right .cont .loop p img {
    width: 30px;
    margin-right: 8px;
}

.pro_d_right .cont .loop p:last-child {
    margin-bottom: 0;
}

.pro_d_left .s_t {
    color: #586F8C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_left .s_b {
    color: var(--main-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.pro_d_left .text {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    color: #586F8C;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_tech {
    margin-top: 32px;
}

.pro_d_tech .title {
    color: var(--deep-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.pro_d_tech .loop {
    padding-top: 8px;

}

.pro_d_tech .loop>ul {
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pro_d_tech .loop>ul>li {
    padding: 8px 16px;
    width: 33.33%;
    display: flex;
    align-items: flex-start;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pro_d_tech .loop>ul>li img {
    margin-right: 8px;
    margin-top: 5px;
    width: 20px;
}

.pro_d_down {
    padding-top: 24px;
}

.pro_d_down .down_box {
    padding: 24px;
    margin-top: 16px;
    max-width: 658px;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(53, 82, 124, 0.10);
    background: #FFF;

    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
}

.pro_d_down .down_cont {
    padding-top: 32px;
}

.pro_d_down .down_title {
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.pro_d_down .down_cont .left {
    display: flex;
    align-items: center;
}

.pro_d_down .down_cont .left span {
    position: relative;
    padding-right: 10px;
    margin-right: 8px;
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.pro_d_down .down_cont .left span::before {
    content: '·';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.pro_d_down .down_cont .left span:last-child:before {
    display: none;
}

.pro_d_down .down_cont .right span {
    display: flex;
    padding: 10px 18px;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #F0F3F7;
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition: all .3s;
}

.pro_d_down .down_cont .right span i {
    margin-left: 8px;
    width: 24px;
    height: 24px;
    background-image: url(../images/down_d.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.pro_d_down .down_box:hover .down_title {
    color: var(--main-color);
}

.pro_d_down .down_box:hover .right span {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
}

.pro_d_down .down_box:hover .right span i {
    background-image: url(../images/down_d_white.svg);
}

.pro_d_aply {
    position: relative;
    margin-top: 56px;
    margin-bottom: 100px;
    border-radius: 16px;
    overflow: hidden;
}

.pro_d_aply .aply_bottom {
    position: absolute;
    padding: 40px;
    padding-top: 70px;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.pro_d_aply .aply_bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}

.pro_d_aply .aply_bottom ul {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.pro_d_aply .aply_bottom ul li {
    padding: 8px;
    width: 25%;
}

.pro_d_aply .aply_bottom .bg {
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 8px;
   background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: all .3s;
}

.pro_d_aply .aply_bottom .bg:hover {
    transform: translateY(-5px);
}

.cs_title {
    padding-top: 40px;
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.cs_title span {
    display: block;
    font-weight: 400;
}

.table-container {
    margin-top: 16px;
    overflow-x: auto;
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.table-container table th,
.table-container table td {
    border: 1px solid #fff;
    padding: 15px 10px;

    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.table-container table th {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    background: var(--main-color);
    padding: 15px 10px;
}

.table-container table td {
    background: #F0F3F8;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

@media (max-width:1279px) {
    .pro_d_right {
        width: 400px;
    }
    .pro_d_tech .loop > ul > li {
        width: 50%;
    }
.pro_d_aply .aply_bottom ul li {
    width: 33.33%;
}
}

@media (max-width:1200px) {
    .pro_d_tech .loop>ul>li {
        width: 50%;
    }
}

@media (max-width:991px) {
    .pro_d_top {
        padding-top: 80px;
        flex-wrap: wrap;
    }

    .pro_d_left {
        flex: initial;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .pro_d_right {
        margin-top: 30px;
        width: 100%;
    }

}

@media (max-width:767px) {
    .pro_d_top {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pro_d_left .text {
        padding-bottom: 20px;
    }

    .pro_d_tech {
        margin-top: 20px;
    }

    .pro_d_tech .loop>ul>li {
        width: 100%;
    }

    .pro_d_down .down_box {
        padding: 24px 20px;
    }

    .pro_d_right .cont {
        padding: 30px 20px;
    }

    .pro_d_right .cont .loop p a {
        font-size: 20px;
    }

    .pro_d_cs {
        padding: 80px 0;
    }

    .pro_d_aply .aply_bottom .bg {
        padding: 20px 18px;
    }

}

@media (max-width:767px) {
    .pro_d_cs {
        padding: 50px 0;
    }

    .table-container table td,
    .table-container table th {
        white-space: nowrap;

    }

    .pro_d_aply .aply_bottom .bg {
        padding: 15px 10px;
    }

    .pro_d_aply .aply_bottom {
        position: relative;
        padding: 0;
        margin-top: 15px;
    }

    .pro_d_aply .aply_bottom::before {
        display: none;
    }

    .pro_d_aply .aply_bottom ul li {
        width: 50%;
    }

    .pro_d_application {
        padding: 50px 0 58px 0;
    }

    .pro_d_aply {
        margin-top: 30px;
        margin-bottom: 40px;
        border-radius: 0;
    }

    .pro_d_aply .thumb {
        border-radius: 16px;
        overflow: hidden;
    }

    .pro_d_application .product_list {
        padding-top: 15px;
    }

    .pro_d_application .pro_case {
        padding-top: 30px;
    }

    .pro_d_aply .aply_bottom .bg {
        text-align: center;
    }

}

/* industry */
.indus_box .industry-section {
    position: relative;
    padding-top: 140px;
    z-index: 1;
}

.indus_box .industry-section .bg-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.industry-section .overlay .title {
    height: 100%;
    width: 100%;
    padding-bottom: 100px;
}

.industry-section .overlay .title:not(.position) {
    position: relative;
    z-index: 1;
}

.industry-section .overlay .title.position {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(100% 0 0 0);
}

.indus_box .industry-section .img {
    position: relative;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.industry-section .img img {
    width: 100%;
    transform: scale(1.1);
}

.indus_box .img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: #000;
    transition: opacity .3s;
}

.indus_box .industry-section .overlay {
    position: sticky;
    position: -webkit-sticky;
    top: 250px;
    z-index: 7;
    --crop: 0%;
}

.industry-section .overlay .title.position .about_big_t {
    color: var(--white-color);
}

.industry-section .overlay .title.position .text {
    color: var(--white-color);
}

.industry-section .icon {
    width: 62px;
    margin-bottom: 20px;
}

.industry-section .icon img:nth-child(2) {
    display: none;
}

.industry-section .text {
    margin-top: 30px;
    max-width: 950px;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.indus_box .your-class {
    padding-bottom: 0;
}

.indus_box .your-class .overlay {
    padding: 200px 0;
}

.indus_box .img-full-width::before {
    opacity: 0.2;
    z-index: 1;
}

.industry_choose {
    background-color: var(--main-color);
}

.industry_choose .choose_box .card {
    width: calc(25% - 32px);
    background-color: var(--white-color);
}

.industry_apply_box {
    padding: 100px 0;
    background-color: var(--white-color);
    overflow: hidden;
}

.apply_list {
    padding-top: 55px;
}

.apply_list ul>li {
    padding-bottom: 120px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.apply_list ul>li:last-child {
    padding-bottom: 0;
}

.apply_list ul>li:nth-child(2n) .thumb {
    order: 2;
}

.apply_list .thumb {
    position: relative;
    width: 50%;
    border-radius: 8px;
    overflow: hidden;
}

.apply_list .thumb img:nth-child(2) {
    width: 100%;
    height: 100%;
}

.apply_list .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apply_list .apply_text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: calc(50% - 110px);
}

.apply_text .title {
    color: var(--deep-color);
    font-weight: 700;
    line-height: 1.3;
}

.apply_text .text {
    margin-top: 24px;
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.apply_text .app_table {
    padding-top: 60px;

}

.apply_text .app_table .t {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
}

.apply_text .app_table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 8px;
    table-layout: fixed;
    overflow: hidden;
}

.apply_text .app_table table th,
.apply_text .app_table table td {
    border: 1px solid #fff;
    padding: 11px 10px;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.apply_text .app_table table th {
    color: var(--white-color);
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: #E0E5EE;
    padding: 11px 10px;
}

.apply_text .app_table table td {
    background: #F0F3F8;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

@media (max-width:1366px) {
    .apply_list .apply_text {
        width: calc(50% - 80px);
    }

}

@media (max-width:1280px) {
    .apply_list .apply_text {
        width: calc(50% - 60px);
    }

}

@media (max-width:1279px) {

    .industry_choose .choose_box .card {
        width: calc(33.33% - 32px);
    }

    .apply_list .apply_text {
        width: calc(50% - 40px);
    }

    .apply_list ul>li {
        padding-bottom: 100px;
    }

}

@media (max-width:991px) {
    .industry_choose .choose_box .card {
        width: calc(50% - 32px);
    }

    .industry_apply_box {
        padding: 80px 0;
    }

    .apply_list ul>li {
        padding-bottom: 30px;
        flex-flow: column;
    }

    .apply_list .thumb {
        width: 100%;
    }

    .apply_list ul>li:nth-child(2n) .thumb {
        order: inherit;
    }

    .apply_list .apply_text {
        margin-top: 25px;
        width: 100%;
    }

    .apply_text .app_table {
        padding-top: 30px;
    }

    .indus_box .industry-section {
        padding-top: 80px;
    }

    .industry-section .overlay .title {
        padding-bottom: 0;
    }

    .indus_box .industry-section .overlay {
        position: inherit;
        padding-bottom: 50px;
        top: 0;
        height: auto;
    }

}

@media (max-width:767px) {
    .indus_box .industry-section {
        padding-top: 50px;
    }

    .indus_box .industry-section .overlay {
        padding-bottom: 30px;
    }

    .industry-section .icon {
        width: 52px;
    }

    .industry_apply_box {
        padding: 50px 0;

    }

    .industry_choose .choose_box .card {
        width: calc(50% - 32px);
    }

    .indus_box .industry-section .bg-image .img {
        width: calc(100% - 100px);
    }

    .indus_box .your-class .bg-image .img {
        width: 100%;
    }

    .apply_text .text {
        margin-top: 16px;
        line-height: 26px;
    }

    .apply_text .app_table table td {
        font-size: 14px;
        line-height: 24px;
    }

    .apply_text .app_table .table_box {
        overflow-x: auto;
    }

    .apply_text .app_table table {
        table-layout: inherit;
    }

    .apply_text .app_table table td,
    .apply_text .app_table table th {
        white-space: nowrap;
    }
}

@media (max-width:540px) {
    .industry_choose .choose_box .card {
        width: 100%;
    }
}

/* services */
.service_box .industry-section .text {
    margin-top: 24px;
}

.maxw744 {
    max-width: 800px;
}

.service_number {
    padding-top: 48px;
    /* max-width: 540px; */
}

.service_number ul {
    display: flex;
}

.service_number ul li {
    padding-right: 60px;
}

.service_number .number {
    color: #586F8C;
}

.service_number .number span {

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 0.8;
}

.service_number .number em {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.service_number .card-title {
    margin-top: 10px;
    font-size: 16px;
    color: #586F8C;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.service_box .your-class .number {
    color: var(--white-color);
}

.service_box .your-class .card-title {
    color: var(--white-color);
}

.title.position .service_number .number,
.title.position .service_number .card-title {
    color: var(--white-color);
}

.service_choose {
    background-color: var(--main-color);
}

.service_choose .choose_box .card {
    background-color: var(--white-color);
}

.service_choose .choose_box .card:hover {

    box-shadow: 0 16px 54px 0 rgba(57, 73, 96, 0.15);
}

.service_gx_box {
    background-color: var(--white-color);
}

/* 服务体系 */
.service_tx_box {
    padding: 80px 0;
    overflow: hidden;
}

.service_system {
    margin-top: 55px;
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
    overflow: hidden;
}

.service_system .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 52px 40px;
    width: 50%;
    background: var(--white-color);
}

.service_system .right {
    width: 50%;
}

.service_system .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service_system .left .title {
    padding-bottom: 32px;
    margin-bottom: 32px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.service_system .left .des {
    /* max-width: 496px; */
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.contact_info {
    padding-top: 25px;
}

.contact_info p {
    display: flex;
    padding-bottom: 8px;
}

.contact_info p:last-child {
    padding-bottom: 0;
}

.contact_info p a {
    display: flex;
    align-items: flex-start;
    color: var(--main-color);
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
}

.contact_info p img {
    width: 34px;
    margin-right: 8px;
}

.system_list {
    padding-top: 16px;
}

.system_list ul {
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    align-items: stretch;
}

.system_list ul li {

    padding: 16px;
    width: 33.33%;
}

.system_list .bg {
    padding: 40px;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
    height: 100%;
}

.system_list .bg .icon {
    width: 50px;
}

.system_list .title {
    padding-top: 34px;
    padding-bottom: 34px;
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.system_list .des {
    color: #788493;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

/* 高效服务 */
.service_gx_box {
    padding: 90px 0;
    overflow: hidden;
}

.organ_two {
    padding-top: 55px;
}

.organ_two .grid-box {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
}

.organ_two .grid-box .box {
    padding: 8px;
}

.organ_two .grid-box .box {
    width: 220px;
    float: left;
    height: 560px;
    position: relative;
    background-position: left center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.organ_two .grid-box .box .inbox {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid rgba(198, 206, 245, 0.30);
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.organ_two .grid-box .box .inbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);
}

.organ_two .grid-box .box .inbox .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.organ_two .grid-box .box .inbox .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organ_two .organ_two_right {
    position: absolute;
    left: 0;
    bottom: 32px;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-flow: column;

}

.organ_two .organ_two_right .text {
    height: 0;
    transition: opacity .4s;
    opacity: 0;
    overflow: hidden;
}

.organ_two .organ_two_right .text p {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* text-align: justify; */
}

.organ_two .grid-box .box .title {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.organ_two .grid-box .act {
    width: calc(100% - 880px);
}

.organ_two .act .organ_two_right {
    opacity: 1;
    transition-delay: .3s;
}

.organ_two .act .organ_two_right .text {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    height: auto;
    opacity: 1;
}

@media screen and (max-width:1366px) {
    .organ_two .grid-box .box {
        width: 200px;
    }

    .organ_two .grid-box .act {
        width: calc(100% - 800px);
    }

    .organ_two .organ_two_right {
        bottom: 25px;
        padding: 0 25px;
    }

}

@media screen and (max-width:1200px) {
    .organ_two .grid-box .box {
        width: 150px;
    }

    .organ_two .grid-box .act {
        width: calc(100% - 600px);
    }

    .organ_two .organ_two_right {
        padding: 0 20px;
    }

    .system_list .bg {
        padding: 30px;
    }
}

@media screen and (max-width:991px) {
    .service_number ul li {
        padding-right: 40px;
    }

    .service_gx_box {
        padding: 70px 0;
    }

    .organ_two .grid-box {
        flex-wrap: wrap;
    }

    .organ_two .grid-box .box {
        width: 50%;
        padding-top: 8px;
        padding-bottom: 8px;
        height: 300px;
    }

    .organ_two .grid-box .box .inbox {
        padding: 24px;
        border: inherit;
        display: flex;
        align-items: flex-end;
    }

    .organ_two .organ_two_right {
        position: relative;
        padding: 0;
        width: 100%;
        left: 0;
        bottom: inherit;
        height: auto;
        flex-wrap: wrap;
        opacity: 1;
    }

    .organ_two .organ_two_right .text {
        width: 100%;
    }

    .organ_two .grid-box .box .title {
        margin-top: 0;
        font-size: 20px;
    }

    .organ_two .organ_two_right .text {
        padding-top: 8px;
    }


    .organ_two .act .organ_two_right .text,
    .organ_two .organ_two_right .text {
        height: auto;
        opacity: 1;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .system_list .bg {
        padding: 30px 20px;
    }

    .system_list ul {
        flex-wrap: wrap;
    }

    .system_list ul li {
        width: 100%;
    }

    .system_list .title {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .system_list .bg .icon {
        width: 40px;
    }

    .service_system .left .title {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width:767px) {
    .service_gx_box {
        padding: 50px 0;
    }
    .organ_two .grid-box .box:first-child {
        padding-top: 0;
    }
    .organ_two .grid-box .box {
        width: 100%;
        height: auto;
    }

    .organ_two {
        padding-top: 35px;
    }

    .service_number ul {
        /* flex-flow: column; */
        flex-wrap: wrap;
    }

    .service_number ul li {
        padding-right: 0;
        padding-bottom: 30px;
        width: 100%;
    }

    .service_number .card-title {
        margin-top: 6px;
        line-height: 24px;
    }

    .organ_two .grid-box .box .inbox .bg {
        position: relative;
    }

    .organ_two .grid-box .box .inbox::before {
        /* content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%); */
        display: none;
    }

    .organ_two .grid-box .box .inbox {
        /* padding: 24px 20px; */
        padding: 24px 0;
        padding-bottom: 0;
        flex-flow: column;
    }

    .organ_two .grid-box .box .title {
        color: var(--dark);
    }

    .organ_two .organ_two_right .text p {
        color: #666;
    }

    .organ_two .organ_two_right {
        margin-top: 25px;
    }

    .organ_two .act .organ_two_right .text,
    .organ_two .organ_two_right .text {

        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .service_tx_box {
        padding: 50px 0;
    }

    .service_system .left .title {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .system_list .title {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .service_system {
        margin-top: 35px;
        flex-wrap: wrap;
    }

    .service_system .left {
        padding: 35px 20px;
        width: 100%;
    }

    .service_system .right {
        width: 100%;
    }

    .contact_info p img {
        width: 24px;
        margin-right: 6px;
    }

    .contact_info p a {
        font-size: 20px;
    }


}

/* new */
.index_new_content {
    padding-top: 60px;
    padding-bottom: 90px;
}

.index_new_content>.ul {
    margin-top: 55px;
    display: flex;
    align-items: stretch;
    margin-left: -16px;
    margin-right: -16px;
}

.index_new_content .ul .li {
    width: 40.5%;
    padding: 0 16px;
}

.index_new_content>.ul>.small_new {
    width: 59.5%;
    padding: 0 16px;
}

.index_new_content>.ul>.small_new>ul {
    margin-left: -16px;
    margin-right: -16px;
    margin-top: -16px;
    display: flex;
    flex-wrap: wrap;
    height: calc(100% + 32px);
}

.index_new_content>.ul>.small_new .new_list {
    width: 50%;
    height: 50%;
    padding: 16px;
}

.index_new_content .big_new {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.index_new_content .big_new .thumb {
    height: calc(100% - 172px);
    overflow: hidden;
}

.index_new_content .big_new .thumb i {
    display: block;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -o-transition: all 0.4 ease;
}

.index_new_content .big_n_cont {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    width: 100%;
    height: 172px;
    padding: 32px;
    background-color: #F0F3F7;
    transition: background-color .3s;
}

.big_n_cont .top {
    position: relative;
    padding-top: 16px;
    width: 100%;
}

.big_n_cont .top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 1px;
    background-color: var(--main-color);
}

.big_n_cont .title {
    color: var(--deep-color);
    font-weight: 700;
    line-height: 1.5;
}

.big_n_cont .time {
    display: flex;
    align-items: center;

}

.big_n_cont .time span {
    position: relative;
    padding-right: 14px;
    margin-right: 14px;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.big_n_cont .time span::after {
    content: "·";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.big_n_cont .time em {
    padding-left: 28px;
    color: #586F8C;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    background-image: url(../images/time_grey.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 20px;
}

.big_new:hover .title {
    color: var(--white-color);
}

.big_new:hover .top::before {
    background-color: var(--white-color);
}

.big_new:hover .time span,
.big_new:hover .time em {
    color: var(--white-color);
}

.big_new:hover .time em {
    background-image: url(../images/time_white.svg);
}

.index_new_content a:hover .big_n_cont {
    background-color: var(--main-color);
}

.index_new_content a:hover .thumb i {
    transform: scale(1.05);
}

.index_new_content .new_list a {
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: #F0F3F7;
    background-image: url(../images/new_bg_grey.svg);
    background-position: right bottom;
    background-size: 278px;
    background-repeat: no-repeat;
    transition: all .3s;
    overflow: hidden;
    z-index: 1;
}

.index_new_content .new_list .top {
    position: relative;
    padding-top: 16px;
}

.index_new_content .new_list .top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 1px;
    background-color: var(--main-color);
}

.index_new_content .new_list .title {
    color: var(--deep-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_new_content .new_list .time {
    display: flex;
    align-items: center;

}

.index_new_content .new_list .time span {
    position: relative;
    padding-right: 14px;
    margin-right: 14px;
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.index_new_content .new_list .time span::after {
    content: "·";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #586F8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.index_new_content .new_list .time em {
    padding-left: 28px;
    color: #586F8C;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    background-image: url(../images/time_grey.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 20px;
}

.index_new_content .new_list a:hover {
    background-color: var(--main-color);
    background-image: url(../images/new_bg_hover.png);
}

.index_new_content .new_list a:hover::before {
    width: 100%;
}

.index_new_content .new_list a:hover .title {
    color: var(--white-color);
}

.index_new_content .new_list a:hover .time span {
    color: var(--white-color);
}

.index_new_content .new_list a:hover .time em {
    background-image: url(../images/time_white.svg);
    color: var(--white-color);
}

.index_new_content .new_list a:hover .top::before {
    background-color: var(--white-color);
}

@media (max-width:1580px) { 
.big_n_cont .time em,
    .index_new_content .new_list .time em {
        font-size: 16px;
    }
.index_new_content .new_list .time {
    align-items: flex-start;
    flex-flow: column;
}
.index_new_content .new_list .time span::after {
    display: none;
}
.index_new_content .new_list .time em {
    margin-top: 8px;
}


}
@media (max-width:1440px) {

    .index_new_content .new_list a {
        background-size: 200px;
    }


}

@media (max-width:1365px) {

    .index_new_content .big_n_cont,
    .index_new_content .new_list a {
        padding: 26px;
    }

    .big_n_cont .time em,
    .index_new_content .new_list .time em {
        font-size: 18px;
    }

}

@media (max-width:1279px) {

    .index_new_content .big_n_cont,
    .index_new_content .new_list a {
        padding: 30px 20px;
    }

    .index_new_content>.ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .index_new_content .ul .li {
        padding: 0 10px;
    }

    .index_new_content>.ul>.small_new {
        padding: 0 10px;
    }

    .index_new_content>.ul>.small_new>ul {
        margin-left: -10px;
        margin-right: -10px;
        margin-top: -10px;
        height: calc(100% + 20px);
    }

    .index_new_content>.ul>.small_new .new_list {
        padding: 10px;
    }

    .big_n_cont .time span,
    .index_new_content .new_list .time span {
        padding-right: 10px;
        margin-right: 10px;
        font-size: 14px;
    }

    /* .big_n_cont .time em,
    .index_new_content .new_list .time em {
        font-size: 16px;
    } */


}


@media (max-width:991px) {


    .index_new_content .new_list a {
        padding: 20px 20px;
    }

    .index_new_content .new_list .title {
        font-size: 18px;
    }
    .big_n_cont .title {
    line-height: 1.3;
}
    .big_n_cont .time {
        margin-top: 5px;
        flex-flow: column;
        align-items: flex-start;
    }
    .big_n_cont .time span::after {
        display: none;
    }
    .big_n_cont .time em {
        margin-top: 4px;
    }
  .big_n_cont .time em,
    .index_new_content .new_list .time em {
        font-size: 16px;
    }


}

@media (max-width:991px) and (min-width:768px) {
    .index_new_content .new_list .time {
        flex-flow: column;
        align-items: flex-start;
    }

    .index_new_content .new_list .time span {
        padding-right: 0;
        margin-right: 0;
        font-size: 14px;
        display: none !important;
    }

    .index_new_content .new_list .time span::after {
        display: none;
    }
}

@media (max-width:767px) {
    .index_new_content>.ul {
        margin-top: 35px;
        flex-wrap: wrap;
    }

    .index_new_content .ul .li {
        width: 100%;
        padding-bottom: 24px;
    }

    .index_new_content>.ul>.small_new {
        width: 100%;
    }

    .index_new_content>.ul>.small_new .new_list {
        width: 100%;
        height: 200px;
    }

    .index_new_content .big_new .thumb {
        height: calc(100% - 160px);
    }

    .index_new_content .big_n_cont {
        height: 160px;
    }

    .index_new_content .big_n_cont,
    .new_list a {
        padding: 25px 20px;
    }

    .index_new_content .new_list a {
        background-size: 160px;
    }

    .big_n_cont .time em,
    .index_new_content .new_list .time em {
        padding-left: 22px;
        background-size: 16px;
        font-size: 16px;
    }

}

.new_z_cont {
    padding-top: 30px;
    background-color: #F2F7FC;
    overflow: hidden;
}

.new_loop_title {
    padding-top: 50px;
    width: 100%;
}

.new_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 700;
}

.new_loop_title .more a {
    padding: 11px;
    display: flex;
    justify-content: center;
    min-width: 96px;
    border-radius: 23px;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_z_swiper .swiper-slide {
    cursor: url(../images/cursor.svg), auto;
}

.pro_button .aca-pagination span {
    margin: 0 3px;
    border-radius: 4px;
    background: #D9D9D9;
    opacity: 1;
}

.pro_button .aca-pagination span.swiper-pagination-bullet-active {
    opacity: 1;
    width: 16px;
    height: 8px;
    background-color: var(--main-color);
}

.new_z_list {
    padding-top: 40px;
    padding-bottom: 50px;
}

.new_z_list .new_z_swiper {
    overflow: visible;
}

.new_z_swiper .swiper-slide {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
}

.new_z_swiper .thumb {
    position: relative;
    overflow: hidden;
}

.new_z_swiper .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -o-transition: all 0.4 ease;
}

.new_z_swiper .new_text_box {
    padding: 32px;
    background: var(--white-color);
}

.new_z_swiper .new_text_box .new_type {
    color: #0C56BE;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.new_z_swiper .new_text_box .title {
    margin-top: 8px;
    color: var(--deep-color);
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    height: 72px;
}

.new_z_swiper .new_text_box .time {
    margin-top: 4px;
}

.new_z_swiper .new_text_box .time span {
    padding-left: 28px;
    color: #78879B;
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    background-image: url(../images/time_grey.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 20px;
}

.new_z_swiper .new_text_box .time i {
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50px;
    border: 1px solid #78879B;
}

.new_z_swiper .swiper-slide:hover .title {
    color: var(--main-color);
}

.new_z_swiper .swiper-slide:hover .i {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.new_z_swiper .swiper-slide:hover .time i {
    background-color: #0C56BE;
    border-color: #0C56BE;
}

.new_z_swiper .swiper-slide:hover .time i svg path {
    stroke: var(--white-color);
}

.new_z_swiper .swiper-slide:hover .thumb img:first-child {
    transform: scale(1.05);
}

.new_z_cont .new_loop {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.new_z_cont .new_loop:last-child {
    margin-bottom: 50px;
    border-bottom: none;
}
@media (max-width:1580px) {

.new_z_swiper .new_text_box .time span {
    font-size: 16px;
}

}
@media (max-width:1365px) {

    .new_z_swiper .new_text_box .time span {
        /* font-size: 18px; */
    }
}

@media (max-width:767px) {
    .index_new_content {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .new_loop_title {
        padding-top: 30px;
    }

    .new_loop_title .more a {
        padding: 8px 14px;
        min-width: inherit;
        font-size: 14px;
        line-height: 25px;
    }

    .new_z_swiper .new_text_box {
        padding: 25px 20px;
    }

    .new_z_swiper .new_text_box .title {
        line-height: 30px;
        height: 60px;
    }

    .new_z_swiper .new_text_box .time span {
        padding-left: 22px;
        font-size: 16px;
        background-size: 16px;
    }

    .new_z_swiper .new_text_box .time i {
        padding: 5px;
        width: 40px;
        height: 40px;
    }

}

/* down load */
.down_bg {
    background-color: #F2F7FC;
    box-shadow: 0 16px 54px 0 rgba(0, 0, 0, 0.15);
}

.down_box {}

.down_search {
    padding-top: 50px;
    padding-bottom: 55px;
}

.down_search_text {
    padding-top: 20px;
    color: #788493;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.down_search .f_form {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    margin-top: 48px;
    height: 70px;
    padding: 8px 8px 8px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
}

.down_search .f_form .f_input {
    flex: 1;
    padding-right: 10px;
    height: 100%;
    background-color: transparent;
    font-size: 16px;
    font-family: "Microsoft YaHei";
    line-height: 28px;
}

.down_search .f_input::-webkit-input-placeholder {
    color: #586F8C;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.down_search .f_input:-moz-placeholder {
    color: #586F8C;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.down_search .f_input::-moz-placeholder {
    color: #586F8C;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.down_search .f_input:-ms-input-placeholder {
    color: #586F8C;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.down_search .f_form .f_sub {
    display: flex;
    width: 54px;
    height: 54px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: var(--main-color);
    background-image: url(../images/search_white.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
}

.down_loop {
    padding-bottom: 10px;
}

.down_list {
    padding-top: 16px;
    padding-bottom: 64px;
}

.down_list ul {
    margin-left: -16px;
    margin-right: -16px;
    overflow: hidden;
}

.down_list ul li {
    width: 33.33%;
    padding: 16px;
    float: left;
}

.down_list a {
    display: flex;
    padding: 24px;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(53, 82, 124, 0.10);
    background-color: var(--white-color);
    box-shadow: 0 0 14px 0 rgba(57, 73, 96, 0.05);
    transition: background-color .3s;
}

.down_list .title {
    color: var(--deep-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.down_list .down_cont {
    padding-top: 32px;
}

.down_list .down_cont .left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.down_list .down_cont .left span {
    position: relative;
    padding-right: 10px;
    margin-right: 8px;
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.down_list .down_cont .left span::before {
    content: '·';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.down_list .down_cont .left span:last-child {
    margin-right: 0;
    padding-right: 0;
}

.down_list .down_cont .left span:last-child:before {
    display: none;
}

.down_list .down_cont .left {
    order: 2;
}

.down_list .down_cont .right span {
    display: flex;
    padding: 10px 18px;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #F0F3F7;
    color: #78879B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    transition: all .3s;
}

.down_list .down_cont .right span i {
    margin-left: 8px;
    width: 24px;
    height: 24px;
    background-image: url(../images/down_d.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.down_list a:hover .title {
    color: var(--main-color);
}

.down_list a:hover .right span {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var(--white-color);
}

.down_list a:hover .right span i {
    background-image: url(../images/down_d_white.svg);
}

@media screen and (max-width:991px) {
    .down_list ul li {
        width: 50%;
    }

}

@media screen and (max-width:767px) {
    .down_list {
        padding-bottom: 50px;
    }

    .down_list ul li {
        width: 100%;
    }

    .down_list a {
        padding: 20px;
    }

    .down_list .title {
        font-size: 18px;
    }

    .down_search .f_form {
        margin-top: 48px;
        height: 60px;
    }

    .down_search .f_form .f_sub {
        width: 46px;
        height: 46px;
        padding: 10px;
        background-size: 26px;
    }

}

/* form */

body.ovh {
    overflow: hidden;
}

.form_mask {

    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

.foot_form {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    justify-content: space-between;

    padding: 40px;

    width: 1415px;

    padding: 64px;

    max-width: 95%;

    max-height: 91vh;

    border-radius: 40px;

    background-color: var(--white-color);

    overflow: hidden;

    opacity: 0;

    transition: transform 0.67s ease-in-out;

    z-index: -100;

}

.foot_form::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
    height: 80%;
    background-image: url(../images/contact_eject_icon.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;

}

.foot_form .foot_form_left {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    max-width: 430px;
    width: 35%;
}

.foot_form .foot_form_right {
    flex: 1;
    margin-left: 56px;
    padding-left: 56px;
    border-left: 1px solid rgba(0, 0, 0, 0.10);
    overflow: hidden;
    overflow-y: auto;

}



.foot_form .form_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;

}



.foot_form form {
    width: 100%;
}

.foot_form .des {
    margin-top: 56px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.foot_form.show {
    opacity: 1;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.form_close {

    position: absolute;

    right: 24px;

    top: 24px;

    display: flex;

    align-items: center;
    font-size: 16px;

    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;

}

.form_close img {
    width: 24px;
}

.explain_text p {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.explain_text p:first-child {
    font-size: 18px;
}

.explain_text p::before {
    content: "*";
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 16px;
}

.explain_text p:last-child {
    margin-bottom: 0;
}

.foot_form .w100 {
    width: 100%;
}

.foot_form .w2 {
    margin-left: -12px;
    margin-right: -12px;
}


.foot_form .w2 .container-input {
    width: 50%;
    margin-left: 12px;
    margin-right: 12px;
}

.code-btn {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #01A0E2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.code-btn.disabled {
    color: #999;
    cursor: not-allowed;
}

.foot_form .form-control {
    font-size: 16px;
    padding: 0;
    color: #666;
    border: none;
    height: 45px;
    width: 100%;
    border-radius: 0;
    background: none;
    box-shadow: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.form_name {
    color: var(--dark);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.container-input label em {
    margin-left: 4px;
    color: var(--main-color);
    ;
    font-family: 'Catamaran';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

.container-input {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    transition: all .3s ease-in-out;
    transition-delay: 0s;

}

.container-input input[type="text"] {
    outline: none;
    z-index: 1;
    position: relative;
    margin-top: 6px;
    padding-bottom: 10px;
    background: none;
    width: 100%;
    height: 42px;
    border: 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.container-input textarea {
    margin-top: 6px;
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 96px;
    border: 0;
    font-size: 16px;
    color: var(--dark);
    line-height: 26px;
    font-weight: 400;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    resize: none;

}


.container-input label.error {
    position: absolute;
    left: 0;
    bottom: -25px;
    line-height: 20px;
    font-size: 14px;
    width: max-content;

}

.error {
    color: #D70203;
    ;
}

.form_last {
    padding-top: 40px;
    display: flex;
}

.btn_submit {
    background: transparent;
    cursor: pointer;

}

.form_mask {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}

@media (max-height:800px) {
    .foot_form .foot_form_right {

        margin-left: 46px;

        padding-left: 46px;

    }

    .container-input textarea {
        height: 100px;
    }

}



@media (max-width:1279px) {

    .foot_form .foot_form_right {
        margin-left: 30px;
        padding-left: 30px;

    }

}



@media (max-width:991px) {

    .foot_form .foot_form_left {
        width: 40%;
    }

    .foot_form .form_title {
        font-size: 24px;
    }

    .foot_form {
        padding: 64px 30px;
    }


    .foot_form .foot_form_right {
        margin-left: 30px;
        padding-left: 30px;

    }

    .foot_form .w2 {
        flex-wrap: wrap;
    }

    .foot_form .w2 .container-input {
        width: 100%;
    }

    .agreen_ment,
    .tip_text_s {
        flex-wrap: wrap;

    }

}



@media (max-width:767px) {

    .foot_form {
        display: block;

        padding: 30px 20px;

        width: 100%;
        max-width: inherit;
        height: 95vh;
        margin-top: 3vh;
        max-height: inherit;
        border-radius: 24px;
    }

    .foot_form.show {
        z-index: 999;
    }

    .foot_form .foot_form_left {
        padding-top: 20px;
        width: 100%;

    }

    .foot_form .des {
        margin-top: 20px;
    }

    .foot_form .w2 {
        flex-wrap: wrap;
    }

    .foot_form .w2 .container-input {
        width: 100%;
    }

    .foot_form .foot_form_right {
        margin-left: 0;
        padding-left: 0;
        border: none;
        margin-top: 30px;
        width: 100%;
        height: calc(100vh - 398px);
    }

    .container-input {
        margin-bottom: 30px;
    }

    .explain_text {
        margin-top: 20px;
        font-size: 16px;
    }

}

/* index */
.foot_form_right .index_more {
    background-color: transparent;
    cursor: pointer;
    border: none;
}

.border_white a {

    border: 1px solid var(--white-color);
}

.border_black a,
.border_grey a {
    border: 1px solid #666;
}

.index_more a {
    display: flex;
    width: 200px;
    height: 60px;
    padding: 20px 24px;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px 0px 8px 8px;
    transition: background-color 0.3s ease-in-out;

}

.border_white a span {
    color: var(--white-color);
}

.border_black a span {
    color: #666;
}

.border_grey a span {
    color: #666;
}

.index_more a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.index_more a i {
    position: relative;
    /* width: 40px;
    height: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.border_white a i::before {
    background-color: var(--white-color);

}

.border_black a i::before {
    background-color: #666;
}

.border_grey a i::before {
    background-color: #666;
}

.index_more a i::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    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;
}

.index_more a i svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;

}

.border_white a:hover {
    background-color: var(--white-color);
}

.border_black a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.border_grey a:hover {
    background-color: #666;
}

.border_white a:hover span {
    color: var(--blue);
}

.border_black a:hover span {
    color: var(--white-color);
}

.border_grey a:hover span {
    color: var(--white-color);
}

.index_more a:hover i:before {
    opacity: 0;
}

.border_white a:hover i:after {
    background-color: var(--blue);
}

.border_black a:hover i:after {
    background-color: var(--white-color);
}

.border_grey a:hover i:after {
    background-color: var(--white-color);
}

.index_more a:hover i:after {
    width: 100%;
    height: 100%;
}

.index_more a:hover i svg {
    opacity: 1;
}

.border_black a:hover i svg path {
    stroke: var(--main-color);
}

.border_grey a:hover i svg path {
    stroke: #666;
}

@media (max-width:1280px) {

    .index_more a {
        width: 166px;
        height: 56px;
        padding: 18px 14px;
    }
    .index_more a span {
    font-size: 14px;
}
}

@media (max-width:350px) {
    .pro_in_button .list_ span {
        font-size: 16px;
    }
}

/* new list */
.new_list_box {
    padding-top: 60px;
    padding-bottom: 40px;
}

.new_list_bg {
    background: linear-gradient(0deg, #F0F3F7 0%, #F0F3F7 100%), #F5F5F7;
}

.new_list_loop {
    padding-top: 52px;
}

.new_list_loop .swiper-slide {
    cursor: pointer;
}

.new_list_loop ul {
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    flex-wrap: wrap;
}

.new_list_loop ul li {
    padding: 16px;
    width: 33.33%;
}

.new_list_loop a {
    display: block;
}

@media (max-width:1279px) {
    .new_list_loop ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .new_list_loop ul li {
        padding: 10px;
    }
}

@media (max-width:991px) {
    .new_list_loop .new_text_box {
        padding: 20px;
    }

    .new_list_loop .new_text_box .time span {
        font-size: 18px;
    }

}

@media (max-width:767px) {
    .new_list_box {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .new_list_loop {
        padding-top: 35px;
    }

    .new_list_loop ul li {
        width: 100%;
    }

    .new_list_loop .new_text_box .time span {
        font-size: 16px;
    }
}

/* article */
.article_cont {
    width: 100%;
    height: 100%;
    min-height: 50vh;
    padding-top: 40px;
    padding-bottom: 80px;
}

.article_cont .white_bg {
    position: relative;
    padding: 45px;
    background-color: var(--white-color);
}

.article_cont .white_bg .page_menu_right {
    padding-top: 0;
}

.pro_xq_back {
    position: absolute;
    left: -60px;
    top: 0px;
    z-index: 9;
}

.pro_xq_back.on {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
}

.pro_xq_back a {
    display: inline-flex;
    padding: 16px;
    align-items: center;
    background: #FFF;
    transition: all 0.3s;
}

.pro_xq_back a img:nth-child(2) {
    display: none;
}

.pro_xq_back a:hover img:nth-child(1) {
    display: none;
}

.pro_xq_back a:hover img:nth-child(2) {
    display: block;
}

.pro_xq_back a:hover {
    background-color: var(--main-color);
}

.article_n {
    /* display: flex; */
    padding-top: 30px;
}

.article_n .article_left {
    float: left;
    width: calc(100% - 432px);
    padding-right: 56px;
    margin-right: 56px;
    border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.article_n .article_right {
    float: left;
    width: 376px;
    position: sticky;
    top: 0;
    z-index: 9;
}

.article_n .article_right .s_t {
    padding-bottom: 24px;
    color: var(--deep-color);
    font-weight: 700;
    line-height: 1.5;
}

.article_left .article_title {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.article_left .article_title .title {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
}

.article_left .article_title .mid {
    padding-top: 24px;
}

.article_left .article_title .mid .left {
    font-family: 'Montserrat';
    color: var(--deep-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_left .article_title .mid .left img {
    margin-right: 8px;
}

.article_left .article_title .mid .left .line {
    margin-left: 19px;
    margin-right: 19px;
    width: 1px;
    height: 10px;

    background-color: rgba(0, 0, 0, 0.10);
}

.article_left .article_title .right .share_button i {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
}

.share_button .i {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 4px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
}

.share_button .i:last-child {
    margin-right: 0;
}

.share_button .bigger {
    background-image: url(../images/big_jia.svg);
}

.share_button .smaller {
    background-image: url(../images/big_jian.svg);
}

.share_button .share_btn {
    background-image: url(../images/new_xq_share.svg);
}

.share_button .i:hover {
    background-color: #EAEAEA;
    opacity: 1;
}

.share_button .bigger:hover {
    background-image: url(../images/big_jia_red.svg);
}

.share_button .smaller:hover {
    background-image: url(../images/big_jian_red.svg);
}

.share_button .share_btn:hover {
    background-image: url(../images/new_xq_share_red.svg);
}


.article_text {
    padding-top: 32px;
}

.article_left .article_text p {
    padding-bottom: 30px;

    color: #666;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;

}

.article_left .article_text p:last-child {
    padding-bottom: 0;
}

.article_left .article_text p img,
.article_left .article_text video {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
    border-radius: 16px;
}

.article_right .thumb {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* 
*/
.article_right .thumb i::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%);

}

.article_right .thumb i {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: -webkit-transform 1.3s;
    transition: -webkit-transform 1.3s;
    -o-transition: transform 1.3s;
    transition: transform 1.3s;
    transition: transform 1.3s, -webkit-transform 1.3s;
    -webkit-transition: transform 1.3s;
}

.article_right .thumb .article_r_text {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px;
    width: 100%;
}

.article_right .thumb .article_r_text .time span {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat';
    font-size: 16px;
    padding-left: 26px;
    background-image: url(../images/time_white.svg);
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
}

.article_right .thumb .article_r_text .t {
    margin-top: 8px;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.article_right .thumb a:hover i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.article_right .ul li {
    padding-top: 24px;
}

.article_right .ul li a {
    display: block;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.article_right .ul .time span {
    color: var(--deep-color);
    font-family: 'Montserrat';
    font-size: 16px;
    padding-left: 26px;
    background-image: url(../images/time_grey.svg);
    background-size: 18px 18px;
    background-position: left center;
    background-repeat: no-repeat;
}

.article_right .ul .t {
    margin-top: 8px;
    color: var(--dark);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    height: 64px;
}

.article_right .ul a:hover .t {
    color: var(--main-color);
}


.article_right .up_ {
    padding-top: 32px;
}

.article_right .up_ a {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.article_right .up_ .t {
    flex: 1;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

.article_right .up_ a:hover .t {
    color: var(--main-color);
}

/* 分享 */

.share_mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    z-index: 1111;
    display: none;
}

.share_box {
    position: fixed;
    top: 50%;
    width: 298px;
    padding: 0 20px;
    border-radius: 24px;
    background: #FFF;
    left: 50%;
    z-index: 11111;
    display: none;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.share_box .share_list {
    padding-top: 46px;
    padding-bottom: 30px;
}

.share_box .sub {
    text-align: center;
    color: var(--dark);
    font-family: "Rubik";
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.share_box .share_list ul {
    display: flex;
    justify-content: space-around;
}

.share_box .share_list ul li {
    padding-top: 22px;
    width: 33%;
    cursor: pointer;
}

.share_box .share_list ul li p {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    margin-top: 8px;
    line-height: 24px;
    text-align: center;
}

.cancel_share {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    font-size: 0;
    background-image: url(../images/share_close.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    z-index: 9;
}

.share_bg {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--main-color);
    margin: 0 auto;
    text-align: center;
}

@media (max-width:1365px) {
    .article_n .article_left {
        width: calc(100% - 356px);
        padding-right: 56px;
        margin-right: 56px;
    }

    .article_n .article_right {
        width: 300px;
    }

}

@media (max-width:1280px) {
    .article_n .article_left {
        width: calc(100% - 340px);
        padding-right: 40px;
        margin-right: 40px;
    }

    .article_n .article_right {
        width: 300px;
    }

}

@media (max-width:1200px) {
    .article_n .article_left {
        width: calc(100% - 310px);
        padding-right: 40px;
        margin-right: 40px;
    }

    .article_n .article_right {
        width: 270px;
    }

}

@media (max-width:991px) {
    .pro_xq_back {
        display: none !important;
    }

    .article_cont .white_bg {
        padding: 50px 30px;
    }

    .article_n .article_left {
        width: calc(100% - 250px);
        padding-right: 30px;
        margin-right: 30px;
    }

    .article_n .article_right {
        width: 220px;
    }

    .article_left .article_title .mid .left .line {
        margin-left: 10px;
        margin-right: 10px;
    }

}

@media (max-width:767px) {

    .article_cont {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .article_cont .white_bg {
        padding: 30px 20px 30px 20px;
    }

    .article_n .article_left {
        width: 100%;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    .article_n .article_right {
        width: 100%;
        position: relative;
        padding-top: 30px;
    }

    .article_n {
        padding-top: 20px;
    }

    .article_left .article_title .mid {
        padding-top: 16px;
        flex-wrap: wrap;
    }

    .article_left .article_title .mid .left {
        width: 100%;
        padding-bottom: 15px;
    }

    .article_left .article_title {
        padding-bottom: 16px;
    }

    .article_right .ul .t {
        font-size: 16px;
        line-height: 26px;
        height: auto;
    }

    .fen {
        font-size: 20px;
    }

    .article_right .thumb .article_r_text .t {
        line-height: 26px;
    }
}


/* mess */
.contact_top {
    position: relative;
    z-index: 1;
}

.contact_top .about_big_t {
    padding-top: 40px;
}

.contact_map {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact_top .top {
    position: relative;
    padding-bottom: 55px;
    z-index: 1;
}

.contact_top .top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, #F0F3F7 -9.13%, rgba(240, 243, 247, 0.00) 89.64%);
    z-index: -1;
}

.contact_cont {
    position: relative;
    margin-top: 356px;
    padding-top: 108px;
    padding-bottom: 70px;
    z-index: 1;
}

.contact_cont::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, #F0F3F7 -9.13%, rgba(240, 243, 247, 0.00) 89.64%);
    z-index: -1;
}

.contact_cont ul {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-left: -16px;
    margin-right: -16px;
}

.contact_cont ul>li {
    padding: 16px;
    width: 33.33%;
}

.contact_cont .bg {
    padding: 32px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: rgba(0, 62, 150, 0.90);
}

.contact_cont .contact_t {
    color: var(--white-color);
    font-weight: 700;
}

.contact_cont .contact_t a {
    font-family: 'Montserrat';
    font-weight: 700;
    color: var(--white-color);
}

.contact_cont .contact_bottom {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact_cont .contact_bottom .left {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.contact_mess {
    position: relative;
    padding: 137px 0;
    z-index: 1;
}

.contact_mess .mess_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact_mess .mess_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mess_bg {
    padding: 64px 80px;
    max-width: 1340px;
    margin: 0 auto;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.16);
}

.mess_bg .p {
    padding-top: 23px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.message_form {
    max-width: 1024px;
    margin: 0 auto;
}

.message_form .item_right {
    margin-top: 28px;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
}

.message_form .col-2 {
    width: 50%;
    float: left;
    padding: 12px 12px;
}

.message_form .colw100 {
    float: left;
    width: 100%;
    padding: 12px 12px;
    padding-top: 32px;
}

.message_form .col_z span {
    position: absolute;
    left: 16px;
    top: 16px;
    display: block;
    color: var(--deep-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.message_form .col_z span>em {
    margin-left: 4px;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

.message_form .input-container {
    position: relative;
    border-radius: 8px;
    background-color: #F0F3F7;
}

.message_form .input-container.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.message_form .input-container input {
    outline: none;
    z-index: 1;
    padding: 16px 16px 16px 100px;
    position: relative;
    background: none;
    width: 100%;
    height: 60px;
    border: 0;
    color: var(--dark);
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei';
    text-align: left;
}

.message_form .input_select_box .span input {
    padding-right: 40px;
    padding-left: 128px;
    cursor: pointer;
}

.message_form .input_select_box .icon {
    width: 24px;
    height: 24px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.message_form .input_select_box .drop_down_ {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: #F0F3F7;
    border-top: none;
    padding-bottom: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 9;
}

.message_form .input_select_box .drop_down_ p {
    padding: 8px 20px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.message_form .input_select_box .drop_down_ p:hover {
    color: var(--main-color);
}

.message_form .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 160px;
    padding: 16px;
    padding-left: 100px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    resize: none;
    font-family: "Microsoft YaHei";
}

.message_form .yanz .input-container {
    margin-top: 0;
    width: 262px;
}

.message_form .message_code {
    margin-left: 16px;
}

.message_form .message_code img {
    height: 60px;
    border-radius: 8px;

}

.message_form .text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--main-color);
}

.message_form_text {
    padding-top: 28px;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.message_form .more_n button {
    width: 160px;
}

.message_form .last_button .more_n a span {
    color: #666666;
}

.message_form .last_button .mess_reset {
    margin-left: 16px;
    border: 1px solid #586F8C;
    background-color: transparent;
    color: #586F8C;

}

.message_form .last_button .mess_submit {
    background: var(--main-color);
    border-color: var(--main-color);
}

.message_form .last_button .mess_submit>span:first-child {
    color: var(--white-color);

}

.message_form .last_button button>span:first-child {
    font-family: '';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    cursor: pointer;
}

.message_form .last_button button {
    display: flex;
    height: 60px;
    padding: 20px 24px;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px 0 8px 8px;
    text-align: justify;
    min-width: 200px;
    cursor: pointer;
    transition: all .3s;
}

.message_form .input-container input::-webkit-input-placeholder,
.message_form textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.message_form .input-container input::-moz-placeholder,
.message_form textarea::-moz-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.message_form .input-container input::-ms-input-placeholder,
.message_form textarea::-ms-input-placeholder {
    color: #999;
    font-size: 16px;
    font-family: "Microsoft YaHei";
}

.mess_border {
    width: 100%;
    height: 56px;
    padding: 4px;
}

.last_vode .input-container {
    height: 56px;
}

#hdyz {
    opacity: 0;
    border: none;
    width: 0;
    height: 0;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.message_form .last_vode {
    width: 60%;
    max-width: 400px;
}

@media (max-width:991px) {
    .contact_cont {
        margin-top: 400px;
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .contact_cont ul>li {
        width: 100%;
    }

    .mess_bg {
        padding: 30px;
    }

    .message_form .col-2 {
        width: 100%;
    }

    .contact_cont .bg {
        padding: 32px 20px;
    }
}

@media (max-width:767px) {
    .contact_cont .contact_t {
        height: auto !important;
    }

    .contact_mess {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .mess_bg {
        padding: 40px 20px;
    }

    /* .white_bg {
        padding: 30px 0;
    } */

    .mess_bg .p {
        font-size: 16px;
    }

    .contact_cont .bg {
        padding: 30px 20px;
    }

    .message_form .yanz {
        display: block;
    }

    .message_form .yanz .input-container {
        width: 100%;
    }

    .message_form .message_code {
        margin-left: 0;
        margin-top: 30px;
    }


    .message_form .last_button {
        justify-content: space-between;
    }

    .message_form .last_button .mess_reset {
        margin-right: 0;
    }

    .message_form .last_button button {
        padding: 20px 15px;
        width: calc(50% - 5px);
        min-width: inherit;
    }

    .message_form .last_button span {
        min-width: inherit;
    }

    .message_form .input-container textarea {
        height: 200px;
    }

    /* 
    .message_form .input-container input::-webkit-input-placeholder,
    .message_form textarea::-webkit-input-placeholder {
        font-size: 14px;
    }

    .message_form .input-container input::-moz-placeholder,
    .message_form textarea::-moz-placeholder {
        font-size: 14px;
    }

    .message_form .input-container input::-ms-input-placeholder,
    .message_form textarea::-ms-input-placeholder {
        font-size: 14px;
    } */

    .message_form .input-container input {
        height: 58px;
    }

    .message_form .message_code img {
        height: 58px;
    }

    .message_form .input_select_box .drop_down_ {
        top: 58px;
    }

    .bg_img .index_five_img>div:first-child {
        display: none;
    }

    .verify-bar-area .verify-msg {
        font-size: 14px;
    }

    .message_form .col_z>span,
    .message_form .col_z>span>em {
        font-size: 16px;
    }

    .message_form .col_z>span>em {
        margin-left: 4px;
    }

    .contact_cont {
        margin-top: 180px;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .contact_cont ul>li {
        width: 100%;
    }

    .message_form .colw100 {
        padding-top: 12px;
    }

}
/* search */
.search_no {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    margin: 0 auto;
}

.search_no .img {
    max-width: 360px;
}

.search_no .text {
    padding-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
    color: var(--dark);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

@media (max-width:991px) {}

@media (max-width:1200px) {}

@media (max-width:991px) {}