.number_font {
    font-family: YouSheBiaoTiHei-2, Source Han Sans SC, Source Han Sans, Arial, '黑体', sans-serif !important;
}


/* 滚动条 */

.scroll_container {
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #D7D7D7 transparent;
}


/* Webkit (Chrome, Safari) */

.scroll_container::-webkit-scrollbar {
    width: 8px;
    /* 设置滚动条的宽度 */
}

.scroll_container::-webkit-scrollbar-track {
    background: transparent;
    /* 滚动条轨道的背景 */
}

.scroll_container::-webkit-scrollbar-thumb {
    background: #D7D7D7;
    /* 滚动条的颜色 */
    border-radius: 4px;
    /* 圆角 */
}

.scroll_container::-webkit-scrollbar-thumb:hover {
    background: #B0B0B0;
    /* 鼠标悬停时的颜色 */
}

.page_container {
    padding-top: 86px;
    padding-bottom: 100px;
    background-color: var(--bgBlue02);
}


/* 按钮了解更多 */

.about_learn_more {
    /* padding: 12px 30px; */
    width: 11vw;
    min-width: 182px;
    max-width: 210px;
    height: 5.6vh;
    min-height: 38px;
    max-height: 52px;
    padding-right: 24px;
    background-color: var(--btnBlue);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 18px;
    border-bottom-right-radius: 32px;
    transition: all 0.4s ease;
    opacity: 1;
    position: relative;
}

.about_learn_more:hover {
    opacity: 0.8 !important;
    color: #fff;
}

.about_learn_more .arrow {
    background: #fff;
    border-radius: 50%;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 22px;
}

.about_learn_more .greater-than {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--btnBlue);
    border-right: 2px solid var(--btnBlue);
    transform: rotate(-45deg);
    margin-left: -4px;
}

.general_plate {
    width: 100%;
    height: 100vh;
}

.general_plate_title {
    color: #A81010;
    font-size: 36px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0em;
    line-height: 46px;
}

.general_plate_title span {
    background: linear-gradient(to right, #A81010, #E50101);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* 头部样式开始 */

.home_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px;
    background: #F8FCFF;
    height: 86px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 99;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.home_header.min {
    height: 66px;
}

.home_header.min .logo_box {
    width: 148px;
}

.home_header.blue {
    background: rgb(225 238 247 / 50%);
    border-bottom: 1px solid rgb(255 255 255 / 29%);
}

.home_header.white {
    background: rgb(248 252 255 / 50%);
    box-shadow: none;
}

.sub_navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 74px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.sub_navigation.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub_nav_content {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 0 1.7vw;
}

.sub_nav_item {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    transition: all 0.4s ease;
}

.sub_nav_item:hover {
    opacity: 0.8;
    color: #fff;
}

.logo_vehicle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 14vw;
    min-width: 200px;
}

.logo_vehicle .logo_box {
    width: 168px;
    min-width: 140px;
    transition: all 0.4s ease;
}

.logo_vehicle img {
    width: 100%
}

.logo_vehicle p:first-child {
    font-size: 32px;
    color: var(--colorBlack);
    line-height: 1.2;
}

.logo_vehicle p:last-child {
    font-size: 16px;
    color: var(--colorBlack);
    opacity: 0.5;
}

.nav_vehicle {
    flex: 1;
    display: flex;
    height: 100%;
    margin-left: 2.4vw;
}

.nav_ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav_ul .nav_normal {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.7vw;
    transition: all 0.4s ease;
    cursor: pointer;
}

.nav_normal.nav_normal_bars {
    padding: 0;
}

.nav_ul .nav_normal a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: var(--colorBlack);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.home_header .nav_normal.active.nav_normal_a {
    background: linear-gradient(to bottom, #BDD2EF, #BDD2EF, #BDD2EF, #EAF2FC);
}

.nav_ul .nav_normal a:hover,
.nav_ul .nav_normal.active a {
    color: var(--btnBlue);
}

.nav__options {
    position: static;
    z-index: 1;
}


/* .nav_normal_a::before {
    content: "";
    position: absolute;
    height: 300%;
    bottom: 0;
    background: #F8FCFF;
    z-index: -1;
    left: 0;
    right: 0;
} */


/* .home_header.blue .nav_normal_a::before {
    background: #cfe2f1;
} */

.nav_normal_a {
    translate: 0 calc(var(--lerp, 0) * 80%);
}

.header_right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header_right .search_box {
    cursor: pointer;
    width: 24px;
    height: 24px;
    line-height: 1;
}

.header_right .search_box a {
    width: 100%;
    height: 100%;
}

.header_right .search_box img {
    width: 100%;
    height: 100%;
}

.header_right .language_switch {
    cursor: pointer;
    width: 28px;
    height: 28px;
    line-height: 1;
}

.header_right .language_switch img {
    width: 100%;
}

.search_box {
    position: relative;
}

.search_box input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search_box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--colorgree02);
}

