﻿@charset "utf-8";

:root {
    --main-color: #183884;
    --dark: #333;
    --white-color: #FFFFFF;
    --red--color: #C4261D;
    --dark-color: #00559B;
    --font-small: 0.28rem;
    --font-medium: 0.32rem;
    --font-large: 0.37rem;
}

img {
    max-width: 100%;
}

.height80 {
    width: 100%;
    height: 80px;
}

@media (max-width:1440px) {
    :root {
        --font-small: 14px;
        --font-medium: 16px;
        --font-large: 18px;
    }

}

/*header*/
.logo {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 126px;
    z-index: 99;
}

.logo a img:nth-child(2) {
    display: none;
}

.logo.show a img:nth-child(1) {
    display: none;
}

.logo.show a img:nth-child(2) {
    display: inline-block;
}

.header {
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: var(--white-color);
    border-bottom: 1px solid rgba(212, 212, 212, 0.30);
    z-index: 99;
}

.header .nav ul li {
    float: left;
    padding-left: 12px;
    padding-right: 12px;
}

.header .nav a {
    position: relative;
    padding: 26px 0;
    height: 80px;
    display: block;
    color: #333;
    text-align: center;
    font-size: var(--font-large);
    font-weight: 400;
    line-height: 27px;
}

.header .nav a:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    transform: translateX(-50%);
    background-color: var(--main-color);
    transition: width .4s;
}

.header .nav a:hover,
.header .nav .active a {
    color: var(--main-color);
    font-weight: 700;
}


.header .nav a:hover:before,
.header .nav .active a:before {
    width: 100%;
}

.header .language {
    display: flex;
}

.header .language img {
    margin-right: 10px;
}

.header .language a {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
    color: #333;
    line-height: 20px;
    font-size: var(--font-medium);
    font-weight: 400;
}

.header .language a:hover {
    color: var(--main-color);
}

.header .language a:last-child {
    padding-right: 0;
}

.header .language a:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #333;
}

.header .language a:last-child:before {
    display: none;
}

.header_language_box {
    position: relative;
}

.header_language_current {
    display: flex;
    height: 40px;
    width: 120px;
    padding: 8px 10px;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #333;
    cursor: pointer;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    position: relative;
    z-index: 99;
}

.header_language_icon {
    width: 16px;
    height: 16px;
    position: relative;
    margin-left: 10px;
}

.header_language_icon:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/brose_up.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.header_language_text {
    color: #333;
    font-size: var(--font-medium);

    font-weight: 400;
}

.header_language_tab {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    pointer-events: none;
}

