﻿@charset "utf-8";

html,
body {
    height: 100%;
}

body {
    position: relative;
}

:root {
    --main-color: #0249D9;
    --dark-color: #333333;
    --blue-color: #0249D9;
    --white-color: #fff;
    --red-color: #C30D23;
}

img {
    max-width: 100%;
}

.thumb {
    overflow: hidden;

}

@keyframes pulse {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}



/* footer */
.right_rove {
    position: fixed;
    right: 0;
    bottom: 40px;
    z-index: 9;
}

.right_rove ul {
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.right_rove ul li {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.right_rove ul li:last-child {
    margin-bottom: 0;
}

.right_rove>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    width: 56px;
    height: 56px;
    background-color: var(--red-color);
    transition: width .4s;
}

.right_rove>ul>li>a span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    opacity: 0;
}

.back_top {
    display: none;
    cursor: pointer;
}

.right_rove ul li .hide_tel {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    padding: 20px 15px;
    text-align: center;
    background-color: var(--red-color);
    opacity: 0;
    justify-content: center;
    border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / 10%);
}

.right_rove ul li .hide_tel:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-left-color: var(--red-color);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.right_rove ul li .hide_tel>a {
    color: #ffffff;
    font-size: 16px;
    background-color: transparent;
    border: none;
    padding: 0;
}

.right_rove ul li:hover {
    overflow: visible;
}

.right_rove ul li:hover .hide_tel {
    opacity: 1;
    z-index: 8;
}

.right_rove>ul>li>a:hover {
    justify-content: flex-start;
    width: 120px;
}
.right_rove>ul>li.back_top>a:hover {
    width: 80px;
}
.right_rove>ul>li>a:hover span {
    opacity: 1;
    transition: opacity .6s;

}



@media screen and (max-width:767px) {
    .right_rove>ul>li>a {
        width: 46px;
        height: 46px;
        padding-left: 6px;
        padding-right: 6px;
    }
    .right_rove > ul > li > a span {
        right: 5px;
    }

}

footer {
    position: relative;
    width: 100%;
    background-color: #090B22;
    border-bottom: 8px solid var(--main-color);
    background-image: url(../images/foot_bgmid.png);
    background-repeat: no-repeat;
    background-position: center;
    /* z-index: 1; */
}

.foot_top {
    padding-top: 45px;
}

.foot_top .foot_logo {
    max-width: 202px;
}

.foot_top .foot_logo img {
    
}

.foot_share ul {
    display: flex;
    margin-left: -9px;
    margin-right: -9px;
}

.foot_share ul li {
    padding: 0 9px;
}

.foot_share .w_bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.foot_share .w_bg::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    background-color: var(--red-color);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.foot_share .w_bg img {
    width: 24px;
    height: 24px;
}