.language_switch {
    display: flex;
    gap: 10px;
}

.language_switch a {
    text-decoration: none;
    color: var(--colorBlack);
    font-size: 14px;
}

.language_switch a.active {
    color: var(--btnBlue);
    font-weight: bold;
}

.nav_normal .nav_bars_box {
    background: #fff;
    width: 75px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav_normal .nav_bars {
    position: relative;
    width: 22px;
    height: 18px;
    /* border-radius: 4px; */
    /* border-top: 3px solid var(--btnBlue); */
    /* border-bottom: 3px solid var(--btnBlue); */
}

.nav_normal .nav_bars .line1,
.nav_normal .nav_bars .line2,
.nav_normal .nav_bars .line3 {
    position: absolute;
    height: 2px;
    background: var(--btnBlue);
    border-radius: 2px;
    left: 0;
    width: 100%;
}

.nav_normal .nav_bars .line1 {
    top: 0;
}

.nav_normal .nav_bars .line2 {
    top: 50%;
    width: 80%;
    transform: translateY(-50%);
}

.nav_normal .nav_bars .line3 {
    bottom: 0;
}

.header_search_box {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: -6px;
    margin-right: 4px;
}

.header_right_line {
    opacity: 0.5;
}


/* 头部样式结束 */


/* 认证样式结束 */

.attestation_title {
    text-align: center;
    position: relative;
    font-size: 20px;
    color: #878FA6;
}

.attestation_title::before {
    content: " ";
    position: absolute;
    left: calc(50% - 100px);
    transform: translate(-100%, -50%);
    top: 50%;
    width: 25vw;
    height: 1px;
    opacity: 1;
    background: linear-gradient(270deg, #878FA6 0%, #FFFFFF 100%);
}

.attestation_title::after {
    content: " ";
    position: absolute;
    left: calc(50% + 100px);
    transform: translate(0, -50%);
    top: 50%;
    width: 25vw;
    height: 1px;
    opacity: 1;
    background: linear-gradient(90deg, #878FA6 0%, #FFFFFF 100%);
}


/* 证样式结束 */


/* 实力见证样式开始 */

.company_honor.material {
    background-image: none;
    padding: 0 40px 5.5vh;
    box-sizing: initial;
    background-color: #F5F7FB;
}

.company_honor .com_plan {
    max-width: 1280px;
    margin: auto;
}

.company_honor .swiper-slide {
    width: 285px !important;
    height: 270px !important;
}

.material_statistics {
    border-radius: 8px;
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
}

.statistics_box {
    display: inline-block;
    width: 100%;
    height: 180px;
    background: linear-gradient(180deg, #4B79F6 0%, #679EFF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.statistics_box .statistics_item {
    color: #fff;
    flex: 1;
}

.statistics_box .statistics_item_number {
    display: flex;
    align-items: start;
    justify-content: center;
}

.statistics_box .statistics_item .number {
    font-size: 44px;
}

.statistics_box .statistics_item .unit {
    margin-top: 12px;
}

.statistics_box .statistics_description {
    font-size: 18px;
    text-align: center;
}

.attestation {
    margin-top: 7.2vh;
}

.attestation_agency {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 2.5vw;
    margin: 30px auto 0;
}

.agency_item {
    width: 164px;
}

.agency_item img {
    width: 120px;
    height: 70px;
}

.agency_item p {
    font-size: 14px;
}


/* 实力见证样式结束 */


/* 导航样式开始 */

.group_breadcrumb {
    width: 16vw;
    padding: 0 2.45vw;
    display: flex;
    align-items: center;
    border-radius: 0px 40px 40px 0px;
    gap: 14px;
    min-width: 280px;
}

.group_breadcrumb a {
    cursor: pointer;
}

.group_breadcrumb a:hover {
    color: var(--btnBlue);
}

.group_nav_item {
    width: 8.3vw;
    height: 100%;
    max-width: 180px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 40px;
    color: var(--colorBlack);
    transition: all 0.4s ease;
    z-index: 1;
    cursor: pointer;
}

.group_nav_item:hover {
    box-shadow: 0 0 4px 2px rgba(5, 51, 159, 0.2);
}

.business .group_nav_item:hover {
    box-shadow: none;
}

.group_nav_item.active {
    color: #fff;
    opacity: 1
}

.group_active_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: all 0.4s ease;
    background: linear-gradient(180deg, #040661 2%, #05339F 100%);
    z-index: 0;
    width: 8.3vw;
    min-width: 100px;
    border-radius: 40px;
}

.secondary.fixed {
    position: fixed;
    left: 50%;
    top: 16vh;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
}

.group_breadcrumb,
.group_nav_example {
    height: 62px;
    min-height: 44px;
    background: #FFFFFF;
    border: 1px dashed #EFF2F8;
    box-shadow: 0px 3px 6px 0px rgba(0, 31, 112, 0.05);
    border-radius: 40px;
}

.group_breadcrumb.min {
    min-width: 294px;
}

.group_nav_example {
    padding: 6px;
}

.group_nav_list {
    border-radius: 40px;
    height: 100%;
    padding: 0;
    display: flex;
    position: relative;
}

.group_breadcrumb {
    width: 16vw;
    padding: 0 2.45vw;
    display: flex;
    align-items: center;
    border-radius: 0px 40px 40px 0px;
    gap: 14px;
    min-width: 200px;
}

.secondary_common {
    display: flex;
    z-index: 20;
    position: absolute;
    bottom: 0;
    left: 0;
    /* transform: translate(-50%, 50%); */
    width: 100%;
    margin-bottom: -32px;
}

.secondary_entity {
    width: 100%;
    padding: 0 5.8vw;
    position: relative;
}

.secondary_common .secondary {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
    min-width: auto;
    background: #FFFFFF;
    border: 1px dashed #EFF2F8;
    box-shadow: 0px 3px 6px 0px rgba(0, 31, 112, 0.05);
    border-radius: 40px;
    padding: 8px;
    height: 62px;
}

.secondary_common .arrow {
    display: none;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
    /* 使父元素包含子元素 */
}

.group_breadcrumb.c_b .current {
    color: var(--colorBlue)
}

.footer_content .swiper-slide {
    width: 178px !important;
    height: 66px !important;
}


/* 导航样式结束 */


/* 模块标题样式开始 */

.company_honor .honor_title {
    display: flex;
    justify-content: center;
}

.company_honor .honor_title_icon {
    height: 13.5vh;
}

.company_honor .honor_title_icon img {
    height: 100%;
}

.company_honor .honor_title_txt {
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    margin-left: -20px;
}

.company_honor .honor_title_txt .title_blue {
    color: var(--colorBlue);
}

.company_honor .honor_title_txt .title_point {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
}


/* 模块标题样式结束 */


/* 底部样式开始 */

.footer_container {
    background: linear-gradient(180deg, #E1EDF7 0%, #EFF8FF 100%);
    color: #fff;
}

.footer_info {
    display: flex;
    align-items: stretch;
    gap: 2vw;
    width: 100%;
    color: var(--colorBlack);
    padding: 44px 8vw;
}

.footer_info .line {
    width: 1px;
    background-color: #fff;
}

.footer_info .footer_left {
    display: flex;
    gap: 3.2vw;
    padding: 12px 0;
}

.contact_info {
    position: relative;
    padding: 24px 0;
}

.contact_title_english {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    font-weight: bold;
    line-height: 48px;
    text-transform: uppercase;
    letter-spacing: 0em;
    opacity: 0.25;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    background: linear-gradient(180deg, #3E7BB5 0%, rgba(62, 123, 181, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.contact_info .contact_title {
    font-size: 24px;
    margin-bottom: 60px;
    font-weight: bold;
}

.contact_info .contact_item {
    margin-bottom: 30px;
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact_info .contact_item span i {
    font-size: 16px;
    color: #6B7280;
    margin-right: 8px;
}

.contact_info .contact_item .explame {
    flex: 1;
}

.footer_copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BFCAD6;
    height: 44px;
    border-top: 1px solid var(--bgWhlte01);
}

.footer_info .contact_code .code_img {
    /* width: 260px;
    height: 260px; */
    width: 195px;
    height: 195px;
    border-radius: 14px;
    /* padding: 12px; */
}

.footer_info .contact_code .code_img img {
    width: 100%;
    height: 100%;
}

.footer_info .contact_code .code_title {
    margin-top: 7px;
    letter-spacing: 0px;
    text-align: center;
}

.footer_info .footer_top_right {
    display: flex;
    justify-content: space-between;
}

.footer_info .footer_top_right span {
    font-size: 16px;
    padding: 0 0.83vw;
    border-left: 2px solid var(--colorBlack);
    ;
    line-height: 1;
}

.footer_info .footer_right {
    flex: 1;
    display: flex;
}

.footer_info .footer_left_mobile {
    display: none;
}

.footer_info .footer_example {
    width: 25%;
}

.footer_info .footer_example .contact_title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.footer_info .footer_example .contact_title::before {
    content: " ";
    width: 2px;
    height: 16px;
    background-color: var(--colorBlack);
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer_info .footer_example .physical_business {
    transition: all 0.4s ease;
}

.footer_info .footer_example .physical_business a {
    display: block;
    opacity: 0.7;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* 底部样式结束 */

.about_key_metrics {
    margin-top: 48px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 6.7vh;
    justify-content: space-between;
}

.about_key_metrics .metric_item {
    width: 33%;
}

.about_key_metrics .metric_item:nth-of-type(1),
.about_key_metrics .metric_item:nth-of-type(2) {
    width: 50%;
}

.about_key_metrics .metric_label {
    font-size: 18px;
}

.about_key_metrics .metric_value {
    font-size: 50px;
    line-height: 72px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
}

.about_key_metrics .metric_value .number_title {
    background: linear-gradient(90deg, #0070FF 0%, #00AAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about_key_metrics .unit {
    color: var(--colorBlack);
    font-size: 18px;
    /* line-height: 30px; */
    font-weight: normal;
    margin-top: 8px;
}


/* 搜索样式开始 */

.search_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
}

.search_container.hide {
    display: none;
}

.search_entity {
    width: 100%;
    height: 100%;
}

.search_expalam {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    max-width: 1360px;
    padding: 0 80px;
}

.search_bar {
    display: flex;
    gap: 16px;
    align-items: center;
}

.search_input_wrapper {
    flex: 1;
    position: relative;
}

.search_input {
    width: 100%;
    height: 56px;
    padding: 0 60px 0 24px;
    border: 2px solid #e0e0e0;
    border-radius: 28px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search_input:focus {
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search_input::placeholder {
    color: #999;
}

.search_icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #667eea;
    transition: all 0.3s ease;
}

.search_icon:hover {
    transform: translateY(-50%) scale(1.1);
}

.search_btn {
    height: 56px;
    padding: 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #0053e5 100%);
    color: #fff;
    border: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.search_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.search_btn:active {
    transform: translateY(0);
}


/* 搜索样式结束 */