.header_language_tab:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2.8125vw;
    border: 1px solid #F5F5F5;
    background-color: #F5F5F5;
    opacity: 0;
    border-radius: 30px;
    z-index: 1;
    pointer-events: none;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.header_language_content {
    position: relative;
    z-index: 2;
    padding: 0.5208333vw 0 1.041666vw 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header_language_item_box {
    padding: 5px 0;
}

.header_language_item_box a {
    color: #333;
    line-height: 1.5;
    font-size: var(--font-medium);
    display: block;
    text-align: center;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.header_language_item_box a:hover {
    color: var(--main-color);
}

.header_language_box:hover .header_language_current {
    border-color: transparent;
}

.header_language_box:hover .header_language_tab {
    pointer-events: auto;
}

.header_language_box:hover .header_language_tab:after {
    height: 100%;
    opacity: 1;
}

.header_language_box:hover .header_language_content {
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}


/*search*/
.head_search {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.head_search i {
    font-size: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    cursor: pointer;
}

.head_search i.sousuoend {
    background-image: url(../images/search.svg);
}

.head_search i.cuohao {
    display: none;
    background-image: url(../images/close_blue.svg);
}

.cuohao.act {
    color: #333;
}

.head_languge img:nth-child(2) {
    display: none;
}

.search_eject {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 302;
    display: none;
}

.search_eject .pcsearch {
    width: 240px;
    float: right;
}

.sear_title {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.sebox_form {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #E5E5E5;
    background: #FFF;
}

.sebox_input {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sebox_form .m_ser_l {
    width: calc(100% - 26px);
    padding-right: 20px;
}

.sebox_form .sebox_input input {
    line-height: 26px;
}

.sebox_form .sebox_input input::-webkit-input-placeholder {
    color: rgba(101, 113, 136, 0.5);
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 26px;
}

.sebox_form .sebox_input input:-moz-placeholder {
    color: rgba(101, 113, 136, 0.5);
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 26px;
}

.sebox_form .sebox_input input::-moz-placeholder {
    color: rgba(101, 113, 136, 0.5);
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 26px;
}

.sebox_form .sebox_input input:-ms-input-placeholder {
    color: rgba(101, 113, 136, 0.5);
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.sebox_input .m_submit {
    width: 24px;
    height: 24px;
    background-image: url(../images/search.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    outline: 0;
}

.head_menu {
    position: relative;
    cursor: pointer;
    z-index: 4;
}

.head_menu img:nth-child(2) {
    display: none;
}

.head_menu.is-active {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--main-color);
    padding: 20px;
}

.head_menu.is-active img:nth-child(1) {
    display: none;
}

.head_menu.is-active img:nth-child(2) {
    display: block;
}

/* 移动端 */
.burger {
    z-index: 10;
    margin-left: 10px;
    display: none;
    cursor: pointer;
    transform: rotateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.burger-patty {
    width: 28px;
    height: 2px;
    margin: 0 0 4px 0;
    background: #333;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
}

.burger-patty:last-child {
    margin-bottom: 0;
}

.burger-close {
    transform: rotate(180deg);
}

.burger-close .burger-patty {
    background-color: var(--white-color);
}

.burger-close .burger-patty:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger-close .burger-patty:nth-child(2) {
    opacity: 0;
}

.burger-close .burger-patty:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

@media (max-width:1280px) {
    .header .nav ul li {
        padding-left: 8px;
        padding-right: 8px;
    }

    .head_search {
        margin-right: 16px;
    }

}

@media (max-width:1200px) {
    .header {
        display: flex;
        align-items: center;
    }

    /* 移动端导航 */
    .head_search {
        margin-right: 0;
    }

    .header_language_box {
        display: none;
    }

    .header_language_current {
        border-color: var(--white-color);
    }

    .header_language_text {
        color: var(--white-color);
    }

    .header_language_icon:after {
        background-image: url(../images/brose_up_w.svg);
    }

    .header_language_tab:after {
        background-color: transparent;
    }

    .header_language_item_box a {
        color: var(--white-color);
    }

    .header .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        visibility: hidden;
    }

    .header .menu-action {
        visibility: visible;
    }

    .header .menu-list {
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-self: center;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .header .menu-list {

        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        transform: translate3d(0, -100%, 0);
        transition: all 0.4s cubic-bezier(0.23, 1, 0.23, 1);
    }

    .header .menu-list li {
        position: relative;
        opacity: 0;
    }

    .header .menu-action .menu-list {

        transform: translate3d(0, 0, 0);
        background: var(--main-color);
    }

    .header .menu-action .menu-list li {
        transform: translateX(0);
        opacity: 1;
    }

    .burger {
        display: inline-block;
    }

    .header .nav a {
        height: auto;
        padding-bottom: 14px !important;
    }

    .header .nav a:hover,
    .header .nav .active a,
    .header .nav a {
        color: var(--white-color);
    }

    .header .nav a:before {
        background-color: var(--white-color);
    }
}

@media (max-width:991px) {}

@media (max-width:767px) {
    .header .language img {
        margin-right: 10px;
        display: none;
    }

    .header_language_current {
        height: 40px;
        width: 100px;
        padding: 8px 4px;

    }

    .header_language_tab {
        width: 100px;
    }

    .burger-patty {
        width: 22px;
    }

}

/* right */
.right_rove {
    position: fixed;
    right: 8px;
    bottom: 40px;
    z-index: 9;
}

.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: rgba(85, 85, 85, 0.40);
    backdrop-filter: blur(8px);
    border-radius: 50%;
}

.back_top {
    display: none;
}

.right_rove>ul>li:hover>a {
    background-color: var(--main-color);
}

.right_rove ul li .hide_tel {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 10px 8px 10px;
    text-align: center;
    background-color: var(--main-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 .hide_tel:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-left-color: var(--main-color);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.right_rove .hide_tel p {
    min-width: 110px;
}

.right_rove .hide_tel p:nth-child(2) {
    padding-top: 5px;
    color: var(--white-color);
}

.right_rove .hide_tel>a {
    color: #ffffff;
    font-size: var(--font-medium);
    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;
}

/* footer */
footer {
    padding: 20px 0;
    border-top: 1px solid #EEE;
    background-color: #F5F5F5;
}

.footer .l {
    flex: 1;
    margin-right: 50px;
    max-width: 1000px;
    color: #999;
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 26px;
}

.footer .l a {
    color: inherit;
    line-height: inherit;

}
.footer .l .link_list a {
    margin-right: 12px;
}
.foot_img ul{
margin-left: -7px;
margin-right: -7px;
display: flex;
}
.foot_img li {
    padding-left: 7px;
    padding-right: 7px;
    text-align: center;
}
.foot_img img {
    background-color: var(--white-color);
    padding: 5px;
}
.foot_img p {
    color: #333;
    padding-top: 5px;
}
.foot_img img {
    max-width: 90px;
}

.foot_share {
    padding-top: 15px;
    padding-bottom: 15px;
}

.foot_share ul {
    display: flex;
    margin-left: -9px;
    margin-right: -9px;
}

.foot_share ul li {
    padding: 0 9px;
}

.foot_share .w_bg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
}

.foot_share .w_bg img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.eject_cont {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 8px;
    width: 116px;
    background: #FFFFFF;
    opacity: 0;
    justify-content: center;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: -1;
}

.eject_cont .eject_tc:before {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
    border-width: 10px;
    border-top-color: #fff;
    bottom: -20px;
    left: 50%;
    margin-left: -10px;
}

.eject_cont .eject_tc .img_ {
    width: 100px;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

@media (max-width:1200px) {
    .footer {
        flex-wrap: wrap;
    }

}

@media (max-width:767px) {
   
    .footer .l {
        flex: inherit;
        margin-right: 0;
    }
    .footer .l p {
        padding-bottom: 5px;
    }
    .foot_img {
        padding-top: 20px;
        width: 100%;
    }
    .foot_img ul {
        justify-content: center;
    }

}

/*sitemap*/
.site_map {
    padding-top: 30px;
}

.wzdt_xt {
    float: left;
    width: calc(100% - 200px);
}

.wzdt_xt ul li {
    float: left;
    padding-left: 20px;
    line-height: 45px;
}

.wzdt_xt ul li a {
    font-size: var(--font-medium);
    color: #666;
}

.wzdt_xt ul li a:hover {
    color: var(--main-color);
}

.dtzuo {
    width: 25%;
    float: left;
    line-height: 41px;
    background: var(--main-color);
    color: #FFF;
    font-size: var(--font-medium);
    text-align: center;
}

.dtzuo a {
    color: #FFF;
    font-size: var(--font-medium);
    display: block;
}

.sitemapz {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 20px;
}

.sitemapy {
    width: 200px;
    float: left;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
}

.sitemapy h3 {
    color: #fff;
    font-size: var(--font-large);
    font-weight: 500;
    margin: 0;
}

.sitemapy h3 a {
    color: #fff;
    font-size: inherit;
    display: block;
    line-height: 45px;
}

@media (max-width:767px) {
    .sitemapz {
        margin-top: 0;
    }

    .sitemapy h3 a {
        font-size: 18px;
    }

    .dtzuo {
        width: 100%;
    }

    .sitemapy {
        width: 100%;
    }

    .wzdt_xt {
        padding: 10px 0;
        width: 100%
    }

    .wzdt_xt ul li {
        line-height: 30px;
        padding-left: 15px;
    }

    .wzdt_xt ul li a {
        font-size: 16px;
    }

}

/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 12rem;
    z-index: 9;
}

.banner .index_banner {
    width: 100%;
    height: 100%;
}
.index_banner video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner .bg {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .ban_text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}

.banner .ban_text h2 {
    padding-left: 20px;
    padding-right: 20px;
    color: #FFF;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
}

.ban_text .t1 {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    transition: all 1.2s .4s;
}

.banner .swiper-slide.swiper-slide-active .ban_text .t1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.ban_button {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -25px;
    width: 100%;
    height: 0;
    z-index: 99;
}

.ban_button .ban-prev,
.ban_button .ban-next {
    width: 1rem;
    height: 1rem;
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
}

.ban_button .ban-prev {
    float: left;
    background-image: url(../images/ban_left.svg);
}

.ban_button .ban-next {
    float: right;
    background-image: url(../images/ban_right.svg);
}
.index_banner .video_play:before {
    display: none;
}
.index_banner .swiper-slide:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #183884;
}
@media (max-width:1440px) {
    .banner {
        height: 500px;
    }
}
@media (max-width:1366px) {
    .banner {
        height: 470px;
    }
}

@media (max-width:991px) {
    .banner .ban_text h2 {
        padding-left: 50px;
        padding-right: 50px;

    }
}

@media (max-width:767px) {
    .banner {
        height: auto;
    }
    .banner .ban_text h2 {
        padding-left: 30px;
        padding-right: 30px;
        line-height: 1.4;
        font-size: 24px;
    }

    .ban_button .ban-prev,
    .ban_button .ban-next {
        width: 26px;
        height: 24px;
        background-size: cover;
    }
    .ban_button .ban-prev {
        left: -8px;
    }
    .ban_button .ban-next {
        right: -8px;
    }
}
@media (max-width:400px) {

.banner .ban_text h2 {
    font-size: 22px;
}

}
/* index one */
.index_one {
    overflow: hidden;
}

.pt40 {
    padding-top: 0.8rem;
}

.index_title {
    width: 192px;
    min-height: 120px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.index_title h2 {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
}

.index_title p {
    padding-top: 6px;
    color: #CCC;
  font-family: 'PontanoSans-Regular', "sans-serif";
    font-size: var(--font-small);
    font-weight: 400;
    text-transform: uppercase;
}

.index_more {
    position: relative;

}

.index_more a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
}

.index_more a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #EEE;
}

.index_more a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--main-color);
    transition: width .4s;
}

.index_more span {
    color: #666;
    font-size: var(--font-small);
    font-weight: 400;
}

.index_more a:hover:before {
    opacity: 0;
}

.index_more a:hover:after {
    width: 100%;
}

.index_more a:hover span {
    color: var(--main-color);
}

.index_more a:hover svg path {
    fill: var(--main-color);
}

.index_box {
    width: calc(100% - 192px);
    padding-left: 50px;
}

.index_one .index_box {
    margin-top: -3px;
}


.busi_swiper .busi_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.busi_swiper .busi_mask span {
    display: none;
    color: var(--white-color);
    font-size: var(--font-small);
    font-weight: 290;
    opacity: 0.7;
    text-align: center;

}

.busi_swiper .thumb {
    border-radius: 6px;

}

.busi_swiper .text {
    position: absolute;
    width: 100%;
    padding: 13px 12px;
    height: auto;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    z-index: 1;
}

.busi_swiper .text>div {
    text-align: center;
}

.busi_swiper .text::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(12, 27, 63, 0.00) 0%, #0C1B3F 100%);
    z-index: -1;
}

.busi_swiper .text h3 {
    color: #FFF;
    width: 100%;
    font-size: var(--font-medium);
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}

.busi_swiper a:hover .busi_mask {
    background-color: rgba(24, 56, 132, 0.8);
}

.busi_swiper a:hover .thumb i {
    transform: scale(1.08);
}

.busi_swiper a:hover .busi_mask span {
    display: inline-block;
    padding-right: 15px;
    margin-top: 5px;
    background-image: url(../images/yw_icon2.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 10px 10px;
}

.busi_swiper a:hover .text {
    height: 100%;
}

.busi_swiper .equi_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9;
}

.busi_swiper .equi_button.my-button-disabled {
    cursor: default;
}

.busi_swiper .busi-prev {
    left: 0;
    background-image: url(../images/white_left.svg);
}

.busi_swiper .busi-next {
    right: 0;
    background-image: url(../images/white_right.svg);

}

.busi_swiper .equi_button {
    display: none !important;
}

.busi_swiper .equi_button:hover {
    background-color: rgba(24, 56, 132, 0.7);
}

.busi_swiper:hover .equi_button {
    opacity: 1;
}

.busi_swiper:hover .equi_button.my-button-disabled {
    opacity: 0.2;
}

@media (min-width:992px) {

    .busi_swiper .swiper-wrapper {
        transform: inherit !important;
        display: block;
    }

    .busi_swiper .swiper-slide {
        width:20%;
        float: left;
        padding: 3px;
    }
}

@media (max-width:1366px) {
    .index_box {
        padding-left: 30px;
    }

    .busi_swiper .text {
        padding: 13px 6px;
    }

    .busi_swiper .text h3 {
        font-size: 14px;
    }

}

@media (max-width:1279px) {
    .busi_swiper .swiper-slide {
        width: 16.66%;
    }
}

@media (max-width:1200px) {
    .busi_swiper .swiper-slide {
        width: 20%;
    }

    .index_title {
        width: 182px;
    }

    .index_box {
        width: calc(100% - 182px);
        padding-left: 30px;
    }

}

@media (max-width:991px) {
    .index_cont {
        flex-wrap: wrap;
    }

    .index_title {
        width: 100%;
        padding-bottom: 30px;
        flex-flow: inherit;
        align-items: center;
        min-height: inherit;
    }

    .index_title>div {
        max-width: 75%;
    }

    .index_box {
        width: 100%;
        padding-left: 0;
    }

    .index_more a {
        padding-bottom: 0;
    }

    .index_more a:after,
    .index_more a:before {
        display: none;
    }

    .index_more a svg {
        margin-left: 4px;
    }

    .busi_swiper .equi_button {
        display: block !important;
    }
}

@media (max-width:767px) {
    .index_title h2 {
        font-size: 20px;
    }

    .busi_swiper .equi_button {
        opacity: 1;
    }

}

/* index two */
.index_two {
    overflow: hidden;
}

.pt37 {
    padding-top: 37px;
}

.indus_list a {
    position: relative;
    width: 100%;
    display: block;
    height: 0;
    padding-top: 100%;
}

.indus_list .white_border {
    position: absolute;
    width: 100%;
    height: calc(100% - 1px);
    left: 0;
    top: 0;
    border-radius: 6px;
    border: 1px solid #EEE;
    border-top: 2px solid var(--main-color);
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: background 0.3s;
}

.indus_list .white_border .icon img {
    width: 36px;
}

.indus_list .white_border .icon img:nth-child(2) {
    display: none;
}

.indus_list .t {
    padding-top: 10px;
    color: #333;
    text-align: center;
    font-size: var(--font-medium);
    font-weight: 400;
    transition: padding .4s;
}

.indus_list .icon_jt {
    display: none;

}

.indus_list .white_border:hover {
    background: var(--main-color);
}

.indus_list .white_border:hover .icon img:nth-child(1) {
    display: none;
}

.indus_list .white_border:hover .icon img:nth-child(2) {
    display: inline;
}

.indus_list .white_border:hover .t {
    color: var(--white-color);
    padding-bottom: 2.5vh;
}

.indus_list .white_border:hover .icon_jt {
    display: inline;

}

.indus_swiper .work_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0;
    display: none !important;
    transition: opacity 0.3s;
    z-index: 9;
}

.indus_swiper .work_button.my-button-disabled {
    cursor: default;
}

.indus_swiper .indus-prev {
    left: 0;
    background-image: url(../images/white_left.svg);
}

.indus_swiper .indus-next {
    right: 0;
    background-image: url(../images/white_right.svg);

}

.indus_swiper .work_button:hover {
    background-color: rgba(24, 56, 132, 0.7);
}

.indus_swiper:hover .work_button {
    opacity: 1;
}

.indus_swiper:hover .work_button.my-button-disabled {
    opacity: 0.2;
}

@media (max-width:1366px) {
    .indus_list .white_border .icon img {
        width: 32px;
    }

    .indus_list .white_border:hover .t {
        padding-bottom: 1.6vh;
    }

}

@media (max-width:1280px) {

    .indus_list .white_border:hover .t {
        padding-bottom: 1vh;
    }

}

@media (max-width:1279px) {
    .indus_list a {
        padding-top: 150%;
    }

}

@media (max-width:1200px) {
    .indus_list .white_border {
        padding-left: 4px;
        padding-right: 4px;
    }

}

@media (max-width:991px) {


    .indus_list a {
        padding-top: 100%;
    }

    .indus_swiper .work_button {
        display: block !important;
    }
}

@media (max-width:767px) {
    .indus_swiper .work_button {
        opacity: 1;
    }

}

/* index three */
.index_three {
    overflow: hidden;
}

.corep_list {
    border-radius: 6px;
    overflow: hidden;
}

.corep_list .li {
    width: 25%;
    float: left;
}

.corep_list .li a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100px;
    padding: 0px 30px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background-color: var(--main-color);
    transition: background-color 0.3s;
    z-index: 1;
}