.eject_cont {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -65px;
    transform: translateY(-20px);
    padding: 8px;
    width: 130px;
    background: #FFFFFF;
    border-radius: 8px;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100%;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

.foot_share .eject_cont:hover .w_bg {
    background-color: rgba(255, 255, 255, 1);
}

.foot_share .eject_cont:hover .w_bg::before {
    width: 100%;
    height: 100%;
}

.foot_line {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 35px;
    padding-bottom: 30px;
}

.footer-bottom-mean {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 40px;
    padding-bottom: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.footer-bottom-mean-left {
    display: flex;
    flex-direction: column;
}

.footer-bottom-mean-right {
    flex: 1;
    display: flex;
    padding-left: 30px;
    max-width: 1100px;
}

.footer-left-title {
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.footer-left-tel {
    padding-bottom: 24px;
    color: var(--white-color);
    font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.footer-left-tel a {
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.footer-left-adress {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.6;
    max-width: 480px;
}

.footer-left-adress img {
    width: 24px;
    margin-right: 16px;
    margin-top: 3px;
}

.footer-bottom-item:first-child {
    margin-left: auto;
}

.footer-bottom-item {
    margin-left:60px;
}

.footer-bottom-item div {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.footer-bottom-item div>a {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer-bottom-item div>a:last-child {
    margin-bottom: 0;
}

.footer-bottom-item h3 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.footdown-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.footdown-bottom a {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.footdown-bottom .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-item div>a:hover,
.footdown-bottom a:hover {
    color: var(--white-color);
}

.footer-map {
    margin-top: 24px;
    display: flex;
}

.footer-map a {
    display: flex;
    padding: 10px 36px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

.footer-map a:hover {
    background-color: var(--white-color);
    color: var(--main-color);
    opacity: 1;
}

@media (max-width:1580px) {

    .footer-bottom-item {
        margin-left: 50px;
    }
}

@media (max-width:1440px) {
    .footer-left-adress {
        max-width: 440px;
    }
    .footer-bottom-item {
        margin-left: 30px;
    }
}

@media (max-width:1366px) {
    .foot_top {
        padding-top: 30px;
    }

    .footer-bottom-mean {
        padding-top: 30px;
        margin-top: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom-item {
        margin-left: 30px;
    }
}

@media (max-width:1280px) {

    .footer-bottom-item {
        margin-left: 25px;
    }
    .footer-bottom-item div>a {
        margin-bottom: 10px;
    }
}

@media (max-width:1279px) {

    .footer-bottom-mean-left {
        width: 35%;
    }

    .foot_share .w_bg {
        width: 48px;
        height: 48px;
    }

    .footer-left-adress img {
        width: 22px;
        margin-right: 10px;
    }

    .footer-bottom-item {
        margin-left: 25px;
    }
    .foot_line {
        padding-top: 25px;
        padding-bottom: 20px;
    }


}

@media (max-width:991px) {
    .footer-bottom-mean {
        flex-wrap: wrap;
    }

    .footer-bottom-mean-left {
        width: 100%;
    }

    .footer-bottom-mean-right {
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
        flex: inherit;
        justify-content: space-between;
    }

    .footer-bottom-item:first-child {
        margin-left: 0;
    }
}

@media (max-width:767px) {
    footer {
        padding-top: 30px;
        border-bottom: 4px solid var(--main-color);
    }

    .foot_top {
        padding-top: 0;
        flex-flow: column;
        align-items: flex-start;
    }

    .foot_top .foot_logo {
        max-width:180px;
    }
    .foot_share {
        padding-top: 25px;
    }
    .foot_share ul {
        display: flex;
    }
    
 
    .eject_cont .eject_tc {
        margin-left: -28px;
    }

    .eject_cont .eject_tc:before {
        margin-left: -50px;
    }

    .footer-bottom-mean {
        padding-top: 20px;
        margin-top: 20px;
        padding-bottom: 20px;
    }

    .footer-bottom-mean-right {
        flex-wrap: wrap;
        padding-top: 30px;
    }
    .footer-map {
        margin-top: 10px;
    }
    .footer-bottom-item {
        margin-left: 0;
        padding-bottom: 10px;
        width: 100%;
    }

    .footer-bottom-item div {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .footer-bottom-item div>a {
        margin-right: 10px;
    }

    .footer-left-tel {
        padding-bottom: 16px;
        font-size: 22px;
    }

    .footer-left-adress img {
        margin-top: 1px;
    }

    .foot_line {
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        align-items: flex-start;
    }


    .footer-left-adress {
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
    }

    .footdown-bottom {
        font-size: 14px;
    }

    .footdown-bottom .left,
    .footdown-bottom .right {
        line-height: 26px;

    }

}

/* button */
.more_n {
    display: flex;
}


.more_n button {
    position: relative;
    padding: 16px 30px;
    background: rgba(217, 217, 217, 0.20);
    border: none;
    height: 58px;
    transition: background-color .4s ease-in-out .1s;
    overflow: hidden;
    cursor: pointer;
}

.more_n a span {
    color: var(--white-color);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.more_n .line_top {
    position: absolute;
    z-index: 1;
    backdrop-filter: blur(4px);
    background-color: rgba(217, 217, 217, 0.80);
}

.more_n.white .line_top {
    background-color: rgba(217, 217, 217, 0.80);
}

.button_border_W0i {
    width: 1px;
    height: 100%;
}

.button_border_W0x {
    width: 100%;
    height: 1px;
}

.button_border_left {
    left: 0;
    top: 0;
}

.button_border_right {
    right: 0;
    top: 0;
}

.button_border_top {
    left: 0;
    top: 0;
}

.button_border_bottom {
    left: 0;
    bottom: 0;
}

.w100 {
    width: 100%;
    height: 100%;
    position: relative;
}

.button_border_W0i .button_line__d {
    width: 1px;
    height: 50%;
}

.button_border_W0x .button_line__d {

    width: 50%;
    height: 1px;
}

.button_line__d {
    position: absolute;
    transition: transform .3s ease;
    background-color: var(--red-color);
}

.more_n.white .button_line__d {
    background-color: var(--white-color);
}

.button_line__top {
    left: 0;
    top: 0;
    transform: translateY(calc(-100% + 6px));
}

.button_line__bottom {
    left: 0;
    bottom: 0;
    transform: translateY(calc(100% - 6px));
}

.button_line__left {
    left: 0;
    top: 0;
    transform: translate(calc(-100% + 12px));
}

.button_line__right {
    right: 0;
    top: 0;
    transform: translate(calc(100% - 12px));
}

.more_n a:hover button {
    background-color: var(--red-color);
}

.more_n a:hover .button_line__d {
    transform: translate(0);
}



@media screen and (max-width:767px) {
    .more_n button {
        padding: 12px 20px;
        height: 50px;

    }


}

/* 内页公共 */
.page_banner {
    position: relative;
    height: 580px;
    width: 100%;
}

.page_banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.3; */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    mix-blend-mode: multiply;
    backdrop-filter: blur(2px);
}

.page_banner .ban_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page_banner .ban_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_banner .page_ban_text {
    width: 100%;
    height: 100%;
}

.page_banner .page_ban_text {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    z-index: 9;
}

.page_banner .page_ban_text h2 {
    color: var(--white-color);

    font-weight: 400;
    line-height: 1.58;
}

.page_banner .page_ban_text h3 {
    padding-top: 10px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
    max-width: 850px;
    margin: 0 auto;

}

.page_content {
    position: relative;
    margin-top: -80px;
    min-height: 55vh;
    z-index: 9;
}

.pro_box_n {
    background-color: #F1F8FD;
}
.page_menu {
    width: 100%;
}

.page_menu>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page_menu_list ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
}

.page_menu_list ul li {
    padding: 0 20px;
}

.page_menu_list ul li a {
    position: relative;
    display: block;
    padding-top: 24px;
    padding-bottom: 25px;
    color: var(--dark-color);

    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.page_menu_list ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    opacity: 0;
    transition: width 0.5s;
}

.page_menu_list ul li.active a,
.page_menu_list ul li a:hover {
    color: var(--main-color);
}

.page_menu_list ul li.active a::before,
.page_menu_list ul li a:hover::before {
    width: 100%;
    opacity: 1;
}

.location {
    order: 2;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.location a {
    margin-right: 10px;
    line-height: 20px;
}

.location a:first-child {
    width: 20px;
    height: 20px;
    background-image: url(../images/home_icon_w.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    font-size: 0;
}

.grey_location a:first-child {
    background-image: url(../images/home_icon.svg);
}

.location a:nth-child(n + 2) {
    padding-right: 18px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    font-weight: 400;
    background-repeat: no-repeat;
    background-position: right;
    background-size: 6px 24px;
}

.grey_location a:nth-child(n + 2) {
    color: rgba(0, 0, 0, 0.2);
    background-image: url(../images/page_jt.svg);
}

.location a:nth-child(n + 2):hover {
    color: rgba(255, 255, 255, 0.8);
}

.grey_location a:nth-child(n + 2):hover {
    color: rgba(0, 0, 0, 0.5);
}


.location a:last-child {
    margin-right: 0;
    padding-right: 0;
    background-image: none;
}

@media (max-width:1366px) {
    .page_menu_list ul {
        margin-left: -16px;
        margin-right: -16px;
    }

    .page_menu_list ul li {
        padding: 0 16px;
    }

}

@media (max-width:1280px) {
    .page_menu_list ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .page_menu_list ul li {
        padding: 0 10px;
    }

}

@media (max-width:991px) {
    .page_menu>.container {
        flex-wrap: wrap;
    }

    .page_menu_list {
        width: 100%;
    }

    .location {
        padding-top: 20px;
        padding-bottom: 25px;
        width: 100%;

        order: inherit;
    }

    .page_menu_list ul {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
  
    .page_menu_list ul li a {
        padding-top: 14px;
        padding-bottom: 15px;
    }


}

@media (max-width:767px) {
    .location a {
        margin-right: 6px;
    }

    .location a:nth-child(n + 2) {
        padding-right: 12px;
    }

    .location a:nth-child(n+2) {
        font-size: 12px;
    }
    .page_menu_list {
        display:none;
    }
    .page_menu_list ul li {
        padding: 0 10px;
        padding-bottom: 10px;
    }
    .page_menu_list ul li a {
        padding-top: 5px;
        padding-bottom: 0px;
        margin-bottom: 5px;
        font-size: 16px;
    }

}


/*page*/
.paged {
    padding: 50px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.paged .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.paged .pagination li {
    display: inline-block;
}

.paged:after {
    clear: both;
    content: '';
    width: 0px;
    display: block;
    height: 0px;
    visibility: hidden;
}

.paged span,
.paged a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: 'Archivo';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    margin: 0 4px;
    height: 46px;
    width: 46px;
    line-height: normal;
}

.paged a:hover,
.paged .active span {
    opacity: 1;
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.paged ul li:first-child span,
.paged ul li:last-child a,
.paged ul li:first-child a,
.paged ul li:last-child span {
    width: 46px;
    height: 46px;
}

.paged ul li:hover svg path{
    stroke: var(--white-color);
}
.paged .pagination li.disabled {
    cursor: default;
    pointer-events: none;
}



@media (max-width:991px) {
    .page_ban {
        height: 450px;
    }

    .ban_mask .ban_w {
        display: none;
    }

    .new_top .new_big_r {
        padding: 60px 30px;
    }

    .new_top .new_big .more {
        margin-top: 60px;
        padding-top: 35px;
    }
}

@media (max-width:767px) {
    .page_ban {
        height: auto;
    }

    .page_ban .ban_img {
        position: relative;
    }

    .page_menu .ul li a {
        padding: 20px 0;
        font-size: 16px;
        line-height: 26px;
    }

    .paged {
        padding: 30px 0 30px 0;
    }

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 0 5px;
        margin: 0 2px;
        width: 40px;
        height: 40px;
    }

    .paged ul li:first-child span,
    .paged ul li:last-child a,
    .paged ul li:first-child a,
    .paged ul li:last-child span {
        width: 40px;
        height: 40px;
    }

}
/* product list*/

.product_title {
    padding-top: 48px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}
.pro_r_list {
    padding-top: 32px;
}
.pro_r_list ul {
    margin-left: -8px;
    margin-right: -8px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.pro_r_list ul li {
    width: 25%;
    padding: 8px;

}

.pro_r_list ul li:first-child,
.pro_r_list ul li:nth-child(2),
.pro_r_list ul li:nth-child(3) {
    padding-top: 0;
}

.pro_r_list .list {
    position: relative;
    display: block;
    background: #FFF;
    transition: all 0.4s ease;
    z-index: 1;
}

.pro_r_list .list .pro_img {
    padding: 42px 40px 16px 40px;
    overflow: hidden;
}

.pro_r_list .list .pro_img i {
    position: relative;
    display: block;
}
.pro_r_list .list .pro_img i img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.pro_r_list .list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(126.39% 126.39% at 50% 36.51%, rgba(2, 73, 217, 0.00) 0%, #012B80 100%), linear-gradient(244deg, #0AA8EC -0.11%, #0041B6 109.08%);
    box-shadow: 0px 0px 24px 0px rgba(27, 35, 137, 0.10);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.pro_r_list .pro_info {
    padding: 24px 10px 32px 10px;
}

.pro_r_list .pro_info .t {
    color: var(--dark-color);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    height: 60px;
}

.pro_r_list .pro_info .more {
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #666;
    line-height: 26px;
}

.pro_r_list .pro_info .more i {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    display: block;
    background-image: url(../images/more_grey.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}
.pro_r_list .list:hover::before {
    opacity: 1;
}

.pro_r_list .list:hover .pro_img i img:first-child{
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.pro_r_list .list:hover .t {
    color: var(--white-color);
}

.pro_r_list .list:hover .more {
    color: var(--white-color);
}

.pro_r_list .list:hover .more i {
    background-image: url(../images/more_white.svg);
}

.pro_list_bottom {
    position: relative;
    padding-top: 166px;
    padding-bottom: 146px;
    display: flex;
    width: 100%;
}
.pro_list_bottom .bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.pro_list_bottom .bg::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
background: #040D28;
}
.pro_list_bottom .container {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.pro_list_bottom .t {
    padding-bottom: 30px;
    text-align: center;
    color:var(--white-color);
font-weight: 700;
line-height: 1.5;
max-width: 900px;
margin: 0 auto;

}


@media (max-width:991px) {
    .page_banner {
        height: 480px;
    }

    .product_title {
        padding-top: 20px;
    }

    .product_n_box .product_left {
        width: 290px;
    }

    .pro_r_list ul li {
        width: 50%;
    }

}

@media (max-width:767px) {
    .page_banner {
        height: 400px;
    }
    .page_banner .page_ban_text h3 {
        font-size: 22px;
    }
        
    .product_n_box .product_right {
        padding-left: 0;
        padding-top: 0;
        width: 100%;

    }


   

    .pro_r_list ul li:first-child,
    .pro_r_list ul li:nth-child(2),
    .pro_r_list ul li:nth-child(3) {
        padding-top: 12px;
    }
    .pro_list_bottom {
        padding-top: 100px;
        padding-bottom: 100px;
    }

}

@media (max-width:540px) {
    .pro_r_list ul li {
        width: 100%;
    }

}

/*pro deatail*/
.pro_detail_box {
    overflow: hidden;
}

.pro_xq_top {
    position: relative;

    width: 100%;
    background-image: url(../images/pro_xq_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pro_xq_top:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 80%;
    max-width: 676px;
    max-height: 560px;
    background-image: url(../images/pro_xq_left_bg.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;
}

.pro_xq_top::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 80%;
    max-width: 964px;
    max-height: 580px;
    background-image: url(../images/pro_xq_right_bg.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    z-index: -1;
}

.pro_xq_top .my-container {
    height: 100%;
}

.pro_xq_top .xq_top_n {
    padding-top: 124px;
    width: 100%;
    height: 100%;
    position: relative;
}

.pro_xq_top .xq_top_n .xq_w_icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.xq_top_one {
    overflow: hidden;
}

.xq_top_one .location {
    float: right;
}

.xq_top_one .w100 {
    width: 100%;
    float: left;
}

.xq_top_one .back_list a {
    display: flex;
    width: 140px;
    height: 50px;
    padding: 16px 24px 16px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.xq_top_one .back_list a span {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    background-image: url(../images/xq_back_grey.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    padding-left: 30px;
}

.xq_top_one .back_list a:hover {
    border: 1px solid #0AA8EC;
    background: linear-gradient(244deg, #0AA8EC -0.11%, #0041B6 109.08%);
}

.xq_top_one .back_list a:hover span {
    color: var(--white-color);
    background-image: url(../images/xq_back_w.svg);
}

.xq_top_two {
    display: flex;
    padding-top: 18px;
    padding-bottom: 170px;
    align-items: center;
    justify-content: space-between;
}

.xq_top_two .top_two_l {
    order: 2;
    width: 576px;
    flex-shrink: 0;
}

.xq_top_two .top_two_r {
    position: relative;
    width: calc(100% - 576px);
    margin-right: 30px;
    max-width: 650px;
}

.top_two_l .a_small_t {
    color:#7B96C0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.top_two_l .top_tedian {
    padding-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.top_two_l .a_small_t span {
    position: relative;
    padding-top: 8px;
    font-style: normal;
}

.top_two_l .a_small_t span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 1px;
    background:#2782C5;
}

.top_two_l .top_t_big {
    padding-top: 24px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.4;
}

.top_two_l .two_l_button {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.two_l_button .more_n button{
    background: rgba(255, 255, 255, 0.20);
    /* backdrop-filter: blur(4px); */
}
.two_l_button .more_n .line_top {
    background-color: rgba(255, 255, 255, 0.80);
}
.two_l_button .more_n a span{
    color: #666;
}
.two_l_button .more_n a:hover span {
    color: var(--white-color);
}
.xq_pic_loop {
    width: 100%;
}

.xq_pic_loop .swiper-slide i {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}
.xq_pic_loop .swiper-slide i img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.xq_pro_title {
    width: 100%;
    background: #FFF;
    opacity: 0;
    height: 0;
}

.xq_pro_title .strong {
    padding: 26px 0;
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}


.xq_pro_cont {
    position: relative;
    padding: 20px 0 70px 0;
    background: var(--white-color);
    z-index: 1;
}

.pro_two_w {
    position: absolute;
    top: 0;
    left: 10%;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.xq_pro_top {
    position: relative;
    margin-top: -120px;
}

.xq_pro_top::before {
    content: "";
    position: absolute;
    left:0;
    width:100%;
    top: 0;
    height: 120px;
    border-radius: 24px 24px 0px 0px;
    background: #FFF;
    z-index: -1;
}

.xq_pro_tone {
    position: relative;
    padding-top: 50px;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 50px;
    
}
.xq_p_line {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.xq_pro_tone .pro_tone_tit {
   text-align: center;
}

.xq_pro_tone .pro_tone_r {
    width:100%;
}

.pro_tone_r .tone_r_t {
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.pro_tone_r .table {
    margin-top: 24px;
    margin-bottom: 40px;
    width: 100%;
   overflow-x:auto;
}
.pro_tone_r .table table {
    border-collapse: collapse;
}
.pro_tone_r .table thead {
    background: #D4E2F3;
    
}
.pro_tone_r .table thead th {
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}
.pro_tone_r .table th,
.pro_tone_r .table td {
    border: 0;
    padding: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    border: 1px solid rgba(111, 134, 172, 0.10);
}

.pro_tone_r.text p {
    position: relative;
    padding-left: 14px;
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.pro_tone_r.text p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 4px;
    height: 4px;
    background-color: var(--dark-color);
    border-radius: 50%;
}

.pro_tone_tit h3 {
    position: relative;
    padding-bottom: 16px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
}

.pro_d_pic {
    padding-bottom: 50px;
    text-align: center;
}
.pro_d_pic img {
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}
.xq_pro_position {
    position: relative;
    padding-top: 24px;
    padding-bottom: 120px;
    background: #F1F8FD;
    overflow: hidden;
}

.xq_positon_bottom {
    position: relative;
    margin-top: 30px;
    z-index: 8;
}

.xq_positon_bottom .pro_list_loop {
    margin-top: 32px;
}

.xq_pro_bottom {
    padding-bottom: 80px;
    border-bottom: none;
}


@media (max-width:1279px) {
   
    .xq_top_two .top_two_l {
        width: 520px;
        min-width: 520px;
    }

}

@media (max-width:991px) {
    .xq_pro_tone {
        padding-left: 60px;
        padding-right:60px;
    }

    .xq_top_two {
        display: block;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .xq_top_two .top_two_l {
        width: 100%;
        min-width: inherit;
    }

    .xq_top_two .top_two_r {
        width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }

    .xq_pro_bottom {
        padding-bottom: 40px;
    }


}

@media (max-width:767px) {
    .pro_xq_top .xq_top_n {
        padding-top: 80px;
    }

    .xq_pro_top {
        margin-top: -80px;
        padding-top: 25px;
    }

    .xq_pro_top::before {
        left: 0;
        width: 100%;
        height: 80px;
    }

    .xq_top_one {
        display: block;

    }
    .xq_top_one .back_list {
        display: none;
    }
    .top_two_l .two_l_button {
        display: none;
    }
    .xq_pro_tone {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
    }

    .pro_tone_r .tone_r_t {
        font-size: 16px;
    }

    .xq_pro_tone .pro_tone_r {
        width: 100%;
        margin-top: 30px;
    }

    .pro_tone_r .table th,
    .pro_tone_r .table td {
        /* padding: 10px; */
        font-size: 14px;
        min-width: 100px;
    }
    
.xq_pro_cont {
    padding: 20px 0 50px 0;
}
.xq_pro_position {
    padding-bottom: 100px;
}
}
.new_page {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pro_xq_down .new_page {
    justify-content: space-between;
}
.newxq_prev span,
.newxxq_next span {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.newxq_prev span {
    text-align: right;
}

.newxq_prev span em,
.newxxq_next span em {
    font-style: normal;
    margin-left: 16px;
}

.newxq_list,
.newxq_prev,
.newxxq_next {
    padding: 16px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F1F8FD;

    border-radius: 70px;

    font-size: 16px;
    cursor: pointer;
}
.newxq_list {
    justify-content: center;
    background: #F0F5F9;

}

.newxq_prev svg {
    margin-right: 16px;
}

.newxxq_next svg {
    margin-left: 16px;
}

.newxq_list::after {
    content: '';
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    left: -40px;
}

.newxq_list::before {
    content: '';
    height: 80%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    right: -40px;
}

.newxq_list {
    margin-left: 34px;
    margin-right: 34px;
    position: relative;
}

.newxq_list svg {
    margin-left: 16px;
}

.newxq_prev {
    margin-right: 34px;
}

.newxxq_next {
    margin-left: 34px;
}

.newxq_prev:hover span {
    color: #fff;
    transition: .3s;
}

.newxq_prev:hover {
    background: radial-gradient(126.39% 126.39% at 50% 36.51%, rgba(2, 73, 217, 0.00) 0%, #012B80 100%), linear-gradient(244deg, #0AA8EC -0.11%, #0041B6 109.08%);
    box-shadow: 0px 0px 24px 0px rgba(27, 35, 137, 0.10);
    
    transition: .3s;
}

.newxxq_next:hover {
    background: radial-gradient(126.39% 126.39% at 50% 36.51%, rgba(2, 73, 217, 0.00) 0%, #012B80 100%), linear-gradient(244deg, #0AA8EC -0.11%, #0041B6 109.08%);
    box-shadow: 0px 0px 24px 0px rgba(27, 35, 137, 0.10);
    
    transition: .3s;
}

.newxq_prev:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.newxxq_next:hover span {
    color: #fff;
    transition: .3s;
}

.newxxq_next:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.newxq_list:hover {
    background: var(--main-color);
    color: #FFF
}

.newxq_list:hover a {
    color: #fff;
}

.newxq_list:hover svg path {
    stroke: #fff;
    transition: .3s;
}

.article_postion {
    padding: 70px 0;
    background-color: #F0F5F9;
}

.article_postion .new_xq_swiper {
    padding-bottom: 40px;
}

.article_postion .new-xq-pagination {
    position: absolute;
    text-align: center;
    bottom: 0;
}

@media (max-width:767px) {
    .article_text .des span:nth-child(2) {
        margin-left: 10px;
        margin-right: 10px;
    }

    .article_box {
        padding-top: 30px;
    }

    .new_page {
        flex-wrap: wrap;
    }

    .newxq_list,
    .newxq_prev,
    .newxxq_next {
        padding: 10px 16px;
        font-size: 12px;
        margin: 0;
    }

    .newxq_prev span,
    .newxxq_next span {
        font-size: 12px;
    }

    .newxq_list {
        margin-left: 5px;
        margin-right: 5px;
    }

    .newxq_list svg {
        margin-left: 4px;
        width: 16px;
    }

    .newxq_prev svg {
        margin-right: 4px;
        width: 16px;
    }

    .newxxq_next svg {
        margin-left: 4px;
        width: 16px;
    }

    .newxq_list::before,
    .newxq_list::after {
        display: none;
    }

    .newxq_prev span {
        font-size: 12px;
    }

    .new_xqfxbox {
        margin-bottom: 30px;
    }

    .new_xqfxbox span {
        margin-right: 10px;
        width: 50px;
        height: 50px;
        padding: 12px;
    }

}
.pro_xq_down .newxq_list {
    width: 278px;
}

.pro_xq_down .new_page a:first-child,
.pro_xq_down .new_page a:nth-child(3) {
    width: calc(50% - 220px);
}

.pro_xq_down .newxq_prev {
    margin-right: 0;
}

.pro_xq_down .newxxq_next {
    margin-left: 0;
}

.pro_xq_down .newxq_prev,
.pro_xq_down .newxxq_next {
    padding: 16px 32px;
}


.pro_xq_down .newxq_list {
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 70px;
    background: #F1F8FD;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
}

.pro_xq_down a:hover .newxq_list {
    background: radial-gradient(126.39% 126.39% at 50% 36.51%, rgba(2, 73, 217, 0.00) 0%, #012B80 100%), linear-gradient(244deg, #0AA8EC -0.11%, #0041B6 109.08%);
    box-shadow: 0px 0px 24px 0px rgba(27, 35, 137, 0.10);
    
}

@media (max-width:991px) {

    .pro_xq_down .newxq_list {
        width: 200px;
    }

    .pro_xq_down .new_page a:first-child,
    .pro_xq_down .new_page a:nth-child(3) {
        width: calc(50% - 180px);
    }

    .newxq_list {
        margin-left: 20px;
        margin-right: 20px;
    }


}

@media (max-width:767px) {

    .pro_xq_down .newxq_prev,
    .pro_xq_down .newxxq_next {
        padding: 12px 15px;
    }

    .pro_xq_down .new_page a:first-child,
    .pro_xq_down .new_page a:nth-child(3) {
        width: calc(50% - 10px);
    }

}
/* 详情翻页 */
.like-pagination {
    padding-top: 30px;
    bottom: inherit;
}

.blue-pagination {
    text-align: center;
}

.blue-pagination span {
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.20);
    opacity: 1;
}

.blue-pagination span.swiper-pagination-bullet-active {
    border-radius: 40px;
    width: 20px;
    background: var(--main-color);
}

@media (max-width:991px) {
    .like-pagination {
        display: block !important;
    }

}
/* contact */
.contact_bg {
    padding-bottom: 60px;
    min-height: 50vh;
    background-color: var(--white-color);
    overflow: hidden;
}
.contact_cont {
    width: 100%;
    background-color: var(--white-color);
}

.contact_cont_box {
    position: relative;
    padding-top: 50px;
    padding-bottom: 80px;
    z-index: 9;
}

.contact_cont_box .t {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.contact_cont_box .text {
    padding-top: 13px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.contact_cont_box .contact_box_top .more_n span {
    height: 24px;
    display: block;
    color: #666;
    padding-left: 30px;
    background-image: url(../images/contact_globe.svg);
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: left;
}

.contact_cont_box .contact_box_top .more_n a:hover span {
    color: var(--white-color);
    background-image: url(../images/contact_globe_b.svg);
}
.contact_last {
    position: relative;
    padding-top: 130px;
    overflow: hidden;
    z-index: 1;
}
.contact_last .white_bg {
    padding: 40px;
    background: #FFF;
    overflow: hidden;
}
.bg_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 520px;
    z-index: -1;
}
.bg_img .index_five_img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.bg_img .index_five_img::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
background: #000;
z-index: -1;
}


.bg_img .index_five_img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.contact_box_list {
    padding-top: 25px;
}

.contact_box_list ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
}

.contact_box_list ul li {
    padding: 20px;
    float: left;
}

.contact_box_list ul li:first-child {
    width: 28.5%;
}

.contact_box_list ul li:nth-child(2) {
    width: 28.5%;
}

.contact_box_list ul li:nth-child(3) {
    width: 43%;
}

.box_list01 {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.box_list01 .title {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.box_list01 .two_t {
    padding-top: 16px;
    color: var(--dark-color);
    font-family: 'Archivo';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.box_list01 .two_t a {
    font-size: inherit;
}

.box_list01 .icon {
    padding-top: 16px;
}

.box_list01 .icon img {
    width: 40px;
}

@media (max-width:991px) {
    .contact_box_list ul li {
        width: 100% !important;
    }
}
@media (max-width:767px) {
  
    .contact_box_top {
        flex-wrap: wrap;
    }
   
    .contact_box_top .right {
        padding-top: 20px;
    }
    .contact_box_list ul li {
        padding: 10px 20px;
    }

}


.contact_last .white_bg .title {
    color: var(--dark-color);

font-style: normal;
font-weight: 700;
line-height: 1.5;
}
.contact_last .white_bg .p {
padding-top: 16px;
    color:#666;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
}
.message_form .item_right {
    padding-top: 18px;
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
}
.message_form .col-3 {
    width: 33.33%;
    float: left;
    padding:16px 12px;
}
.message_form .colw100 {
float: left;
    width: 100%;
    padding: 16px 12px;
}
.message_form .col_z>span {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}
.message_form .col_z>span>em {
    margin-left: 8px;
    color:#C30D23;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}
.message_form .input-container {
    margin-top: 16px;
    position: relative;
    background: #FAFAFA;
}
.message_form .input-container input {
    outline: none;
    z-index: 1;
    padding: 12px 20px;
    position: relative;
    background: none;
    width: 100%;
    height: 64px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Microsoft YaHei';
    text-align: left;
}

.message_form .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 230px;
    padding: 20px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    resize: none;
    font-family: "Microsoft YaHei";
}
.message_form .yanz {
    padding-top: 16px;
}
.message_form .yanz .input-container {
    margin-top: 0;
    width: 294px;
}
.message_form .message_code {
    margin-left: 16px;
    cursor: pointer;
}
.message_form .message_code img {
    height: 64px;
}
.message_form .text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color:#C30D23;
}

.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 .more_n a:hover span {
color: var(--white-color);
}
.message_form .mess_submit {
margin-left: 16px;
    width: 160px;
height: 58px;
background-color: #C30D23;
color: var(--white-color);
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 26px;
cursor: pointer; 
}

.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";
}

@media (max-width:991px) {
    .message_form .col-3 {
        width: 50%;
    }

}
@media (max-width:767px) {
    .contact_cont_box .t {
        font-size: 24px;
    }
    .contact_bg {
        padding-bottom: 20px;
    }
    .contact_cont_box {
        padding-top:50px;
        padding-bottom: 30px;
    }
    .contact_cont_box .text {
        padding-top: 5px;
    }
    .contact_box_bottom {
        margin-top: 20px;
        padding-bottom: 30px;
    }
    .contact_last .white_bg {
        padding: 40px 20px;
    }
 
    .message_form .col-3 {
        width: 100%;
    }
    .message_form .yanz {
        display: block;
    }
    .message_form .yanz .input-container {
        width:100%;
    }
    .message_form .message_code {
        margin-left: 0;
        margin-top: 30px;
    }
    .message_form .mess_submit {
        height: 50px;
    }
    .message_form .more_n button {
        width: 100%;
    }
    .message_form .last_button .more_n,.message_form .mess_submit{
        width: calc(50% - 10px);
    }
    .message_form .last_button .more_n a {
        display: block;
        width: 100%;
    }
    .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;
    }
   
    .box_list01 .two_t {
        font-size: 18px;
        line-height: 1.4;
    }
    .contact_last .white_bg .p {
        padding-top: 10px;
    }
}


/* 新闻列表 */
.news-page {
	background-color: #fff;
}

.news-slider-box {
	padding-bottom: 20px;
}

.news-slider1 {
	display: block;
}

.news-slider2 {
	display: none;
}

.news-slider .swiper-slide {
	background-color: #fff;
	display: flex;
}

.news-slider-box .mode-h1 {
	margin: 50px 0 0;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.30);
	flex-direction: row;
	justify-content: space-between;
}


.news-slider-box .slider-num-page {
	line-height: 28px;
	color: #666;
	font-family: 'Archivo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	display: flex;
	align-items: flex-end;
}

.news-slider-box .now-num {
	line-height: 28px;
	color: #00551B;
	font-family: 'Archivo';
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
}

.news-slider-box .all-num {
	line-height: 26px;
}

.news-slider {
	margin: 50px 0 0;
}

.news-slider .img-box {
	width: 57.63%;
	overflow: hidden;
}

.news-slider .img {
    position: relative;
	width: 100%;
	height: 100%;
	padding-bottom: 65%;
	transition: all .4s;
	display: block;
}
.news-slider .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.news-slider .info-box {
	width: 42.37%;
	padding: 30px 54px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
    background-color: #F1F8FD;
}

.news-slider .date {
	line-height: 26px;
	color: #C7C8C9;
	font-family: 'Archivo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .5s;
}

.news-slider .title {
	height: 42px;
	margin-top: 24px;
	color:var(--dark-color);
	font-style: normal;
	font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
	transition: all .5s;
}

.news-slider .info {
	height: 78px;
	line-height: 26px;
	margin: 32px 0 80px;
	color: #666;
	text-align: justify;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: all .5s;
}

.news-slider .footer {
	line-height: 32px;
	padding-top: 32px;
	color: #999;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	border-top: 1px solid rgba(51, 51, 51, 0.10);
	display: flex;
	align-items: center;
	transition: all .5s;
}

.news-slider .footer .more {
    margin-left: 4px;
	width: 32px;
	height: 32px;
	background: url(../images/news-more-ico.svg) center no-repeat;
	background-size: contain;
	transition: all .5s;
	display: block;
}

.news-slider .swiper-slide:hover .img {
	transform: scale(1.05);
}
.news-slider .swiper-slide:hover .title,
.news-slider .swiper-slide:hover .footer {
	color: var(--main-color);
}

.news-slider .swiper-slide:hover .footer .more {
	background: url(../images/news-more-ico1.svg) center no-repeat;
	background-size: contain;
}

.news-pagination {
	margin: 32px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.news-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
	opacity: 1;
	transition: all .5s;
}

.news-pagination .swiper-pagination-bullet-active {
	width: 28px;
	background:var(--main-color);
	border: 1px solid var(--main-color);
}

.news-list {
	margin: 26px 0 0;
	display: flex;
	flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.news-list .news-list-item {
    margin-top: 24px;
    padding: 40px 48px;
	width: calc(33.33% - 12px);
	border-left: 1px solid #F0F0F0;
}

.news-list-item .img-box {
	position: relative;
	overflow: hidden;
}

.news-list-item .img-box .img {
    position: relative;
	/* padding-bottom: 64.95%; */
	transition: all .4s;
	display: block;
}
.news-list-item .img-box .img img {
    /* position: absolute;
    left: 0;
    top: 0; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list-item .date {
	line-height: 26px;
	margin: 16px 0;
	color: #C7C8C9;
	font-family: 'Archivo';
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all .5s;
}

.news-list-item .title {
	height: 60px;
	line-height: 30px;
	overflow: hidden;
	color:var(--dark-color);
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all .5s;
}

.news-list-item .footer {
	line-height: 26px;
	margin-top: 32px;
	color:var(--main-color);
	text-align: right;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	transition: all .5s;
}

.news-list-item .footer .more {
    margin-left: 4px;
	width: 32px;
	height: 32px;
	background: url(../images/news-more-ico1.svg) center no-repeat;
	background-size: contain;
	transition: all .5s;
	display: block;
}

.news-list .news-list-item:hover .img {
	transform: scale(1.05);
}

.news-list .news-list-item:hover .title {
	color:var(--main-color);
}
@media screen and (max-width:1279px) {
    .news-list .news-list-item {
        padding: 30px 38px;
    }
}
@media screen and (max-width:991px) {
    .news-list .news-list-item {
        width:calc(50% - 12px);
    }

}
@media screen and (max-width:767px) {
    .news-slider1 {
		display: none;
	}
	.news-slider2 {
		display: block;
	}
    .news-list .news-list-item {
        width: 100%;
    }
    .news-slider .swiper-slide {
		flex-direction: column;
	}
    .news-slider .img-box {
		width: 100%;
	}
	.news-slider .info-box {
        padding: 30px 20px;
		width: 100%;
	}
    .news-slider .title {
        margin-top: 16px;
        height: 30px;
        line-height: 30px;
    }
    .news-slider .info {
        height: 52px;
        margin:20px 0 30px;
        -webkit-line-clamp: 2;
    }
    .news-list {
        padding-bottom: 20px;
    }
    .news-list .news-list-item {
        width: 100%;
        padding:0 10px;
    }
    .news-list-item .footer {
        margin-top: 20px;
    }
    .news-slider .img {
        position: relative;
        width: 100%;
        height: 100%;
        padding-bottom: 0;
    }
    .news-slider .img img {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }
}

/*文章详情*/
.height100 {
    width: 100%;
    height: 92px;
}
.article_k {
    margin-top: 0;padding-top: 40px;
}
.article_cont {
    padding-bottom: 100px;
}

.inter_po {
    padding: 56px 0;
    width: 100%;
    background: #FFF;
}

.article_t {
    margin: 0 auto;
    margin-top:40px;
    max-width: 760px;
    color: var(--dark-color);
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
}

.article_time {
    padding-top: 25px;
    text-align: center;
}

.article_time .label {
    padding: 6px 10px;
    display: inline-block;
    border-radius: 4px;
    background-color: #8491AA;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 400;
}

.article_time .time {
    display: inline-block;
    margin-left: 16px;
    color: var(--dark);
    font-family: 'Archivo';
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

.article_text {
    display: flex;
    justify-content: space-between;
    min-height: 40vh;
    margin-top: 50px;
    padding: 38px;
    background: var(--white-color);
}

.article_text .article_l {
    flex: 1;
    border-right: 1px solid #E0E0E0;
    margin-right: 32px;
    padding-right: 32px;
}

.article_text .article_r {
    width: 400px;
}
.article_l .articlen {
    min-height: 350px;
}
.article_l .articlen p {
    padding-bottom: 16px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_l .articlen strong {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.article_l .articlen p img {
    display: block;
    max-width: 100%;
    width: auto !important;
    height: auto !important;
    margin: 0 auto;
}

.article_r .up_ {
    padding: 24px;
    width: 100%;
    border-radius: 8px;
    background: #F5F6F8;
}

.article_r .up_ .btn_ {
    display: inline-block;
    width: 100%;
}

.article_r .up_ .prev {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #999;
}

.article_r .up_ .btn_ .n {
    padding-bottom: 10px;
    color: #999;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.article_r .up_ .btn_ .t {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    max-height: 56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.article_r .up_ .btn_:hover .t {
    color: var(--main-color);
}

.article_r .up_back {
    padding-top: 24px;
}

.article_r .up_back a {
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #F5F6F8;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #666;
}

.article_r .up_back a svg {
    margin-right: 12px;
    width: 18px;
}

.article_r .up_back a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.article_r .up_back a:hover svg path {
    stroke: #fff;
    fill: #fff;
}


@media (max-width:1366px) {
    .article_text .article_r {
        width: 350px;
    }

}

@media (max-width:1280px) {
    .article_text .article_r {
        width: 300px;
    }

}

@media (max-width:991px) {
   
    .article_k {
        padding-top: 0px;
    }
    .article_text .article_r {
        width: 200px;
    }

}

@media (max-width:767px) {
    .height100 {
        height: 75px;
    }
    .article_t {
        margin-top:20px;
    }
    .article_cont {
        padding-bottom: 50px;
    }
    .article_text {
        display: block;
        padding: 25px 25px;
    }

    .article_text .article_l {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .article_text .article_r {
        width: 100%;
        padding-top: 30px;
    }

 
    .article_l .articlen {
    min-height: 200px;
}

}

/* two */
.about_bottom {
    padding-top: 140px;
    padding-bottom: 120px;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.about_bottom .about_jsys_bg {
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    height:calc(100% - 70px);
}
.about_bottom .about_jsys_bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 16, 37, 0.80);
    backdrop-filter: blur(3px);
}

.about_bottom .container {
    position: relative;
    z-index: 9;
}

.about_bottom .title {
    color: #FFF;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

.about_bottom_list {
    padding-top: 40px;
}

.about_swiper .swiper-slide {
    padding-top: 10px;
    padding-bottom: 10px;
}

.about_swiper .swiper-wrapper {
    align-items: stretch;
}

.about_swiper .swiper-slide {
    height: auto;
}

.about_bottom_list .bg {
    padding: 20px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background-color: #FFF;
    transition: transform .3s;
}
.about_swiper .icon {
    position: relative;
    padding-bottom: 25px;
    text-align: center;
    width: 100%;
}
.about_swiper .icon span {
    font-family: 'Archivo';
font-size: 90px;
font-style: normal;
font-weight: 600;
line-height: normal;
background: linear-gradient(180deg, #DDD 0%, rgba(221, 221, 221, 0.00) 69.33%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.about_swiper .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #222;
    text-align: center;
    font-weight: 700;
    line-height: 30px;
    min-height: 60px;
    text-transform: capitalize;
}

.about_swiper .text {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #EEE;
    color: #666;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; 
    letter-spacing: -0.2px;
    text-transform: capitalize;
}

.about_number {
    display: none;
    text-align: center;
    bottom: 0;
}

.about_number span {
    background-color: var(--white-color);
    width: 14px;
    border-radius: 8px;
    opacity: 1;
}

.about_number span.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

@media all and (min-width:768px) {

    .about_bottom_list .bg:hover {
        transform: translateY(-5px);
    }


}

@media all and (max-width:1366px) {
    .about_top_cont .about_top_left {
        margin-right: 80px;
    }

}

@media all and (max-width:1279px) {
    .about_top_cont .about_top_left {
        margin-right: 60px;
    }

    .about_bottom_list .bg {
        padding: 50px 10px;
    }

    .about_swiper .text {
        padding-left: 10px;
        padding-right: 10px;
    } 
    .about_number {
        display: block;
    }

    .about_swiper .title {
        min-height: inherit;
    }
    .about_swiper .icon {
        padding-bottom: 0;
    }
}

@media all and (max-width:991px) {
    .about_top_cont {
        flex-wrap: wrap;
    }

    .about_top_cont .about_top_left {
        margin-right: 0;
        width: 100%;
    }

    .about_top_cont .about_top_right {
        padding-top: 30px;
        flex: inherit;
    }

    .about_number {
        display: block;
    }
    .about_bottom_list .bg {
        padding: 50px 20px;
    }
}

@media all and (max-width:767px) {
    .about_bottom {
        padding-top: 140px;
        padding-bottom:50px;
    }
    .about_swiper .icon span {
        font-size: 80px;
    }
    .about_bottom .title {
        line-height: 1.3;
    }
    .about_swiper .text {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .about_swiper .title {
        min-height:50px;
        line-height: 25px;
    }
    .about_swiper .icon {
        padding-bottom: 25px;
    }

}