﻿@charset "utf-8";

:root {
    --main-color: #001793;
    --dark-color: #333;
    --light-color: #B4B4B4;
    --white-color: #FFFFFF;
    --red-color: red;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease1: cubic-bezier(.39, .575, .565, 1);
    --ease2: cubic-bezier(.25, .74, .22, .99);
    --ease3: cubic-bezier(.76, 0, .24, 1);
    --transition-custom2: all 0.8s ease-in-out;
}

img {
    max-width: 100%;
}

@keyframes jumpDown {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(5px)
    }
}

/* banner */
.banner {
    position: relative;
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 24px;
    height: calc(100vh - 110px);
    overflow: hidden;
}

.banner .index_banner {
    width: 100%;
    height: 100%;
}

.banner .swiper-slide {
    position: relative;
}

.banner .swiper-slide .img_pc,
.banner .swiper-slide .img_pc video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .swiper-slide .img_pc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index_banner .index_banner_swp {
    width: 100%;
    height: 100%;
}

.index_banner .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}


.index_banner .img_pc {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 2.5s ease-in-out;
}


.index_banner .img_pc video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.index_banner .img_m {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.index_banner_text {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.index_banner .index_banner_text .t1 {
    font-family: "OPPOSans M";
    color: var(--white-color);
    font-weight: 700;
    overflow: hidden;
    transition: all 1.2s .4s;
}

.index_banner .index_banner_text .t2 {
    font-family: "OPPOSans B";
    font-weight: 700;
    line-height: 1;
    color: var(--white-color);
    margin-top: 16px;
    overflow: hidden;
    transition: all 1.2s .6s;
}

.index_banner .index_banner_text .t3 {
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white-color);
    overflow: hidden;
    transition: all 1.2s .8s;
}

.index_banner .index_banner_text .more_n {
    overflow: hidden;
    transition: all 1.2s 1s;
}

.index_banner_text .more_n {
    overflow: hidden;
    margin-top: 48px;
}

.index_banner_text .t1 i,
.index_banner_text .t2 i,
.index_banner_text .t3 i {
    font-style: normal;
    line-height: inherit;
    display: block;
}

.index_banner_text .t4 {
    margin-top: 22px;
    overflow: hidden;
}

.ban_button {
    display: flex;
    justify-content: center;
}

.index_banner_text .t4 a:nth-child(2) {
    margin-left: 32px;
}

.index_banner_text .t4 .guide-company-item {
    max-width: 192px;
    display: flex;
    height: 60px;
    padding: 16px 10px 16px 22px;
    align-items: center;
    border: none;
    border-radius: 50px;
    background: var(--white-color);
}

.index_banner_text .t4 .company-info h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.index_banner_text .t4 .company-info {
    text-align: left;
}

.index_banner_text i {
    transform: translateY(200%);
    transition: all 1.6s cubic-bezier(.33, 1, .68, 1);
}

.index_banner_text .ban_button a {
    transform: translateY(200%);
    transition: all 1.6s cubic-bezier(.33, 1, .68, 1);
}

.index_banner .swiper-slide.swiper-slide-active i,
.index_banner .swiper-slide.swiper-slide-active .ban_button a {
    transform: translateY(0);
}

.index_ban_button {
    position: relative;
}

.index_banner_progress {
    position: relative;
    width: 48px;
    height: 48px;
    z-index: 8;
}

.index_banner_progress .progress .d {
    position: absolute;
    left: 0;
    height: 100%;
    background-color: var(--white-color);
}

.index_banner_progress .progress {
    display: none;
}

.index_banner_progress .i.active .progress {
    display: block;
}

.ban-pagination {
    position: relative;
    margin-right: 18px;
}

.ban-pagination span {
    margin: 0 6px;
    width: 18px;
    height: 18px;
    background: transparent;
    background-image: url(../images/cicle.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    opacity: 1;
}

.ban-pagination span.swiper-pagination-bullet-active {
    background-image: url(../images/cicle_hover.svg);
}

.ban_cicle {
    position: relative;
    width: 48px;
    height: 48px;
}

.ban_cicle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.index_banner_progress .i {
    width: 48px;
    height: 48px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}

.index_banner_progress .i svg {
    width: 100%;
    height: 100%;
}

.index_banner_progress .i svg {
    overflow: visible;
    transform: rotate(-90deg);
    fill: none;
    stroke: #fff;
}

.index_banner_progress .i svg circle {
    transform-origin: center;
    stroke: #fff;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    stroke-width: 4px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }

}

@keyframes wave {
    from {
        transform: translate(-50%, -60%);
    }

    to {
        transform: translate(-50%, -20%);
    }

}

.index_banner_bottom {
    position: absolute;
    left: 50%;
    bottom: 40px;

    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.index_banner_bottom .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 24px;
    width: 24px;
    z-index: 9;
}

.index_banner_bottom .play i {
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    text-align: center;
}

.index_banner_bottom .play i img {
    margin: 0 auto;
    display: inline-block;
}

.index_banner_bottom .suspend {
    display: none;
}


.ban-prev,
.ban-next {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.ban-prev {
    margin-right: 24px;
}

.my-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.ban-next {
    margin-left: 24px;
}

.ban_number {
    margin-left: 32px;
    width: auto;
    color: #FFF;
    font-family: Archivo;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}


@media (max-width: 767px) {
    .index_banner_text .t4 .company-info h3 {
        font-size: 16px;
    }

    .index_banner_text .t4 a:nth-child(2) {
        margin-left: 10px;
    }

    .index_banner_text .t4 .guide-company-item {
        max-width: 192px;
        height: auto;
        padding: 10px 8px 10px 15px;
    }

    .index_banner_bottom {
        bottom: 30px;
        width: 90%;
    }
}

/* 滑动效果 */
[data-reveal] {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s cubic-bezier(0.47, 0, 0.745, 0.715), transform 0.8s cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 产品解决方案 ==================== */
.solution-section {
    background-color: var(--white-color);
    padding-top: 112px;
    padding-bottom: 160px;
    overflow: hidden;
}

/* 标题区 */
.solution-header-top {
    text-align: center;
}

.solution-header-top .title {
    font-family: "OPPOSans M";
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.solution-header-top .title.blue {
    color: var(--main-color);
}

.solution-header-top .title.black {
    color: var(--dark-color);
}

.solution-header-top .des {
    margin-top: 16px;
    color: #B4B4B4;
    font-family: "OPPOSans M";
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

/* 内容区域 */
.solution-main {
    position: relative;
    margin-top: 44px;
    margin-left: 80px;
    margin-right: 80px;
    padding: 70px 80px;
    display: flex;
    justify-content: flex-end;
    border-radius: 24px;
    overflow: hidden;
    z-index: 9;
}

.solution-main .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 24px;
    overflow: hidden;
}

@media screen and (min-width:768px) {
    .solution-main .bg {

        clip-path: inset(0 var(--bg-clip, 0%) 0 round 24px);
        transition: clip-path 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

}

.solution-main .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-main .bg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(121deg, #1A6FDE 2.79%, rgba(8, 25, 109, 0.00) 45.81%);
}

.solution-main .my-container {
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

/* 左侧介绍 */
.solution-intro {
    position: absolute;
    left: 0;
    top: 0;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    height: 100%;
}

.solution-intro .title {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.intro-title {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.intro-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.intro-link {
    margin-top: 16px;
    transition: all 0.3s ease;
}

/* 右侧卡片网格 */
.solution-cards {
    width: 53%;
}

.solution-cards ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -5px;
}

.solution-cards ul li {
    padding: 5px;
    width: 50%;
}

.solution-card {
    display: flex;
    padding: 32px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 220px;
    border-radius: 16px;
    background: rgba(149, 156, 192, 0.60);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: background 0.4s ease;
}

/* 鼠标跟随光效层 */
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.18),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

/* 悬停时：蓝色背景 + 显示光效 */
.solution-card:hover {
    background: var(--main-color);
    backdrop-filter: none;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card .card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.solution-cards .card-title {
    margin-top: 10px;
    font-family: "OPPOSans M";
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.card-more {
    display: inline-flex;
    align-items: center;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    opacity: 0.6;
    transition: 0.3s ease;
}

.card-more svg {
    margin-left: 8px;
    width: 20px;
    height: 20px;
}

.solution-card:hover .card-more {
    opacity: 1;
}

/* ---- 产品解决方案响应式 ---- */
@media (max-width: 1365px) {
    .solution-main {
        margin-top: 44px;
        margin-left: 60px;
        margin-right: 60px;
        padding: 60px;
        padding-top: 100px;
    }

    .solution-intro {
        padding: 60px;
        width: 45%;
    }

    .solution-card {
        padding: 26px;
        /* height: 260px; */
    }


}

@media (max-width: 1279px) {

    .solution-card {
        padding: 20px;
        /* height: 240px; */
    }

}

@media (max-width: 991px) {
    .solution-section {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .solution-main .my-container {
        flex-flow: column;
        justify-content: flex-end;
    }

    .solution-main {
        margin-top: 44px;
        margin-left: 26px;
        margin-right: 26px;
        padding: 40px;
    }

    .intro-tag {
        margin-top: 30px;
    }

    .solution-cards {
        margin-top: 30px;
        width: 100%;
    }

    .solution-intro {
        position: relative;
        padding: 0;
        width: 100%;
    }

    .solution-card .card-icon {
        width: 50px;
        height: 50px;
    }

}

@media (max-width: 767px) {
    .solution-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .solution-header-top .title,
    .solution-header-top .des {
        text-align: left;
    }
    .solution-header-top .title,
    .solution-header-top .des {
        font-family: inherit;
        font-weight: 600;
    }
    .solution-main {
        margin-top: 44px;
        margin-left: 16px;
        margin-right: 16px;
        padding: 40px 25px;
    }

    .solution-cards ul li {
        width: 100%;
    }

    .solution-card .card-icon {
        width: 40px;
        height: 40px;
    }

    .solution-card {
        padding: 20px;
        height: 200px;
    }
    .solution-header-top .des {
    font-family: inherit;
    font-weight: 600;
}
}

@media (max-width: 414px) {}

/* ==================== Footer ==================== */
.main-footer {
    position: relative;
    background-color: #E7E7EA;
    padding-top: 50px;
    z-index: 99;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- 顶部：品牌标语 + 社交 ---- */
.footer-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 40px;
    z-index: 1;
}

.footer-top:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 1px;
    opacity: 0.2;
    z-index: -1;
}

.footer-brand .brand-line1 {
    font-family: "OPPOSans M";
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.footer-brand .brand-line2 {
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.5;
    font-family: "OPPOSans M";
}

.footer-social {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 60px;
}

.footer-social::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    opacity: 0.2;
    background-color: rgba(0, 0, 0, 0.40);
}

.social-title {
    /* font-family: "OPPOSans B"; */
    color: #666;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.social-icons {
    margin-top: 24px;
    display: flex;
    margin-right: -20px;
    margin-left: -20px;
}

.social-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}

/* ---- 二维码弹层 ---- */
.qr-popup {
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(12px);
    margin-bottom: 16px;
    opacity: 0;
    width: 140px;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.35s;
    z-index: 10;
}

.social-item:hover .qr-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.qr-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* 朝下箭头 */
.qr-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.qr-card img {
    width: 120px;
    border-radius: 8px;
    display: block;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--main-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-item span {
    margin-top: 16px;
    color: var(--dark-color);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

/* ---- 中间导航 ---- */
.footer-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 24px;
    z-index: 1;
}

.footer-nav:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 1px;
    opacity: 0.2;
    z-index: -1;
}

.footer-nav-main {
    flex: 1;
    display: flex;
    justify-content: space-between;
    max-width: 1204px;
}

.footer-nav-col h4 {
    /* font-family: "OPPOSans B"; */
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 18px;
}

.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-col ul li {
    padding-top: 8px;
}

.footer-nav-col ul li:first-child {
    padding-top: 0;
}

.footer-nav-col ul li a {
    color: #939393;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: color 0.25s;
}

.footer-nav-col ul li a:hover {
    color: var(--main-color);
}

/* ---- 右侧快捷按钮 ---- */
.footer-quick-links {
    display: flex;
    flex-flow: column;
    margin-left: 80px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 16px 20px;
    margin-bottom: 16px;
    width: 202px;
    border-radius: 50px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(to right, var(--main-color) 50%, var(--white-color) 50%);
    background-size: 200% 100%;
    background-position: right center;
    transition: background-position 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
        color 0.35s ease;
}

.quick-link-btn svg {
    width: 24px;
    height: 24px;
    color: #bbb;
    flex-shrink: 0;
    transition: color 0.35s ease;
}

.quick-link-btn:hover {
    background-position: left center;
    color: #fff;
}

.quick-link-btn:hover svg {
    color: #fff;
}

/* ---- 底部版权 ---- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 24px;
    color: #AAA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.footer-bottom a {
    color: #AAA;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    transition: color 0.25s;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-copyright span {
    color: #AAA;
    font-size: 16px;
    font-weight: 400;
}

.footer-copyright a {
    color: #AAA;
    text-decoration: none;
    transition: color 0.25s;
}

.footer-copyright a:hover {
    color: var(--main-color);
}

.footer-copyright .divider {
    color: #AAA;
    font-weight: 400;
    margin: 0 16px;
}

.footer-tech a:hover {
    color: var(--main-color);
}

/* ---- 回到顶部 ---- */
.rove_up {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 99;
}

.rove_up ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ---- 联系 & 留言按钮 ---- */
.rove-item {
    position: relative;
    margin-bottom: 10px;
}

.rove-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    min-width: 60px;
    width: 60px;
    padding: 0;
    background: var(--main-color);
    border-radius: 50px;
    cursor: pointer;
    transition: width 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
}

.rove-btn img,
.rove-btn svg {
    width: 24px;
    height: 24px;
    margin-left: 18px;
}

.rove-btn:hover {
    width: 132px;
}

/* 文字标签：嵌入按钮内，图标右侧，展开时滑入 */
.rove-label {
    margin-left: 8px;
    margin-right: 16px;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease 0.12s,
        transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.12s;
}

.rove-btn:hover .rove-label {
    opacity: 1;
    transform: translateX(0);
}

.rove_up .back_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rove_up .back_top a:hover {
    background-color: #2038b7;
}

.rove_up .back_top a i {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../images/top.svg);
    background-repeat: no-repeat;
}

/* ---- Footer 响应式 ---- */
@media (max-width: 1279px) {
    .footer-quick-links {
        margin-left: 50px;
    }

    .social-item span {
        font-size: 18px;
    }

    .footer-nav-col ul li a {
        font-size: 16px;
    }

}

@media (max-width: 1200px) {
    .footer-nav {
        flex-flow: column;
    }

    .footer-quick-links {
        margin-left: 0;
        margin-top: 30px;
        align-items: center;
        flex-flow: nowrap;
    }

    .quick-link-btn {
        margin-right: 20px;
    }

    .footer-quick-links a:last-child {
        margin-right: 0;
    }
}

@media (max-width:991px) {
    .footer-copyright .divider {
        margin: 0 4px;
    }

    .social-icons {
        /* margin-right: -10px; */
        margin-left: -10px;
        margin-right: 0;
    }

    .social-item {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-social {
        padding-left: 30px;
    }
}

@media (max-width:767px) {
    .footer-top {
        flex-flow: column;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .qr-popup {
        width: 125px;
    }

    .qr-card {
        padding: 4px;
    }

    .qr-popup {
        margin-left: 16px;
    }

    .qr-card::after {
        margin-left: -16px;
    }

    .footer-social {
        padding-left: 0;
        padding-top: 30px;
    }

    .social-title {
        font-size: 18px;
        font-family: inherit;
        font-weight: 700;
    }

    .footer-social::before {
        display: none;
    }

    .social-icons {
        margin-right: -10px;
        margin-left: -10px;
        margin-top: 10px;
    }

    .social-item {
        margin-left: 10px;
        margin-right: 10px;
    }

    .social-icon {
        padding: 12px;
        width: 50px;
        height: 50px;
    }

    .social-item span {
        margin-top: 10px;
        font-size: 16px;
    }

    .footer-nav {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-nav-main {
        flex-wrap: wrap;
    }

    .footer-nav-col {
        width: 50%;
    }

    .footer-nav-col ul {
        display: none;
    }

    .footer-nav-col h4 {
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 700;
        font-family: inherit;
    }

    .footer-quick-links {
        align-items: flex-start;
        flex-wrap: wrap;
        margin-left: -5px;
        margin-right: -5px;
        margin-top: 20px;
    }

    .quick-link-btn {
        margin-right: 0;
        padding: 14px 14px 14px 18px;
        width: calc(50% - 10px);
        margin-left: 5px;
        margin-right: 5px;
        font-size: 16px;
    }

    .footer-quick-links a:first-child {
        /* display: none !important; */
    }

    .rove_up {
        right: 6px;
        bottom: 20px;
    }

    .rove-btn {
        height: 50px;
        min-width: 50px;
        width: 50px;
    }

    .rove-btn img,
    .rove-btn svg {
        margin-left: 13px;
    }

    .rove_up .back_top a {
        width: 50px;
        height: 50px;
    }
.footer-brand .brand-line1,
.footer-brand .brand-line2 {
    font-family: inherit;
    font-weight: 600;
}

}
@media (max-width:359px) {
    .quick-link-btn {
        padding: 14px 10px 14px 14px;
        width: calc(50% - 8px);
        margin-left: 4px;
        margin-right:4px;
        font-size: 14px;
    }

}    

/* ===== 探索更多卡片 ===== */
.explore-section {
    padding: 95px 0 142px 0;
    overflow: hidden;
}

.explore-cards {
    padding-top: 64px;
    width: 100%;
}

.explore-cards ul {
    display: flex;
    align-items: stretch;
    margin-left: -16px;
    margin-right: -16px;
}

.explore-cards ul li {
    width: 33.33%;
    padding-left: 16px;
    padding-right: 16px;
}

.explore-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 32px;
    height: 100%;
    min-height: 228px;
    border-radius: 24px;
    background: #F2F2F3;
    overflow: hidden;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

/* 悬停：蓝色背景 + 光效 */
.explore-card:hover {
    background: var(--main-color);
    transform: translateY(-4px);
}

.explore-card:hover::before {
    opacity: 1;
}

/* 卡片内容区（图标 + 文案） */
.explore-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.explore-card-icon {
    width: 48px;
    height: 48px;
    position: relative;
    flex-shrink: 0;
}

.explore-card-icon img {
    display: block;
}

/* 默认显示第一张图标，隐藏 hover 图标 */
.explore-card-icon img:first-child {
    opacity: 1;
    transition: opacity 0.35s ease;
}

.explore-card-icon img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* 悬停时切换图标 */
.explore-card:hover .explore-card-icon img:first-child {
    opacity: 0;
}

.explore-card:hover .explore-card-icon img:last-child {
    opacity: 1;
}

/* 投资者关系图标 - 复合SVG拼接 */
.investor-icon {
    position: relative;
}

.investor-icon img {
    position: absolute;
}

.explore-card-info {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.explore-card-info h3 {
    /* font-family: "OPPOSans B"; */
    color: #000;
    font-weight: 700;
    transition: color 0.35s ease;
}

.explore-card-info p {
    margin-top: 4px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    transition: color 0.35s ease;
}

.explore-card:hover .explore-card-info h3 {
    color: #fff;
}

.explore-card:hover .explore-card-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* 右上角圆形箭头按钮 */
.explore-card-arrow {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.35s ease;
}

.explore-card-arrow svg {
    transition: all 0.35s ease;
}

.explore-card-arrow svg path {
    transition: stroke 0.35s ease;
}

.explore-card:hover .explore-card-arrow svg {
    transform: rotate(45deg);
}

.explore-card:hover .explore-card-arrow svg path {
    stroke: var(--main-color);
}

/* 响应式 */
@media (max-width: 991px) {
    .explore-section {
        padding: 80px 0 90px 0;
    }

    .explore-card {
        padding: 26px;
    }

    .explore-card-arrow {
        right: 26px;
        top: 26px;
    }

    .explore-card-info p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .explore-section {
        padding: 50px 0 60px 0;
    }

    .explore-cards {
        padding-top: 30px;
    }

    .explore-cards ul {
        flex-wrap: wrap;
    }

    .explore-cards ul li {
        padding-bottom: 16px;
        width: 100%;
    }

    .explore-card {
        padding: 26px 20px;
        min-height: inherit;
    }

    .explore-card-arrow {
        right: 20px;
        top: 20px;
        width: 36px;
        height: 36px;
    }

    .explore-card-icon {
        width: 38px;
        height: 38px;
    }

    .explore-card-info h3 {
        font-family: inherit;
        font-weight: 700;
    }
}

/* ==================== 走进2026世界杯官网入口 ==================== */
.about-section {
    position: relative;
    margin-top: 180px;
    z-index: 1;
}

.about-section .overlay {
    position: sticky;
    position: -webkit-sticky;
    top: 150px;
    z-index: 7;
    --crop: 0%;
}

.about-section .bg-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.about-section .overlay .title {
    height: 100%;
    width: 100%;
}

.about-section .overlay .title:not(.position) {
    position: relative;
    z-index: 1;
}

.about-section .overlay .title.position {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(100% 0 0 0);
}

.about-section .img {
    position: relative;
    margin-top: 100px;
    margin-left: 80px;
    margin-right: 80px;
    width: calc(100% - 160px);
    height: 820px;
    border-radius: 12px;
    z-index: 1;
    overflow: hidden;
}

.about-section .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: #000;
}

.about-section .img .mask {
    position: relative;
    margin: 0 auto;
    width: 80%;
    height: 100%;
}

.about-section .img .mask .left {
    position: absolute;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    text-align: right;
}

.about-section .img .mask .right {
    position: absolute;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    text-align: left;
}

.about-section .img .video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    z-index: -1;
}

.about-section .img .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_big_t {
    color: var(--main-color);
    text-align: center;
    font-family: 'OPPOSans M';
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.about_small_t {
    margin-top: 16px;
    text-align: center;
    color: #B4B4B4;
    font-family: 'OPPOSans M';
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.about-section .text {
    margin: 0 auto;
    margin-top: 24px;
    max-width: 768px;
    color: #666;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.about-section .overlay .title.position .about_big_t {
    color: var(--white-color);
}

.about-section .overlay .title.position .about_small_t {
    color: var(--white-color);
}

.about-section .overlay .title.position .text {
    color: var(--white-color);
}

.about-section .overlay.top {
    position: relative;
    top: 375px;
}

.about_bottom {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
}


/* 底部数据条 */
.media-stats-row {
    position: relative;
    width: 100%;
}

.media-stats {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1488px;
    margin: 0 auto;
}

.media-stats .line {
    margin-left: 30px;
    margin-right: 30px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.80);
}

.media-stats .line:first-child {
    margin-left: 0;
}

.media-stats .line:last-child {
    margin-right: 0;
}

.stat-item {
    width: 25%;
}

.stat-value {
    display: flex;
    align-items: flex-end;
}

.stat-num {
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
}

.stat-unit {
    margin-left: 8px;
    font-size: 24px;
    font-weight: 400;
    color: var(--white-color);
}

.stat-label {
    margin-top: 60px;
    color: var(--white-color);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}



@media (min-width:768px) {

    /* 底部数据条 */
    .media-stats-row .alanUp {
        -webkit-transition: opacity 1.2s var(--ease2), -webkit-transform 1.2s var(--ease2);
        transition: opacity 1.2s var(--ease2), -webkit-transform 1.2s var(--ease2);
        transition: opacity 1.2s var(--ease2), transform 1.2s var(--ease2);
        transition: opacity 1.2s var(--ease2), transform 1.2s var(--ease2), -webkit-transform 1.2s var(--ease2);
        opacity: 0;
    }

    /* 左侧第1个：左下方进入 */
    .media-stats .alanUp:nth-child(2) {
        -webkit-transform: translate3d(-80px, 60px, 0);
        transform: translate3d(-80px, 60px, 0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    /* 左侧第2个：左下方进入 */
    .media-stats .alanUp:nth-child(4) {
        -webkit-transform: translate3d(-80px, 60px, 0);
        transform: translate3d(-80px, 60px, 0);
        -webkit-transition-delay: .08s;
        transition-delay: .08s;
    }

    /* 右侧第1个：右下方进入 */
    .media-stats .alanUp:nth-child(6) {
        -webkit-transform: translate3d(80px, 60px, 0);
        transform: translate3d(80px, 60px, 0);
        -webkit-transition-delay: .16s;
        transition-delay: .16s;
    }

    /* 右侧第2个：右下方进入 */
    .media-stats .alanUp:nth-child(8) {
        -webkit-transform: translate3d(80px, 60px, 0);
        transform: translate3d(80px, 60px, 0);
        -webkit-transition-delay: .24s;
        transition-delay: .24s;
    }

    .media-stats-row.active .alanUp {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width:1366px) {
    .about-section .img {
        margin-left: 60px;
        margin-right: 60px;
        width: calc(100% - 120px);
    }

}

@media (max-width:1279px) {
    .stat-label {
        font-size: 18px;
    }

    .about-section .img {
        height: 720px;
    }

    .media-stats .line {
        margin-left: 20px;
        margin-right: 10px;
    }
}

@media (max-width:991px) {
    .about-section .img {
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
        height: 620px;
    }

    .stat-label {
        margin-top: 30px;
    }

    .stat-num {
        font-size: 50px;
    }

}

@media (max-width:767px) {
    .about-section {
        margin-top: 50px;
    }

    .about-section .img {
        margin-top: 30px;
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
        height: auto;
    }

    .about-section .img::before,
    .about-section .img .mask {
        display: none !important;
    }

    .about-section .overlay {
        position: relative;
        top: inherit;
    }

    .about_bottom {
        position: relative;
        bottom: inherit;
    }

    .about_bottom>.my-container {
        padding: 0;
    }

    .about-section .img .video {
        position: relative;
        height: auto;
    }

    .about-section .overlay.top {
        top: 0;
    }

    .about_big_t,
    .about_small_t,
    .about-section .text {
        text-align: left;
    }
    .about_big_t,
    .about_small_t{
          font-family: inherit;
        font-weight: 600;
    }
    .media-stats {
        flex-wrap: wrap;
    }

    .stat-item {
        padding-bottom: 30px;
        width: 50%;
    }

    .stat-num {
        font-size: 36px;
    }

    .stat-unit {
        margin-left: 4px;
        font-size: 20px;
        color: #999;
    }

    .stat-label {
        margin-top: 16px;
        color: #666;
        font-size: 16px;
        max-width: 140px;
        line-height: 1.5;
    }

    .media-stats .line {
        display: none;
    }

    .stat-num {
        color: var(--main-color);
    }

}

/* ==================== 2026世界杯官网入口视界 ==================== */
.vision-section {
    position: relative;
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 100px;
    padding-top: 80px;
    padding-bottom: 70px;
    z-index: 1;
    overflow: hidden;
}

.vision-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dbsj_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    z-index: -1;
}

.vision-title {
    text-align: center;
    font-family: "OPPOSans M";
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 68px;
}

/* 轮播容器 */
.vision-swiper-wrap {
    position: relative;
}

.vision-swiper {
    overflow: visible;
}

.vision-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

/* 卡片 */
.vision-card {
    padding: 24px;
    display: block;
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--white-color);
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, background-color 0.35s ease;
}

/* 卡片图片区 */
.vision-card-img {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.vision-card-img .lable {
    position: absolute;
    left: 4px;
    top: 4px;
    padding: 6px 12px;

    border-radius: 6px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.vision-card-img img:first-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-card-img img {
    width: 100%;
    height: 100%;
}

.vision-card:hover .vision-card-img img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* 卡片正文 */
.vision-card-body {
    padding-top: 24px;
}

.vision-card-title {
    font-weight: 400;
    color: var(--dark-color);
    height: 72px;
    font-family: 'OPPOSans B';
    line-height: 36px;
    overflow: hidden;
    transition: color 0.35s ease;
    margin-bottom: 16px;
}

.vision-card:hover .vision-card-title {
    color: var(--main-color);
}

.vision-card-desc {
    margin-bottom: 26px;
    height: 52px;
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    overflow: hidden;
}

/* 卡片底部：日期 + 箭头 */
.vision-card-footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
}

.vision-card-date {
    font-size: 16px;
    font-weight: 400;
    color: #8E8E8E;
}

.vision-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white-color);
    transition: background 0.35s ease, transform 0.35s ease;
}

.vision-card-arrow svg path {
    transition: stroke 0.35s ease;
}

.vision-card:hover {
    border-color: var(--white-color);
    background-color: var(--white-color);
}

.vision-card:hover .vision-card-arrow {
    background: var(--main-color);
    transform: rotate(45deg);
}

.vision-card:hover .vision-card-arrow svg path {
    stroke: #fff;
}

/* 导航按钮 */
.vision-prev,
.vision-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background-color: var(--white-color);
    box-shadow: 0 0 34px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 9;
    transition: all 0.3s ease;
}

.vision-prev {
    left: 0;
}

.vision-next {
    right: 0;
}

.vision-prev svg {
    transform: rotate(180deg);
}


@media (min-width: 768px) {

    .vision-prev:hover,
    .vision-next:hover {
        background: var(--main-color);
        border-color: var(--main-color);
    }

    .vision-prev:hover svg path,
    .vision-next:hover svg path {
        stroke: var(--white-color);
    }

    .vision-prev.swiper-button-disabled,
    .vision-next.swiper-button-disabled {
        opacity: 0;
        cursor: default;
        pointer-events: none;
    }
}

@media (max-width: 1440px) {

    .vision-prev,
    .vision-next {
        width: 80px;
        height: 80px;
    }

}

@media (max-width: 1366px) {
    .vision-section {
        margin-left: 60px;
        margin-right: 60px;
    }

    .vision-prev,
    .vision-next {
        width: 65px;
        height: 65px;
    }

    .vision-nav svg {
        width: 38px;
        height: 38px;
    }

}



@media (max-width: 991px) {
    .vision-section {
        margin-left: 30px;
        margin-right: 30px;
    }

    .vision-prev,
    .vision-next {
        width: 56px;
        height: 56px;
    }

    .vision-nav svg {
        width: 32px;
        height: 32px;
    }

    .vision-card {
        padding: 24px 20px;
    }

}

@media (max-width: 767px) {
    .vision-section {
        padding-top: 60px;
        padding-bottom: 50px;
        margin-top: 50px;
        margin-left: 16px;
        margin-right: 16px;
    }

    .vision-title {
        margin-bottom: 35px;
        font-family: inherit;
        font-weight: 600;
    }

    .vision-card {
        padding: 16px;
        border-radius: 16px;
    }

    .vision-card-title {
        height: 60px;
        line-height: 30px;
        font-family: inherit;
        font-weight: 700;
    }

    .vision-card-desc {
        margin-bottom: 0;
    }

    .vision-card-arrow {
        padding: 6px;
        width: 36px;
        height: 36px;
    }

    .vision-nav {
        position: relative;
        margin-top: 30px;
        padding-bottom: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vision-prev {
        /* left:50%;
        transform: translateX(-50%);
        margin-left: -40px; */
    }

    .vision-next {
        /* right:50%;
        transform: translateX(50%);
        margin-right: -40px; */
    }

    .vision-prev,
    .vision-next {
        position: relative;
        left: inherit;
        right: inherit;
        bottom: 0;
        top: inherit;
        transform: inherit;
        width: 44px;
        height: 44px;
        margin: 0 4px;
    }

    .vision-prev svg,
    .vision-next svg {
        width: 24px;
        height: 24px;
    }

}

/* 行业解决方案 */
.industry-section {
    padding-top: 96px;
    padding-bottom: 70px;
    background-color: #F2F2F3;
    overflow: hidden;
}

/* 行业轮播容器 */
.industry-swiper-wrap {
    margin-top: 100px;
}

.industry-swiper {
    overflow: visible;
}

.industry-swiper .swiper-slide {
    width: 100%;
    height: auto;
}

/* 卡片 */
.industry-card {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.industry-card-img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.industry-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-card-img img {
    transform: scale(1.05);
}

.industry-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 16px 10px;
    width: calc(100% - 32px);
    background: rgba(128, 128, 128, 0.40);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.industry-card-label span {
    color: #fff;
    font-family: "OPPOSans B";
    font-weight: 400;
}

.industry-card:hover .industry-card-label {
    opacity: 0;
}

/* ===== hover 展开层 ===== */
.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-card-overlay {
    opacity: 1;
}

/* 蓝色渐变底 */
.industry-overlay-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 23, 147, 0.00) 0%, #001793 100%);
}

/* 左下文字区 */
.industry-overlay-content {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    padding: 26px;
    opacity: 0;
    transition: bottom 0.4s ease, opacity .3s;
}

.industry-overlay-title {
    display: flex;
    margin-bottom: 8px;
}

.industry-overlay-title span {
    color: var(--white-color);
    font-family: "OPPOSans B";
    font-weight: 400;
    line-height: 1.5;
}

.industry-overlay-desc {
    margin-top: 8px;
    color: var(--white-color);
    opacity: 0.80;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    min-height: 140px;
}

/* 右上角装饰 + 按钮 */
.industry-overlay-corner {
    position: absolute;
    right: 0;
    top: 0;
    width: 114px;
    height: 118px;
    z-index: 1;
}

.industry-corner-deco {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 114px;
    height: 118px;
    object-fit: cover;
    transition: right .3s cubic-bezier(.55, .09, .68, .53) 0s, top .3s cubic-bezier(.55, .09, .68, .53) 0s, height .3s cubic-bezier(.55, .09, .68, .53) 0s;
}

.industry-corner-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 56px;
    height: 56px;
    background: var(--main-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translate(50%, -50%);
    transition: transform .2s cubic-bezier(.55, .09, .68, .53) 0s, opacity .2s cubic-bezier(.55, .09, .68, .53) 0s;
}

.industry-corner-btn img {
    display: block;
}

.industry-card:hover .industry-corner-btn {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform .3s cubic-bezier(.55, .09, .68, .53) 0s, opacity .3s cubic-bezier(.55, .09, .68, .53) 0s;
}

.industry-card:hover .industry-corner-deco {
    right: 0;
    top: 0;
}

/* 底部 CTA */
.industry-overlay-cta {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.industry-overlay-cta span {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.industry-overlay-cta img {
    margin-left: 8px;
    display: block;
}

.industry-card:hover .industry-overlay-content {
    bottom: 0;
    opacity: 1;
}

/* ===== 点状进度指示器 ===== */
.industry-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
}

/* 页码 */
.industry-page-num {
    display: flex;
    align-items: baseline;
    flex-shrink: 0;
    width: 65px;
}

.industry-current {
    font-size: 26px;
    font-weight: 600;
    color: var(--main-color);
    line-height: 1;
}

.industry-total {
    font-size: 16px;
    color: #979797;
    font-weight: 400;
}

/* 点状进度条 */
.indus-pagination span {
    position: relative;
    width: 100px;
    height: 30px;
    background: transparent;
    opacity: 1;
    transition: all 0.4s;
}

.indus-pagination span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 12px;
    background-image: url(../images/indus_line01.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: height 1.2s;
}

.indus-pagination span:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--main-color);
    opacity: 0;
}

.indus-pagination span.swiper-pagination-bullet-active::before {
    background-image: url(../images/indus_line02.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.indus-pagination span.swiper-pagination-bullet-active:after {
    opacity: 1;
}

/* 导航按钮 */
.industry-nav {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.industry-prev,
.industry-next {
    width: 56px;
    height: 56px;
    border-radius: 40px;
    border: none;
    background: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.industry-prev svg path,
.industry-next svg path {
    transition: stroke 0.3s ease;
}

.industry-prev:hover,
.industry-next:hover {
    background: var(--main-color);
}

.industry-prev:hover svg path,
.industry-next:hover svg path {
    stroke: #fff;
}

.industry-prev.swiper-button-disabled,
.industry-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1279px) {
    .indus-pagination span {
        width: 80px;
    }

}

@media (max-width: 991px) {

    .industry-swiper-wrap {
        margin-top: 80px;
    }

    .industry-pagination {
        padding: 0 16px;
        margin-top: 40px;
    }

    .industry-page-num {
        width: 55px;
    }

    .industry-current {
        font-size: 22px;
    }

    .indus-pagination span {
        width: 60px;
    }

    .industry-prev,
    .industry-next {
        width: 44px;
        height: 44px;
    }

    .industry-prev svg,
    .industry-next svg {
        width: 24px;
        height: 24px;
    }

    .industry-overlay-title span,
    .industry-card-label span {
        font-family: inherit;
        font-weight: 700;
    }
}

@media (max-width:767px) {
    .industry-swiper-wrap {
        margin-top: 50px;
    }

    .industry-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .indus-pagination {
        display: none;
    }

    .indus-pagination span {
        width: 38px;
        height: 20px;
    }

    .indus-pagination span::before {
        background-size: cover;
    }

}

/* page banner */

.page_ban {
    position: relative;
    padding-bottom: 250px;
    height: 800px;
    z-index: 1;
    overflow: hidden;
}

.page_ban .black-overlay {
    /* position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background-color: #000; */
}

.page_ban .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page_ban .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_ban .page_ban_text {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 110px;
    width: 100%;
    height: 100%;
}

.page_ban_text .h2 {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
}

.page_ban_text .icon {
    padding-top: 24px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.page_ban .page_bottom {
    position: absolute;
    left: 0;
    bottom: 40px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    z-index: 1;
}

.page_bottom>.my-container {
    display: flex;
    justify-content: flex-end;
}

.location {
    display: flex;
    align-items: center;
}

.location a {
    line-height: 26px;
}

.location a:first-child {
    width: 16px;
    height: 16px;
    background-image: url(../images/home-two.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    font-size: 0;
}

.location a:nth-child(n + 2) {
    margin-left: 10px;
    padding-left: 12px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 400;
    background-image: url(../images/page_jt.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 5px 14px;
}

.location a:nth-child(2) {
    background-image: none;
    margin-left: 0;
}

.location a:nth-child(n + 2):hover {
    color: var(--white-color);
}

.n_content {
    margin-top: -250px;
    padding-bottom: 0;
    /* overflow: hidden; */
}


@media screen and (max-width: 767px) {
    .page_ban {
        padding-bottom: 100px;
        height: 410px;
    }

    .page_ban_text .icon {
        padding-top: 16px;
    }

    .page_ban .page_bottom {
        bottom: -20px;
        display: none !important;
    }

    .n_content {
        margin-top: -120px;
    }

    .page_ban .page_ban_text {
        padding-bottom: 80px;
    }


}



/* ===== 推荐新闻 swiper ===== */
.n_recommend_section {
    padding: 60px 0 80px;
    overflow: hidden;
}

.n_rec_heading {
    color: #333;
    margin-bottom: 40px;
}

.n_recommend_wrap {
    position: relative;
}

.n_recommend_swiper {
    overflow: visible;
    padding: 0 calc((100vw - 1058px) / 2);
}

.n_recommend_swiper .swiper-slide {
    height: auto;
}

.n_recommend_swiper .swiper-slide-active {
    opacity: 1;
}

.n_recommend_swiper .new-prev,
.n_recommend_swiper .new-next {
    transition: opacity .3s;
}

.n_recommend_swiper .new-prev {
    left: 35px;
    opacity: 0;
}

.n_recommend_swiper .new-next {
    right: 35px;
    opacity: 0;
}

.n_recommend_swiper:hover .new-prev,
.n_recommend_swiper:hover .new-next {
    opacity: 1;
}

/* 卡片 */
.n_rec_card {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 77px 40px;
    overflow: hidden;
}

.n_rec_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 24px;
    border: 1px solid #FFF;
    background: linear-gradient(212deg, rgba(255, 255, 255, 0.64) 1.82%, rgba(255, 255, 255, 0.80) 15.1%, rgba(242, 242, 243, 0.80) 65.8%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s;
    z-index: -1;
}

.n_rec_text {
    width: 370px;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
    flex-flow: column;
}

.n_rec_tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.80);
    border-radius: 6px;
    color: #666;
    font-size: 16px;
    line-height: 26px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.n_rec_title {
    margin-top: 18px;
    height: 72px;
    font-weight: 700;
    color: #333;
    line-height: 36px;
}

.n_rec_desc {
    margin-top: 16px;
    font-size: 16px;
    color: #666;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.n_rec_footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.n_rec_date {
    font-size: 16px;
    color: #8E8E8E;
}

.n_rec_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
}

.n_rec_arrow svg {
    transition: transform .4s;
}

.n_rec_img {
    position: relative;
    flex: 1;
    max-width: 556px;
    border-radius: 16px;
    overflow: hidden;
}

.n_rec_img img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}

.n_rec_img img {
    width: 100%;
    height: 100%;
    display: block;
}

.n_rec_card:hover:before {
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: linear-gradient(212deg, rgba(0, 23, 147, 0.80) 1.82%, rgba(0, 23, 147, 0.80) 15.1%, rgba(0, 23, 147, 0.80) 65.8%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.n_rec_card:hover .n_rec_title {
    color: var(--white-color);
}

.n_rec_card:hover .n_rec_desc {
    color: rgba(255, 255, 255, 0.80);
}

.n_rec_card:hover .n_rec_date {
    color: var(--white-color);
}

.n_rec_card:hover .n_rec_arrow {
    background-color: var(--white-color);
}

.n_rec_card:hover .n_rec_arrow svg {
    transform: rotate(45deg);
}

.n_rec_card:hover .n_rec_arrow svg path {
    stroke: var(--main-color);
}

.n_rec_card:hover .n_rec_img img:first-child {
    transform: scale(1.05);
}

/* 分页 */
.n_rec_pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.n_rec_pagination .indus-pagination {
    width: auto;
}


/* ===== 新闻列表 tab + 卡片（new.html）===== */
.n_news_list {
    padding-bottom: 80px;
}

/* tabbar 容器：tabs + 搜索同行 */
.n_news_tabbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.n_news_tabbar .n_news_tabs {
    border-bottom: none;
    margin-bottom: 0;
}

/* tab 切换栏 */
.n_news_tabs {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.n_news_tab {
    position: relative;
    margin-right: 40px;
    padding: 0 0 40px;
    font-size: 26px;
    font-weight: 400;
    color: var(--dark-color);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .3s;
}

.n_news_tab.active {
    color: var(--main-color);
}

.n_news_tab::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s;
}

.n_news_tab.active::after {
    transform: scaleX(1);
}

.n_news_tab:hover {
    color: var(--main-color);
}

/* 搜索栏 */
.n_news_search {
    position: relative;
    width: 318px;
    height: 54px;
    margin-bottom: 18px;
}

.n_news_search_input {
    width: 100%;
    height: 100%;
    padding: 0 105px 0 24px;
    font-size: 16px;
    color: var(--dark-color);
    background: #F4F4F5;
    border: none;
    border-radius: 50px;
    outline: none;
    transition: background .3s;
}

.n_news_search_input::placeholder {
    color: #666;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    font-family: "OPPOSans R";
}

.n_news_search_input::-moz-placeholder {
    color: #666;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    font-family: "OPPOSans R";
}

.n_news_search_input::-webkit-input-placeholder {
    color: #666;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    font-family: "OPPOSans R";
}

.n_news_search_input:-ms-input-placeholder {
    color: #666;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    font-family: "OPPOSans R";
}

.n_news_search_btn {
    position: absolute;
    right: 7px;
    top: 7px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background .3s;
}

.n_news_search_btn:hover {
    background: var(--main-color);
}

.n_news_search_clear {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color .3s;
}


/* 空状态 */
.n_news_empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    font-size: 16px;
    color: #999;
}

/* 新闻卡片网格 */
.n_news_grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

/* 单张新闻卡片 */
.n_news_grid li {
    padding: 12px;
    width: 25%;
}

.n_news_grid .vision-card {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(242, 242, 243, 0.80);
    backdrop-filter: blur(12px);
}

.n_news_grid .vision-card-body {
    position: relative;
    margin-top: 24px;
    padding-top: 44px;
    padding-bottom: 18px;
    height: 124px;
    transition: padding .3s;
}

.n_news_grid .vision-card-body .vision-card-desc {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 0;
    opacity: 0;
    transition: opacity .4s;
}

.n_news_grid .vision-card-title {
    height: 64px;
    line-height: 32px;
    font-family: inherit;
    font-weight: 700;
}

.n_news_grid .lable {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(8px);
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.n_news_grid .vision-card:hover {
    background-color: var(--main-color);
}

.n_news_grid .vision-card:hover .vision-card-date {
    color: rgba(255, 255, 255, 0.70);

}

.n_news_grid .vision-card:hover .vision-card-arrow {
    background: rgba(255, 255, 255, 0.70);
}

.n_news_grid .vision-card:hover .vision-card-arrow svg path {
    stroke: var(--main-color);
}

.n_news_grid a:hover .vision-card-body {
    padding-top: 0;
}

.n_news_grid a:hover .vision-card-title {
    color: var(--white-color);
}

.n_news_grid a:hover .lable {
    opacity: 0;
}

.n_news_grid a:hover .vision-card-body .vision-card-desc {
    opacity: 1;
}

/* 加载更多 */
.n_news_more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.n_news_more_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 48px;
    font-size: 16px;
    color: var(--main-color);
    background-color: #fff;
    border: 1px solid var(--main-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all .3s;
}

.n_news_more_btn:hover {
    color: #fff;
    background-color: var(--main-color);
}

/* 响应式 */
@media (max-width: 1365px) {
    .n_recommend_swiper {
        padding: 0 calc((100vw - 950px) / 2);
    }
}

@media (max-width: 1279px) {
    .n_recommend_swiper {
        padding: 0 calc((100vw - 850px) / 2);
    }

    .n_rec_text {
        width: 300px;
    }

    .n_rec_desc {
        height: 52px;
        -webkit-line-clamp: 2;
    }

    .n_news_search {
        width: 260px;
    }

    .n_news_search_input {
        padding: 0 78px 0 20px;
    }

    .n_news_search_btn {
        width: 36px;
        height: 36px;
        right: 6px;
        top: 6px;
    }

    .n_news_search_btn svg {
        width: 22px;
        height: 22px;
    }

    .n_news_search_clear {
        right: 46px;
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    .n_news_tab {
        margin-right: 30px;
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    .n_rec_card {
        padding: 50px 30px;
    }

    .n_rec_text {
        width: 250px;
    }

    .n_rec_img {
        min-height: 270px;
    }

    .n_news_grid li {
        width: 33.33%;
    }
}

@media (max-width: 991px) {

    /*     
      .n_recommend_swiper {
        padding: 0 calc((100vw - 750px) / 2);
    } */
    .n_rec_text {
        width: 200px;
    }

    .n_rec_img {
        min-height: 257px;
    }

    .n_news_tab {
        margin-right: 20px;
        font-size: 22px;
    }

    .n_news_search {
        margin-bottom: 14px;
    }

    .n_news_grid li {
        width: 33.33%;
    }

}

@media (max-width: 767px) {
    .n_recommend_section {
        padding: 60px 0 50px;
        overflow: hidden;
    }

    .n_recommend_section .indus-pagination {
        display: none !important;
    }

    .n_news_tabbar {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .n_news_search {
        margin-top: 30px;
        width: 100%;
    }

    .n_news_tab {
        padding: 0 0 20px;
        margin-right: 10px;
        font-size: 20px;
    }

    .n_rec_card {
        padding: 26px 20px;
        flex-wrap: wrap;
    }

    .n_rec_text {
        margin-right: 0;
        margin-top: 20px;
        width: 100%;
        order: 2;
    }

    .n_rec_img {
        width: 100%;
        flex: inherit;
        min-height: auto;
    }

    .n_rec_footer {
        margin-top: 24px;
    }

    .n_news_list {
        padding-bottom: 50px;
    }



    .n_news_search {
        height: 44px;
    }

    .n_news_search_input {
        padding: 0 68px 0 16px;
        font-size: 14px;
    }

    .n_news_search_btn {
        width: 32px;
        height: 32px;
        right: 6px;
        top: 6px;
    }

    .n_news_search_btn svg {
        width: 20px;
        height: 20px;
    }

    .n_news_search_clear {
        right: 42px;
        width: 18px;
        height: 18px;
        font-size: 16px;
    }

    .n_news_card_body {
        padding: 14px 10px 18px;
    }

    .n_news_more_btn {
        min-width: 160px;
        padding: 12px 32px;
    }

    .n_news_grid li {
        width: 100%;
    }

    .n_news_tabs {
        overflow: hidden;
        overflow-x: auto;
    }

    .n_news_tab {
        white-space: nowrap;
    }

    .n_recommend_swiper .new-prev {
        left: 30%;
        top: inherit;
        transform: inherit;
        bottom: -76px;
        opacity: 1;
    }

    .n_recommend_swiper .new-next {
        right: 30%;
        top: inherit;
        transform: inherit;
        bottom: -76px;
        opacity: 1;
    }

    .n_rec_pagination {
        margin-top: 44px;
        height: 50px;
    }

}

.article_bg {
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 64px;
    padding-top: 67px;
    padding-bottom: 98px;
    border-radius: 32px;
    background-color: var(--white-color);
}

/* ===== 文章详情页 ===== */
.article_bottom {
    overflow: hidden;
}

.article_header_title {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.5;
    font-family: "OPPOSans B";
    margin-bottom: 16px;
}

.article_header_meta {
    display: flex;
    align-items: center;
}

.article_header_tag {
    display: inline-block;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    border-radius: 6px;
    background: #F2F2F3;
    line-height: 26px;
}

.article_header_divider {
    margin-top: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.article_header_divider img {
    width: 100%;
    display: block;
}

.article_cont {
    padding-top: 64px;
    display: flex;
    justify-content: space-between;

}

/* 文章正文 */
.article_content {
    position: relative;
    flex: 1;
    padding-right: 80px;
    margin-right: 80px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 2;
}

.article_content:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.10);
}

.article_content img {
    border-radius: 24px;
    display: block;
    margin: 0 auto;
    max-width: 100% !important;
    height: auto !important;
}

.article_content p {
    margin-bottom: 32px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 2;
}

.article_content p:last-child {
    margin-bottom: 0;
}

.article_right {
    order: 2;
    position: sticky;
    width: 480px;
    top: 110px;
    padding: 24px;
    border-radius: 24px;
    background: #F2F2F3;
    height: max-content;
}

.article_right .loop {
    padding-bottom: 24px;
}

.article_header_date_label {
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    width: 48px;
}

.article_header_date_val {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-color);
}

/* 上一篇/下一篇 */
.article_pn {
    display: flex;
    flex-direction: column;
}

.article_pn_card {
    display: block;
    padding: 24px;
    margin-bottom: 8px;
    background: var(--white-color);
    border-radius: 16px;
    transition: all .3s;
}

.article_pn_card:hover {
    background-color: var(--main-color);
}

.article_pn_card:hover .article_pn_label {
    color: rgba(255, 255, 255, 0.60);
}

.article_pn_card:hover .article_pn_title {
    color: var(--white-color);
}

.article_pn_label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 10px;
}

.article_pn_title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.5;
}


/* 返回列表 */
.article_back {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.article_back_btn {
    display: inline-flex;
    align-items: center;
}

.article_back_icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CCC;
    border-radius: 50%;
}

.article_back_text {
    margin-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.article_back_btn:hover .article_back_icon {
    background-color: var(--main-color);
}

.article_back_btn:hover .article_back_text {
    color: var(--main-color);
}


/* 推荐动态 */
.article_recommend {
    margin-top: 130px;
}

.article_recommend_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article_recommend_title {
    font-weight: 700;
    color: var(--main-color);
}

.article_recommend_more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 12px 20px;
    border-radius: 60px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    font-size: 16px;
    font-weight: 400;
    color: #8E8E8E;
    overflow: hidden;
    z-index: 1;
}

.article_recommend_more:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--main-color);
    transform: translateY(-50%) scale(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.08, 0.79, 0.45, 0.94);
    z-index: -1;
}

.article_recommend_more:hover {
    color: var(--white-color);
    border-color: var(--main-color);
}

.article_recommend_more:hover::after {
    transform: translateY(-50%) scale(50);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.article_recommend_more svg {
    margin-left: 16px;
    transition: transform .3s;
}

.article_recommend_more:hover svg {
    transform: rotate(45deg);
}

.article_recommend_more:hover svg path {
    stroke: var(--white-color);
}

.recom_cont {
    margin-top: 40px;
    position: relative;
}

.recom_cont .vision-swiper-wrap:after {
    content: "";
    position: absolute;
    right: -175px;
    top: 0;
    width: 200px;
    height: 100%;
    /* background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%); */
    background-image: url(../images/recom_right_bg.svg);
    background-repeat: no-repeat;
    background-position: left;
    z-index: 8;
}

.recom_cont .vision-swiper-wrap::before {
    content: "";
    position: absolute;
    left: -195px;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 8;
}

.recom_cont .vision-card {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(242, 242, 243, 0.80);
}

.recom_cont .vision-card:hover {
    background: rgba(255, 255, 255, 0.80);
}

.recom_cont .vision-prev {
    left: -45px;
}

.recom_cont .vision-next {
    right: -45px;
}


@media screen and (max-width: 991px) {
    .recom_cont .vision-prev {
        left: -25px;
    }

    .recom_cont .vision-next {
        right: -25px;
    }
}

@media screen and (max-width: 767px) {
    .article_recommend {
        margin-top: 50px;
    }

    .article_recommend_title {
        font-size: 24px;
    }

    .article_recommend_more {
        padding: 8px 16px;
        font-size: 14px;
    }

    .recom_cont .vision-prev {
        left: -5px;
    }

    .recom_cont .vision-next {
        right: -5px;
    }
}

.a_small_t {
    margin-bottom: 8px;
    color: #999;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.a_black_t {
    color: var(--dark-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.news-details-content-share {
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.news-details-content-share-item {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    justify-content: center;

    margin-right: 16px;
    margin-bottom: 16px;
    background-color: rgba(51, 51, 51, 0.10);
    backdrop-filter: blur(4px);

    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.news-details-content-share-item:last-child {
    margin-right: 0;
}

.news-details-content-share-item img {
    width: 24px;
    height: auto;
}

.news-details-content-share-item img:nth-child(2) {
    display: none;
}

.news-details-content-share-item:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.news-details-content-share-item:hover img:first-child {
    display: none;
}

.news-details-content-share-item:hover img:nth-child(2) {
    display: block;
}

.x_sharecopy {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(78, 78, 78, 0.89);
    border-radius: 6px;
    backdrop-filter: blur(6px);
    font-size: 14px;
    padding: 10px 30px;
    color: var(--white-color);
    width: max-content;
    z-index: 9999;
}

.x_copyIcon {
    background: url(../images/copy_iconw.svg) center center / contain no-repeat;
    width: 20px;
    height: 30px;
    float: left;
}

.x_copyDesc {
    font-size: 14px;
    padding-left: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    float: left;
}

.recom-pagination {
    display: none;
    margin-top: 20px;
    text-align: center;
}

.recom-pagination span {
    margin: 0 4px;
}

@media screen and (max-width: 1366px) {
    .article_right {
        width: 400px;
    }
}

@media screen and (max-width: 1280px) {
    .article_content {
        padding-right: 60px;
        margin-right: 60px;
    }

    .article_right {
        width: 360px;
    }
}

@media screen and (max-width: 1200px) {
    .article_content {
        padding-right: 40px;
        margin-right: 40px;
    }

    .article_right {
        width: 330px;
    }
}

@media screen and (max-width: 991px) {

    .article_right {
        width: 250px;
    }

    .news-details-content-share-item {
        padding: 10px;
        margin-right: 8px;
        width: 42px;
        height: 42px;
    }

    .news-details-content-share-item img {
        width: 100%;
    }

    .article_pn_card {
        padding: 20px 16px;
    }
}

@media screen and (max-width: 767px) {


    .article_pn_title {
        font-size: 16px;
    }

    .article_bg {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 30px;
        padding-top: 40px;
        padding-bottom: 30px;
        border-radius: 20px;
    }

    .article_header_title {
        font-size: 26px;
    }

    .article_content p {
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .article_content img {
        border-radius: 16px;
    }

    .article_cont {
        padding-top: 25px;
        flex-flow: column;
    }

    .article_content {
        padding-top: 30px;
        padding-right: 0px;
        margin-right: 0px;
    }

    .article_content:after {
        display: none;
    }

    .article_right {
        position: relative;
        top: inherit;
        margin-top: 10px;
        padding: 20px;
        border-radius: 16px;
        width: 100%;
        order: inherit;
    }

    .news-details-content-share {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .news-details-content-share-item {
        margin-bottom: 0;
    }

    .recom_cont .vision-swiper-wrap:after {
        right: -148px;

    }
}

/* 产品解决方案 */
.pro_box {
    position: relative;
}

.pro_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: calc(100% - 250px);
    background: #F2F2F3;
}

.pro_content {
    position: relative;
    display: flex;
    justify-content: space-between;
    border-radius: 24px;
    background-color: #FFF;
    min-height: 600px;
    z-index: 9;
}

/* 左侧菜单 */
.pro_menu {
    position: sticky;
    top: 100px;
    padding: 40px;
    width: 342px;
    height: max-content;
}

.pro_menu_title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 24px;
}

/* 移动端下拉，桌面端隐藏 */
.pro_menu_mobile_wrap {
    display: none;
}

.pro_menu_list {
    display: flex;
    flex-direction: column;
}

.pro_menu_item {
    margin-bottom: 8px;
}

.pro_menu_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s;
}

.pro_menu_head:hover .pro_menu_name {
    color: var(--main-color);
}

.pro_menu_name {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 700;
    transition: color 0.3s;
}

.pro_menu_item.active .pro_menu_name {
    color: var(--main-color);
}

.pro_menu_item.active .pro_menu_head:hover .pro_menu_name {
    color: var(--main-color);
}

.pro_menu_arrow {
    width: 24px;
    height: 24px;
    background-image: url(../images/pro_plus.svg);
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.pro_menu_item.active .pro_menu_arrow {
    background-image: url(../images/pro_plus2.svg);
}

.pro_menu_sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pro_menu_item.active .pro_menu_sub {
    max-height: 300px;
}

.pro_menu_sub_item {
    padding: 6px 12px;
    margin-bottom: 14px;
    position: relative;
    font-size: 18px;
    color: #939393;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 1;
}

.pro_menu_sub_item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 8px;
    background-color: #F2F2F3;
    opacity: 0;
    transition: all .3s;
    z-index: -1;
}

.pro_menu_sub_item:last-child {
    margin-bottom: 0;
}

.pro_menu_sub_item:hover,
.pro_menu_sub_item.active {
    color: var(--main-color);
}

.pro_menu_sub_item.active::before,
.pro_menu_sub_item:hover::before {
    opacity: 1;
    width: 100%;
}

/* 右侧产品列表 */
.pro_list {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pro_list_header {
    scroll-margin-top: 130px;
}

.pro_list_title {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.5;
}

.pro_list_count {
    font-size: 18px;
    color: #666666;
    margin-bottom: 12px;
}

.pro_count_num {
    color: var(--main-color);
}

.pro_list_tag {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    color: #666;
    background: #F5F5F5;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.pro_list_tag:hover {
    background-color: #E8EDFF;
    color: var(--main-color);
}

.pro_list_tag.active {
    background-color: var(--main-color);
    color: var(--white-color);
}

.pro_list_grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.pro_load_more_wrap {
    text-align: center;
    margin-top: 32px;
}

.pro_load_more {
    display: inline-block;
    padding: 12px 48px;
    font-size: 16px;
    color: var(--main-color);
    background: transparent;
    border: 1px solid var(--main-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.pro_load_more:hover {
    background-color: var(--main-color);
    color: #FFF;
}

.pro_card {
    margin: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    width: calc(50% - 24px);
    border-radius: 24px;
    background-color: #F2F2F3;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.pro_card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 23, 147, 0.70);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.pro_card:hover::before {
    opacity: 1;
}

.pro_card_thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -2;
    pointer-events: none;
}

.pro_card:hover .pro_card_thumb {
    opacity: 1;
    transform: scale(1.07);
}

.pro_card_inner {
    flex: 1;
    position: relative;
    z-index: 1;
}

.pro_card_img {
    display: none;
}

.pro_card_body {
    display: none;
}

.pro_card_tag {
    display: inline-block;
    font-size: 16px;
    color: var(--main-color);
    margin-bottom: 8px;
}

.pro_card_title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
}

.pro_card_desc {
    font-size: 18px;
    color: #666666;
    line-height: 1.5;
}

.pro_card_btn {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    color: #666666;
}

.pro_card:hover .pro_card_btn {
    color: var(--white-color);
}

.pro_card_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    width: 32px;
    height: 32px;
    background-color: #FFF;
    border-radius: 50px;
    color: #666666;
    transition: all 0.3s;
}

.pro_card:hover .pro_card_arrow {
    background: rgba(255, 255, 255, 0.70);
}

.pro_card:hover .pro_card_arrow svg path {
    stroke: #FFF;
}

.pro_card:hover .pro_card_tag,
.pro_card:hover .pro_card_title,
.pro_card:hover .pro_card_desc {
    color: var(--white-color);
}

.pro_empty {
    text-align: center;
    padding: 80px 0;
    color: #999;
    font-size: 16px;
}

.pro_card_hidden {
    display: none;
}

/* ============ CTA Banner ============ */
.pro_list_box {
    padding-bottom: 115px;
}

.pro_cta {
    position: relative;
    margin-top: 85px;
    border-radius: 24px;
    overflow: hidden;
}

.pro_cta_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pro_cta_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_cta_content {
    position: relative;
    z-index: 1;
    margin: 105px 0 105px 96px;
    max-width: 528px;
}

.pro_cta_title {
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.pro_cta_desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.55;
    max-width: 504px;
    margin-bottom: 80px;
}

.pro_cta .ban_button {
    display: inline-block;
}

.pro_cta .ban_button a {
    width: 192px;
}

.pro_cta .guide-company-item {
    height: 60px;
    padding: 16px 10px 16px 20px;
    backdrop-filter: inherit;
    background-color: var(--white-color);
    border: none !important;
}

.pro_cta .company-info h3 {
    font-size: 18px;
}

@media (max-width: 1440px) {
    .pro_card {
        height: 300px;
    }
}

@media (max-width: 1366px) {
    .pro_card {
        height: 280px;
    }
}

@media (max-width: 1280px) {
    .pro_card {
        padding: 26px;
        height: 250px;
    }

}

@media (max-width: 1279px) {
    .pro_menu {
        padding: 40px 30px;
        width: 322px;
    }

    .pro_list {
        padding: 40px;
        padding-left: 30px;
    }

}

@media (max-width: 1100px) {
    .pro_card {
        width: calc(100% - 24px);
    }

}

@media (max-width: 991px) {
    .pro_menu {
        padding: 40px 30px;
        width: 260px;
    }

    .pro_cta_content {
        margin: 105px 0 105px 60px;
    }

}

@media (max-width: 767px) {
    .pro_box {
        padding-top: 60px;
    }

    .pro_list_box {
        padding-bottom: 50px;
    }

    .pro_box:after {
        top: 120px;
        height: calc(100% - 120px);
    }

    .pro_content {
        flex-flow: column;
    }

    .pro_menu {
        position: inherit;
        top: inherit;
        padding: 30px 20px;
        width: 100%;
        height: max-content;
    }

    /* 移动端：隐藏侧边栏手风琴，改为自定义下拉 */
    .pro_menu_list {
        display: none;
    }

    .pro_menu_mobile_wrap {
        position: relative;
        width: 100%;
        height: 56px;
        display: flex;
        align-items: center;
        /* border: 2px solid var(--main-color); */
        border-radius: 16px;
        background-color: var(--main-color);
        z-index: 10;
    }

    .pro_menu_mobile_wrap.open {
        border-radius: 14px 14px 0px 0px;
    }

    .pro_menu_mobile_icon {
        flex-shrink: 0;
        margin-left: 20px;
        color: var(--white-color);
    }

    .pro_menu_mobile_trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        height: 100%;
        padding: 0 20px 0 12px;
        cursor: pointer;
        user-select: none;
    }

    .pro_menu_mobile_val {
        font-size: 16px;
        font-weight: 500;
        color: var(--white-color);
    }

    .pro_menu_mobile_arrow {
        flex-shrink: 0;
        color: var(--white-color);
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .pro_menu_mobile_wrap.open .pro_menu_mobile_arrow {
        transform: rotate(180deg);
    }

    /* 自定义下拉面板 */
    .pro_menu_mobile_dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        margin-top: 0;
        padding: 8px 0;
        background: var(--main-color);
        /* border: 2px solid var(--main-color); */
        border-top: none;
        border-radius: 0 0 14px 14px;
        z-index: 5;
    }

    .pro_menu_mobile_wrap.open .pro_menu_mobile_dropdown {
        display: block;
    }

    .pro_menu_mobile_opt {
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 400;
        color: var(--white-color);
        opacity: 0.8;
        cursor: pointer;
        transition: color 0.2s, background 0.2s;
    }

    .pro_menu_mobile_opt:hover {
        /* opacity: 1; */
    }

    .pro_menu_mobile_opt.active {
        opacity: 1;
    }

    .pro_list {
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .pro_card {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 16px;
    }

    .pro_cta {
        margin-top: 60px;
    }

    .pro_cta_content {
        margin: 90px 30px 90px 30px;
    }

    .pro_cta_desc {
        margin-bottom: 60px;
    }
}

/* ============ 产品详情 Banner ============ */
.pro_xq_ban {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pro_xq_ban_bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pro_xq_ban_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro_xq_ban_overlay {
    position: absolute;
    /* inset: 0; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(113deg, rgba(0, 14, 50, 0.00) 28.28%, #000E32 100%);
    z-index: 1;
}

.pro_xq_ban_content .pro_x_top {
    padding-top: 100px;
    padding-bottom: 114px;
    justify-content: space-between;
}

.pro_x_left {
    max-width: 653px;
    flex: 1;
    margin-right: 50px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.pro_xq_ban_text {
    max-width: 800px;
}

.pro_xq_ban_text .small_t {
    color: rgba(255, 255, 255, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.pro_x_left .des {
    padding-top: 16px;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.pro_xq_ban_title {
    margin-top: 16px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.26;
}

.pro_x_infor .t {
    padding-top: 40px;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.pro_x_infor .infof_des {
    margin-top: 8px;
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    min-height: 84px;
}

.pro_xq_ban_content {
    position: relative;
    z-index: 9;
}

.pro_xq_ban_content .ban_button {
    justify-content: flex-start;
    margin-top: 30px;
}

.pro_xq_ban_content .ban_button .guide-company-item:nth-child(2) {
    margin-left: 24px;
}

.pro_xq_ban_content .guide-company-item {
    width: 192px;
    height: 60px;
    padding: 16px 10px 16px 22px;
    border: none;
    background-color: var(--white-color);
}

.pro_xq_ban_content .company-info h3 {
    font-size: 18px;
}

.pro_xq_ban_content .guide-company-item:hover {
    border: none;
}

.pro_x_right {
    position: relative;
    border-radius: 24px;
    background: var(--white-color);
    overflow: hidden;
}

.pro_x_right img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1279px) {
    .pro_x_right {
        width: 50%;
    }

}

@media (max-width: 991px) {
    .pro_x_right {
        width: 50%;
    }

    .pro_xq_ban_content .ban_button {
        flex-flow: column;
    }

    .pro_xq_ban_content .ban_button .guide-company-item:nth-child(2) {
        margin-left: 0;
        margin-top: 24px;
    }

    .pro_x_right {
        height: fit-content;
    }

}

@media (max-width: 767px) {

    .pro_xq_ban_content {
        padding-bottom: 40px;
    }

    .pro_xq_ban_content .ban_button {
        flex-flow: nowrap;
        display: none !important;
    }

    .pro_xq_ban_content .ban_button .guide-company-item:nth-child(2) {
        margin-left: 4px;
        margin-top: 0;
    }

    .pro_xq_ban_content .guide-company-item {
        height: 54px;
        padding: 10px 10px 10px 18px;
    }

    .pro_x_right {
        margin-top: 30px;
        width: 100%;
        border-radius: 16px;
    }
    .pro_x_infor {
        padding-bottom: 20px;
    }
    .pro_x_infor .infof_des {
        min-height: inherit;
    }

}

/* ============ 产品详情锚点导航 ============ */
.pro_xq_nav {
    position: sticky;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 96px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pro_xq_nav .my-container {
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.pro_xq_nav_tabs {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.pro_xq_nav_tabs a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 45px;
    height: 100%;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    transition: color 0.3s;
    white-space: nowrap;
}

.pro_xq_nav_tabs a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: transparent;
    transition: all 0.3s;
}

.pro_xq_nav_tabs a.active {
    color: var(--main-color);
}

.pro_xq_nav_tabs a.active::after {
    width: 100%;
    background-color: var(--main-color);
}

@media (min-width:768px) {
    .pro_xq_nav_tabs a:hover {
        color: var(--main-color);
    }

    .pro_xq_nav_tabs a:hover::after {
        width: 100%;
        background-color: var(--main-color);
    }

}

.pro_xq_nav_btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px 12px 22px;
    width: 192px;
    height: 60px;
    background-color: var(--main-color);
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pro_xq_nav_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 23, 147, 0.30);

}

.pro_xq_nav_btn span {
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.pro_xq_nav_btn_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
}

@media (max-width: 1366px) {
    .pro_xq_nav_tabs a {
        margin-right: 40px;
    }

}

@media (max-width: 1280px) {
    .pro_xq_nav_tabs a {
        margin-right: 35px;
    }

}

@media (max-width: 1024px) {
    .pro_xq_nav_tabs a {
        margin-right: 25px;
    }

}

@media (max-width: 991px) {
    .pro_xq_nav_tabs a {
        margin-right: 16px;
    }

    .pro_xq_nav_btn {
        padding: 10px 10px 10px 20px;
        width: 156px;
        height: 56px;
    }

}

@media (max-width: 767px) {
    .pro_xq_nav {
        position: inherit;
        top: inherit;
        height: auto;
        padding: 0;
    }

    .pro_xq_nav .my-container {
        padding-right: 0;
    }

    .pro_xq_nav_tabs {
        height: 60px;
        overflow-x: auto;
    }

    .pro_xq_nav_tabs a {
        width: auto;
        padding: 0 8px;
    }

    .pro_xq_nav_btn {
        display: none;
    }
}

/* ============ 产品详情 - 产品优势 ============ */
.pro_xq_advantage {
    padding-top: 100px;
    background-color: #F2F2F3;
}

.pro_xq_advantage .term_box {
    overflow: hidden;
}

.pro_xq_adv_wrap {
    padding-bottom: 48px;
    padding-top: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.pro_xq_adv_wrap>.my-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pro_xq_adv_wrap:first-child {
    padding-top: 0;
}

.pro_xq_adv_left {
    width: 300px;
    flex-shrink: 0;
}

.pro_xq_adv_label {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.2;
}

.pro_xq_adv_title {
    font-weight: 400;
    color: var(--dark-color);
    line-height: 1.5;
    margin-top: 8px;
}

.pro_xq_adv_divider {
    margin-top: 16px;
}

.pro_xq_adv_divider img {
    display: block;
}

.pro_xq_adv_right {
    flex: 1;
    margin-left: 50px;
    max-width: 922px;
}

.adv_loop {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
}

.adv_loop li {
    padding: 5px;
    width: 50%;
}

.pro_xq_adv_card {
    display: flex;
    align-items: flex-start;
    padding: 32px 24px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: var(--white-color);
    transition: box-shadow 0.3s, transform 0.3s;
}

.pro_xq_adv_card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
}

.pro_xq_adv_icon {
    width: 35px;
    height: 35px;
    background: #F2F2F3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pro_xq_adv_icon img {
    width: auto;
    height: auto;
}

.pro_xq_adv_card_body {
    flex: 1;
    min-width: 0;
    margin-left: 16px;
}

.pro_xq_adv_card_body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.55;
}

.pro_xq_adv_card_body p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-top: 10px;
}

.pro_xq_adv_right .table {
    border-radius: 24px;
    overflow: hidden;
}

.pro_xq_adv_right .table table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    border: none;
}

.pro_xq_adv_right .table thead tr {

    color: var(--white-color);
}

.pro_xq_adv_right .table thead tr th {
    padding: 24px 10px;
    font-size: 18px;
    background-color: var(--main-color);
    border-radius: 8px;
}

.pro_xq_adv_right .table tbody tr td {
    padding: 24px 10px;
    font-size: 18px;
    background-color: var(--white-color);
    border-radius: 8px;
    border-color: #F2F2F3;
}

.pro_xq_contact {
    padding-top: 48px;
    padding-bottom: 70px;
}

.pro_xq_contact .bg {
    padding: 64px;
    border-radius: 24px;
    background-color: var(--white-color);
    overflow: hidden;
    justify-content: space-between;
    align-items: flex-start;
}

.pro_xq_contact_left {
    max-width: 586px;
    flex: 1;
    margin-right: 50px;
}

.pro_xq_contact_title {
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.5;
}

.pro_xq_contact_desc {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.56;
    margin-top: 16px;
}

.pro_xq_contact_info {
    margin-top: 88px;
}

.pro_xq_contact_item {
    padding: 26px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.pro_xq_contact_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.pro_xq_contact_label {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.2;
}

.pro_xq_contact_value {
    display: block;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    margin-top: 8px;
}

/* 表单 */
.pro_xq_contact_right {
    width: 52%;
    max-width: 755px;
}

.messform {
    margin-left: -14px;
    margin-right: -14px;
}

.messform .col {
    width: 50%;
    padding: 14px;
    float: left;
}

.messform .input-container {
    position: relative;
    border-radius: 16px;
    background-color: #F2F2F3;
}

.messform .select_bg {
    overflow: hidden;
}

.messform .input-container input {
    outline: none;
    z-index: 1;
    padding: 15px 14px;
    padding-left: 30px;
    padding-right: 46px;
    position: relative;
    background: none;
    width: 100%;
    height: 60px;
    border: 0;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    font-family: "OPPOSans R";
    line-height: 28px;
}

.messform .input-container span {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    width: 17px;
    font-size: 18px;
    font-weight: 400;
}

.messform .input-container span em {
    margin-right: 8px;
    color: #D80C18;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.messform .text-area span {
    top: 18px;
    transform: inherit;
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #D80C18;
}

.pro_xq_privacy_wrap {
    position: relative;
}

.pro_xq_privacy_wrap .error {
    position: absolute;
    bottom: -8px;
    left: 54px;
    color: #D80C18;
}

.input-container input:focus::placeholder,
.input-container textarea:focus::placeholder {
    opacity: 0;
    transition: all .2s linear;
}

.input-container .input_select_box :focus::placeholder {
    opacity: 1;
}

.messform .colw100 {
    width: 100%;
    padding: 14px;
    float: left;
}

.message_code img {
    border-radius: 16px;
}

.messform .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 195px;
    padding: 16px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    resize: none;
    font-family: "OPPOSans R";
}

.messform .yanz {
    margin-left: -14px;
    margin-right: -14px;
    padding-top: 0;
}

.messform .submit {
    background-color: var(--main-color);
}

.messform .last_button {
    padding-top: 10px;
}

/* 隐私政策勾选  */
.pro_xq_privacy_check {
    padding: 10px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.56;
}

.pro_xq_privacy_box {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.pro_xq_privacy_box input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    margin: 0;
}

.pro_xq_privacy_mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
}

.pro_xq_privacy_box input[type="checkbox"]:not(:checked)~.pro_xq_privacy_mark {
    background: transparent;
}

.pro_xq_privacy_box input[type="checkbox"]:not(:checked)~.pro_xq_privacy_mark svg {
    opacity: 0;
}

.pro_xq_privacy_text {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #B4B4B4;
    line-height: 1.55;
}

.pro_xq_privacy_link {
    color: var(--main-color);
    text-decoration: none;
    cursor: pointer;
}

.pro_xq_privacy_link:hover {
    text-decoration: underline;
}

.input_select_box .icon {
    width: 24px;
    height: 24px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/chevron-down2.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.input_select_box .drop_down_ {
    position: absolute;
    right: 0;
    top: 60px;
    padding: 24px;
    padding-left: 32px;
    width: 100%;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: #F2F2F3;
    z-index: 9;
}

.select_bg.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: visible;
}

.mess_form .input_select_box .drop_down_ {
    max-height: 280px;
    overflow-y: auto;
}

.mess_form .input_select_box .drop_down_::-webkit-scrollbar {
    width: 4px;
    height: 2px
}

.mess_form .input_select_box .drop_down_::-webkit-scrollbar-button:vertical {
    display: none
}

.mess_form .input_select_box .drop_down_::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: transparent;
}

.mess_form .input_select_box .drop_down_::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--main-color);
}

.input_select_box .drop_down_ p {
    padding-bottom: 8px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.input_select_box .drop_down_ p:last-child {
    padding-bottom: 0;
}

.input_select_box .drop_down_.line p {
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #ebe6e6;
}

.input_select_box .drop_down_.line p:first-child {
    padding-top: 0;
}

.input_select_box .drop_down_ p:last-child {
    border-bottom: none;
}

.input_select_box .drop_down_ p:hover {
    color: var(--main-color);
}

/* 提交按钮 - Figma 设计稿 */
.pro_xq_submit_btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 192px;
    height: 60px;
    padding: 16px 10px 16px 22px;
    background: var(--main-color);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pro_xq_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 23, 147, 0.30);
}

.pro_xq_submit_text {
    font-size: 18px;
    font-weight: 400;
    color: #F2F2F3;
    line-height: 1;
}

.pro_xq_submit_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 40px;
}

.pro_xq_submit_icon svg {
    display: block;
}

/* 更多产品 */
.more_pro {
    padding: 88px 0;
    background-color: var(--white-color);
}

.big_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.prox_swiper {
    margin-top: 68px;
    overflow: visible;
}

.prox_swiper .pro_card {
    margin: 0;
    padding: 30px;
    width: 100%;
    height: 338px;
    border: 1px solid #FFF;
    background: #F2F2F3;
}

.prox_swiper .pro_card .pro_card_arrow {
    background-color: transparent;
}

.prox_button {
    padding-top: 40px;
}

.proz-pagination span {
    margin: 0;
    margin-right: 5px;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: #CFCFCF;
    opacity: 1;
    transition: width .3s;
}

.proz-pagination span.swiper-pagination-bullet-active {
    width: 31px;
    background-color: var(--main-color);
}

.prox_b {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 2px 0;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-color: #F2F2F3;
    cursor: pointer;
}

.prox_b:nth-child(2) {
    margin-left: 10px;
}

.prox_b.swiper-button-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.prox_b:hover {
    background-color: var(--main-color);
}

.pro_m_button .prox_b:hover svg path {
    stroke: var(--white-color);
}

@media (max-width: 1279px) {
    .pro_xq_contact .bg {
        padding: 50px;
    }

}

@media (max-width: 991px) {
    .pro_xq_advantage {
        padding-top: 80px;
    }

    .pro_xq_adv_wrap>.my-container {
        flex-flow: column;
    }

    .pro_xq_adv_right {
        margin-left: 0;
        margin-top: 35px;
        max-width: inherit;
        width: 100%;
    }

    .pro_xq_contact .bg {
        flex-flow: column;
    }

    .pro_xq_contact_info {
        margin-top: 35px;
    }

    .pro_xq_contact_left {
        max-width: inherit;
        margin-right: 0;
    }

    .pro_xq_contact_right {
        margin-top: 50px;
        width: 100%;
        max-width: inherit;
    }

    .prox_swiper .pro_card {
        height: 300px;
    }

    .pro_xq_contact .bg {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .pro_xq_advantage {
        padding-top: 50px;
    }

    .pro_xq_adv_divider {
        margin-top: 5px;
    }

    .adv_loop li {
        width: 100%;
    }

    .pro_xq_adv_card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .pro_xq_adv_icon {
        padding: 2px;
        width: 26px;
        height: 26px;
    }

    .pro_xq_ban_content .pro_x_top {
        padding-top: 50px;
        padding-bottom: 20px;
        flex-flow: column;
    }

    .pro_x_left {
        max-width: inherit;
        flex: 1;
        margin-right: 0;
    }

    .pro_xq_adv_right .table {
        overflow-x: auto;
        border-radius: 16px;
        padding-right: 16px;
    }
.pro_xq_adv_right .table::-webkit-scrollbar {
    width: 0px;
    height: 0px;
     -webkit-appearance: none;
     display: none;
}
    .pro_xq_adv_right .table tbody tr td {
        font-size: 16px;
        white-space: nowrap;
        border-radius: 0;
    }

    .pro_xq_contact .bg {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .pro_xq_privacy_box {
        width: 16px;
        height: 16px;
    }

    .pro_xq_privacy_text {
        margin-left: 10px;
        font-size: 16px;
    }

    .pro_xq_adv_title {
        font-weight: 600;
        font-family: inherit;
    }

/* 关键点：使用 border-spacing 配合 border-collapse: separate 让每个 td 的 rounded-8px 生效 */
.pro_xq_adv_right .table table {
    border-collapse: separate;
    border-spacing: 1px; /* 单元格之间的间距 */
    width: 100%;
    text-align: center;
}

.pro_xq_adv_right .table thead tr th {
    padding: 16px 10px;
    font-size: 16px;
    color: var(--white-color);
    background-color: var(--main-color);
    border-radius: 8px; /* iOS 上现已完美生效 */
    border:none;
}

.pro_xq_adv_right .table tbody tr td {
    padding: 16px 10px;
    font-size: 15px;
    background-color: #F8FAFC;
    border:none;
    border-radius: 8px; /* iOS 上现已完美生效 */
}


    
    .dxcp_wrap {
        overflow: hidden;
    }
    .dxcp_wrap>.my-container {
        padding-left: 0;
        padding-right: 0;

    }
    .dxcp_wrap .pro_xq_adv_left {
        padding-left: 16px;
        padding-right: 16px;
    }
    .dxcp_wrap .pro_xq_adv_right {
        padding-left: 16px;
    }
.pro_xq_contact_title {
    font-family: inherit;
    font-weight: 600;
}

    .messform .col {
        width: 100%;
    }

    .messform .yanz {
        margin: 0;
    }

    .pro_xq_privacy_check,
    .messform .yanz .col {
        padding-right: 0;
        padding-left: 0;
    }

    .messform .input-container {
        border-radius: 8px;
    }

    .message_code img {
        border-radius: 8px;
    }

    .input-container.active {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input_select_box .drop_down_ {
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .prox_swiper .pro_card {
        padding: 30px 20px;
        height: 260px;
    }

    .more_pro {
        padding: 50px 0;
    }

    .prox_b {
        width: 46px;
        height: 46px;
    }

}

/* 行业解决方案 Banner */
.industry_ban {
    height: 100vh;
    padding-bottom: 0;
    min-height: 450px;
}

.industry_ban_text {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0;
    padding-left: 16px;
    padding-right: 16px;
}

.ind_ban_title {
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.2;
}

.ind_ban_sub {
    margin-top: 16px;
    font-weight: 700;
    color: var(--white-color);
    line-height: 1.2;
}

/* 向下滑动提示 */
.ind_scroll_hint {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.ind_scroll_arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: arrowBounce 1.8s ease-in-out infinite;
}

.ind_scroll_arrow {
    display: block;
}

.ind_arrow2 {
    margin-top: -8px;
}

.ind_scroll_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    white-space: nowrap;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(2px);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.industry_list {
    margin-top: 80px;
    padding-bottom: 74px;
}

.industry_list ul li {
    /* position: sticky; */
    margin-bottom: 36px;
    /* transition: opacity 0.4s; */
}

.industry_list ul li.active {
    opacity: 0.8;

}

.ind_card {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 24px;
    background: #FFFFFF;
    /* box-shadow: 0 0 24px rgba(255, 255, 255, 0.50); */
    overflow: hidden;
}

.ind_card_bg {}

.ind_card_bg img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    transition: all .4s;
}

.ind_card_overlay {
    position: absolute;
    inset: 0;
    opacity: 0.70;
    background: linear-gradient(316deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.ind_card_content {
    position: absolute;
    left: 6%;
    top: 0;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding-top: 113px;
    padding-bottom: 150px;
    max-width: 560px;
    height: 100%;
    z-index: 1;
}

.ind_card_title_row {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
    width: 100%;
}

.ind_card_title1,
.ind_card_title2 {
    font-weight: 700;
    color: var(--white-color);
}

.ind_card_desc {
    margin-top: 35px;
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.55;
}

.ind_card .ban_button {
    display: inline-block;
}

.ind_card .ban_button .guide-company-item {
    width: 192px;
}

.ind_card .guide-company-item {
    height: 60px;
    padding: 16px 10px 16px 20px;
    backdrop-filter: inherit;
    background-color: var(--white-color);
    border: none !important;
}

.ind_card .company-info h3 {
    font-size: 18px;
}

.ind_card:hover .ind_card_bg img {
    transform: scale(1.08);
}

@media screen and (max-width: 1280px) {
    .ind_card_bg img {
        min-height: 550px;
    }

    .ind_card_content {
        left: 6%;
        padding-top: 100px;
        padding-bottom: 100px;
    }

}

@media screen and (max-width:991px) {
    .ind_card_bg img {
        min-height: 500px;
    }

    .ind_card_content {
        left: 6%;
        padding-top: 90px;
        padding-bottom: 90px;
    }

}

@media (max-width: 767px) {
    .industry_ban {
        height: 100vh;
    }

    .industry_list {
        margin-top: 50px;
        padding-bottom: 50px;
    }

    .industry_list ul li {
        position: inherit;
        top: inherit;
        margin-bottom: 30px;
    }

    .ind_card {
        border-radius: 16px;
    }

    .ind_card_content {
        position: relative;
        left: inherit;
        top: inherit;
        padding: 35px 20px;
        max-width: 100%;
    }

    .industry_list .ind_card_bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
    }

    .ind_card .ban_button {
        margin-top: 50px;
    }

    .ind_card_bg img {
        min-height: inherit;
    }

    .ind_scroll_hint {
        bottom: 80px;
    }
}

/* 行业解决方案详情 */
.indus_xq_ban {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    z-index: 1;
}

.indus_xq_ban_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    z-index: -1;
}

.indus_xq_ban_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.indus_xq_ban_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.indus_cont .text {
    margin-top: 16px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.indus_xq_ban .pro_xq_ban_content {
    width: 100%;
}

.indus_xq_ban .pro_xq_ban_content .ban_button {
    margin-top: 120px;
}

.industry_xq_box {
    background-color: var(--white-color);
}

.industry_xq_box .term_box {
    overflow: hidden;
}

.indus_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.fagx_box {
    padding-top: 118px;
}

.fa_pic {
    position: relative;
    margin-top: 64px;
    padding-top: 16.5%;
    padding-bottom: 16.5%;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    justify-content: center;
    border-radius: 24px;
    background-color: #E9B1B1;
    z-index: 1;
    overflow: hidden;
}

.fa_pic::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: #000;
    z-index: -1;
}

.fa_pic .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.fa_pic .text {
    max-width: 836px;
    color: var(--white-color);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.fa_pic .text p {
    padding-bottom: 34px;
}

.fa_pic .text p:last-child {
    padding-bottom: 0;
}

@media (max-width:991px) {
    .fagx_box {
        padding-top: 80px;
    }

}

@media (max-width:767px) {
    .fagx_box {
        padding-top: 50px;
    }

    .fa_pic {
        margin-top: 35px;
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .fa_pic .text p {
        padding-bottom: 26px;
    }
}


/* 行业挑战卡片网格 - Figma 设计稿 */
.hytz_box {
    padding-top: 120px;
}

.indus_challenge_grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 50px;
    margin-left: -12px;
    margin-right: -12px;
}

.indus_challenge_card {
    margin: 12px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px;
    width: calc(50% - 24px);
    border-radius: 24px;
    background: #F2F2F3;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.indus_challenge_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.indus_challenge_body {
    flex: 1;
    max-width: 500px;
    margin-right: 50px;
}

.indus_challenge_title {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.5;
}

.indus_challenge_desc {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
}

.indus_challenge_num {
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.indus_challenge_num img:nth-child(2) {
    display: none;
}

.indus_challenge_card:hover {
    background: var(--main-color);
}

.indus_challenge_card:hover::before {
    opacity: 1;
}

.indus_challenge_card:hover .indus_challenge_title,
.indus_challenge_card:hover .indus_challenge_desc {
    color: var(--white-color);
}

.indus_challenge_card:hover .indus_challenge_num img:nth-child(1) {
    display: none;
}

.indus_challenge_card:hover .indus_challenge_num img:nth-child(2) {
    display: block;
}

.fays_box {
    padding-top: 108px;
    padding-bottom: 85px;
}

.fays_pic {
    margin-top: 64px;
    border-radius: 24px;
    background-color: #F2F2F3;
    overflow: hidden;
}

@media (max-width:1279px) {
    .indus_challenge_card {
        padding: 30px;
    }

    .indus_challenge_num {
        width: 80px;
    }
}

@media (max-width:1100px) {
    .indus_challenge_body {
        margin-right: 30px;
    }

    .indus_challenge_num {
        width: 60px;
    }
}

@media (max-width:991px) {
    .fays_box {
        padding-top: 80px;
    }

    .hytz_box {
        padding-top: 80px;
    }

    .indus_challenge_card {
        flex-flow: column;
    }

    .indus_challenge_body {
        margin-right: 0;
        order: 2;
        margin-top: 20px;
    }

}

@media (max-width:767px) {
    .fays_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .fays_pic {
        margin-top: 35px;
        border-radius: 16px;
    }

    .hytz_box {
        padding-top: 50px;
    }

    .indus_challenge_grid {
        margin-top: 35px;
    }

    .indus_challenge_card {
        width: calc(100% - 24px);
    }

    .indus_challenge_num {
        width: 46px;
    }
}

/* 为何选择2026世界杯官网入口 */
.select_box {
    padding-top: 64px;
    padding-bottom: 64px;
    background-color: #F2F2F3;
}

.select_box .proz-pagination span {
    background-color: rgba(0, 0, 0, 0.2);
}

.select_box .proz-pagination span.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.select_box .prox_b {
    background-color: var(--white-color);
}

.select_box .prox_b:hover {
    background-color: var(--main-color);
}

.select_box .prox_b:hover svg path {
    stroke: var(--white-color);
}

.select_button {
    margin-top: 40px;
}

.select_swiper {
    margin-top: 64px;
    overflow: visible;
}

.select_card {
    position: relative;
    padding: 40px;
    width: 100%;
    height: 430px;
    background: var(--white-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.4s ease;
}

.select_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.select_card_tag {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.2;
}

.select_card_title {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.5;
    margin-top: 16px;
}

.select_card_desc {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.55;
}

.select_card_num {
    width: 90px;
}

.select_card_num img:nth-child(2) {
    display: none;
}

.select_card:hover {
    background: var(--main-color);
}

.select_card:hover .select_card_tag,
.select_card:hover .select_card_title,
.select_card:hover .select_card_desc {
    color: var(--white-color);
}

.select_card:hover::before {
    opacity: 1;
}

.select_card:hover .select_card_num img:nth-child(1) {
    display: none;
}

.select_card:hover .select_card_num img:nth-child(2) {
    display: block;
}

@media (max-width:1279px) {
    .select_card {
        padding: 30px;
    }

    .select_card_num {
        width: 80px;
    }

}

@media (max-width:1100px) {
    .select_card_num {
        width: 60px;
    }

}

@media (max-width:767px) {

    .select_card_num {
        width: 46px;
    }

}

.protj_box {
    padding-top: 100px;
}

.protj_box .bg {
    padding: 80px 40px;

    border-radius: 24px;
    background-image: url(../images/cptj_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.protj_box .indus_title {
    color: var(--white-color);
}

.protj_box .pro_card::before {
    background: rgba(0, 0, 0, 0.80);
}

.protj_box .pro_card:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
}

.protj_box .prox_b {
    background-color: var(--white-color);
}

.protj_box .proz-pagination span {
    background: rgba(255, 255, 255, 0.70);
}

.protj_box .proz-pagination span.swiper-pagination-bullet-active {
    background-color: var(--white-color);
}

/* 更多方案 */
.xq_box {
    padding-top: 64px;
    padding-bottom: 100px;
}

.xq_box .industry-swiper-wrap {
    margin-top: 60px;
}

.xq_box .industry-prev,
.xq_box .industry-next {
    background-color: #F2F2F3;
}

.xq_box .industry-prev:hover,
.xq_box .industry-next:hover {
    background: var(--main-color);
}



@media (max-width: 991px) {
    .protj_box {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .indus_challenge_card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .indus_challenge_body {
        width: 100%;
        max-width: inherit;
    }

    .select_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .select_swiper {
        margin-top: 35px;
    }

    .select_card {
        padding: 24px 20px;
        height: 360px;
    }

    .protj_box {
        padding-top: 50px;
    }

    .protj_box .bg {
        padding: 50px 16px;
        border-radius: 16px;
    }

    .prox_swiper {
        margin-top: 35px;
    }

    .xq_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .xq_box .industry-swiper-wrap {
        margin-top: 35px;
    }

}

/* about policy */

.policy_box {}

.policy_left_menu {
    position: sticky;
    top: 110px;
    width: 320px;
    height: max-content;
}

.policy_right {
    padding-left: 100px;
    flex: 1;
}

.policy_left_menu ul li {
    padding-bottom: 16px;
}

.policy_left_menu a {
    position: relative;
    padding-left: 14px;
    display: block;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;

}

.policy_left_menu a::before {
    content: "·";
    position: absolute;

    left: 0;
    top: 2px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.policy_left_menu a:hover,
.policy_left_menu .active a {
    color: var(--main-color);
}

.policy_title {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
}

.policy_text {
    padding-top: 16px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.policy_right .term_box:last-child .policy_text {
    margin-bottom: 0;
}

.policy_text p {

    padding-bottom: 25px;

    color: #666;

    font-size: 16px;

    font-style: normal;

    font-weight: 400;

    line-height: 26px;

}

.policy_text p:last-child {
    padding-bottom: 0;

}


@media (max-width:1279px) {

    .policy_right {
        padding-left: 50px;
    }

}

@media (max-width:991px) {
    .policy_left_menu {
        width: 260px;
    }

}

@media (max-width:767px) {

    .policy_left_menu {
        display: none;
    }

    .policy_right {

        flex: inherit;

        padding-left: 0;

    }

}

/* about */
.about_first {
    position: relative;
    width: 100%;
    /* min-height: 600px; */
    height: 800px;
    overflow: hidden;
}
/* 
.about_first::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0.00) 61.25%, #040404 100%);
} */

.about_first .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about_first .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_first_text {
    position: relative;
    padding-bottom: 75px;
    padding-top: 220px;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.about_first_text .my-container {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.about_first_text .first_left {
    display: flex;
    flex-flow: column;
    color: var(--white-color);
    width: 100%;
    line-height: 1.2;
    opacity: 0;
}

.about_first_text .first_left strong {
    margin-top: 4px;
    font-weight: 400;
}

.about_first_text .first_right {
    max-width: 550px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0;
}

/* ========== 关于我们 - 视频圆形区域 ========== */
.about_second {
    padding-top: 110px;
}

.about_second_left {
    flex: 1;
    max-width: 480px;
    margin-right: 80px;
}

.about_second_title {
    display: flex;
    flex-flow: column;
}

.about_second_title span:first-child {
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.5;
}

.about_second_title span:nth-child(2) {
    color: #B4B4B4;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.about_video_circle {
    position: relative;
    margin-top: 58px;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.about_video_circle .video_circle_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}

.video_play_btn {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

/* 播放按钮悬停微调 */
.about_video_circle:hover .video_play_btn {
    transition: transform 0.05s ease-out;
}

.video_play_btn .play_icon_svg {
    width: 24px;
    height: auto;
    filter: brightness(0) invert(1);
}

.video_play_btn .play_text {
    margin-top: 2px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.about_second_right {
    max-width: 788px;
    width: 55%;
}

.about_second_right .text p {
    padding-bottom: 40px;
    color: #666;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
}

.about_second_right .text p:last-child {
    padding-bottom: 0;
}

/* ========== 关于我们 - 数据统计 ========== */
.about_data_stats {
    display: flex;
    flex-wrap: wrap;
    padding-top: 36px;
    margin-left: -10px;
    margin-right: -10px;
}

.about_data_stats .data_item {
    padding: 24px 10px;
    width: 50%;
}

.about_data_stats .data_num {
    margin-bottom: 24px;
    line-height: 1;
}

.about_data_stats .data_num .num {
    color: var(--main-color);
    font-weight: 700;
}

.about_data_stats .data_num .suffix {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
}

.about_data_stats .data_desc {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
}

.about_b_title {
    text-align: center;
}

/* culture */
.about_culture {
    padding-top: 150px;
}

.about_b_des {
    margin-top: 24px;
    color: #666;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

/* 响应式 */
@media (max-width:1279px) {

 .about_first {
        height: 700px;
    }
}
@media (max-width:991px) {
    .about_first {
        height:600px;
    }
    .video_play_btn {
        width: 80px;
        height: 80px;
    }

    .video_play_btn .play_text {
        font-size: 18px;
    }

    .about_second_left {
        margin-right: 60px;
    }

    .about_second_title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
      .about_first {
        height:550px;
    }
.about_first_text {
    padding-top: 120px;
}
    .about_data_stats {
        padding-top: 36px;
        margin-left: -5px;
        margin-right: -5px;
    }

    .about_data_stats .data_item {
        padding: 24px 5px;
    }

    .about_data_stats .data_num {
        margin-bottom: 16px;
    }

    .about_data_stats .data_desc {
        font-size: 18px;
    }


}

/* ========== 企业文化卡片 ========== */
.culture_cards_wrap {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin-top: 60px;
    border-radius: 24px;
    overflow: hidden;
}

.culture_bg_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.culture_cards {
    position: relative;
    display: flex;

    z-index: 1;
}

.culture_card {
    position: relative;
    padding: 40px;
    width: 25%;
    height: 744px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 43.55%, rgba(0, 0, 0, 0.60) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.4s ease, background 0.4s ease;
}

.culture_card:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background-image: url(../images/culture_line.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.culture_card:last-child:after {
    display: none;
}

.culture_bottom {
    position: absolute;
    padding: 40px;
    padding-bottom: 0 !important;
    left: 0;
    width: 100%;
    bottom: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    transition: bottom .4s;
}

.culture_card_icon {
    text-align: center;
}

.culture_card_icon img {
    max-width: 80px;
}

.culture_card_title {
    margin-top: 24px;
    color: var(--white-color);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
}

/* 描述 - 默认隐藏，悬停时显示 */
.culture_card_desc {
    max-width: 340px;
    max-width: 0 auto;
    color: var(--white-color);
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    height: 0;
    opacity: 0;
    transition: height 0.4s ease;
}


/* 响应式 */
@media (min-width: 768px) {

    .culture_card:hover {
        background: rgba(0, 0, 0, 0.60);
    }

    .culture_cards:hover .culture_card {
        width: 22.6%;
    }

    .culture_cards:hover .culture_card:hover {
        width: 32%;
    }

    .culture_card:hover .culture_card_desc {
        height: inherit;
        opacity: 1;
        margin-top: 16px;
    }

    .culture_card:hover .culture_bottom {
        bottom: 50%;
        transform: translateY(50%);
    }

}

@media (max-width: 991px) {

    .culture_bottom {
        padding: 40px 25px;
    }

}

@media (max-width: 767px) {
    .culture_cards {
        flex-flow: column;
    }

    .culture_card {
        padding: 40px 20px;
        padding-bottom: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.30);
    }

    .culture_bottom {
        position: relative;
        padding: 0;
        bottom: inherit;
        padding-bottom: 40px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .culture_card_icon img {
        max-width: 60px;
    }

    .culture_card_desc {
        opacity: 1;
        height: auto;
        margin-top: 16px;
        max-width: inherit;
    }

    .culture_card:last-child .culture_bottom {
        border-bottom: none;
    }

}



/* ========== 研发实力 ========== */
.about_rd {
    position: relative;
    margin-top: 68px;
    padding-top: 88px;
    padding-bottom: 55px;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.rd_bg_wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.rd_bg_img {
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rd_bg_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000 0%, #000 37%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
}

/* 标题区 */
.rd_title_wrap {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.rd_title {
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.5;
}

.rd_subtitle {
    margin-top: 24px;
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

/* 数据统计 */
.rd_stats {
    display: flex;
    align-items: center;
    padding-top: 13.5%;
    max-width: 1300px;
    margin-left: -28px;
    margin-right: -28px;
    margin: 0 auto;

}

.rd_stat_item {
    padding: 0 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 25%;
}

.rd_stat_item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 1px;
    height: calc(100% - 12px);
    background-color: var(--white-color);
    opacity: 0.2;
}

.rd_stat_item:last-child:before {
    display: none;
}

.rd_stat_top {
    position: relative;
    display: flex;
    align-items: center;
}

.rd_stat_num {
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.rd_stat_num .rd_num {
    color: var(--white-color);
    font-weight: 700;
    line-height: 0.9;
}

.rd_stat_num .rd_unit {
    margin-left: 8px;
    color: var(--white-color);
}


@media (min-width:768px) {
    .rd_stat_icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
    }
}

.rd_stat_sep {
    flex-shrink: 0;
}

.rd_stat_label {
    padding-top: 20px;
    color: var(--white-color);
}

/* 能力卡片 */
.rd_cards {
    padding-top: 14%;
    display: flex;
}

.rd_card {
    flex: 1;
    margin-left: 12px;
    margin-right: 12px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: rgba(55, 55, 55, 0.50);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rd_card:first-child {
    margin-left: 0;
}

.rd_card:last-child {
    margin-right: 0;
}

.rd_card_t {
    color: var(--white-color);
    font-weight: 700;
}

.rd_card_d {
    margin-top: 17px;
    color: var(--white-color);
    opacity: 0.8;
    line-height: 1.5;
}

@media (max-width: 1279px) {
    .rd_stat_icon {
        width: 40px;
    }

    .rd_card {
        padding: 24px 20px;
    }

    .rd_stats {
        margin-left: -20px;
        margin-right: -20px;
    }

    .rd_stat_item {
        padding: 0 20px;
    }

}

@media (max-width:1000px) {
    .rd_stats {
        flex-wrap: wrap;
    }

    .rd_stat_item {
        width: 50%;
        padding: 0 40px;
        margin-bottom: 30px;
    }

    .rd_stat_item:nth-child(2):before {
        display: none;
    }


}

@media (max-width:991px) {
    .rd_cards {
        flex-wrap: wrap;
        margin-left: -12px;
        margin-right: -12px;
    }

    .rd_card {
        flex: inherit;
        margin: 12px !important;
        width: calc(50% - 24px);
    }

}

@media (max-width:767px) {

    .rd_stat_top {
        flex-flow: column;
        align-items: flex-start;
    }

    .rd_stats {
        margin: 0;
    }

    .rd_stats {
        align-items: flex-start;
    }

    .rd_stat_item {
        padding: 10px;
        margin-bottom: 20px;
    }

    .rd_stat_item::before {
        display: none !important;
    }

    .rd_stat_icon {
        width: 32px;
    }

    .rd_stat_num {
        order: 2;
        margin-top: 16px;
    }

    .rd_stat_num .rd_unit {
        margin-left: 4px;
        font-size: 16px;
    }

    .rd_stat_label {
        padding-top: 16px;
        max-width: 150px;
    }

    .rd_card {
        border-radius: 16px;
        width: calc(100% - 24px);
    }

    .rd_cards {
        padding-top: 35px;
    }

}

/* honor */
.about_honor {
    padding-top: 88px;
    padding-bottom: 100px;
    background-image: url(../images/honor_bg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden;
}

.honor_content {
    margin-top: 42px;
    padding-bottom: 132px;
}

.honor_tab {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40px;
    background: var(--white-color);
    width: max-content;
    border-radius: 50px;
    overflow: hidden;
}

.honor_tab ul {
    margin-left: -2px;
    margin-right: -2px;
    display: flex;
    align-items: center;
}

.honor_tab ul li {
    padding: 0 2px;
}

.honor_tab ul li a {
    display: inline-block;
    position: relative;
    padding: 14px 32px;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
    border-radius: 50px;
    /* overflow: hidden; */
}

.honor_tab ul li a::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-color: var(--main-color);
    border-radius: 50px;
    transition: all 0.5s ease;
}

.honor_tab ul li a:hover {
    color: var(--white-color);
}

.honor_tab ul li a:hover::before {
    left: 0;
}

.honor_tab ul li.active a {
    color: var(--white-color);
    border-color: var(--main-color);
}

.honor_tab ul li.active a::before {
    left: 0;
}


.honor_content .tab_box .pub-show {
    width: 100%;
    display: none;
    opacity: 0;
}

.honor_content .tab_box .pub-show.d-show {
    display: inline-block;
    opacity: 1;
}

.honor_content .rs_cen .mySwiper1,
.honor_content .rs_cen .mySwiper2 {
    overflow: visible;
}

.honor_content .new-prev,
.honor_content .new-next {
    transition: opacity .3s;
}

.honor_content .new-prev {
    opacity: 0;
}

.honor_content .new-next {
    opacity: 0;
}

.honor_content .pub-show:hover .new-prev,
.honor_content .pub-show:hover .new-next {
    opacity: 1;
}



.honor_content .rs_cen .swiper-slide {
    padding-top: 30px;
    padding-bottom: 30px;
}

.honor_content .rs_cen .border {
    padding: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.40);
    box-shadow: 0 28px 60px 8px rgba(0, 15, 94, 0.20);
}

.honor_content .rs_cen .bg {
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    z-index: 1;
}

.honor_content .bg img {
    width: 100%;
}

.honor_content .bg img:nth-child(1) {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.honor_content .rs_cen .title {
    margin-top: 30px;
    color: var(--dark-color);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    height: 56px;
    line-height: 28px;
}

.honor_content .rs_cen .swiper-slide .bg {
    width: 100%;
}

.honor_content .rs_cen .swiper_list p {
    display: none;
    padding-top: 32px;
    color: var(--dark-color);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
}

.honor_content .rs_cen .swiper_list p.active {
    display: block;
}

.honor-pagination {
    position: relative;
    padding-top: 45px;
    text-align: center;
    display: none;
}

.honor-pagination span {
    width: 24px;
    height: 3px;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 0;
    margin: 0 4px;
    opacity: 1;
    transition: width .4s;
    cursor: pointer;
}

.honor-pagination span.swiper-pagination-bullet-active {
    background-color: var(--main-color);
    width: 48px;
}



@media (max-width:991px) {

    .honor-pagination span {
        width: 10px;
        height: 3px;

    }

    .honor-pagination span.swiper-pagination-bullet-active {
        width: 12px;
    }

}

@media (max-width:767px) {

    .honor_content .rs_cen .border {
        padding: 32px 20px;
    }

    .honor-pagination {
        padding-top: 25px;
    }

    .honor-pagination span.swiper-pagination-bullet-active {
        width: 30px;
    }

}

/* ========== 全球网络 ========== */
.about_global {
    background: var(--main-color);
    padding: 88px 0 0 0;
    overflow: hidden;
}

.global_title_wrap {
    text-align: center;
    margin-bottom: 60px;
}

.global_title {
    color: var(--white-color);
    font-weight: 400;
}

.global_subtitle {
    color: var(--white-color);
    margin-top: 24px;
}

/* 数据统计 */
.global_stats {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    width: 1260px;
    max-width: 100%;
    margin-left: -41px;
    margin-right: -41px;
}

.global_stat_item {
    position: relative;
    padding: 0 41px;
    width: 33.33%;
    display: flex;
    flex-direction: column;
}

.global_stat_item::before {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 1px;
    height: calc(100% - 12px);
    background-color: var(--white-color);
    opacity: 0.2;
}

.global_stat_item:last-child::before {
    display: none;
}

.global_stat_top {
    position: relative;
    display: flex;
    align-items: center;
}

.global_stat_num {
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
}

.global_stat_num .global_num {
    color: #fff;
    line-height: 1;
    font-weight: 700;
}

.global_stat_num .global_unit {
    color: var(--white-color);
    margin-left: 8px;
}

.global_stat_icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
}

.global_stat_label {
    margin-top: 20px;
    color: var(--white-color);
}

/* 地图区域 */
.global_map_wrap {
    position: relative;
    width: 100%;
}

.global_map_inner {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.global_map_img {
    width: 100%;
    height: auto;
    display: block;
}

/* 标记点 */
.global_markers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global_marker {
    position: absolute;
    top: 0;
    height: fit-content;
    z-index: 2;
}

.big_marker i {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white-color);
}

.big_marker i:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    animation: markerPulse 2s ease-in-out infinite;
}

.global_marker_sm {
    left: -5px;
}

.global_marker_sm i {
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--white-color);
}

.global_marker_sm i:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--white-color);
    animation: markerPulseSm 2.5s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
}

@keyframes markerPulseSm {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0.1;
    }
}

/* 信息卡片 */
.global_info_card {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    z-index: 3;
}

.global_info_card.active {
    opacity: 1;
}

.global_card_line {
    margin-right: 16px;
    width: 1px;
    height: 164px;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    align-self: stretch;
}

.global_card_body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.global_card_country {
    color: #fff;
    line-height: 1;
}

.global_card_cities {
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.global_card_cities div {
    display: flex;
    flex-flow: column;

}

.global_card_china .global_card_body {
    width: 108px;
}

.global_card_china .global_card_cities {
    flex-flow: wrap;
}

.global_card_china .global_card_cities div {
    flex-wrap: wrap;
    width: 50%;
}

.global_card_china .big_marker {
    left: -15px;
    top: auto;
    bottom: -15px;
}

/* 中国卡 - 左上区域 */
.global_card_china {
    top: 27%;
    left: 36.4%
}

/* 美国卡 - 右上区域 */
.global_card_us {
    right: 23.1%;
    top: 49%;
    align-items: flex-end;

}

.global_card_us .global_card_line {
    height: 100px;
}

/* 东南亚卡 - 左下区域 */
.global_card_sea {
    top: 57%;
    left: 32.9%;
    align-items: flex-end;

}

.global_card_sea .global_card_line {
    height: 110px;
}

/* 响应式 */
@media (max-width: 1680px) {
    .global_card_china {
        top: 25.5%;
    }
}

@media (max-width: 1580px) {
    .global_card_china {
        top: 24.5%;
    }
}

@media (max-width: 1579px) {
    .global_card_china {
        top: 22.2%;
    }

    .global_card_china .big_marker {
        left: -13px;
        bottom: -13px;
    }

    .big_marker i {
        width: 26px;
        height: 26px;
    }

    .global_card_us {
        right: 21.8%;
    }

    .global_map_inner {
        width: 1250px;
    }
}

@media (max-width: 1500px) {
    .global_card_china {
        top: 22.2%;
    }
}

@media (max-width: 1440px) {
    .global_card_china .big_marker {
        left: -10px;
        bottom: -10px;
    }

    .big_marker i {
        width: 20px;
        height: 20px;
    }

    .global_card_china {
        top: 21.5%;
    }

    .global_card_us {
        right: 21.0%;
    }

    .global_map_inner {
        width: 1200px;
    }


}

@media (max-width: 1439px) {
    .global_card_china .big_marker {
        left: -10px;
        bottom: -10px;
    }

    .big_marker i {
        width: 20px;
        height: 20px;
    }

    .global_card_china {
        top: 22.1%;
    }

    .global_map_inner {
        width: 1150px;
    }


}

@media (max-width: 1366px) {

    .global_map_wrap {
        padding-top: 50px;
    }

    .global_card_china {
        top: 18.5%;
    }

    .global_map_inner {
        width: 1100px;
    }
}

@media (max-width: 1279px) {
    .global_map_wrap {
        padding-top: 80px;
    }

    .global_map_inner {
        width: 900px;
    }

    .global_card_china {
        top: 12.5%;
    }

    .global_card_us {
        right: 19.0%;
    }

}

@media (max-width: 991px) {

    .about_second_right {
        width: 48%;
    }

    .about_culture {
        padding-top: 100px;
    }

    /* map */
    .global_map_wrap {
        padding-top: 100px;
    }

    .global_stats {
        margin-left: -20px;
        margin-right: -20px;
    }

    .global_stat_item {
        padding: 0 20px;
    }

    .global_stat_icon {
        width: 38px;
    }

    .global_map_inner {
        width: 710px;
    }

    .global_card_us {
        right: 17.0%;
    }

    .global_card_china {
        top: 3.5%;
    }
}


@media (max-width: 767px) {
    .about_second {
        padding-top: 50px;
    }

    .about_second>.my-container {
        flex-flow: column;
    }

    .about_second_left {
        margin-right: 0;
    }

    .about_second_right {
        margin-top: 30px;
        width: 100%;
    }

    .about_second_right .text p {
        padding-bottom: 25px;
        font-size: 18px;
        line-height: 1.6;
    }

    .about_culture {
        padding-top: 50px;
    }


    /* honor */
    .honor_content {
        padding-bottom: 0px;
    }

    .rs_cen {
        padding-top: 30px;
    }

    .honor_tab {
        position: relative;
        left: inherit;
        transform: inherit;
        margin: 0 auto;
        z-index: 9;
    }

    .about_honor {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .about_rd {
        margin-top: 50px;
        padding-top: 50px;
    }

    .about_global {
        padding: 50px 0 0 0;
    }

    .global_stats {
        flex-flow: column;
        margin-left: 0;
        margin-right: 0;
    }

    .global_map_wrap {
        padding-top: 0px;
    }

    .global_stat_item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 35px;
    }

    .global_stat_item::before {
        display: none !important;
    }

    .global_markers,
    .global_info_card {
        display: none !important;
    }

    .global_map_inner {
        width: 100%;
    }

    .global_stats {
        position: relative;
        margin-bottom: 30px;
    }

}

/* ========== 页面底部浮动导航 ========== */
.page_float_nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    pointer-events: none;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 215px;
    height: 80px;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
    z-index: 999;
}

.float_nav_panel {
    position: absolute;
    left: 0;
    bottom: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    width: 100%;
    pointer-events: none;
    /* transition: opacity 0.35s ease; */
}

.page_float_nav.open {
    height: auto;
    overflow: visible;
}

.page_float_nav.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page_float_nav.open .float_nav_panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float_nav_link {
    display: block;
    padding: 12px 32px;
    margin-bottom: 10px;
    background: rgba(26, 26, 26, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.float_nav_link:hover,
.float_nav_link.active {
    background: rgba(255, 255, 255, 0.95);
    color: var(--main-color);
}

.float_nav_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 16px 32px;
    width: 100%;
    height: 80px;
    border-radius: 70px;
    background: rgba(26, 26, 26, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
    outline: none;
}

.float_nav_label {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
    padding-right: 16px;
}

.float_nav_icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease, background 0.25s ease;
}

.page_float_nav.open .float_nav_icon {
    transform: rotate(180deg);
    background: #e8e8e8;
}

.float_nav_icon img {
    width: 30px;
    height: 30px;
}

@media (max-width: 767px) {
    .page_float_nav {
        display: none !important;
    }

    /* 
    .float_nav_toggle {
        height: 62px;
        padding-left: 24px;
    }

    .float_nav_label {
        font-size: 15px;
        padding-right: 12px;
    }

    .float_nav_icon {
        width: 38px;
        height: 38px;
    }

    .float_nav_icon img {
        width: 22px;
        height: 22px;
    }

    .float_nav_link {
        padding: 10px 24px;
        font-size: 14px;
    } */
}

/* 发展历程 */
.about_deve {
    padding-top: 125px;
    padding-bottom: 80px;
}

@media (max-width:767px) {
    .about_deve {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* 移动端发展历程：隐藏桌面端左侧导航 */
    .deve_b_left {
        display: none;
    }

    .deve_bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .deve_bottom .deve_pic_img {
        margin-top: 36px;
    }

    .deve_bottom .deve_pic_img>img {
        min-height: 200px;
        border-radius: 16px;
    }

    .deve_pic_img .icon {
        width: 30%;
        max-width: 200px;
    }

    .deve_cont {
        padding-left: 0;
        padding-right: 0;
        display: block;
    }

    .infor_text_z {
        padding-right: 0;
        width: 100%;
        height: auto;
        margin-top: 36px;
        overflow: hidden;
    }

    /* 默认折叠状态：只显示前一段，其余隐藏 */
    #demo-box {
        max-height: 490px;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    #demo-box.expanded {
        max-height: inherit;
        height: auto;
        overflow: visible;
    }

    /* 展开收起按钮 */
    #btn-expand-trigger {
        text-align: center;
        margin-top: 36px;
        position: relative;
    }

    /* 渐变遮罩：折叠状态时显示，展开时隐藏 */
    #btn-expand-trigger .expand-gradient {
        position: absolute;
        left: 0;
        top: -60px;
        width: 100%;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        pointer-events: none;
    }

    #btn-expand-trigger button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-width: 160px;
        height: 48px;
        padding: 0 32px;
        border: 1px solid var(--main-color);
        border-radius: 50px;
        background: #fff;
        color: var(--main-color);
        font-size: 16px;
        font-family: inherit;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    /* #btn-expand-trigger button:hover {
    background: var(--main-color);
    color: #fff;
} */

    #btn-expand-trigger button::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none"><path d="M6 9l6 6 6-6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') center no-repeat;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    #btn-expand-trigger button.expanded-icon::after {
        transform: rotate(180deg);
    }

    /* 移动端文字样式调整 */
    .infor_text_z .text_wz {
        padding-left: 0;
    }

    .deve_loop_t p {
        font-size: 24px;
    }

    .deve_loop_t span {
        font-size: 16px;
    }

    /* .deve_loop_list {
    padding-bottom: 20px;
} */

    .deve_list_right p {
        font-size: 14px;
    }

}

/* 投资者关系 */
.investor_sshq {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 56px;
    margin-bottom: 5px;
    border-radius: 24px;
    background-color: var(--white-color);
    z-index: 9;
}

.investor_box {
    position: relative;
}

.investor_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: calc(100% - 250px);
    background: #F2F2F3;
}

.sshq_left {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 523px;
}

.hq_title {
    color: var(--main-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.sshq_right {
    flex: 1;
    margin-left: 50px;
    max-width: 850px;
    min-height: 575px;
}
.sshq_right iframe {
    height: 100% !important;
}
.sshq_right .tab_more a {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 4px;
    border-top: 1px solid #7CC7DA;
    border-right: 1px solid #7CC7DA;
    border-left: 1px solid #7CC7DA;
    background: var(--white-color);
    color: #7CC7DA;
}

.sshq_right .tab_more a.active {
    color: var(--white-color);
    background-color: #7CC7DA;
    border-color: #7CC7DA;
}

.sshq_right .tab_con {
    border: 1px solid #7CC7DA;
    background: var(--white-color);
}

.sshq_right .pub-t1 {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .4s;
}

.sshq_right .pub-t1.d-show {
    opacity: 1;
    overflow: visible;
    height: 100%;
}

.sshq_right .pub-t1 img {
    width: 100%;
}

/* 实时行情 - 股票价格区 */
.mid_line {
    margin-top: 50px;
    margin-bottom: 50px;
}

.hq_stock_name {
    color: #666;
    font-weight: 400;
    line-height: 1.2;
}

.hq_stock_price {
    display: flex;
    align-items: flex-end;
    margin-top: 10px;
}

.hq_price_num {
    color: #333;
    font-weight: 700;
    line-height: 1;
}

.hq_price_change {
    margin-left: 25px;
    display: flex;
    flex-flow: column;
}

.hq_price_change div:nth-child(2) {
    padding-top: 8px;
}

.hq_change_val,
.hq_change_pct {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

/* 实时行情 - 数据网格 */
.hq_data_grid {
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}

.hq_data_item {
    display: flex;
    flex-direction: column;
}

.hq_data_item {
    /* width: 25%; */
}

.hq_data_label {
    color: #666;
    font-size: 16px;
    font-family: "OPPOSans M";
    font-weight: 400;
    line-height: 1.6;
}

.hq_data_val {
    display: flex;
    align-items: baseline;
    padding-top: 8px;
}

.hq_data_val>span:first-child {
    color: var(--dark-color);
    font-weight: 400;

    line-height: 1.2;
}

.hq_data_unit {
    margin-left: 8px;
    color: #BCBCBC;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

/* 实时行情 - 更新时间 */
.hq_update {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

/* 最新公告 */
.investor_news {
    position: relative;
    margin-top: 60px;
    padding-top: 72px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    z-index: 2;
}

.news_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.news_title {
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
}

.news_more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 12px 20px;

    border-radius: 60px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    z-index: 1;
    overflow: hidden;
}

.news_more::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--main-color);
    transform: translateY(-50%) scale(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.08, 0.79, 0.45, 0.94);
    z-index: -1;
}

.news_more span {
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.news_more svg {
    margin-left: 16px;
    width: 24px;
    transition: all 0.4s ease;
}

.news_more:hover {
    border-color: var(--main-color);
}

.news_more:hover::after {
    transform: translateY(-50%) scale(50);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news_more:hover span {
    color: var(--white-color);
}

.news_more:hover svg {
    transform: rotate(45deg);
}

.news_more:hover svg path {
    stroke: var(--white-color);
}

.news_cards {
    display: flex;
}

.news_cards ul {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}

.news_cards ul li {
    padding: 12px;
    width: 25%
}

.news_card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 284px;
    background: var(--white-color);
    border-radius: 24px;
    padding: 32px;
    transition: background 0.4s ease, transform 0.3s ease;
    overflow: hidden;
}

.news_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(200px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.news_card_title {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_card_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.news_date {
    display: flex;
    align-items: center;
}

.news_date i {
    margin-right: 8px;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../images/time_icon.svg);
}

.news_date span {
    color: #8E8E8E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.news_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F2F2F3;
    border-radius: 50%;
    flex-shrink: 0;
}

.news_arrow svg {
    width: 30px;
    transition: all .4s;
}

.news_card:hover {
    background: var(--main-color);
    transform: translateY(-4px);
}

.news_card:hover::before {
    opacity: 1;
}

.news_card:hover .news_card_title {
    color: var(--white-color);
}

.news_card:hover .news_date span {
    color: var(--white-color);
}

.news_card:hover .news_date i {
    background-image: url(../images/time_iconw.svg);
}

.news_card:hover .news_arrow svg {
    transform: rotate(45deg);
}

.news_card:hover .news_arrow svg path {
    stroke: var(--main-color);
}

.investor_contact {
    position: relative;
    margin-top: 100px;

    padding: 160px 0;
    background-image: url(../images/tzz_last_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.investor_contact .title {
    color: var(--white-color);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.investor_contact .loop {
    margin-top: 40px;
}

.investor_contact .loop .i {
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
}

.investor_contact .loop .i:last-child {
    padding-bottom: 0;
}

.investor_contact .loop .i,
.investor_contact .loop .i a {
    color: var(--white-color);
}

.investor_contact .loop .i i {
    margin-top: -2px;
    width: 24px;
    margin-right: 8px;

}

/* 投资者关系 - 响应式 */
@media (max-width: 1279px) {
    .sshq_left {
        width: 320px;
    }

    .news_card {
        padding: 32px 25px;
    }

}

@media (min-width: 992px) and (max-width: 1279px) {
    .hq_data_grid {
        flex-wrap: wrap;
    }

    .hq_data_item {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .investor_sshq {
        flex-flow: column;
    }

    .investor_sshq {
        padding: 40px;
    }

    .sshq_left {
        width: 100%;
    }

    .sshq_right {
        margin-top: 40px;
        width: 100%;
        margin-left: 0px;
        max-width: inherit;
    }
    
.sshq_right {

    min-height: inherit;
}
.sshq_right iframe {
    height: 575px !important;
}




    .news_cards ul {
        flex-wrap: wrap;
    }

    .news_cards ul li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .investor_box {
        padding-top: 60px;
    }

    .investor_box:after {
        top: 120px;
        height: calc(100% - 120px);
    }

    .investor_sshq {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .hq_data_grid {
        flex-wrap: wrap;
    }

    .sshq_right .tab_more a {
        padding: 8px 10px;
    }

    .hq_data_item {
        width: 50%;
        margin-bottom: 20px;
    }

    .investor_news {
        margin-top: 40px;
        padding-top: 42px;
    }

    .news_more {
        padding: 12px 12px 12px 16px;
    }

    .news_more svg {
        margin-left: 10px;
    }

    .news_cards ul li {
        width: 100%;
    }

    .hq_data_label {
        font-family: "OPPOSans R";
        font-weight: 600;
    }

    .investor_contact {
        margin-top: 50px;
        padding: 70px 0;
    }

    .hq_data_unit {
        margin-left: 2px;
    }

    .hq_price_num {
        font-size: 40px;
    }
}

/* 社会责任 */
.social_box {
    position: relative;
    z-index: 1;
}

.social_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: calc(100% - 250px);
    background: var(--white-color);
    z-index: -1;
}

.social_top_text {
    margin-left: 80px;
    margin-right: 80px;
    padding-top: 130px;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
    width: calc(100% - 160px);
    border-radius: 24px;
    background: var(--white-color);
    overflow: hidden;
}

.social_top_text .des {
    text-align: center;
    max-width: 744px;
    margin: 0 auto;
    color: var(--dark-color);
    font-style: normal;
    font-family: 'opposans M';
    font-weight: 400;
    line-height: 1.5;
}

.social_top_bottom {
    padding-top: 50px;
}

.social_top_text .social_top_bottom .cup-bubbles {
    height: 550px;
    position: relative;
    width: 100%;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble {
    position: absolute;
    border-radius: 50%;
    transform: translateY(50px);
    overflow: hidden;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble1 {
    left: 63%;
    top: 15%;
    width: 120px;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble2 {
    left: 19%;
    top: 18%;
    width: 290px;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble3 {
    left: 48%;
    top: 47%;
    width: 195px;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble4 {
    left: 12%;
    top: 68%;
    width: 110px;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble5 {
    left: 72%;
    top: 68%;
    width: 180px;
}

/* cicle */
.social_top_text .social_top_bottom .cup-bubbles .bubble6 {
    width: 35px;
    height: 35px;
    left: 95%;
    top: 80%;
    border: 1px solid var(--main-color);
    opacity: 0.2;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble7 {
    width: 42px;
    height: 42px;
    left: 14%;
    top: 9%;
    background-color: #D9D9D9;
    opacity: 0.5;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble8 {
    width: 70px;
    height: 70px;
    border: 1px solid var(--main-color);
    opacity: 0.2;
    left: 4%;
    top: 40%;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble9 {
    width: 42px;
    height: 42px;
    background-color: var(--main-color);
    opacity: 0.5;
    left: 31.5%;
    top: 59%;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble10 {
    width: 22px;
    height: 22px;
    left: 47%;
    top: 10%;
    background: var(--main-color);
    opacity: 0.5;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble11 {
    width: 42px;
    height: 42px;
    border: 1px solid var(--main-color);
    left: 43%;
    top: 33%;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble12 {
    width: 14px;
    height: 14px;
    left: 42%;
    top: 53%;
    background: #D9D9D9;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble13 {
    width: 24px;
    height: 24px;
    left: 58%;
    top: 53%;
    background: var(--main-color);
}

.social_top_text .social_top_bottom .cup-bubbles .bubble14 {
    width: 38px;
    height: 38px;
    border: 1px solid #D9D9D9;
    left: 68%;
    top: 40%;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble15 {
    width: 22px;
    height: 22px;
    left: 64%;
    top: 24%;
    border: 1px solid var(--main-color);
}

.social_top_text .social_top_bottom .cup-bubbles .bubble16 {
    width: 14px;
    height: 14px;
    background-color: var(--main-color);
    left: 87%;
    top: 26%;
    opacity: 0.5;
}

.social_top_text .social_top_bottom .cup-bubbles .bubble17 {
    width: 50px;
    height: 50px;
    left: 81%;
    top: 51%;
    background: #D9D9D9;
    opacity: 0.5;
}

@media (max-width:1279px) {
    .social_top_text {
        margin-left: 60px;
        margin-right: 60px;
        width: calc(100% - 120px);
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble2 {
        width: 250px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble3 {
        width: 175px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble5 {
        width: 160px;
    }

}

@media (max-width:991px) {

    .social_top_text {
        margin-left: 40px;
        margin-right: 40px;
        width: calc(100% - 80px);
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble2 {
        width: 220px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble3 {
        width: 155px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble5 {
        width: 140px;
    }


}

@media (max-width:767px) {
    .social_box {
        padding-top: 60px;
    }

    .social_box:after {
        top: 120px;
        height: calc(100% - 120px);
    }

    .social_top_text {
        padding-top: 50px;
        padding-bottom: 0px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px);
    }

    .social_top_text .social_top_bottom .cup-bubbles {
        height: 430px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble1 {
        width: 50px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble2 {
        width: 110px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble3 {
        width: 70px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble4 {
        width: 60px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble5 {
        width: 60px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble6 {
        width: 17px;
        height: 17px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble7 {
        width: 21px;
        height: 21px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble8 {
        width: 36px;
        height: 36px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble9 {
        width: 21px;
        height: 21px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble10 {
        width: 11px;
        height: 11px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble11 {
        width: 30px;
        height: 30px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble12 {
        width: 7px;
        height: 7px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble13 {
        width: 12px;
        height: 12px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble14 {
        width: 16px;
        height: 16px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble15 {
        width: 16px;
        height: 16px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble16 {
        width: 7px;
        height: 7px;
    }

    .social_top_text .social_top_bottom .cup-bubbles .bubble17 {
        width: 25px;
        height: 25px;
    }

    .social_top_text .des {
        font-family: inherit;
        font-weight: 700;
    }
}

.home_develop {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.home_develop_wrap {
    width: 100%;
    padding-top: 350px;
}

.hdwt-wrap .small_title {
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
}

.home_develop_wrap .std_title1 {
    margin-top: 36px;
    position: relative;
    text-align: center;
    height: 100%;
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.5;

}

.hdwt-wrap {
    position: relative;
    z-index: 9;
}

.hdwt-wrap .hdwt-wrap-parga {
    padding-top: 36px;
    text-align: center;
    color: var(--white-color);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.hdwt-wrap .hdwt-wrap-parga p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
}

@media (min-width:768px) {
    .home_develop.isfixed .home_develop_bg {
        position: fixed;
        top: 0;
    }

    .home_develop.isfixed.notfixed .home_develop_bg {
        position: absolute;
        top: auto !important;
        bottom: 0;
    }

}

.hdwl_ul_li {
    margin-bottom: 20px;
    width: 40%;
    max-width: 580px;
    transform: translateY(300px);
    transition: transform 0.6s ease;
}

.hdwl_ul1 .hdwl_ul_li:nth-child(2) {
    margin-left: 60%;
}

.hdwl_ul_li:nth-child(3) {
    margin-left: 120px;
}

.hdwl_ul_li_cont {
    display: flex;
    padding: 36px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.90) 100%);
    backdrop-filter: blur(12px);
}

.hdwl_ul_li .ys_imgbox_cover {
    width: 80px;
}

.hdwl_ul {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 5;
}

.hdwl_ul_li .std_title3 {
    margin-top: 25px;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.hulc_parga p {
    /* max-width: 320px; */
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    overflow: hidden;
}

.home_develop_wrap_list {
    margin-top: 195px;
    padding-bottom: 100px;
    overflow: hidden;
}

.ys-fadeup1 {
    animation: ysfadeInUp .8s ease-in-out both;
    animation-delay: .2s;
}

.ys-fadeup2 {
    animation: ysfadeInUp .8s ease-in-out both;
    animation-delay: .3s;
}

.ys-fadeup3 {
    animation: ysfadeInUp .8s ease-in-out both;
    animation-delay: .4s;
}

@-webkit-keyframes ysfadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes ysfadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.hdwl_ul_li.act {
    transform: translateY(0px);
}

.home_develop_bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: -1;
}

.social_bottom_top {
    max-width: 886px;
    margin: 0 auto;
}

.home_develop_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 1100px) {
    .hdwl_ul_li {
        width: 50%;
    }

    .hdwl_ul1 .hdwl_ul_li:nth-child(2) {
        margin-left: 50%;
    }

    .hdwl_ul_li:nth-child(3) {
        margin-left: 120px;
    }

.hdwt-wrap .hdwt-wrap-parga p {
    font-size: 20px;

}
}


@media (max-width: 767px) {
    .home_develop_wrap {
        padding-top: 80px;
    }

    .home_develop_bg {
        height: 100%;
    }

    .home_develop_wrap .std_title1 {
        margin-top: 26px;
        font-family: inherit;
        font-weight: 600;
    }

    .hdwt-wrap .hdwt-wrap-parga {
        padding-top: 26px;
    }

    .home_develop_wrap_list {
        margin-top: 80px;
        padding-bottom: 60px;
    }

    .hdwl_ul_li {
        width: 100%;
    }

    .hdwl_ul1 .hdwl_ul_li:nth-child(2) {
        margin-left: 0;
    }

    .hdwl_ul_li:nth-child(3) {
        margin-left: 0;
    }

    .hdwl_ul_li_cont {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .hdwl_ul_li .ys_imgbox_cover {
        width: 60px;
    }

    .hdwl_ul_li .std_title3 {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .hulc_parga p {
        font-size: 18px;
    }

    .hdwl_ul_li {
        transition: transform 0.3s ease;
    }

    .hdwl_ul_li {
        transform: translateY(50px);
    }

    .ys-fadeup1 {
        animation: ysfadeInUp .4s ease-in-out both;
        animation-delay: .2s;
    }

    .ys-fadeup2 {
        animation: ysfadeInUp .4s ease-in-out both;
        animation-delay: .3s;
    }

    .ys-fadeup3 {
        animation: ysfadeInUp .4s ease-in-out both;
        animation-delay: .4s;
    }
.hdwt-wrap .hdwt-wrap-parga p {
    font-size: 18px;

}


}

/* 联系我们 */
.contact_map {
    width: 100%;
    height: 100%;
}

.contact_box {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: calc(100% - 250px);
    background-color: #F2F2F3;
    z-index: -1;
}

.contact_cont_box {
    position: relative;
    padding: 56px;
    background: var(--main-color);
    border-radius: 24px;
    overflow: hidden;
    z-index: 9;
}

.contact_cont_box:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 61%;
    height: 100%;
    background-image: url(../images/contact_bg_r.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
    z-index: -1;
}

.contact_cont_box .t {
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.5;
}

.contact_cont_box .text {
    padding-top: 13px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.contact_box_list {
    padding-top: 38px;
}

.contact_box_list ul {
    margin-left: -20px;
    margin-right: -20px;
    display: flex;
    flex-wrap: wrap;
}

.contact_box_list ul li {
    padding: 20px;
    float: left;
    width: 22%;
}

.contact_box_list ul li:nth-child(4) {
    width: 34%;
}

.box_list01 {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.box_list01 .title {
    color: rgba(255, 255, 255, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.box_list01 .two_t {
    padding-top: 16px;
    color: var(--white-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.box_list01 .two_t a {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.box_list01 .icon {
    padding-top: 16px;
}

.box_list01 .icon img {
    width: 40px;
}

.contact_box_bottom {
    margin-top: 20px;
}

.contact_box_bottom .title {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.box_bottom_list {
    padding-top: 30px;
    display: flex;
}

.box_bottom_list .ul .li {
    position: relative;
    padding-right: 32px;

    margin-right: 32px;
    float: left;
}

.box_bottom_list .ul .li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.20);
    ;
}

.box_bottom_list .ul .li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.box_bottom_list .ul .li:last-child:before {
    display: none;
}

.box_bottom_list .ul .li .right {
    padding-left: 16px;
}

.box_bottom_list .t {
    color: var(--white-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}

.box_bottom_list .p {
    padding-top: 4px;
    color: rgba(255, 255, 255, 0.60);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.eject_cont {
    position: relative;
}

.eject_cont .eject_tc {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    margin-left: -58px;
    transform: translateY(-20px);
    padding: 8px;
    background: var(--white-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    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 {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

.eject_cont .eject_tc .img_ {
    width: 140px;
    text-align: center;
}

.eject_cont:hover {
    overflow: visible;
}

.eject_cont .eject_tc.m_show {
    opacity: 1;
    transform: translateY(0);
    z-index: 99;
}

@media (min-width: 1580px) and (max-width: 1680px) {
    .box_list01 .two_t {
        font-size: 22px;
    }
}

@media (max-width: 1579px) {
    .box_list01 .two_t {
        min-height: 88px;
    }
}

@media (max-width: 1440px) {

    .box_list01 .two_t {
        font-size: 22px;
    }

}

@media (max-width: 1439px) {

    .box_list01 .two_t {
        font-size: 20px;
    }

}

@media (max-width: 1365px) {
    .contact_box_list ul li {
        width: 33.33%;
    }

    .contact_box_list ul li:nth-child(4) {
        width: 100%;
    }

    .box_list01 .two_t {
        min-height: inherit;
    }
}

@media (max-width: 1189px) {
    .contact_cont_box {
        padding: 40px;
    }

    .box_bottom_list .ul .li {
        padding-right: 20px;
        margin-right: 20px;
    }

}

@media (max-width: 991px) {
    .contact_cont_box:after {
        width: 100%;
        background-size: contain;
        background-position: right bottom;
    }

    .contact_box_list ul {
        margin-left: -10px;
        margin-right: -10px;
    }

    .contact_box_list ul li {
        padding: 10px;
    }

    .box_bottom_list .ul .li {
        margin-bottom: 15px;
    }

    .box_bottom_list .ul .li:nth-child(2):before {
        display: none;
    }
}

@media (max-width: 767px) {
    .contact_cont_box {
        padding: 40px 20px;
    }

    .contact_cont_box .t {
        font-family: inherit;
        font-weight: 600;
    }
    .contact_box_list {
        padding-top: 20px;
    }

    .contact_box_list ul li {
        width: 100%;
    }

    .box_bottom_list .ul .li {
        padding-right: 0;
        margin-right: 0;
    }

    .box_bottom_list .ul .li:before {
        display: none;
    }

}

/* contact_pro */
.contact_pro_box {
    padding-top: 100px;
    padding-bottom: 110px;
}

.contact_pro {
    align-items: flex-end;
}

.contact_pro .blue_title {
    color: var(--main-color);
    line-height: 1.5;
    font-weight: 400;
}

.contact_pro .grey_title {
    margin-top: 4px;
    color: #B4B4B4;
    font-weight: 400;
    line-height: 1.5;
}

.contact_pro .prox_b {
    background-color: var(--white-color);
}

.contact_pro_card {
    display: block;
    position: relative;
    padding: 32px;
    width: 100%;
    height: 380px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.contact_pro_swiper {
    margin-top: 32px;
    overflow: visible;
}

.contact_pro_card_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.contact_pro_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.contact_pro_card_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    transition: all 0.3s ease;
}

.contact_pro_card_bottom {
    position: absolute;
    padding: 32px 32px 42px 32px;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    transform: translateY(10px);
    justify-content: space-between;
    transition: all 0.4s ease;
    z-index: 2;
}

.contact_pro_card_name {
    flex: 1;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.2;
    padding-right: 16px;
}

.contact_pro_card_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

.contact_pro_card_arrow svg {
    transition: all 0.4s;
}

.contact_pro_card_list {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 32px;
    width: 100%;
    opacity: 0;
}

.contact_pro_card_list p {
    margin-top: 4px;
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

.contact_pro_card:hover .contact_pro_card_mask {
    background: rgba(0, 0, 0, 0.60);
}

.contact_pro_card:hover .contact_pro_card_bottom {
    top: 0;
    transform: translateY(0px);
    bottom: inherit;
}

.contact_pro_card:hover .contact_pro_card_list {
    opacity: 1;
}

.contact_pro_card:hover .contact_pro_card_img img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.contact_pro_card:hover .contact_pro_card_arrow svg {
    transform: rotate(45deg);
}


@media (max-width: 1279px) {
    .contact_pro_card {
        height: 340px;
    }
}

@media (max-width: 991px) {

    .contact_pro_box {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .contact_pro {
        flex-flow: column;
        align-items: flex-start;
    }

    .contact_pro .prox_button {
        padding-top: 20px;
    }

    .contact_pro_box {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact_pro_card {
        padding: 32px 20px;
        border-radius: 16px;
        height: 300px;
    }

    .contact_pro_card_bottom {
        padding: 32px 20px 32px 20px;
    }

    .contact_pro_card_list {
        padding: 32px 20px;
    }
     .contact_pro .blue_title,
    .contact_pro .grey_title {
        font-family: inherit;
        font-weight: 600;
    }
}

/* contact message */
.contact_bottom {
    position: relative;
    padding: 88px 0;
    background-color: var(--white-color);
    z-index: 1;
    overflow: hidden;
}

.contact_bottom::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 10%;
    background-image: url(../images/mess_left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    max-width: 667px;
    max-height: 132px;
    z-index: -1;
}

.contact_bottom .pro_xq_contact_left {
    max-width: 672px;
    height: fit-content;
}

@media screen and (min-width: 992px) {
    .contact_bottom .pro_xq_contact_left {
        margin-bottom: 60px;
    }

}

.contact_bottom .pro_xq_contact_right {
    width: 52%;
    max-width: 788px;
}

.contact_bottom .pro_xq_contact_title {
    line-height: 1.2;
}

.mess_left_title {
    margin-top: 16px;
    color: #B4B4B4;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.mess_left_des {
    margin-top: 16px;
    color: #666;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.messform {
    margin-left: -8px;
    margin-right: -8px;
}

.contact_bottom .messform .colw100 {
    padding: 8px;
}

.contact_bottom .messform .text-area span {
    top: 26px;
}

.contact_bottom .messform .input-container input {
    height: 76px;
}

.contact_bottom .message_code img {
    height: 76px;
}

.contact_bottom .messform .input-container textarea {
    height: 212px;
}

.contact_bottom .text-area label {
    bottom: -18px;
}

@media (max-width: 991px) {
    .contact_bottom .bg {
        flex-flow: column;
    }

    .contact_bottom .pro_xq_contact_right {
        width: 100%;
        max-width: inherit;
    }


}

@media (max-width: 767px) {

    .contact_box:after {
        top: 120px;
        height: calc(100% - 120px);
    }

    .contact_bottom {
        padding: 50px 0;
    }

    .pro_xq_contact_right {
        margin-top: 35px;
    }

    .contact_bottom .messform .text-area span {
        top: 18px;
    }

    .contact_bottom .messform .input-container input {
        height: 60px;
    }

    .contact_bottom .message_code img {
        height: 60px;
    }
    .mess_left_title {
        font-family: inherit;
        font-weight: 600;
    }
}


/* 人才招聘 */
.job_box {
    position: relative;
    z-index: 1;
}

.job_box:after {
    content: "";
    position: absolute;
    left: 0;
    top: 250px;
    width: 100%;
    height: calc(100% - 250px);
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #F2F2F3;
    z-index: -1;
}

.job_top_text {
    padding-top: 95px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 0;
}

.job_top_text .title {
    color: var(--main-color);
    font-weight: 700;
}

.job_top_text .text {
    max-width: 702px;
    margin: 0 auto;
    margin-top: 24px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

/* job card */

/* 2. 动画及交互辅助定义 */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1.2s infinite;
}

#culture-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 120px;
    width: 100%;
    /* height: 60vh; */
}

.right-content {
    position: relative;
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}

.anim-card {
    position: relative;
    margin: 12px;
    width: calc(25% - 24px);
    height: fit-content;
    border-radius: 24px;
    overflow: hidden;
}

.anim-card .img img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition: transform .3s;
}

.card-2 {
    margin-top: 10%;
}

.card-3 {
    margin-top: 15%;
}

.anim-card.card-2 .img img,
.anim-card.card-4 .img img {
    min-height: 400px;
}

.card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.20);
}

.job_card_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;

    z-index: 10;
}

.job_card_text .card-title {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
    transform: translateY(10px);
    transition: transform .3s;
}

.job_card_text .list_text {
    margin-top: 8px;
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all .35s;
}

.anim-card:hover .img img {
    transform: scale(1.05);
}

.anim-card:hover .list_text {
    opacity: 1;
    max-height: inherit;
}

.anim-card:hover .card-title {
    transform: translateY(0);
}

/* job list */
.job_bottom {
    padding-top: 64px;
}

.job_big_title {
    color: var(--main-color);
    font-weight: 400;
}

.job_text {
    margin-top: 24px;
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.job_search_white .f_form .f_input {
    font-size: 16px;
    color: var(--dark-color);
}

.job_search_white .f_input::-webkit-input-placeholder {
    color: #666;
    opacity: 0.8;
    font-size: 16px;
    line-height: 26px;
}

.job_search_white .f_input:-moz-placeholder {
    color: #666;
    opacity: 0.8;
    font-size: 16px;
    line-height: 26px;
}

.job_search_white .f_input::-moz-placeholder {
    color: #666;
    opacity: 0.8;
    font-size: 16px;
    line-height: 26px;
}

.job_search_white .f_input:-ms-input-placeholder {
    color: #666;
    opacity: 0.8;
    font-size: 16px;
    line-height: 26px;
}

.f_form {
    margin-top: 64px;
    display: flex;
    height: 70px;
    padding: 8px 8px 8px 24px;
    justify-content: space-between;
    align-items: center;
    font-family: "OPPOSans R";
    font-weight: 400;
    border-radius: 50px;
    background-color: #F2F2F3;
}

.f_form .f_input {
    flex: 1;
    padding-right: 10px;
    height: 100%;
    background-color: transparent;
    font-size: 18px;
    line-height: 28px;
}

.contact_bottom .input_select_box .drop_down_ {
    top: 76px;
}

.f_input::-webkit-input-placeholder {
    color: #666;
    font-family: "OPPOSans R";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.f_input:-moz-placeholder {
    color: #666;
    font-family: "OPPOSans R";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.f_input::-moz-placeholder {
    color: #666;
    font-family: "OPPOSans R";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.f_input:-ms-input-placeholder {
    color: #666;
    font-family: "OPPOSans R";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.f_form .f_sub {
    display: flex;
    width: 54px;
    height: 54px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background-color: var(--main-color);
    background-image: url(../images/search_white.svg);
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center;
    cursor: pointer;
}

.job_sta {
    padding: 32px 0 22px 0;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.job_sta span {
    color: var(--main-color);
}

.job_se_list {
    padding-bottom: 83px;
}

.job_se_list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -10px;
    margin-right: -10px;
}

.job_se_list ul li {
    width: 50%;
    padding: 10px;
}

.job_se_list .white_bg {
    display: flex;
    padding: 40px;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    border-radius: 24px;
    background: #F2F2F3;
    transition: background-color .3s;
}

.job_se_list .white_bg>div:first-child {
    flex: 1;
}

.job_se_list .t {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.job_se_list .bottom {
    padding-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #666;
}

.job_se_list .bottom span {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
}

.job_se_list .bottom span.line {
    margin-left: 24px;
    margin-right: 24px;
    margin-top: 2px;
    width: 2px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
}

.job_se_list .bottom .j_icon i {
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-size: cover;
}

.job_adress i {
    background-image: url(../images/zw_dz.svg);
}

.job_edu i {
    background-image: url(../images/zw_xl.svg);
}

.job_year i {
    background-image: url(../images/zw_nx.svg);
}

.job_icon {
    display: flex;
    width: 80px;
    height: 80px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: var(--white-color);
}

.job_icon svg {
    transition: transform .3s;
}


@media (min-width: 768px) {
    .job_se_list .white_bg:hover {
        background-color: var(--main-color);
    }

    .job_se_list .white_bg:hover .t {
        color: var(--white-color);
    }

    .job_se_list .white_bg:hover .job_adress i {
        background-image: url(../images/zw_dzw.svg);
    }

    .job_se_list .white_bg:hover .job_edu i {
        background-image: url(../images/zw_xlw.svg);
    }

    .job_se_list .white_bg:hover .job_year i {
        background-image: url(../images/zw_nxw.svg);
    }

    .job_se_list .white_bg:hover .bottom {
        color: var(--white-color);
    }

    .job_se_list .white_bg:hover .bottom span.line {
        background-color: rgba(255, 255, 255, 0.20);
    }

    .job_se_list .white_bg:hover .job_icon {
        background: rgba(255, 255, 255, 0.40);
    }

    .job_se_list .white_bg:hover .job_icon svg {
        transform: rotate(45deg);
    }
}

/* 检举方式 - 响应式 */
@media (max-width: 1366px) {
    .job_icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

}

@media (max-width: 1280px) {
    .job_icon {
        width: 60px;
        height: 60px;
    }

}

@media (max-width: 1279px) {
    .job_top_text {
        padding-left: 60px;
        padding-right: 60px;
    }

    .job_card_text {
        padding: 24px 20px;
    }

    .job_se_list .white_bg {
        padding: 30px;
    }

    .job_se_list .bottom span.line {
        margin-left: 18px;
        margin-right: 18px;
    }

}

@media (max-width:991px) {
    #culture-section {
        height: 80vh;
    }

    .right-content {
        flex-wrap: wrap;
    }

    .anim-card {
        width: calc(50% - 24px);
    }

    .job_se_list ul li {
        width: 100%;
    }
}

@media (max-width:767px) {
    .job_box:after {
        top: 120px;
        height: calc(100% - 120px);
    }

    .job_box {
        /* padding-top: 60px; */
    }

    .job_top_text {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #culture-section {
        padding-top: 50px;
        padding-bottom: 40px;
        height: inherit;
    }

    .right-content {
        margin-left: -8px;
        margin-right: -8px;
    }

    .anim-card {
        border-radius: 16px;
        margin: 8px;
        width: calc(100% - 16px);
    }

    .job_bottom {
        padding-top: 30px;
    }

    .f_form {
        margin-top: 35px;
        height: 60px;
    }

    .f_form .f_sub {
        width: 44px;
        height: 44px;
        padding: 10px;
        background-size: 20px;
    }

    .contact_bottom .input_select_box .drop_down_ {
        top: 60px;
    }

    .job_se_list .bottom {
        flex-flow: column;
        align-items: start;
    }

    .job_se_list .bottom span {
        margin-bottom: 5px;
    }

    .job_se_list .bottom span.line {
        display: none;
    }

    .job_se_list .white_bg {
        flex-flow: column;
        align-items: flex-start;
        padding: 30px 20px 20px 20px;
        border-radius: 16px;
    }

    .job_se_list .white_bg>div:first-child {
        width: 100%;
    }

    .job_se_list .bottom span {
        font-size: 16px;
    }

    .job_icon {
        margin-top: 20px;
        padding: 13px;
        width: 42px;
        height: 42px;
    }

}

/* job form */
.job_form {
    position: relative;
    padding-top: 206px;
    z-index: 1;
}

.job_form_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 680px;
    z-index: -1;
}

.job_form_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job_form_top>div:first-child {
    align-items: flex-end;
}

.job_form_top .s_t {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    color: var(--white-color);
    line-height: 28px;
}

.job_form_top .b_t {
    margin-top: 9px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.5;
}

.job_form_top .right a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 16px;
    width: 200px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(4px);
    transition: all .3s;
}

.job_form_top .right span {
    padding-left: 32px;
    font-size: 18px;
    font-weight: 400;
    color: var(--white-color);
}

.job_form_top .right a:hover {
    background-color: var(--main-color);
}

.job_form_cont {
    margin-top: 48px;
    padding: 56px;
    border-radius: 24px;
    background: var(--white-color);
    overflow: hidden;
}

.job_form_cont .job_form_item {
    display: flex;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.job_form_cont .job_form_item.job_form_last {
    border-bottom: none;
    margin-bottom: 0;
}

.job_form_cont .job_form_item .item_left {
    width: 30%;
    color: var(--dark-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.job_form_cont .job_form_item .item_right {
    width: 70%;
}

.item_right {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    flex-wrap: wrap;
}

.item_right .col {
    width: 50%;
    padding: 16px 12px;
    float: left;
}

.item_right .colw100 {
    width: 100%;
    padding: 16px 12px;
}

.item_right .col_z>span {
    display: block;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.item_right .col_z>span>em {
    margin-left: 8px;
    color: #E70010;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.item_right .input-container {
    margin-top: 16px;
    position: relative;
    border-radius: 16px;
    background-color: #F2F2F3;
    overflow: hidden;
    transition: all .3s;
}

.item_right .input-container.active {
    overflow: visible;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.item_right .input-container input {
    outline: none;
    z-index: 1;
    padding: 12px 20px;
    position: relative;
    background: none;
    width: 100%;
    height: 56px;
    border: 0;
    color: var(--dark-color);
    line-height: 26px;
    font-size: 18px;
    font-weight: 400;
    font-family: "OPPOSans R";
    text-align: left;
}

.item_right .input-container .date_bir {
    background-size: 24px;
    background-position: calc(100% - 20px) center;
    background-repeat: no-repeat;
    background-image: url(../images/chevron-down.svg);
}

.input_select_box .icon {
    width: 24px;
    height: 24px;
    right: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/chevron-down.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

.job_form .input_select_box .drop_down_ {
    top: 56px;
    padding: 24px;
}

.item_right .input-container textarea {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 160px;
    padding: 20px;
    line-height: 26px;
    border: 0;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    font-family: "OPPOSans R";
    resize: none;
}

.text-area label {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #E70010;
}

.job_form_item .input-container input::-webkit-input-placeholder,
.job_form_item textarea::-webkit-input-placeholder {
    color: #C5C5C5;
    font-size: 18px;
    font-weight: 400;
    font-family: "OPPOSans R";
}

.job_form_item .input-container input::-moz-placeholder,
.job_form_item textarea::-moz-placeholder {
    color: #C5C5C5;
    font-size: 18px;
    font-family: "OPPOSans R";
    font-weight: 400;
}

.job_form_item .input-container input::-ms-input-placeholder,
.job_form_item textarea::-ms-input-placeholder {
    color: #C5C5C5;
    font-size: 18px;
    font-family: "OPPOSans R";
    font-weight: 400;
}

.item_right .yanz {
    padding-top: 16px;
}

.item_right .yanz .input-container {
    margin-top: 0;
    max-width: 348px;
    width: 100%;
}

.item_right .message_code {
    margin-left: 16px;
}

.item_right .message_code img {
    width: 128px;
    height: 56px;
}

.item_right .job_index_more {
    padding: 16px 10px 16px 22px;
    margin-right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    background-color: var(--white-color);
    border: 1px solid #D4D4D4;
    width: 192px;
    height: 60px;
    cursor: pointer;
}

.job_index_more .reset_text {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    font-family: "OPPOSans R";
}

.job_index_more .reset_icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 2px 0;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: #F2F2F3;
}

.job_index_more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(154, 155, 163, 0.3);
}

.item_right .pt0 {
    padding-top: 0;
}

@media (max-width:991px) {
    .job_form {
        padding-top: 220px;
    }

    .job_form_bg {
        height: 500px;
    }

    .job_form_cont {
        padding: 50px 40px;
    }

    .job_form_top .right a {
        width: 120px;
    }

    .job_form_top .right span {
        padding-left: 16px;
    }

}

@media (max-width:767px) {
    .job_form {
        padding-top: 160px;
    }

    .job_form_bg {
        height: 430px;
    }

    .job_form_cont {
        padding: 40px 20px 10px 20px;
    }

    .job_form_top .s_t {
        font-size: 16px;
    }

    .job_form_top>div:first-child {
        flex-flow: column;
        align-items: flex-start;
    }

    .job_form_top>div:first-child .right {
        padding-top: 20px;
    }

    .job_form_cont .job_form_item {
        flex-wrap: wrap;
    }

    .job_form_cont .job_form_item .item_left {
        width: 100%;
    }

    .job_form_cont .job_form_item .item_right {
        width: 100%;
        padding-top: 20px;
    }

    .job_form_cont .job_form_item .item_right>.col:first-child {
        padding-bottom: 32px;

    }

    .job_form_cont .job_form_item.job_form_last .item_right {
        padding-top: 0;
    }

    .item_right {
        margin: 0;
    }

    .item_right .col,
    .item_right .colw100 {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .item_right .yanz {
        flex-wrap: wrap;
    }

    .item_right .yanz .input-container {
        width: 100%;
    }

    .item_right .message_code {
        margin-left: 0;
        margin-top: 20px;
    }

    .job_form_top .right a {
        padding: 10px 20px;
    }

    .job_form_cont .job_form_item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .item_right .input-container {
        border-radius: 8px;
    }

    .last_button {
        flex-flow: column;
    }

    .item_right .job_index_more {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        display: none !important;
    }

    .item_right .pro_xq_submit_btn {
        width: 100%;
    }


}

/* 反舞弊热线 */
.fwb_box {
    padding-bottom: 40px !important;
}

.fwb_box:after {
    background: #F2F2F3;
}

.fwb_border {
    padding-top: 80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 46px;
}

.jj_text {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

/* 廉洁生态介绍 */
.integrity_intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.integrity_intro.loop {
    margin-top: 88px;
    padding-bottom: 88px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.integrity_left {
    width: 288px;
    flex-shrink: 0;
}

.integrity_subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    margin-bottom: 14px;
}

.integrity_title {
    color: var(--main-color);
    font-weight: 400;
    line-height: 1.2;
}

.integrity_right {
    flex: 1;
    max-width: 984px;
    margin-left: 80px;
}

.integrity_text {
    margin-bottom: 25px;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.integrity_text:last-child {
    margin-bottom: 0;
}

.ljjb_pic {
    margin-top: 95px;
    border-radius: 24px;
    background: #F8C4C4;
    overflow: hidden;
}

/* 检举方式 */
.reporting_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 88px;
}

.reporting_title {
    color: var(--dark-color);
    font-weight: 400;
    line-height: 1.2;
}

.reporting_right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reporting_cards ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.reporting_cards ul li {
    padding-left: 12px;
    padding-right: 12px;
    width: 50%;
}

.reporting_card {
    background-color: #F2F2F3;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reporting_card_content {
    display: flex;
    flex-direction: column;
}

.reporting_card_label {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.reporting_card_value {
    margin-top: 8px;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.5;
}

.reporting_card_icon {
    padding-top: 16px;
}

.reporting_card_icon img {
    max-width: 40px;
}

.reporting_note {
    display: flex;
    padding-top: 24px;
}

.reporting_note_star {
    margin-right: 10px;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    flex-shrink: 0;
}

.reporting_note_text {
    flex: 1;
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

/* 反舞弊热线 - 响应式 */
@media (max-width: 1366px) {
    .integrity_right {
        margin-left: 60px;
    }
}

@media (max-width: 1279px) {
    .fwb_border {
        padding-left: 60px;
        padding-right: 60px;
    }

    .integrity_left {
        width: 200px;
    }

}

@media (max-width: 1100px) {
    .reporting_cards ul li {
        width: 100%;
        padding-bottom: 12px;
    }
}

@media (max-width: 991px) {
    .fwb_border {
        padding-left: 40px;
        padding-right: 40px;
    }

    .integrity_intro,
    .reporting_wrap {
        flex-flow: column;
    }

    .integrity_right {
        margin-left: 0;
        margin-top: 35px;
    }

    .ljjb_pic {
        margin-top: 50px;
    }

    .reporting_wrap {
        padding-top: 50px;
    }

    .integrity_intro.loop {
        margin-top: 50px;
        padding-bottom: 50px;
    }


}

@media (max-width: 767px) {
    .fwb_border {
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .ljjb_pic {
        margin-top: 35px;
        border-radius: 16px;
    }

    .reporting_card {
        border-radius: 16px;
        padding: 24px 20px;
    }

    .reporting_card_icon img {
        max-width: 34px;
    }

    .integrity_intro.loop {
        margin-top: 35px;
        padding-bottom: 35px;
    }

    .reporting_wrap {
        padding-top: 35px;
    }

}

/* bottom */
.deve_bottom {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
}

.deve_bottom .deve_pic_img {
    position: relative;
    margin-top: 64px;

    overflow: hidden;
}

.deve_bottom .deve_pic_img>img {
    border-radius: 24px;
    object-fit: cover;
    min-height: 300px;
    width: 100%;
}

.deve_pic_img .icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    max-width: 662px;
}

.deve_cont {
    display: flex;
    justify-content: space-between;
    padding-left: 80px;
    padding-right: 80px;
}

.deve_b_left {
    /* position: absolute;
    top: -80px;
    left: 80px;
    padding: 50px 40px;
   width: 470px;
     background-color:var(--main-color);
     z-index: 9; */
    position: absolute;
    position: sticky;
    height: fit-content;
    top: 110px;
    margin-top: -80px;
    padding: 50px 40px;
    width: 470px;
    background-color: var(--main-color);
    z-index: 9;
}

.infor_text_z {
    position: relative;
    margin-top: 54px;
    padding-right: 20px;
    width: 50%;
    height: 600px;
    overflow: hidden;
    overflow-y: auto;
    /* 核心：开启iOS原生惯性滚动，解决滑到头卡死 */
    -webkit-overflow-scrolling: touch;
    z-index: 4;
}

.infor_text_z::-webkit-scrollbar {
    width: 2px;
    height: 2px
}

.infor_text_z::-webkit-scrollbar-button:vertical {
    display: none
}

.infor_text_z::-webkit-scrollbar-corner,
.infor_text_z::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.10);
}

.infor_text_z::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.m_scoll::-webkit-scrollbar {
    width: 6px;
    height: 2px
}

.m_scoll::-webkit-scrollbar-button:vertical {
    display: none
}

.m_scoll::-webkit-scrollbar-corner,
::-webkit-scrollbar-track {
    background-color: transparent;
}

.m_scoll::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--main-color);
}

.deve_b_left .term_nav_fixed {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;

}

.deve_b_left .t span {
    position: relative;
    display: inline-block;
    padding-right: 48px;
}

.deve_b_left .t span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--white-color);
}

.deve_left_nav li {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 13px;
    margin-bottom: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 45px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    opacity: 0.5;
    line-height: 30px;
    cursor: pointer;
}

.deve_left_nav li:first-child {
    margin-top: 0;
}

.deve_left_nav li:last-child {
    margin-bottom: 0;
}

.deve_left_nav li .icon {
    opacity: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.50);
    transition: all 0.3s;
}

.deve_left_nav li span {
    width: 120px;
}

.deve_left_nav li h3 {
    flex: 1;
    padding-left: 16px;
    font-weight: inherit;
}

.deve_left_nav .active {
    opacity: 1;
}

.deve_left_nav li.active .icon {
    opacity: 1;
    width: 40px;
    height: 40px;
}

.infor_text {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.infor_text_z .infor_text {
    padding-bottom: 40px;
}

.infor_text_z .infor_text:last-child {
    padding-bottom: 0;

}

.infor_text_z .text_wz {
    padding-left: 50px;
}

.deve_loop_t {
    padding-bottom: 32px;
}

.deve_loop_t span {
    color: var(--dark-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.55;
}

.deve_loop_t p {
    color: var(--main-color);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.deve_loop_list {
    display: flex;

}

/* 时间轴连线 + 圆点 */
.deve_line {
    position: relative;
    width: 20px;
    flex-shrink: 0;
}

.deve_line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 4px;
    bottom: 0;
    width: 1px;
    height: calc(100% - 2px);
    background: linear-gradient(90deg, #C5C5C5 84.96%, rgba(197, 197, 197, 0.00) 100%);
    ;
    transform: translateX(-50%);
    transition: background .3s;
}

.text_wz .year_loop>.deve_loop_list:first-child .deve_line::before {
    top: 12px;
    height: calc(100% - 8px);
}

.deve_line i {
    position: relative;
    display: block;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #C5C5C5;
    transition: border .3s;
}

.deve_line i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #C5C5C5;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

.deve_loop_list:last-child .deve_line::before {
    bottom: auto;
    height: 95%;
}


.deve_loop_list .year_left {
    width: 82px;
    padding-bottom: 48px;
}

.deve_loop_list:last-child .year_left {
    padding-bottom: 0;
}

.year_left,
.year_left span {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 400;
}

.deve_loop_list .deve_list_right {
    flex: 1;
    padding-left: 32px;
    padding-bottom: 48px;
}

.deve_loop_list:last-child .deve_list_right {
    padding-bottom: 0;
}

.deve_loop_list .deve_list_right p {
    position: relative;
    margin-bottom: 8px;
    padding-left: 14px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.deve_loop_list .deve_list_right p::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0px;
    color: #666;
    font-size: 20px;
    font-weight: 400;
}

.deve_loop_list .deve_list_right p:last-child {
    margin-bottom: 0;
}

.deve_loop_list:hover .deve_line i::after,
.deve_loop_list:active .deve_line i::after {
    background-color: var(--main-color);
}

.deve_loop_list:hover .deve_line i {
    border-color: var(--main-color);
}

.deve_loop_list .deve_list_right p:hover {
    color: var(--main-color);
}

.deve_loop_list .deve_list_right p:hover::before {
    color: var(--main-color);
}

@media (max-width:1366px) {
    .deve_b_left {
        padding: 50px 30px;
        width: 450px;
    }

}

@media (max-width:1280px) {
    .deve_bottom {
        padding-left: 60px;
        padding-right: 60px;
    }

    .deve_cont {
        padding-left: 60px;
        padding-right: 60px;
    }

    .deve_b_left {
        width: 400px;
    }


}

@media (max-width:1100px) {
    .deve_bottom {
        padding-left: 40px;
        padding-right: 40px;
    }

    .deve_cont {
        padding-left: 40px;
        padding-right: 40px;
    }

    .deve_b_left {
        padding-top: 40px;
        padding-bottom: 40px;
        width: 380px;
    }


}

@media (max-width:991px) {
    .deve_bottom {
        padding-left: 30px;
        padding-right: 30px;
    }

    .deve_b_left {
        width: 270px;
    }

    .deve_left_nav li {
        flex-flow: column;
        align-items: flex-start;
    }

    .deve_left_nav li h3 {
        padding-left: 0;
    }

    .infor_text_z {
        width: 60%;
    }

    .deve_loop_t p {
        font-size: 30px;
    }
}

@media (max-width:767px) {

    .deve_bottom {
        padding-left: 16px;
        padding-right: 16px;
    }

    .deve_bottom .deve_pic_img {
        margin-top: 35px;
    }

    .deve_bottom .deve_pic_img>img {
        border-radius: 16px;
        min-height: 180px;
    }

    .deve_cont {
        padding-left: 0px;
        padding-right: 0;
    }

    .deve_b_left {
        display: none !important;
    }

    .infor_text_z {
        width: 100%;
        overflow: hidden;
    }

    .infor_text_z .text_wz {
        padding-left: 0;
    }

    .deve_loop_t p {
        font-size: 26px;
    }

    .deve_loop_list .year_left {
        width: 70px;
        padding-bottom: 30px;
    }

    .deve_loop_list .deve_list_right {
        padding-bottom: 30px;
        padding-left: 10px;
    }

    .deve_loop_list .deve_list_right p {
        padding-left: 10px;
        font-size: 18px;
    }

    .deve_line i {
        width: 20px;
        margin-top: 4px;
        height: 20px;
    }

}

/*job detail*/

.job_box {
    padding-bottom: 0;
}

/* job detail */
.job_d_banner {
    position: relative;
    height: 620px;
    z-index: 1;
}

.job_d_banner .mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.job_d_banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 6;
}

.job_d_banner .mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    animation: scaleToNormal 1.2s ease-in-out forwards;
}

.job_d_banner .job_d_banner_box {
    position: relative;
    padding-top: 248px;
    width: 100%;
    z-index: 8;
}

.job_d_banner .job_d_banner_box>.my-container {
    display: flex;
}

.job_d_banner_box .back_list {
    display: flex;
    padding: 16px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    transition: all 0.3s ease;
}

.job_d_banner_box .back_list span {
    color: var(--white-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.job_d_banner_box .back_list svg {
    margin-left: 16px;
    width: 20px;
}

.job_d_banner_box .back_list:hover {
    background: #F8F9FB;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.job_d_banner_box .back_list:hover span {
    color: var(--dark-color);
}

.job_d_banner_box .back_list:hover svg path {
    stroke: var(--dark-color);
}

.job_de_bg {
    position: relative;
    margin-top: -223px;
    z-index: 2;
}

.job_de_bg .job_de_white {
    position: relative;
    padding-top: 56px;

    z-index: 1;
}

.job_de_bg .job_de_white::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: calc(100% + 112px);
    height: 100%;
    border-radius: 8px;
    background-color: var(--white-color);
    z-index: -1;
}

.job_xq_top {
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.job_xq_top .zhiwei {
    color: var(--dark-color);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}


/* 分享 */


.job_b_list_r_t {
    padding-top: 24px;
}

.job_b_list_r_t_l {
    display: flex;
    align-items: center;
}

.job_b_list_r_t_l span {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 24px;
    margin-right: 24px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.job_b_list_r_t {
    padding-top: 24px;
}

.job_b_list_r_t_l span img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.job_b_list_r_t_l span:last-child {
    margin-right: 0;
    padding-right: 0;
}

.job_b_list_r_t_l span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.10);
}

.job_b_list_r_t_l span:last-child:after {
    display: none;
}

.job_b_list_r_t_r {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.job_xq_cont {
    padding-bottom: 40px;
}

.job_xq_cont .title {
    padding-top: 40px;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.job_xq_cont .text {
    padding-top: 24px;
}

.job_xq_cont .text p {
    color: #666;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.job_yp_more {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 56px;
}

.job_yp_more .grey_bg a {
    background: var(--main-color);
    border-color: transparent;
    color: var(--white-color);
}

.job_yp_more .grey_bg i {
    background-image: url(../images/white_b_jt.svg);
}

.job_yp_more .grey_bg a:hover {
    background: #2A4F96;
    /* box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05); */
}

.job_de_white .job_bottom_end {
    margin-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

@media (max-width:1279px) {
    .job_de_bg .job_de_white::before {
        width: calc(100% + 80px);
    }
}

@media (max-width:991px) {
    .job_d_banner {
        height: 480px;
    }

    .job_d_banner .job_d_banner_box {
        padding-top: 168px;
    }

    .job_de_bg .job_de_white {
        padding-top: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .job_de_bg .job_de_white::before {
        width: calc(100% + 20px);
    }

    .job_de_bg {
        margin-top: -10px;
    }

    .job_yp_more {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .job_b_list_r_t {
        flex-wrap: wrap;
    }

    .job_b_list_r_t_l span {
        padding-right: 16px;
        margin-right: 16px;
        font-size: 16px;
    }

    .job_b_list_r_t_r {
        font-size: 16px;
    }

}

@media (max-width:767px) {
    .job_d_banner {
        height: 240px;
    }

    .job_d_banner .job_d_banner_box {
        padding-top: 150px;
    }

    .job_de_bg .job_de_white {
        padding-top: 30px;
        padding-left: 0;
        padding-right: 0;
    }

    .job_de_bg .job_de_white::before {
        width: calc(100% + 32px);
    }

    .share_button {
        /* margin-left: 16px; */
    }

    .share_button .i {
        width: 40px;
        height: 40px;
        background-size: 16px;
    }

    .job_xq_top {
        padding-bottom: 20px;
    }

    .job_xq_cont .text p {
        font-size: 16px;
    }

    .job_b_list_r_t {
        padding-top: 14px;
    }

    .job_b_list_r_t_l {
        flex-wrap: wrap;
    }

    .job_b_list_r_t_l span {
        padding-right: 10px;
        margin-right: 10px;
        margin-bottom: 5px;
        font-size: 14px;
    }

    .job_b_list_r_t_r {
        font-size: 14px;
        width: 100%;
        padding-top: 16px;
    }

    .job_b_list_r_t_l span img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .job_xq_cont .title {
        font-size: 20px;
    }

    .job_de_white .job_bottom_end {
        margin-top: 20px;
    }

    .job_yp_more {
        padding-top: 30px;
        padding-bottom: 20px;
    }

}