.corep_list .li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/core_p_bg.jpg);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.corep_list .li .t {
    color: #FFF;
    font-size: var(--font-medium);
    font-weight: 400;
    transition: all .4s;
}

.corep_list .li .icon {
    position: relative;
    width: 12px;
    height: 12px;
}

.corep_list .li .icon img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
}

.corep_list .li .icon img:nth-child(2) {
    opacity: 0;
}

.corep_list .li a:hover .icon img:nth-child(1) {
    opacity: 0;
}

.corep_list .li a:hover .icon img:nth-child(2) {
    opacity: 1;
}

.corep_list .li a:hover {
    background: #F5F5F5;
    border-color: #F5F5F5;
}

.corep_list .li a:hover .t {
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
}

.corep_list .li a:hover:before {
    background-image: url(../images/core_p_bg2.jpg);
}

@media (max-width:1440px) {
    .corep_list .li a {
        height: 80px;
    }
}

@media (max-width:1366px) {
    .pt40 {
        padding-top: 35px;
    }

    .pt37 {
        padding-top: 32px;
    }

    .corep_list .li a {
        padding: 0px 20px;
        height: 76px;
    }
}

@media (max-width:1200px) {
    .corep_list .li a {
        padding: 0px 10px;
        height: 80px;
    }

    .corep_list .li a:hover .t {
        font-size: 16px;
        font-weight: 500;
    }

}

@media (max-width:767px) {
    .corep_list .li {
        width: 50%;
    }

}

/* four */
.index_four {
    overflow: hidden;
}
.index_four .index_title h2 {
    max-width: 182px;
}
.work_swiper a {
    display: block;
    width: 99%;
    position: relative;
    padding: 25px 20px 20px 0;
    border-radius: 6px;
    border: 1px solid #EEE;
    background: #FFF;
}

.work_border {
    position: relative;
    padding-left: 20px;
}

.work_border:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 24px;
    background: var(--red--color);
    transition: height .6s;
}

.work_border .work_t {
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
}

.work_border .work_des {
    margin-top: 10px;
    color: #666;
    font-size: var(--font-small);
    height: 48px;
    font-weight: 290;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.work_border .work_more {
    display: flex;
    position: relative;
    align-items: center;
    margin-top: 30px;
    height: 19px;
}

.work_border .work_more span {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
}

.work_border .work_more span:nth-child(2) {
    opacity: 0;
    display: flex;
    align-items: center;
    color: #666;
    font-size: var(--font-small);
    font-weight: 400;
}

.work_border .work_more span:nth-child(2) img {
    margin-left: 10px;
}

.work_swiper a:hover .work_border:before {
    height: 100%;
}

.work_swiper a:hover .work_border .work_more span:nth-child(1) {
    opacity: 0;
}

.work_swiper a:hover .work_border .work_more span:nth-child(2) {
    opacity: 1;
}

.work_swiper .work_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9;
}

.work_swiper .work_button.my-button-disabled {
    cursor: default;
}

.work_swiper .work-prev {
    left: 0;
    background-image: url(../images/white_left.svg);
}

.work_swiper .work-next {
    right: 0;
    background-image: url(../images/white_right.svg);

}

.work_swiper .work_button:hover {
    background-color: rgba(24, 56, 132, 0.7);
}

.work_swiper:hover .work_button {
    opacity: 1;
}

.work_swiper:hover .work_button.my-button-disabled {
    opacity: 0.2;
}
@media (max-width:1920px) {

.index_four .index_title h2 {
    max-width: 172px;
}

}
@media (max-width:767px) {
    .work_swiper .work_button {
        opacity: 1;
    }
}

/* index five */
.index_five {
    overflow: hidden;
}

.equi_swiper a {
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.equi_swiper .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
}

.equi_swiper .text:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 6px 6px;
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(12, 27, 63, 0.00) 0%, #0C1B3F 100%);
}

.equi_swiper .text h3 {
    position: relative;
    color: #FFF;
    font-size: var(--font-medium);
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.equi_swiper a:hover .thumb i {
    transform: scale(1.08);
}

.equi_swiper .equi_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 9;
}

.equi_swiper .equi_button.my-button-disabled {
    cursor: default;
}

.equi_swiper .equi-prev {
    left: 0;
    background-image: url(../images/white_left.svg);
}

.equi_swiper .equi-next {
    right: 0;
    background-image: url(../images/white_right.svg);

}

.equi_swiper .equi_button:hover {
    background-color: rgba(24, 56, 132, 0.7);
}

.equi_swiper:hover .equi_button {
    opacity: 1;
}

.equi_swiper:hover .equi_button.my-button-disabled {
    opacity: 0.2;
}

@media (max-width:767px) {
    .equi_swiper .equi_button {
        opacity: 1;
    }
}

/* last */
.index_last {
    overflow: hidden;
    padding-bottom: 60px;
}

.quality_list ul {
    margin-left: -7px;
    margin-right: -7px;
}

.quality_list .li {
    width: 33.33%;
    float: left;
    padding-left: 7px;
    padding-right: 7px;
}

.quality_list .li a {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
}

.quality_list .quality_text {
    position: absolute;
    left: 0;
    top: 0;
    padding: 28px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(241deg, rgba(24, 56, 132, 0.00) 43.02%, #050D1E 100%);
    z-index: 1;
}

.quali_left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.quality_img {
    position: relative;
    width: 100%;
    height: 170px;
}

.quality_img i {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.quality_list .quality_text .icon img {
    width: 50px;
}

.quality_list .quality_text h3 {
    color: #FFF;
    font-size: var(--font-large);
    font-weight: 700;
}

.quality_list .quality_text p {
    color: #FFF;
    font-family: DIN;
    font-size: var(--font-medium);
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0.5;
}

.quality_text .more_icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.quality_text .more_icon img {
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
}

.quality_text .more_icon img:nth-child(2) {
    opacity: 0;
}

/* .quality_list a:hover .quality_text {
    background-color: var(--main-color);
} */

.quality_list a:hover .quality_text:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/quali_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.quality_list a:hover .quality_text p {
    opacity: 1;
}

.quality_list a:hover .more_icon img:nth-child(1) {
    opacity: 0;
}

.quality_list a:hover .more_icon img:nth-child(2) {
    opacity: 1;
}

@media (max-width:1200px) {
    .quality_list .quality_text {
        padding: 28px 20px;
    }

}

@media (max-width:767px) {

    .quality_list .quality_text p {
        font-size: 14px;
        font-weight: 500;
    }

    .quality_list .quality_text {
        padding: 28px 16px;
    }

    .index_last {
        padding-bottom: 30px;
    }
}

@media (max-width:540px) {
    .quality_list .li {
        width: 100%;
        padding-bottom: 20px;
    }

}

/* about */
.page_banner {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 1;
}

.page_banner .page_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.page_banner .page_text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

}

.page_banner .page_text .container {
    height: 100%;

}

.page_banner .page_text .n {
    position: relative;
    width: 100%;
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2px;
    z-index: 1;
}

.page_banner .page_text .n:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/RONGFA.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 80%;
    height: 50%;
    max-width: 475px;
    max-height: 85px;
    z-index: -1;
}

.page_banner .page_text_title {
    color: var(--white-color);
    font-weight: 290;
    line-height: 1.2;
    letter-spacing: 5px;
}

.page_banner .page_text_eng {
    padding-top: 4px;
    color: var(--white-color);
    font-family: "DIN";
    font-size: var(--font-medium);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.3;
}

.location {

    height: 60px;
    overflow: hidden;
    border-bottom: 1px solid #EEE;
}

.location .container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location .location_l a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-left: 1px solid #EEE;
    border-right: 1px solid #EEE;
    margin-right: 20px;
}

.location .location_l a:nth-child(n+2) {
    position: relative;
    display: inline-block;
    color: rgba(51, 51, 51, 0.5);
    font-size: var(--font-small);
    font-weight: 400;
    line-height: 24px;
    padding-right: 18px;
    margin-right: 10px;
}

.location .location_l a:nth-child(n+2)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/location_jt.svg);
    width: 8px;
    height: 8px;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
}
.location .location_l a:last-child {
    padding-right: 0;
    margin-right: 0;
}
.location .location_l a:last-child:before {
    display: none;
}

.location .location_l {
    float: left;
    display: flex;
    align-items: center;
}

.location .location_r {
    float: right;
}

.location .location_l a:nth-child(n+2):hover {
    color: var(--red--color);
}

.page_content {
    overflow: hidden;
}

.page_content .m_c {
    position: relative;
    overflow: hidden;
}

.page_content .m_c::before {
    content: "";
    position: absolute;
    left: 224px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #EEE;
}

.page_content .page_left {
    width: 224px;
    padding-top: 0.96rem;
    float: left;
}

.page_content .page_right {
    float: left;
    width: calc(100% - 224px);
    padding-left: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page_content .page_left,
.page_content .page_right {
    min-height: 60vh;
}

.page_content .page_left {
    overflow: hidden;
}

.page_content .page_left ul li {
    padding-bottom: 0.2rem;
}

.page_content .page_left>ul a {
    position: relative;
    display: block;
    padding-left: 21px;
    padding-top: 14px;
    padding-bottom: 14px;
    color: #333;
    font-size: var(--font-medium);
    font-weight: 400;
}

.page_content .page_left>ul a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 0;
    background-color: var(--red--color);
    transition: height 0.3s;
}

.page_content .page_left .active a,
.page_content .page_left a:hover {
    color: var(--red--color);
}

.page_content .page_left .active a:after,
.page_content .page_left>ul a:hover:after {
    height: 28px;
}

.about_cont_title {
    color: #183884;
    font-weight: 700;
    line-height: 1.2;
}

.about_small_t {
    padding-top: 6px;
    color: var(--red--color);
    font-family: DIN;
    font-weight: 400;
    line-height: 1;
}

.about_small_t span {
    display: inline-block;
    padding-left: 12px;
    color: #666;
    font-family: "Microsoft YaHei";
    font-size: var(--font-medium);
    font-weight: 290;
    line-height: 20px;
}

.about_top {
    position: relative;
}

.about_top_des {
    padding-top: 40px;
    padding-bottom: 50px;
}

.about_top_des,
.about_top_des p {
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.about_top_des p {
    padding-bottom: 20px;
}

.about_top_des p:last-child {
    padding-bottom: 0;
}

.about_cont_left {
    width: calc(100% - 390px);
    padding-right: 75px;

}

.about_cont_right {
    position: absolute;
    padding: 40px;
    top: 0;
    right: 30px;
    width: 360px;
    height: calc(100% + 75px);
    border-radius: 6px;
    background-color: var(--red--color);
}

.about_cont_right:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background-image: url(../images/about_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

.about_cont_right strong {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.4;
}

.about_cont_right p {
    padding-top: 10px;
    color: var(--white-color);
    font-family: "DIN";
    font-size: var(--font-medium);
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.5;
}

.about_bottom_bg {
    width: 100%;
    height: 228px;
    padding: 60px 0 0 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 6px 6px 0px 0px;
}

.about_bottom_bg .t {
    position: relative;
    padding-left: 13px;
}

.about_bottom_bg .t::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 19px;
    background-image: url(../images/about_line.jpg);
    background-repeat: no-repeat;
}

.about_bottom_bg .t .big_t {
    color: var(--main-color);
    font-weight: 700;
    line-height: 1.2;
}

.about_bottom_bg .eng {
    padding-top: 10px;
    color: #3D588F;
    font-size: var(--font-small);
    font-weight: 400;
    text-transform: uppercase;
    font-family: "DIN";
    opacity: 0.5;
}

.about_deve {
    padding: 45px 50px;
    border-radius: 0px 0px 6px 6px;
    background: #F9F9F9;
}

@media (max-width:767px) {
    .page_banner {
        height: 160px;
    }
    .location {
        height: auto;
        min-height: 60px;
    }
    .location>.container {
        padding-left: 0;
        padding-right: 0;
    }
    .location .location_l a:first-child {
        margin-right: 10px;
        width: 40px;
        border-left: none;
    }

    .page_content .page_left>ul a {
        padding-left: 0;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .page_banner .page_text_eng {
        padding-top: 8px;
        font-size: var(--font-small);
    }
    .location .location_l a:nth-child(n+2) {
        padding-right: 12px;
        margin-right: 6px;
    }
    .location .location_r {
        display: none;
    }
}

@media (max-width:360px) {

    .page_banner .page_text_title {
        font-size: 24px;
    }

}

/* development */
.deve-thumbs {
    position: relative;
}

.deve-thumbs::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #DDD;
}

.deve-thumbs .swiper-slide span {
    position: relative;
    display: inline-block;
    padding-bottom: 27px;
    color: #333;
    font-family: "DIN";
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.deve-thumbs .swiper-slide-thumb-active span {
    color: var(--red--color);
}

.deve-thumbs .swiper-slide-thumb-active span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--red--color);
}

.deve-top {
    padding-top: 30px;
}

.deve-top .swiper-slide {
    opacity: 0 !important;
}

.deve-top .swiper-slide-active {
    opacity: 1 !important;
}

.deve-top p {
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 1.5;
}

.fz_top {
    position: relative;
}

.fz_top .deve_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.fz_top .deve-button-prev {
    left: -30px;
}

.fz_top .deve-button-next {
    right: -30px;
}

@media (max-width:1440px) {
    .page_content .m_c::before {
        left: 210px;
    }

    .page_content .page_left {
        width: 210px;
    }

    .page_content .page_right {
        width: calc(100% - 210px);
        padding-left: 60px;
    }

    .about_cont_left {
        width: calc(100% - 370px);
        padding-right: 50px;
    }

    .about_cont_right {
        padding: 40px 30px;
        right: 30px;
        width: 340px;
    }

}

@media (max-width:1366px) {
    .page_content .m_c::before {
        left: 200px;
    }

    .page_content .page_left {
        width: 200px;
    }

    .page_content .page_right {
        width: calc(100% - 200px);
        padding-left: 60px;
    }

}

@media (max-width:1200px) {


    .about_cont_left {
        width: calc(100% - 320px);
        padding-right: 50px;
    }

    .about_cont_right {
        padding: 40px 30px;
        right: 20px;
        width: 300px;
    }

}

@media (max-width:991px) {
    .about_top {
        padding-bottom: 20px;
        overflow: hidden;
    }

    .about_cont_left {
        width: 100%;
        padding-right: 0;
    }

    .about_cont_right {
        position: relative;
        padding: 40px 30px;
        right: inherit;
        width: 100%;
    }

    .about_bottom_bg {
        height: 228px;
        padding: 60px 0 0 40px;
    }




}

@media (max-width:767px) {
    .about_cont_title {
        font-size: 22px !important;
    }

    .page_content .page_left {
        width: 100%;
        float: inherit;
        min-height: inherit;
        padding-top: 0;
        border-bottom: 1px solid #EEE;
    }

    .page_content .m_c::before {
        display: none;
    }

    .page_content .page_left .active a::after,
    .page_content .page_left a:hover::after {
        display: none;
    }

    .page_content .page_left ul li {
        width: auto;
        padding-right: 14px;
        float: left;
        padding-bottom: 0;
    }

    .page_content .page_left a {
        padding-left: 0;
    }

    .page_content .page_right {
        width: 100%;
        float: inherit;
        padding-top: 40px;
        padding-left: 0;
        padding-bottom: 40px;
    }

    .about_small_t span {
        padding-left: 12px;
        font-size: 14px;
    }

    .about_bottom_bg {
        height: 180px;
        padding: 40px 0 0 24px;
    }

    .about_deve {
        padding: 40px 26px;
    }

    .deve-thumbs .swiper-slide span {
        padding-bottom: 20px;
        font-size: 20px;
    }
}

/* team */
.team_list {
    padding-top: 30px;
}

.team_list ul {
    margin-left: -15px;
    margin-right: -15px;
}

.team_list ul li {
    width: 16.66%;
    float: left;
    padding: 13px 15px;
}

.team_list .thumb {
    width: calc(100% - 20px);
}

.team_list .thumb i {
    border-radius: 0;
}

.team_list .thumb i:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 66%;
    background-image: url(../images/team_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.team_list .work_text {
    width: 100%;
    margin-top: -66px;
    height: 170px;
    background: #F2F3F5;
    padding-top: 90px;
}

.line {
    position: relative;
    padding-left: 24px;
    padding-right: 4px;
}

.line:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(19, 96, 252, 0.20);
}

.team_list .work_text .w_name {
    color: #333;
    font-size: var(--font-large);
    font-weight: 600;
    line-height: 1.2;
}

.team_list .work_text .w_zhiwei {
    margin-top: 4px;
    color: #999;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 20px;
}

@media (max-width:1440px) {
    .line {
        padding-left: 14px;
        padding-right: 2px;
    }

    /* .team_list .work_text .w_name {
        font-size: 16px;
    } */

}

@media (max-width:1366px) {
    .line {
        padding-left: 14px;
        padding-right: 0px;
    }

    /* .team_list .work_text .w_name {
        font-size: 15px;
    } */

}

@media (max-width:1365px) {
    .team_list ul li {
        width: 20%;
    }

}

@media (max-width:1200px) {
    .line {
        padding-left: 12px;
        padding-right: 0px;
    }

    .team_list ul li {
        width: 25%;
    }
}

@media (max-width:991px) {
    .team_list ul li {
        width: 25%;
    }

}

@media (max-width:768px) {
    .team_list ul li {
        width: 33.33%;
    }

}

@media (max-width:540px) {
    .team_list ul li {
        width: 50%;
    }


}


/*page*/
.paged {
    padding: 30px 0 10px 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 a,
.paged span {
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    margin: 0 3px;
    padding: 4px;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: var(--font-medium);
    font-weight: 400;
}

.paged a:hover,
.paged .active span {
    color: #fff;
    background-color: var(--main-color);
}


.paged ul li:first-child img:nth-child(1),
.paged ul li:last-child img:nth-child(1) {
    opacity: 0.2;
}

.paged ul li:first-child img:nth-child(2),
.paged ul li:last-child img:nth-child(2) {
    display: none;
    opacity: 0.2;
}

.paged ul li.disabled {
    pointer-events: none;
}

.paged ul li:hover:first-child img:nth-child(1),
.paged ul li:hover:last-child img:nth-child(1) {
    display: none;
}

.paged ul li:hover:first-child img:nth-child(2),
.paged ul li:hover:last-child img:nth-child(2) {
    display: inline-block;
    opacity: 1;
}

@media (max-width:767px) {

    .paged span,
    .paged a {
        font-size: 14px;
        padding: 0 10px;
        margin: 0 2px;
        width: 40px;
        height: 40px;
    }

}

/*honor*/
.honor_list {
    padding-top: 30px;
}

.honor_list ul {
    margin-right: -10px;
    margin-left: -10px;
}

.honor_list ul li {
    float: left;
    width: 33.33%;
    padding: 10px;
}

.honor_list .border {
    padding: 20px 26px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
}

.honor_list .thumb {
    position: relative;
    overflow: hidden;
}

.honor_list .thumb i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.honor_title {
    padding-top: 16px;
    display: flex;
    margin-top: 28px;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    align-items: center;
}

.honor_title span {
    flex: 1;
    color: #333;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.honor_title i {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/honor_ser.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.honor_list a:hover .honor_title span {
    color: var(--main-color);
}

.honor_list a:hover .honor_title i {
    background-image: url(../images/honor_serhover.svg);
}


@media(max-width:991px) {
    .honor_list ul li {
        width: 50%;
    }

}

@media(max-width:640px) {
    .honor_list {
        padding-top: 35px;
    }

    .honor_list ul li {
        width: 100%;
    }

}

/* culture */
.c_top_left {
    flex: 1;
    padding-right: 26px;
    padding-top: 20px;
}

.c_top_right {
    max-width: 50%;
}
.c_top_right img {
    border-radius: 6px;
}
.c_top_text {
    padding-top: 26px;
}

.c_top_text p {
    position: relative;
    padding-left: 20px;
    padding-top: 4px;
    font-size: var(--font-large);
    font-weight: 400;
    line-height: 28px;
    z-index: 1;
}

.c_top_text p:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 41px;
    height: 24px;
    background-image: url(../images/cul_icon.svg);
    background-repeat: no-repeat;
    z-index: -1;
}

.c_top_title {
    margin-top: 40px;
    color: var(--red--color);
    font-weight: 700;
    line-height: 1.2;
}

.culture_bottom {
    padding-top: 50px;
}

.c_bottom_list {
    padding-top: 40px;
}

.c_bottom_list ul {
    margin-left: -10px;
    margin-right: -10px;
}

.c_bottom_list ul li {
    float: left;
    padding: 15px 10px;
    width: 50%;
    display: flex;
    align-items: center;
}

.c_bottom_list .icon {
    width: 120px;
    height: 120px;
    background-color: rgba(24, 56, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c_bottom_list .icon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: rgba(24, 56, 132, 1);
    background-image: url(../images/cul_icon_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

.c_bottom_list .c_bottom_text {
    flex: 1;
    padding-left: 25px;
}

.c_bottom_list .c_bottom_text strong {
    display: block;
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.c_bottom_list .c_bottom_text p {
    padding-top: 5px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}



@media (max-width:1279px) {
    .c_top_left .c_top_title {
        font-size: 28px;
    }

    .c_top_text p {
        font-size: var(--font-medium);
    }

    .c_bottom_list .icon {
        width: 100px;
        height: 100px;
    }

    .c_bottom_list .icon span {
        width: 62px;
        height: 62px;
    }

}

@media (max-width:991px) {
    .culture_top {
        flex-wrap: wrap;
    }

    .c_top_left {
        width: 100%;
        padding-right: 0;
    }

    .c_top_right {
        width: 100%;
        max-width: inherit;
        padding-top: 30px;
    }

    .c_top_text {
        max-width: 520px;
    }

    .c_bottom_list ul li {
        padding: 15px 10px;
        width: 100%;
    }

}

@media (max-width:767px) {
    .c_top_left {
        padding-top: 0;
    }

    .c_top_left .c_top_title {
        font-size: 24px;
    }

    .c_top_text p {
        padding-left: 10px;
        font-size: 16px;
        line-height: 1.5;
    }

    .c_top_text p::before {
        width: 38px;
        height: 20px;
        background-size: contain;
    }

    .c_top_left .c_top_title {
        font-size: 28px;
    }

    .c_bottom_list .icon {
        width: 60px;
        height: 60px;
    }

    .c_bottom_list .icon span {
        width: 46px;
        height: 46px;
        background-size: 68% 72%;
    }

    .c_bottom_list .c_bottom_text {
        padding-left: 16px;
    }

    .c_bottom_list ul li {
        align-items: flex-start;
    }

    .c_bottom_list .c_bottom_text p {
        font-size: var(--font-small);
    }
}


@media (max-width:414px) {

    .c_top_left .c_top_title {
        font-size: 26px;
    }

}

@media (max-width:393px) {
    .c_bottom_list .icon {
        width: 50px;
        height: 50px;
    }

    .c_bottom_list .icon span {
        width: 40px;
        height: 40px;
    }

    .c_bottom_list .c_bottom_text {
        padding-left: 10px;
    }

    .c_top_text {
        max-width: 300px;
    }

}

/* new */
.new_top {
}
.new_top .new_big{
    margin-top: 40px;

}
.new_top .new_big a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #F1F8FD;
    border-radius: 6px;
}

.new_top .new_big .thumb {
    position: absolute;
    overflow: hidden;
    width: 58.5%;
    height: 100%;
}

.new_top .new_big .thumb i {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    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;
}

.new_top .new_big_r {
    position: relative;
    float: right;
    width: 41.5%;
    padding: 50px 38px;
}

.new_top .new_big_r .time {
    color: #00559B;
    text-shadow: 0px 0px 20px rgba(170, 170, 170, 0.16);
   
    background-image: url(../images/blues_time.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    padding-left: 24px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.new_top .new_big_r .title {
    margin-top: 12px;
    color: var(--main-color);
    font-weight: 700;
    line-height: 32px;
    height: 64px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_top .line {
    margin: 32px 0;
    width: 100%;
    height: 1px;
    background-color: #DCE3E8;
}

.new_top .line::before {
    display: none;
}

.new_top .new_big_r .des {
    color: #657188;
    font-size: var(--font-medium);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_top .new_big .more {
    padding-top: 54px;
}

.new_top .new_big .more span {
    padding-right: 26px;
    color: #00559B;
    font-size: var(--font-medium);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    background-image: url(../images/arrow_right_b.svg);
    background-size: 20px 20px;
    background-position: right;
    background-repeat: no-repeat;
    transition: padding .4s;
}

.new_top .new_big .new_add {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    width: 36px;
    height: 36px;
}

.new_top .new_big a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.new_top .new_big a:hover .more span {
    padding-right: 28px;
}

.new_top .new_small {
    padding-top: 20px;
}

.new_top .new_small ul {
    margin-left: -12px;
    margin-right: -12px;
}

.new_top .new_small ul li {
    width: 25%;
    padding: 12px;
    float: left;
}

.new_top .new_small a {
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid #DCE3E8;
    transition: background .3s;
}

.new_top .new_small .time {
    color: var(--main-color);
    font-family: 'D-DINExp';
    font-size: var(--font-medium);
    background-image: url(../images/blues_time.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: left center;
    padding-left: 24px;
    font-weight: 400;
    line-height: 24px;
}

.new_top .new_small .title {
    margin-top: 20px;
    color: var(--main-color);
    font-size: var(--font-large);
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.new_top .new_small .more {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    height: 26px;
}

.new_top .new_small .more span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: inline-block;
    font-weight: 400;
    line-height: 26px;
    color: #FFF;
    opacity: 0;
    font-size: var(--font-medium);
    padding-right: 24px;
    overflow: hidden;
    background-size: 20px 20px;
    background-image: url(../images/arrow_right_w.svg);
    background-repeat: no-repeat;
    background-position: right;
    transition: opacity .6s;
}

.new_top .new_small .more i {
    display: inline-block;
    width: 20px;
    height: 26px;
    background-image: url(../images/arrow-right.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.new_top .new_small a:hover {
    background-color: var(--main-color);
}

.new_top .new_small a:hover .time {
    opacity: 0.5;
    background-image: url(../images/white_time.svg);
    color: rgba(255, 255, 255, 1);
}

.new_top .new_small a:hover .title {
    color: var(--white-color);
}

.new_top .new_small a:hover .more span {
    opacity: 1;
}

.new_top .new_small a:hover .more i {
    opacity: 0;
}

.list_new_ul {
    padding-top: 50px;
}

.list_new_ul ul li {
    padding: 40px 0px;
    border-bottom: 1px solid #DCE3E8;
}

.list_new_ul ul li a {
    padding-top: 16px;
    padding-bottom: 16px;
}

.list_new_ul ul li:hover {
    border-bottom: 1px solid var(--main-color);
}

.list_new_ul .left {
    width: calc(100% - 117px);
    padding-right: 30px;
}

.list_new_ul .right {
    width: 117px;
    position: relative;
    padding-left: 20px;
    text-align: center;
}

.list_new_ul .right:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #DCE3E8;
    width: 1px;
    height: 57px;
}

.list_new_ul .right span {
    display: block;
    
    line-height: 1.1;
}

.list_new_ul .right .date {
    color: #657188;
    font-size: 42px;
    font-weight: 700;
}

.list_new_ul .right .year_moth {
    padding-top: 2px;
    color: #657188;
    font-size: var(--font-medium);
    font-weight: 400;
    
}

.list_new_ul .title {
    position: relative;
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: padding-left .4s;
}

.list_new_ul .title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background-color: var(--main-color);
    transition: width .4s;
}

.list_new_ul .des {
    margin-top: 16px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list_new_ul li:hover .title {
    color: var(--main-color);
    padding-left: 26px;
}

.list_new_ul li:hover .title:before {
    width: 16px;
    opacity: 1;
}

.list_new_ul li:hover .date,
.list_new_ul li:hover .year_moth {
    color: var(--main-color);
}

@media screen and (max-width:1366px) {
    .list_new_ul .right .date {
        font-size: 32px;
    }

}

@media screen and (max-width:1280px) {
    .list_new_ul .right .date {
        font-size: 38px;
    }

}

@media screen and (max-width:991px) {
    .new_top .new_big_r {
        padding: 40px 20px;
    }

    .newb_list {
        padding-top: 60px;
    }

    .new_top .new_small a {
        padding: 36px 20px;
    }

    .new_top .line {
        margin: 22px 0;
    }

}

@media screen and (max-width:767px) {
    .new_top .new_big .thumb {
        position: relative;
        height: auto;
        width: 100%;
    }

    .new_top .new_big .thumb i {
        position: relative;
    }

    .new_top .new_big_r {
        width: 100%;
        padding: 25px 20px;
    }

    .new_top .new_big_r .time {
        font-size: 14px;
    }

    .new_top .new_big_r .title {
        margin-top: 10px;
        line-height: 30px;
        height: 60px;
    }

    .new_top .line {
        margin: 15px 0;
    }

    .new_top .new_small .time {
        font-size: 14px;
    }

    .new_top .new_big .more {
        padding-top: 40px;
    }

    .list_new_ul {
        padding-top: 20px;
    }

    .new_top .new_small ul li {
        width: 100%;
    }

    .list_new_ul .right .date {
        font-size: 30px;
    }

    .list_new_ul ul li {
        padding: 30px 0px;
    }

    .list_new_ul ul li a {
        padding: 0;
        display: block;
        overflow: hidden;
    }

    .list_new_ul .title {
        font-size: 18px;
        line-height: 28px;
    }

    .list_new_ul .left {
        width: 100%;
        padding-right: 0;
    }

    .list_new_ul .right {
        float: left;
        width: 100%;
        padding-top: 15px;
        width: auto;
        padding-left: 0;
        text-align: left;
    }

    .list_new_ul .right::before {
        display: none
    }



}

/* article */
.newxq_title {
    color: #333;
    font-weight: 700;
    line-height: 1.4;
    padding-bottom: 40px;
    border-bottom: 1px solid #EEE;
}

.newxq_gn {
    border-bottom: 1px solid #EEE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.newxq_time {
    color: #999;
    
    font-size: var(--font-large);
    font-weight: 500;
}

.newxq_t {
    color: #999;
    font-size: var(--font-large);
    font-weight: 400;
}

.newxq_gnleftline {
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #C4C4C4;
    margin: 0 22px;
}

.dy,
.fontup {
    margin-right: 8px;
    cursor: pointer;
}

.fontdown,
.fontup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #F5F5F6;
    border-radius: 50%;
    cursor: pointer;
}

.wxfx,
.qqfx {
    margin-right: 16px;
    cursor: pointer;
}

.ljfx {
    cursor: pointer;
}

.newxq_content {
    padding-top: 50px;

}

.newxq_content p {
    color: #657188;

    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 1.6;
    padding-bottom: 15px;
}

.newxq_content p:last-child {
    padding-bottom: 0;
}

.single_page img,
.newxq_content img {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
    width: auto !important;
    display: block;
}


.pageall {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #E0E0E0;
}

.page_nerv {
    width: 50%;
    padding-right: 15px;
}

.page_next {
    padding-left: 15px;
}

.page_nerv a,
.page_next a {
    display: block;
}

.page_nervup {
    color: #999;
    font-size: var(--font-medium);
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.page_nervup2 {
    color: #333;
    font-size: var(--font-medium);
    font-weight: 400;
    margin-top: 16px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page_next1 {
    color: #999;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page_next2 {
    color: #333;
    text-align: right;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 30px;
    margin-top: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page_next2 a {
    color: inherit;
    font-size: inherit;
}

.page_next {
    text-align: right;
    border-left: 1px solid #CCC;
    width: 50%;
}

.newxq_gnright {
    display: flex;
    align-items: center;
}

.newxq_gnright .wxfx,
.newxq_gnright .qqfx,
.newxq_gnright .ljfx {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F5F5F6;
    border-radius: 50%;
}

.page_next2 a:hover,
.page_nervup2 a:hover {
    color: var(--main-color);
}

@media(max-width:991px) {

    .pageall {
        flex-wrap: wrap;
    }

    .page_next,
    .page_nerv {
        width: 100%;
    }

    .page_next {
        text-align: left;
        padding-top: 20px;
        border-top: 1px solid #EEE;
    }

    .page_next {
        border-left: none;
    }

    .page_next a .page_next2 {
        text-align: left;
    }

    .page_nervup2 {
        padding-bottom: 20px;
    }

    .newxq_conrighttitle {
        margin-top: 70px;
        border-top: 1px solid #eee;
        padding-top: 40px;

    }

    .newxq_gn {
        flex-wrap: wrap;
    }


    .newxq_gnleft {

        width: 100%;
    }

    .newxq_gnright {

        width: 100%;
        margin-top: 15px;
    }

    .page_nerv {
        padding-right: 0;
    }

    .page_next {
        padding-left: 0;
    }
}

@media(max-width:767px) {
    .newxq_con {
        padding: 30px 0;
    }

    .newxq_title {
        padding-bottom: 30px;
    }



    .newxq_gnleftline {

        margin: 0 10px;
    }

    .wxfx,
    .qqfx {
        margin-right: 10px;
    }

    .newxq_time,
    .newxq_t {
        font-size: var(--font-small);
    }
}


.new_tab .container {
    border-bottom: 1px solid #EEE;
    padding-bottom: 20px;
}

.new_tab {
    padding-top: 40px;
    /* padding-bottom: 20px; */
    overflow-x: auto;

}

.new_tab>.container {
    display: flex;
    align-items: center;
}

.new_tabbj {
    display: flex;
    padding: 8px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px;

    margin-right: 48px;
    cursor: pointer;
    flex-grow: 0;
    flex-shrink: 0;
}

.new_tabbj.active {
    background: #912822;
}

.new_tabbj a {
    color: #666;
    font-family: Microsoft YaHei;
    font-size: var(--font-medium);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.new_tabbj.active a {
    color: #FFF;
    font-weight: 700;
}

@media (max-width:500px) {
    .new_tab {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .new_tabbj {
        padding: 4px 10px;
        margin-right: 15px;
    }

}

/* 价格 */
.stock_price_top {
    margin-top: 30px;
    width: 100%;
    padding: 60px 0;
    padding-right: 160px;
    padding-left: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.stock_price_top .stock_price_tright {
    float: right;
    width: 508px;
    max-width: 100%;
}

.stock_price_top .stock_price_tright .stock_title {
    color: #333;
    font-size: var(--font-medium);
    font-weight: 400;
}

.stock_price_top .stock_price_tright .stock_two {
    padding-top: 6px;
    color: #C4261D;
    font-family: DIN;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}
.stock_price_tright .stock_two em {
display: inline-block;
margin-left: 4px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}
.stock_price_tright .stock_two span {
    display: inline-block;
    margin-left: 8px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #333;
}
.stock_price_tright .stock_two img{
    width: 20px;
}
.stock_three {
    padding-top: 10px;
    font-family: DIN;
    font-size: var(--font-large);
    font-weight: 700;
}

.stock_line {
    margin-top: 25px;
    position: relative;
    width: 100%;
    height: 1px;
    background: #C1CDEB;
}

.stock_line:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 86px;
    height: 2px;
    background: #C4261D;
}

.stock_list {
    padding-top: 25px;
}

.stock_list ul {
    display: flex;
    justify-content: space-between;
}

.stock_list .stock_l span {
    display: block;
    font-size: var(--font-medium);
    font-weight: 400;
}

.stock_list .stock_l strong {
    display: block;
    color: #183884;
    font-family: DIN;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.stock_list .stock_lines {
    margin-top: 5px;
    width: 1px;
    height: 17px;
    background: #CCC;
}

.stock_bottom {
    padding-top: 60px;
}

.stock_bottom .tab_more a {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 10px;
    border: 1px solid #DCDFE6;
    color: #6F7374;
    border-radius: 6px;
}

.stock_bottom .tab_more a.active {
    color: var(--white-color);
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.stock_bottom .tab_con {
    padding-top: 20px;
}

.tab_con .pub-t1 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .4s;
}

.tab_con .pub-t1.d-show {
    opacity: 1;
    overflow: visible;
    height: 100%;
}
.tab_con .pub-t1 img {
    width: 100%;
}
.contact_left_c {
    padding-top: 1.2rem;
}

.contact_left_c .m_t {
    display: flex;
    padding-left: 60px;
    align-items: center;
    color: #183884;
    font-size: var(--font-large);
    font-weight: 700;
    height: 76px;

    background-image: url(../images/hot_bg01.svg);
    background-size: 80px 76px;
    background-repeat: no-repeat;
    background-position: left top;
    max-width: 186px;
}

.contact_left_c .contact_left {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: var(--font-medium);
    font-weight: 290;
    line-height: 26px;
}

.contact_left_c .contact_left img {
    margin-right: 2px;
    width: 16px;
    height: 16px;
}

.code_img {
    padding-top: 20px;
    margin-bottom: 30px;
}

.code_img_c {
    position: relative;
    display: inline-block;
}

.code_img_c::after {
    content: "";
    position: absolute;
    top: -14px;
    right: -25px;
    width: 25px;
    height: 57px;
    background-image: url(../images/hot_bg02.svg);
    background-repeat: no-repeat;

    z-index: 1;
}

.code_img span {
    position: relative;
    display: inline-block;
    padding: 14px;
    border-radius: 6px;
    z-index: 1;
}

.code_img span img {
    position: relative;
    z-index: 2;
}

.code_img span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F8F2EF;
    border-radius: 6px;
    z-index: 1;
}

.code_img span:after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -20px;
    background-image: url(../images/rex_icon.svg);
    width: 47px;
    height: 47px;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.code_img p {
    margin-top: 16px;
    color: #333;
    font-size: var(--font-medium);
    font-weight: 290;
    text-align: center;
}

@media (max-width:1440px) {}

@media (max-width:1366px) {
    .stock_price_top {
        padding-right: 100px;
    }

    .contact_left_c .contact_left {
        font-size: 14px;
    }

}

@media (max-width:1280px) {
    .stock_price_top {
        padding-right: 60px;

    }

}

@media (max-width:991px) {
    .stock_price_top {
        padding-right: 30px;

    }

    .stock_list .stock_l strong {
        font-size: 22px;
    }

}

@media (max-width:767px) {
    .contact_left_c {
        padding-top: 0;
        padding-bottom: 30px;
        margin-top: -20px;
    }

    .stock_price_top .stock_price_tright .stock_two {
        font-size: 26px;
    }

    .stock_price_top {
        padding: 40px 20px 20px 20px;
    }

    .stock_list ul {
        flex-wrap: wrap;
    }

    .stock_list .stock_lines {
        display: none;
    }

    .stock_list .stock_l {
        width: 50%;
        padding-bottom: 20px;
    }

    .stock_bottom .tab_more a {
        margin-bottom: 6px;
        margin-right: 6px;
    }


}

/* 重要资讯 */
.infor_cont_list {}

.infor_cont_list .li {
    padding-bottom: 24px;
}

.infor_cont_list .li a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infor_cont_list .li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #DCE3E8;
}

.infor_cont_list .li a {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infor_left {
    width: calc(100% - 24px);
    padding-right: 20px;
    display: flex;
    align-items: center;
}

.infor_left .infor_time {
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
    color: #657188;
    font-family: DIN;
    font-size: var(--font-large);
    font-weight: 700;
}

.infor_left .infor_time::before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 18px;
    background: #DDD;
}

.infor_left .infor_title {
    flex: 1;
    color: #555;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.infor_cont_list a:hover .infor_title {
    color: var(--main-color);
}

.infor_cont_list a:hover .infor_more svg g {
    opacity: 1;
}

.infor_cont_list a:hover .infor_more svg path {
    stroke: var(--main-color);
}

.pt30 {
    padding-top: 30px;
}

@media (max-width:767px) {
    .infor_left {
        flex-wrap: wrap;
        display: block;
    }

    .infor_cont_list .li {
        padding-bottom: 10px;
    }

    .infor_cont_list .li a {
        padding: 15px 0;
    }

    .infor_left .infor_time {
        width: 100%;
        padding-right: 0px;
        margin-right: 0px;
        font-size: 16px;
        font-weight: 500;
    }

    .infor_left .infor_time::before {
        display: none;
    }

    .infor_left .infor_title {
        margin-top: 10px;
        display: block;
        width: 100%;
    }


}

/* 信息披露 */
.infor_dis_tab .tab_more {
    display: flex;
    padding-bottom: 30px;
    width: 100%;
    border-bottom: 2px solid rgba(24, 56, 132, 0.50);

}

.infor_dis_tab .tab_more a {
    margin-right: 60px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.infor_dis_tab .tab_more a:last-child {
    margin-right: 0;

}

.infor_dis_tab .tab_more a.active {
    color: var(--main-color);
    font-weight: 700;

}

@media (max-width:1280px) {
    .infor_dis_tab .tab_more a {
        margin-right: 40px;
        font-size: 24px;
    }
}

@media (max-width:767px) {
    .infor_dis_tab .tab_more a {
        margin-right: 10px;
        font-size: 20px;
    }

    .infor_dis_tab .tab_con {
        padding-top: 20px;
    }
}

/* 招标信息 */
.tender_infor_list {
    padding-top: 20px;
}

.tender_infor_list ul {
    margin-left: -12px;
    margin-right: -12px;
}

.tender_infor_list ul li {
    width: 100%;
    float: left;
    padding: 12px;
}

.tender_infor_list .border {
    position: relative;
    display: block;
    padding: 24px 32px;
    padding-right: 90px;
    width: 100%;
    height: 92px;
    border-radius: 8px;
    border: 1px solid #DCE3E8;
}

.tender_infor_list .time {
    color: #657188;
    font-family: DIN;
    font-size: var(--font-large);
    font-weight: 700;
}

.tender_infor_list .title {
    margin-top: 2px;
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 28px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tender_infor_list a:hover .title {
    color: #183884;
}
.tender_infor_list .border .left {
    width: 100%;
    padding-right: 10px;
}

.tender_infor_list .border .more {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 100%;
    border-left: 1px solid #DCE3E8;
}

@media (max-width:1279px) {
    .tender_infor_list .border {
        padding: 24px 25px;
        padding-right: 32px;
        padding-right: 80px;
    }

    .tender_infor_list .border .more {
        width: 70px;
    }

}

@media (max-width:991px) {
    .tender_infor_list ul li {
        width: 100%;
    }

}

@media (max-width:767px) {
    .tender_infor_list .time {
        font-size: 16px;
        font-weight: 400;
    }

    .tender_infor_list .border {
        padding: 24px 16px;
        padding-right: 60px;
    }

    .tender_infor_list .border .more {
        width: 60px;
    }
}

/* job */
.job_text {
    padding-top: 10px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 1.4;
}

.job_two {
    padding-top: 80px;

}

.job_three {
    padding-top: 80px;
    padding-bottom: 20px;

}

.job_one_list {
    padding-top: 32px;
}

.job_one_list ul {
    margin-left: -8px;
    margin-right: -8px;
}

.job_one_list ul li {
    width: 50%;
    float: left;
    padding: 8px;
}

.job_one_list .thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 78px 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}

.job_one .thumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: #000;
    z-index: 2;
}

.job_one .thumb i {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    -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;
    z-index: 1;
}

.job_one_list .job_one_c {
    display: inline-flex;
    padding: 15px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.job_one_list .job_one_c .t {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.job_one_list a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.employ_list {
    padding-top: 30px;
}

.employ_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    overflow: hidden;
}

.employ_list ul li {
    width: 33.33%;
    float: left;
    padding: 10px;
}

.employ_list ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.employ_list .thumb {
    overflow: hidden;
    border-radius: 6px;
}

.employ_list .t {
    color: #333;
    margin-top: 24px;
    font-size: var(--font-large);
    font-weight: 700;
    height: 64px;
    line-height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.employ_list a:hover .t {
    color: var(--main-color);
}

.employ_list a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.achi_list {
    padding-top: 30px;
}

.achi_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    align-items: stretch;
}

.achi_list ul li {
    width: 25%;
    float: left;
    padding: 10px;
}

.achi_list .border {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 50px 16px;
    padding-bottom: 92px;
    text-align: center;
    border-radius: 10px;
    background: #F3F7FA;
}

.achi_list .border .achi_img img {
    max-width: 150px;
    width: 100%;
    border-radius: 50%;
}

.achi_list .border .t {
    padding-top: 25px;
    color: #333;
    text-align: center;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 26px;
}

.achi_list .border .text {
    margin-top: 5px;
    margin-bottom: 25px;
    text-align: center;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.achi_list .achi_number {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 8px 50px;
    border-radius: 30px;
    background: #183884;
    color: var(---, #FFF);
    text-align: center;
    
    font-size: var(--font-large);
    font-weight: 400;
    line-height: 26px;
}

@media (max-width:991px) {

    .achi_list ul {
        flex-wrap: wrap;
    }

    .achi_list ul li {
        width: 50%;
    }

    .employ_list .t {

        margin-top: 16px;
        font-size: 18px;
        font-weight: 700;
        max-height: 52px;
        line-height: 26px;
    }

}

@media (max-width:767px) {
    .job_one_list ul li {
        width: 100%;
    }

    .job_one_list .thumb {
        padding: 50px 0;
    }

    .job_one_list .job_one_c .t {
        font-size: 20px;
    }

    .employ_list ul li {
        width: 50%;
    }

    .achi_list ul li {
        width: 50%;
    }

    .employ_list .t {
        margin-top: 10px;
        font-size: 16px;
        font-weight: 500;
        max-height: 50px;
        line-height: 25px;
    }

    .achi_list .border {
        padding: 40px 16px;
        padding-bottom: 82px;
    }

    .achi_list .achi_number {
        bottom: 40px;
    }

}

/* 人才招聘 */
.jobs-list {
    width: 100%;
}

.jobs-list-title span {
    color: #999999;
    font-size: var(--font-medium);
}

.jobs-list-content {
    padding-top: 50px;
}

.job-item {
    width: 100%;
    padding: 24px 40px;
    margin-bottom: 10px;
    height: 115px;
    background: #F8F8F8;
    transition: background 0.25s;
    border-radius: 6px;
    position: relative;
}

.job-item:hover {
    background: var(--main-color);
}

.job-item_l {
    width: calc(100% - 50px);
    float: left
}

.job-title {
    font-size: var(--font-large);
    font-weight: bold;
    line-height: 1.1;
    color: #333333;
    padding-bottom: 25px;
}

.job-info {
    font-size: var(--font-medium);
}

.job-info span {
    float: left;
    position: relative;
    font-size: inherit;
    color: inherit;
    color: #999;
    padding-right: 24px;
    margin-right: 24px;
}

.job-info span::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #CCC;
}

.job-info span:last-child::before {
    display: none;
}

.job-description {
    font-size: var(--font-medium);
    line-height: 1.5;
}

.job-item_r {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.job-item_r .join_date {
    width: 24px;
    height: 24px;
    background-image: url("../images/jobr.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.job-item_r .joinjr {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.50);
    display: none;
    color: #fff;
    font-size: var(--font-medium);
    text-align: center;
    border-radius: 19px;
}

.job-item:hover .job-title {
    color: var(--white-color);
}

.job-item:hover .job-info span {
    color: rgba(255, 255, 255, 0.6);
    border-right-color: rgba(204, 204, 204, 0.6);
}

.job-item:hover .job-info span::before {
    opacity: 0.6;
}

.job-item:hover .job-item_r .joinjr {
    display: inline-block;
}

.job-item:hover .job-item_r .join_date {
    display: none;
}

@media (max-width:991px) {
    .job-item {
        padding: 24px 24px;
    }

}

@media (max-width:767px) {
    .job-item_l {
        width: 100%;
    }

    .job-item_r {
        width: 100%;
        padding-top: 15px;
    }

    #portfoliolist .portfolio {
        height: auto;
        padding: 30px 20px;
    }

    .job-item_r {
        position: relative;
        right: inherit;
        top: inherit;
        transform: inherit;

    }

    .job-item_r .join_date {
        display: inline;
        none
    }

    .job-item_r .joinjr {
        display: inline-block;
        margin-top: 15px;
        position: inherit;
        top: inherit;
        transform: none;
    }

    .job-item_r .joinjr {
        background: rgba(0, 0, 0, 0.2);
    }
}

/*yingpin*/
.mess_form {
    padding-top: 40px;
    max-width: 800px;
}

.input_select_box .icon {
    border-color: #999 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    right: 8px;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
    cursor: pointer;
}

.input_select_box .drop_down_ {
    position: absolute;
    left: -1px;
    top: 56px;
    width: calc(100% + 2px);
    background: #F5F6F8;
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-top: none;
    padding-bottom: 10px;
    z-index: 9;
}

.input_select_box .drop_down_ p {
    padding: 8px 20px;
    font-size: var(--font-medium);
    color: #333;
    cursor: pointer;
}

.mess_left h3 {
    color: #FFF;
    font-weight: 400;
    line-height: 1.4;
}

.mess_left p {
    padding-top: 14px;
    color: #FFF;
    font-size: var(--font-large);
    font-weight: 400;
    line-height: 1.7;
}

.messform {
    margin-left: -12px;
    margin-right: -12px;
    overflow: hidden;
    margin-top: -10px;
}

.messform .col {
    width: 50%;
    padding: 12px;
    float: left;
}

.messform .input-container {
    position: relative;
    border: 1px solid #F5F6F8;
}

.messform .input-container input {
    outline: none;
    z-index: 1;
    padding: 15px 16px;
    padding-left: 62px;
    position: relative;
    background: none;
    width: 100%;
    height: 56px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: var(--font-medium);
    font-weight: 400;
}

.messform .input-container span {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 74px;
    color: #999;
    font-size: var(--font-medium);
    font-weight: 400;
}

.messform .text-area span {
    top: 18px;
    transform: inherit;
}

.messform .text-area span em {
    color: var(--red--color);
}

.messform .colw100 {
    width: 100%;
    padding: 12px;
    float: left;
}

.messform .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 230px;
    padding: 15px 16px;
    padding-left: 95px;
    line-height: 26px;
    border: 0;
    color: var(--dark);
    font-size: var(--font-medium);
    font-weight: 400;
    resize: none;
    font-family: "Microsoft YaHei";
}

.messform .reset,
.messform .submit {
    width: 160px;
    height: 60px;
    background: transparent;
    color: #FFF;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
    border-radius: 0;
    cursor: pointer;
}

.messform .reset {
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.30);
}

.messform .submit {
    margin-left: 16px;
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.messform .submit img {
    margin-left: 5px;
}

.messform .yanz {
    width: 252px;
}

.messform .yanz input {
    padding-left: 80px;
}

.messform .yz {
    margin-left: 10px;
}

.messform .yz img {
    height: 56px;
}

.messform .last_button {
    justify-content: flex-end;
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--red--color);
}

.messform .job_radio div {
    padding-left: 90px;
    height: 58px;
    width: 192px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-size: var(--font-medium);
    font-weight: 400;
}

.messform .job_radio input {
    width: 16px;
    height: 16px;
    border: 0;
    color: #333;
    line-height: 26px;
    font-size: var(--font-medium);
    padding: 0;
}

.ser_agreement {
    display: none !important;
}

@media (max-width:767px) {
    .job_ypbg {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .messform .col {
        width: 100%;
    }

    .messform .yanz {
        width: 200px;
    }

    .messform .reset,
    .messform .submit {
        width: 46%;
        height: 48px;
        font-size: 16px;
    }

    .top_list .ul .li:last-child .text {
        font-size: 16px;
    }

    .messform .last_button {
        justify-content: space-between;
    }

    .job_ypbg .mess_form {
        padding: 30px 20px;
    }

    .messform .job_radio {
        display: block;
    }

    .messform .job_radio div {
        padding-left: 70px;
        height: 56px;
    }

    .messform .job_radio input {
        float: left;
    }

}

/* 优势装备 */
.super_text {
    padding-top: 10px;
    max-width: 838px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.super_list {
    padding-top: 30px;
}

.super_list ul {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;

}

.super_list .click {
    width: 33.33%;
    padding: 10px;
    float: left;
}

.super_list a {

    display: block;
    overflow: hidden;
    border-radius: 6px;

}

.super_list .click .thumb {
    overflow: hidden;
}

.super_list .click .thumb i {
    border-radius: 0;
}

.super_list .super_infor {
    padding: 20px 32px;
    border: 1px solid #EEE;
    background: var(--white-color);
}

.super_list .t {
    color: var(--main-color);
    font-size: var(--font-large);
    font-weight: 700;
}

.super_list .text {
    margin-top: 16px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
    height: 130px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* 业务介绍 */
.busi_intro_top {
    display: flex;
    align-items: center;
}

.busi_intro_top .busi_intro_left {
    width: 48%;
    padding-right: 45px;
}

.busi_intro_top .busi_intro_right {
    width: 52%;
    border-radius: 6px;
    overflow: hidden;
}

.intro_left_icon img {
    width: 36px;
}

.intro_left_t {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #183884;
    font-size: 24px;
    font-weight: 700;
}

.intro_left_text {
    padding-right: 10px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
    max-height: 234px;
    overflow-y: auto;
}

.busi_intro_swiper {
    height: 400px;
}

.busi_intro_swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.busi_intro_swiper .swiper-slide .thumb {
    height: 100%;
    width: 100%;
}

.busi_intro_swiper .equi_button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 9;
}

.busi_intro_swiper .equi_button.my-button-disabled {
    cursor: default;
}

.busi_intro_swiper .busi_intro_prev {
    left: 0;
    background-image: url(../images/white_left.svg);
}

.busi_intro_swiper .busi_intro_next {
    right: 0;
    background-image: url(../images/white_right.svg);

}

.busi_intro_swiper .equi_button:hover {
    background-color: rgba(24, 56, 132, 0.7);
}

.busi_intro_list {
    padding-top: 55px;
}

.busi_intro_list ul li {
    padding: 24px 0;
    border-bottom: 1px solid #EBEBEB;
}

.busi_intro_list .busi_intro_item {
    position: relative;
    padding-left: 26px;
}

.busi_intro_list .busi_intro_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    background: #333;
    width: 10px;
    height: 1px;
}

.busi_intro_list .title {
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 28px;
}

.busi_intro_list .text {
    padding-top: 16px;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 28px;
}


@media (max-width:1279px) {
    .busi_intro_top .busi_intro_left {
        padding-right: 35px;
    }

    .busi_intro_swiper {
        height: 360px;
    }
}

@media (max-width:1100px) {
    .intro_left_text {
        max-height: 180px;
    }

    .busi_intro_swiper {
        height: 300px;
    }


}

@media (max-width:991px) {
    .busi_intro_top {
        display: block;
    }

    .busi_intro_top .busi_intro_left {
        width: 100%;
        padding-right: 0;

    }

    .intro_left_text {
        max-height: inherit;
    }

    .busi_intro_top .busi_intro_right {
        padding-top: 30px;
        width: 100%;
    }

    .busi_intro_swiper {
        height: auto;
    }

    .busi_intro_list {
        padding-top: 25px;
    }

}

@media (max-width:767px) {
    .busi_intro_list ul li {
        padding: 16px 0;
    }

    .busi_intro_list .text {
        padding-top: 10px;
        line-height: 28px;
    }

}

/* 市场合作 */
.market_cont {
    padding-top: 20px;
}

.market_cont_title {
    padding-top: 20px;
    color: #333;
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 26px;
}

.market_text {
    padding-top: 8px;
    color: rgba(102, 102, 102, 0.80);
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.market_icon_list {
    padding-top: 40px;
}

.market_icon_list ul {
    margin-left: -7px;
    margin-right: -7px;
}

.market_icon_list ul li {
    width: 20%;
    padding: 7px;
    float: left;
}

.market_icon_list .bg {
    position: relative;
    background: #F5F5F5;
}

.market_icon_list .bg .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 100%;
    width: 100%;
    padding: 15px;
    text-align: center;
}

@media (max-width:1100px) {
    .market_icon_list ul li {
        width: 25%;
    }
}

@media (max-width:768px) {
    .market_icon_list ul li {
        width: 33.33%;
    }
}

@media (max-width:540px) {
    .market_icon_list ul li {
        width: 50%;
    }
}

/* 核心产品 */
.core_product {
    padding-top: 30px;
}

.core_product .list {
    margin-left: -10px;
    margin-right: -10px;
}

.core_product .list li {
    padding: 10px;
    float: left;
    width: 33.33%;
}

.core_product a {
    cursor: default;
}

.core_product .bg {
    position: relative;
    border-radius: 6px;
    transition: background-image .8s;
    overflow: hidden;
}

.core_product .bg:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/pro_bg.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.core_product .thumb {
    padding: 23px 30px;
}

.list_p_defaultcore_product .thumb i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    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;
}

.core_product .t {
    padding-top: 16px;
}

.core_product .t h3 {
    font-size: var(--font-large);
    font-weight: 700;
    line-height: 26px;
    height: 26px;
    color: var(--main-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.core_product .t span {
    margin-top: 12px;
    display: inline-block;
    width: 26px;
    height: 26px;
    background-image: url(../images/pro_jt.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.core_product a:hover .bg {
    background-image: url(../images/pro_hoverbg.png);
    background-size: cover;
    transition: background-image .8s;
}

.core_product a:hover .thumb i {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

/* 核电装备 */
.power_tab {
    padding-top: 40px;
}

.power_tab .tab_more {
    display: flex;
    flex-wrap: wrap;
}

.power_tab .tab_more a {
    margin-right: 12px;
    margin-bottom: 12px;
    border-radius: 30px;
    border: 1px solid #EEE;
    display: flex;
    padding: 6px 32px;
    justify-content: center;
    align-items: center;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

.power_tab .tab_more .active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
}


.power_list .thumb {
    padding: 0;
}

.power_list .bg {
    padding-bottom: 4px;
}

.power_list .thumb i {
    border-radius: 0;
}

.power_list .bg:before {
    display: none;
}

.power_list .bg:after {
    content: "";
    position: absolute;
    left: 0;

    bottom: 0;
    width: 100%;
    height: 4px;
    background-image: url(../images/line.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.power_list .t {
    padding-top: 28px;
}

.power_title {
    margin-top: 28px;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    padding: 26px 0px;

    border-bottom: 1px solid #EEE;
}

.power_text {
    padding-top: 40px;
    color: #666;
    font-size: var(--font-medium);
    font-weight: 400;
    line-height: 26px;
}

@media (max-width:768px) {
    .core_product .list li {
        width: 50%;
    }

}

@media (max-width:540px) {
    .core_product .list li {
        width: 100%;
    }

}

@media (max-width:767px) {
    .power_title {
        margin-top: 20px;
        font-size: 20px;
        padding: 16px 0px;
    }

    .power_text {
        padding-top: 30px;
    }
}

/* mtk */
.yaoqiu {
    display: none !important;
}
.join_click {
    cursor: pointer;
}
.mtk_text {
    max-height: 340px;
    overflow-y: auto;
    padding-left: 45px;
    padding-right: 45px;
}

body.m_fix {
    overflow: hidden;
}

.mtk {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: -999;
    opacity: 0;
}

.mtk.active {
    z-index: 1200;
    opacity: 1;
}

.mtk_box {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(100px);
    overflow: hidden;
    width: 700px;
    max-width: 95%;
    opacity: 0;
    transition: transform .6s;
    z-index: 10;
}

.mtk_box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -1;
    opacity: 0;
}

.mtk_title {
    padding: 27px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mtk_title .close {
    cursor: pointer;
}

.mtk_title1 {
    color: #333;
    font-size: var(--font-large);
    font-weight: 400;
}

.mtk_content {
    padding: 35px 0;
}

.mtk_content1,
.mtk_content3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 700;
}

.mtk_content2 {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
}
.mtk_content2 h3 {
    padding-bottom: 15px;
}
.mtk_content3 {
    margin-top: 43px;
}

.mtk_content4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 10px;
}

.mtk_content5 {
    margin-top: 57px;
    cursor: pointer;
    padding-left: 45px;
}

.mtk_content5 a {
    display: inline-flex;
    padding: 2px 2px 2px 20px;
    align-items: center;
    gap: 15px;
    border-radius: 40px;
    background: #EDEDED;
    transition: .3s;
}

.mtk_content5 a span:nth-child(1) {
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.box_butcur {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box_butcur2 {
    display: block;
}

.box_butcur1 {
    display: none;
}

.mtk_content5 a:hover {
    background-color: var(--main-color);
    transition: .3s;
}

.mtk_content5 a:hover .box_butcur1 {
    display: block;
}

.mtk_content5 a:hover .box_butcur2 {
    display: none;
}

.mtk_content5 a:hover .box_butcur {
    background-color: var(--white-color);
    transition: .3s;
}

.mtk_content5 a:hover span:nth-child(1) {
    color: #fff;
    transition: .3s;
}

.mtk.active .mtk_box {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0px);
}

.mtk.active .mtk_box:before {
    opacity: 1;
}

@media (max-width:767px) {

    .mtk_title {
        padding: 27px 20px;
    }

    .mtk_text {
        max-height: 324px;
        padding-left: 30px;
        padding-right: 30px;
    }

 
}
/* 4.28 首页板块高度变化 */
.index_one .thumb i {
    height: 165px;
}
.indus_list a {
    height: 165px;
}
.work_swiper a {
    padding: 21px 20px 16px 0;
}
.index_five .thumb i {
    height: 170px;
}
.power_list .bg {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.power_list .t {
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.power_list .t {
    background-color: #F5F5F5;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.m_bottom_line {
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
}
/* product list */
.core_product .bg {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.core_product a {
    background-color: #F5F5F5;

}
.core_product .t {
    padding:15px 5px;
    text-align: center;
    background-color: #F5F5F5;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.core_product .t span {
    display: none !important;
}
@media (max-width:1279px) {
    .busi_swiper .swiper-slide {
        width: 20%;
    }
    .index_one .thumb i,.indus_list a {
        height: 145px;
        padding-top: 0;
    }



}
@media (max-width:767px) {
    .work_swiper a {
        padding: 21px 20px 14px 0;
    }
    .work_border .work_more {
        margin-top: 15px;
    }
    .index_five .thumb i {
        /* height: 150px; */
        height: auto;
    }
    .quality_img {
        height: 150px;
    }

}
.ggs{
    background-color: #ccc;
}