        /* 默认显示 PC 端内容 */
        .pc-only {
            display: block;
        }
        .mobile-only {
            display: none;
        }
        
 
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        /* 滚动进入动画 */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-up.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* 按钮微交互 */
        .btn-micro {
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-micro::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-micro:hover::before {
            width: 300px;
            height: 300px;
        }

        /* 卡片悬停效果增强 */
        .card-hover {
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .card-hover:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        /* 导航链接微交互 - 恢复黄色底线效果 */
        .nav-link-micro {
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease;
        }

        .nav-link-micro::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffc107;
            transition: width 0.3s ease;
        }

        .nav-link-micro:hover::after,
        .nav-link-micro.active::after {
            width: 100%;
        }

        .nav-link-micro:hover {
            color: #3C6EDD;
        }

        .nav-link-micro.active {
            color: #3C6EDD;
            font-weight: 500;
        }

        /* 图片懒加载效果 */
        .lazy-image {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .lazy-image.loaded {
            opacity: 1;
        }

        /* 数字计数动画增强 */
        .counter-enhanced {
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
        }

        /* 页面滚动进度条 */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(90deg, #3C6EDD, #ffc107);
            z-index: 1002;
            transition: width 0.1s ease;
        }



        /* 鼠标跟随效果 */
        .cursor-dot {
            width: 8px;
            height: 8px;
            background: #3C6EDD;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.1s ease;
        }

        .cursor-ring {
            width: 30px;
            height: 30px;
            border: 2px solid rgba(60, 110, 221, 0.3);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9997;
            transition: transform 0.15s ease;
        }

        /* 移动端隐藏鼠标跟随效果 */
        @media (max-width: 768px) {
            .cursor-dot,
            .cursor-ring {
                display: none;
            }
        }



        /* 主横幅样式 */
        .hero-section {
            background-color: #0a1f44;
            color: white;
            position: relative;
            padding: 0;
            height: 500px;
            overflow: hidden;
        }

        .hero-section .container {
            padding-left: 30px;
            padding-right: 30px;
        }

        .hexagon-bg {
            position: absolute;
            width: 100%;
            height: 120%;
            top: -10%;
            left: 0;
            background: url('../../../img/banner.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.8;
        }

        .hero-content {
            position: absolute;
            bottom: 60px;
            left: 0;
            z-index: 2;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 48px;
            font-weight: 500;
            letter-spacing: 2px;
            margin-bottom: 10px;
            color: #fff;
        }

        /* 通用Section样式 - 确保页面左右间距一致 */
        section {
            padding: 30px 0;
        }

        section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        /* 确保在小屏幕上也有一致的间距 */
        @media (min-width: 576px) {
            section .container {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .team-section .container {
                width: calc(100% - 50px);
            }
        }

        @media (min-width: 768px) {
            section .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            
            .team-section .container {
                width: calc(100% - 80px);
            }
        }

        @media (min-width: 992px) {
            section .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .team-section .container {
                width: calc(100% - 60px);
                max-width: 1200px;
            }
        }

        /* 大屏幕优化 */
        @media (min-width: 1200px) {
            .team-section .container {
                width: calc(100% - 100px);
                max-width: 1200px;
            }
        }

        /* 超大屏幕优化 */
        @media (min-width: 1400px) {
            .team-section .container {
                width: calc(100% - 200px);
                max-width: 1200px;
            }
        }

        /* 4K及以上超大屏幕 */
        @media (min-width: 1920px) {
            .team-section .container {
                width: calc(100% - 400px);
                max-width: 1200px;
            }
        }

        

        /* 内容标题样式 */
        .content-title {
            font-size: 22px;
            font-weight: 600;
            color: #192254;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* 关于部分 */
        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
        }

        /* 核心人文部分 */
        .team-section {
            background-color: #192254;
            padding: 30px 0 40px 0;
        }

        .team-section .container {
            background-color: white;
            padding: 40px 40px 0 40px;
            margin: 0 auto;
            width: calc(100% - 160px);
            max-width: 1200px; /* 限制最大宽度 */
        }


       

        .team-section .row {
            display: flex;
            justify-content: space-between;
        }

        .team-section .col-md-4 {
            flex: 0 0 31%;
            max-width: 31%;
        }

        .team-card {
            text-align: center;
            margin-bottom: 30px;
            overflow: hidden;
        }

        .team-card img {
            width: 100%;
            height: 100%;
        }

        .team-card:hover img {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* 为左边和右边的团队卡片添加特殊对齐样式 */
        .team-left { text-align: left; }
        .team-right { text-align: right; }

        /* 核心产品部分 */
        .product-card {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            text-align: center;
        }

        .product-card img {
            height: 620px;
            border-radius: 5px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .product-card:hover img {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* 为左边和右边的产品卡片添加特殊对齐样式 */
        .product-left { text-align: left; }
        .product-right { text-align: right; }

        /* 数据统计部分 */


        .stat-item {
            margin-bottom: 30px;
            text-align: center;
        }

        .stat-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
        }

        .stat-icon img {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 400;
            color: #3C6EDD;
            margin-bottom: 10px;
            font-style: italic;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.5px;
        }

        .stat-number.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-text {
            font-size: 14px;
            color: #666;
            max-width: 180px;
            margin: 0 auto;
            line-height: 1.4;
        }

        /* 合作伙伴部分 */
        .partners-section {
            position: relative;
        }

        .partners-container {
            position: relative;
            padding-top: 30px;
            width: 100%;
            max-width: 1200px;
            min-height: 200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-left: 15px;
            padding-right: 15px;
        }

        .partners-content-wrapper {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            width: 100%;
            flex: 1;
            gap: 0;
            padding: 0;
            margin-top: -60px;
        }

        .partners-section .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }


        .partners-menu-title {
            overflow-wrap: break-word;
            color: rgba(68, 116, 222, 1);
            font-family: HarmonyOS_Sans_SC_Bold;
            font-weight: bold;
            text-align: left;
            white-space: nowrap;
            width: 88px;
            height: 30px;
            font-size: 22px;
            line-height: 30px;
            margin-left: 27px;
        }

        .partners-sidebar {
            width: 497px;
            height: 600px;
            background: url(../../../img/partners-menu-bg.png) 100% no-repeat;
            background-size: 100% 100%;
            flex-shrink: 0;
        }

        .partners-menu-header {
            width: 173px;
            height: 30px;
            margin: 115px 0 0 98px;
        }

        .arrow-left, .arrow-right {
            width: 13px;
            height: 16px;
            margin-top: 7px;
        }

        .arrow-right {
            margin: 7px 0 0 32px;
        }

        /* 菜单按钮 */
        .menu-btn, .menu-btn-active, .menu-btn-last {
            border-radius: 16px;
            height: 95px;
            width: 180px;
            margin-left: 98px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: flex-start !important;
            padding-left: 21px;
            box-sizing: border-box;
        }

        .menu-btn-active {
            box-shadow: 0px 2px 7px 6px rgba(0, 0, 0, 0.08);
            background-color: rgba(255, 198, 12, 1);
            margin-top: 32px;
        }

        .menu-btn {
            box-shadow: 0px 2px 4px 3px rgba(0, 0, 0, 0.06);
            background-color: rgba(255, 255, 255, 1);
            margin-top: 32px;
        }

        .menu-btn-last {
            box-shadow: 0px 2px 4px 3px rgba(0, 0, 0, 0.06);
            background-color: rgba(255, 255, 255, 1);
            margin-top: 32px;
        }

        /* 按钮悬停效果 */
        .menu-btn:hover, .menu-btn-last:hover {
            background-color: rgba(255, 198, 12, 0.8);
            box-shadow: 0px 4px 10px 6px rgba(0, 0, 0, 0.12);
        }

        .menu-btn:hover .btn-text,
        .menu-btn:hover .btn-text-alt,
        .menu-btn-last:hover .btn-text,
        .menu-btn-last:hover .btn-text-alt {
            color: rgba(255, 255, 255, 1);
        }

        /* 按钮文本样式 */
        .btn-text, .btn-text-active, .btn-text-alt {
            height: 30px;
            overflow-wrap: break-word;
            font-size: 22px;
            font-family: HarmonyOS_Sans_SC;
            font-weight: normal;
            text-align: left;
            white-space: nowrap;
            line-height: 30px;
            transition: color 0.3s ease;
        }

        .btn-text-active {
            width: 132px;
            color: rgba(255, 255, 255, 1);
        }

        .btn-text {
            width: 132px;
            color: rgba(101, 101, 101, 1);
        }

        .btn-text-alt {
            width: 110px;
            color: rgba(101, 101, 101, 1);
            margin-left: 11px;
        }

        /* 合作伙伴logo圆圈 */
        .partners-logos {
            position: relative;
            width: 1184px;
            height: 1184px;
            background: url(../../../img/partners-circle-bg.png) 100% no-repeat;
            background-size: 100% 100%;
            flex-shrink: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.95);
        }

        .partners-logos.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        /* 内容切换动画 */
        .partners-logos:not(.active) {
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Logo包装和图像 */
        .logo-wrapper, .logo-wrapper-small, .logo-wrapper-medium, .logo-wrapper-large,
        .logo-wrapper-xl, .logo-wrapper-xxl, .logo-wrapper-square {
            background-size: 100% 100%;
            transition: transform 0.3s ease;
            transform-origin: center;
            transform: scale(1);
        }

        /* 鼠标悬停时的简单放大动画 */
        .logo-wrapper:hover, .logo-wrapper-small:hover, .logo-wrapper-medium:hover,
        .logo-wrapper-large:hover, .logo-wrapper-xl:hover, .logo-wrapper-xxl:hover,
        .logo-wrapper-square:hover {
            transform: scale(1.1);
        }

        /* 为各种Logo图像添加过渡效果 */
        .logo-img, .logo-img-large, .logo-img-medium, .logo-img-small,
        .logo-img-xs, .logo-img-large-alt, .logo-inner-xs, .logo-inner-sm,
        .logo-img-md, .logo-img-lg, .logo-img-sm, .logo-inner-img,
        .logo-inner-md, .logo-inner-lg, .logo-inner-xl {
            transition: transform 0.35s ease;
        }

        .logo-wrapper:hover .logo-img,
        .logo-wrapper-small:hover .logo-img-xs,
        .logo-wrapper-medium:hover .logo-img-medium,
        .logo-wrapper-large:hover .logo-img-large-alt,
        .logo-wrapper-xl:hover .logo-img-md,
        .logo-wrapper-xxl:hover .logo-img-lg,
        .logo-wrapper-square:hover .logo-img-sm,
        .logo-box-sm:hover .logo-inner-xs,
        .logo-box-lg:hover .logo-inner-sm,
        .logo-container-xl:hover .logo-inner-img,
        .logo-container-lg:hover .logo-inner-md,
        .logo-container-xxl:hover .logo-inner-lg,
        .logo-container-side:hover .logo-inner-xl {
            transform: none;
        }

        /* 为Logo容器添加过渡效果 */
        .logo-box-sm, .logo-box-lg, .logo-container-xl,
        .logo-container-lg, .logo-container-xxl, .logo-container-side,
        .logo-container-large, .logo-container-medium, .logo-group-main {
            transition: transform 0.3s ease;
        }

        .logo-box-sm:hover, .logo-box-lg:hover, .logo-container-xl:hover,
        .logo-container-lg:hover, .logo-container-xxl:hover, .logo-container-side:hover,
        .logo-container-large:hover, .logo-container-medium:hover, .logo-group-main:hover {
            transform: scale(1.1);
        }

        /* Logo包装和图像 */
        .logo-wrapper {
            height: 93px;
            background: url(../../../img/logo-frame-1.png) 100% no-repeat;
            width: 183px;
            margin: 964px 0 0 214px;
        }

        .logo-wrapper-3 {
            height: 93px;
            width: 183px;
            margin: 964px 0 0 214px;
        }

        .logo-img {
            width: 96px;
            height: 31px;
            margin: 50px 0 0 15px;
        }

        .logo-group-main {
            width: 703px;
            height: 703px;
            background: url(../../../img/logo-circle-inner.png) 100% no-repeat;
            background-size: 100% 100%;
            margin: 241px 0 0 -156px;
        }

        .logo-container-large {
            height: 193px;
            background: url(../../../img/logo-container-1.png) 100% no-repeat;
            background-size: 100% 100%;
            width: 322px;
            margin: 178px 0 0 173px;
        }

        .logo-img-large {
            background-image: url(../../../img/logo-img-1.png);
            width: 221px;
            height: 69px;
            margin: 35px 0 0 51px;
        }

        .logo-img-large-2 {
            background-image: url(../../../img/c_logo_3.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 260px;
            height: 90px;
            margin: 30px 0 0 30px;
        }

        .logo-img-large-3 {
            background-image: url(../../../img/strategy_logo_5.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            width: 160px;
            height: 135px;
            margin: 0 0 0 80px;
        }

        .logo-row {
            width: 539px;
            height: 162px;
            margin: 64px 0 106px -9px;
        }

        .logo-wrapper-medium {
            height: 68px;
            background: url(../../../img/logo-frame-2.png) 100% no-repeat;
            width: 243px;
        }

        .logo-img-medium {
            width: 125px;
            height: 63px;
            margin: 3px 0 0 14px;
        }

        .logo-container-medium {
            height: 140px;
            background: url(../../../img/logo-container-2.png) 100% no-repeat;
            margin-top: 22px;
            width: 234px;
        }

        .logo-container-medium-3 {
            height: 140px;
            margin-top: 22px;
            width: 234px;
        }

        .logo-img-small {
            background-image: url(../../../img/logo-img-2.png);
            width: 130px;
            height: 51px;
            margin: 35px 0 0 58px;
        }

        .logo-wrapper-small {
            height: 114px;
            background: url(../../../img/logo-frame-3.png) 100% no-repeat;
            width: 183px;
            margin: 192px 0 0 -630px;
        }

        .logo-wrapper-small-3 {
            height: 114px;
            width: 183px;
            margin: 192px 0 0 -630px;
        }

        .logo-img-xs {
            width: 118px;
            height: 32px;
            margin: 18px 0 0 15px;
        }
        .logo-img-xs-2 {
            width: 130px;
            height: 55px;
            margin: 5px 0 0 5px;
        }

        .logo-wrapper-large {
            height: 167px;
            background: url(../../../img/logo-frame-4.png) 100% no-repeat;
            width: 171px;
            margin: 903px 0 0 -7px;
        }
        .logo-wrapper-large-3 {
            height: 167px;
            width: 171px;
            margin: 903px 0 0 -7px;
        }

        .logo-img-large-alt {
            width: 145px;
            height: 51px;
            margin: 105px 0 0 13px;
        }

        .logo-box-sm {
            height: 88px;
            background: url(../../../img/logo-box-1.png) 100% no-repeat;
            background-size: 100% 100%;
            width: 173px;
            margin: 905px 0 0 101px;
        }
        .logo-box-sm-3 {
            height: 88px;
            background-size: 100% 100%;
            width: 173px;
            margin: 905px 0 0 101px;
        }

        .logo-inner-xs {
            background-image: url(../../../img/logo-inner-1.png);
            width: 109px;
            height: 30px;
            margin: 50px 0 0 61px;
        }

        .logo-box-lg {
            height: 182px;
            background: url(../../../img/logo-box-2.png) 100% no-repeat;
            background-size: 100% 100%;
            width: 292px;
            margin: 158px 0 0 -173px;
        }

        .logo-inner-sm {
            background-image: url(../../../img/logo-inner-2.png);
            width: 183px;
            height: 78px;
            margin: 13px 0 0 86px;
        }
        .logo-inner-sm-2 {
            background-image: url(../../../img/c_logo_4.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            width: 224px;
            height: 72px;
            margin: 16px 0 0 62px;
        }
        .logo-inner-sm-3 {
            background-image: url(../../../img/strategy_logo_1.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
            width: 224px;
            height: 72px;
            margin: 25px 0 0 62px;
        }

        .logo-wrapper-xl {
            height: 106px;
            background: url(../../../img/logo-frame-5.png) 0px 0px no-repeat;
            background-size: 381px 107px;
            width: 380px;
            margin: 550px 0 0 -264px;
        }

        .logo-img-md {
            width: 202px;
            height: 26px;
            margin: 40px 0 0 163px;
        }
        .logo-img-md-2 {
            width: 230px;
            height: 46px;
            margin: 34px 0 0 146px;
        }
        .logo-img-md-3 {
            width: 230px;
            height: 46px;
            margin: 34px 0 0 146px;
        }
        .logo-wrapper-xxl {
            height: 152px;
            background: url(../../../img/logo-frame-6.png) 100% no-repeat;
            width: 299px;
            margin: 737px 0 0 -266px;
        }
       

        .logo-img-lg {
            width: 152px;
            height: 42px;
            margin: 91px 0 0 127px;
        }

        .logo-wrapper-square {
            height: 113px;
            background: url(../../../img/logo-frame-7.png) 100% no-repeat;
            width: 182px;
            margin: 394px 94px 0 -295px;
        }
        .logo-wrapper-square-3 {
            height: 113px;
            width: 182px;
            margin: 394px 94px 0 -295px;
        }

        .logo-img-sm {
            width: 126px;
            height: 29px;
            margin: 17px 0 0 47px;
        }

        .logo-container-xl {
            height: 270px;
            background: url(../../../img/logo-container-3.png) 100% no-repeat;
            background-size: 100% 100%;
            width: 400px;
            position: absolute;
            left: -31px;
            top: 172px;
        }

        .logo-inner-container {
            background-color: rgba(255, 255, 255, 1);
            height: 104px;
            width: 236px;
        }

        .logo-inner-img {
            width: 167px;
            height: 46px;
            margin: 29px 0 0 34px;
        }

        .logo-inner-img-2 {
            width: 190px;
            height: 85px;
            margin: auto;
        }

        .logo-inner-img-3 {
            width: 190px;
            height: 85px;
            margin: auto;
        }

        .logo-container-lg {
            height: 186px;
            background: url(../../../img/logo-container-4.png) 0px -1px no-repeat;
            background-size: 367px 187px;
            width: 367px;
            position: absolute;
            left: -35px;
            top: 763px;
        }

        .logo-inner-md {
            background-image: url(../../../img/logo-inner-3.png);
            width: 199px;
            height: 64px;
            margin: 104px 0 0 19px;
        }
        .logo-inner-md-2 {
            background-image: url(../../../img/c_logo_1.png);
            background-size: cover;
            width: 183px;
            height: 40px;
            margin: 120px 0 0 29px;
        }

        .logo-inner-md-3 {
            background-image: url(../../../img/strategy_logo_4.png);
            background-size: cover;
            width: 220px;
            height: 50px;
            margin: 110px 0 0 10px;
        }

        .logo-container-xxl {
            height: 106px;
            background: url(../../../img/logo-container-5.png) 0px 0px no-repeat;
            background-size: 381px 107px;
            width: 380px;
            position: absolute;
            left: 0px;
            top: 500px;
        }

        .logo-container-xxl-3 {
            height: 106px;
            background-size: 381px 107px;
            width: 380px;
            position: absolute;
            left: 0px;
            top: 500px;
        }

        .logo-inner-lg {
            width: 210px;
            height: 42px;
            margin: 32px 0 0 11px;
        }

        .logo-container-side {
            height: 419px;
            background: url(../../../img/logo-container-6.png) 100% no-repeat;
            width: 241px;
            position: absolute;
            left: 520px;
            top: 0;
        }
        .logo-container-side-3 {
            height: 419px;
            width: 241px;
            position: absolute;
            left: 520px;
            top: 0;
        }

        .logo-inner-xl {
            width: 172px;
            height: 42px;
            margin: 29px 0 0 33px;
        }
        .logo-inner-xl-2 {
            height: 75px;
            margin: 10px 0 0 5px;
        }

        /* 新闻中心部分 */
        .news-section {
            background: #f8f9fa;
            position: relative;
        }

        .news-section .container {
            position: relative;
            z-index: 2;
        }

        .news-controls {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-top: 10px;
        }

        .news-controls .pagination-prev,
        .news-controls .pagination-next {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 5px;
            transform: scale(1);
        }
        
        /* PC端保持原样 */
        @media (min-width: 769px) {
            .news-controls .pagination-prev,
            .news-controls .pagination-next {
                width: 50px;
                height: 50px;
                margin: 0 5px;
            }

            .news-controls .pagination-next {
                width: 120px;
                border-radius: 30px;
            }
        }

        .news-controls .pagination-prev:active,
        .news-controls .pagination-next:active {
            transform: scale(0.95);
        }

        .news-controls .pagination-prev:hover,
        .news-controls .pagination-next:hover {
            opacity: 0.9;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .news-controls .pagination-prev i,
        .news-controls .pagination-next i {
            font-size: 16px;
        }

        .news-controls .pagination-prev {
            background-color: #192254;
            color: white;
        }

        .news-controls .pagination-next {
            background-color: #ffc107;
            color: white;
            border-radius: 30px;
            width: 120px;
        }

        .news-carousel {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .news-carousel .carousel-inner {
            width: 100%;
            position: relative;
            height: 100%;
        }

        .news-carousel .carousel-item {
            width: 100%;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            transform: translateX(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .news-carousel .carousel-item.active {
            opacity: 1;
            visibility: visible;
            position: relative;
            transform: translateX(0);
        }

        .news-carousel .carousel-item:not(.active) {
            position: absolute;
            top: 0;
            left: 0;
        }

        .news-card {
            margin-bottom: 10px;
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .news-card a {
            overflow: hidden;
            display: block;
        }

        .news-card img {
            width: 100%;
            margin-bottom: 15px;
            transition: transform 0.4s ease;
            max-height: 259px;
            object-fit: cover;
        }

        .news-card:hover img {
            transform: scale(1.05);
        }

        .news-card h5 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.4;
            padding: 0 15px;
            color: #192254;
        }

        .news-card h5 a {
            color: #192254;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .news-card h5 a:hover {
            color: #3C6EDD;
        }

        .news-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
            padding: 0 15px;
        }

        .news-date {
            color: #192254 !important;
            font-size: 14px;
            font-weight: bold;
            padding: 0 15px 15px;
            display: block;
        }


        /* 响应式样式 */
        @media (max-width: 992px) {
            /* 平板布局 */
            .hero-section {
                height: 400px;
            }

            .hero-content {
                bottom: 50px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 22px;
            }

            .team-section .row,
            .team-section .col-md-4 {
                display: block;
                flex: 0 0 100%;
                max-width: 100%;
            }

            .team-card {
                margin-bottom: 40px;
            }

            .team-left, .team-right {
                text-align: center;
            }

            .team-card img {
                height: auto;
                max-width: 80%;
            }

            .product-card img {
                height: auto;
                max-width: 100%;
            }

            .product-left, .product-right {
                text-align: center;
            }

           

            .content-title {
                font-size: 24px;
            }

            .partner-logo img {
                height: 35px;
                margin: 10px;
            }


            /* 合作伙伴区域平板响应式 */
            .partners-content-wrapper {
                flex-direction: column;
                gap: 0;
                align-items: center;
                transform: scale(0.8);
            }

            .partners-sidebar {
                width: 400px;
                height: 480px;
            }

            .partners-logos {
                width: 800px;
                height: 800px;
            }

            .partners-section {
                padding: 10px 0;
                min-height: 350px;
            }

            .partners-container {
                min-height: 350px;
            }
        }

        /* 超大屏幕适配 (≥1920px) */
        @media (min-width: 1920px) {
            .partners-content-wrapper {
                transform: scale(1.0);
            }

            .partners-container {
                min-height: 250px;
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* 大屏幕适配 (1600px-1919px) */
        @media (max-width: 1919px) and (min-width: 1600px) {
            .partners-content-wrapper {
                transform: scale(1.0);
            }

            .partners-section {
                padding: 0;
                min-height: 250px;
            }

            .partners-container {
                min-height: 250px;
            }
        }

        /* 标准桌面适配 (1400px-1599px) */
        @media (max-width: 1599px) and (min-width: 1400px) {
            .partners-content-wrapper {
                transform: scale(0.75);
            }

            .partners-section {
                padding: 0;
                min-height: 180px;
            }

            .partners-container {
                min-height: 180px;
            }
        }

        /* 中等桌面适配 (1200px-1399px) */
        @media (max-width: 1399px) and (min-width: 1200px) {
            .partners-content-wrapper {
                transform: scale(0.65);
            }

            .partners-section {
                padding: 0;
                min-height: 150px;
            }

            .partners-container {
                min-height: 150px;
            }
        }

        /* 小桌面适配 (993px-1199px) */
        @media (max-width: 1199px) and (min-width: 993px) {
            .partners-content-wrapper {
                transform: scale(0.5);
            }

            .partners-section {
                padding: 0;
                min-height: 120px;
            }

            .partners-container {
                min-height: 120px;
            }
        }

        @media (max-width: 768px) {
            /* 手机布局 */
            .top-nav {
                padding: 12px 0;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1001;
                background: white;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }

            .logo img {
                height: 30px;
            }

            .hero-section {
                height: 350px;
                margin-top: 60px; /* 为固定导航留出空间 */
            }

            .hero-content {
                bottom: 40px;
                left: 30px;
            }

            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                font-size: 24px;
                color: #192254;
                cursor: pointer;
                z-index: 1002;
                position: relative;
            }

            /* 移动端抽屉菜单 - 重写 */
            .nav-links.d-md-none {
                display: none;
                position: fixed;
                top: 0;
                left: -300px;
                width: 280px;
                height: 100vh;
                background: white;
                z-index: 1000;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .nav-links.d-md-none.active {
                display: block; /* 改为block布局 */
                left: 0;
            }

            /* 菜单遮罩层 */
            .menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .menu-overlay.active {
                display: block;
                opacity: 1;
            }

            /* 关闭按钮 - 重写，单独一行显示 */
            .menu-close-btn {
                display: block;
                width: 100%;
                height: 50px;
                background: none;
                border: none;
                font-size: 20px;
                color: #192254;
                cursor: pointer;
                text-align: left;
                padding-left: 20px;
                border-bottom: 1px solid #f0f0f0;
                z-index: 1001;
                position: relative;
                top: 0;
                left: 0;
            }

            .menu-close-btn:hover {
                background-color: #f8f9fa;
            }

            /* 菜单项 - 重写 */
            .nav-links.d-md-none a {
                display: block;
                padding: 15px 30px;
                color: #192254;
                text-decoration: none;
                transition: color 0.3s ease;
            }

            /* 第一个菜单项 - 移除额外的margin */
            .nav-links.d-md-none a:first-child {
                margin-top: 0; /* 移除额外间距 */
            }

            /* 最后一个菜单项 */
            .nav-links.d-md-none a:last-child {
                border-bottom: none;
            }

            /* 悬停效果 */
            .nav-links.d-md-none a:hover {
                color: #3C6EDD;
                background-color: #f8f9fa;
            }

            /* Active状态 */
            .nav-links.d-md-none a.active {
                color: #3C6EDD;
                font-weight: 500;
                background-color: transparent;
            }

            /* 移除所有伪元素 */
            .nav-links.d-md-none a::before,
            .nav-links.d-md-none a::after {
                display: none !important;
            }

            .hero-title {
                font-size: 26px;
            }

            .hero-subtitle {
                font-size: 18px;
            }


            .content-title {
                font-size: 20px;
            }
            
            .team-section .content-title {
                font-size: 18px;
                line-height: 1.8;
            }
            .about-description {
                font-size: 13px;
                line-height: 2;
            }

            /* 移动端section间距保持一致 */
            section {
                padding: 40px 0;
            }

            section .container {
                padding-left: 15px;
                padding-right: 15px;
            }

            /* 移动端新闻中心样式优化 */
            .news-section {
                background: #f8f9fa !important; /* 移除背景图片 */
                padding: 20px 0 20px 0 !important; /* 减少底部间距 */
            }

            .news-section::before {
                display: none; /* 移除遮罩层 */
            }

            /* 移动端新闻标题行：标题占满整行 */
            .news-section .row:first-child {
                display: block !important;
            }

            .news-section .col-md-10 {
                flex: none !important;
                max-width: 100% !important;
                width: 100% !important;
                padding-right: 15px;
            }

            .news-section .col-md-2 {
                display: none !important;
            }

           

            .news-controls {
                justify-content: flex-end;
                margin-top: 0;
                margin-bottom: 0;
                order: initial; /* 重置order */
                align-items: center;
                gap: 5px; /* 减少按钮间距 */
            }

            .news-carousel {
                order: initial; /* 重置order */
                margin-bottom: 10px; /* 减少底部间距 */
            }

            .news-section .row:last-child {
                margin-bottom: 0; /* 移除底部间距 */
            }

            .news-controls .pagination-prev,
            .news-controls .pagination-next {
                width: 35px;
                height: 35px;
            }

            .news-controls .pagination-prev i,
            .news-controls .pagination-next i {
                font-size: 14px;
            }

            .news-controls .pagination-next {
                width: 80px;
                border-radius: 20px;
            }

            /* 在移动端隐藏新闻中心切换按钮 */
            .news-controls {
                display: none !important;
            }

            /* 在移动端隐藏合作伙伴区域 */
            .partners-section {
                display: none;
            }

            .team-card img,
            .product-card img {
                max-width: 100%;
            }

            /* 移动端统计数据两列布局 */
            .stats-section .row.mt-4 {
                display: flex;
                flex-wrap: wrap;
            }

            .stats-section .col-md-3 {
                flex: 0 0 50%;
                max-width: 50%;
                padding: 0 10px;
            }

            .stat-number {
                font-size: 24px;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 15px;
            }

            .stat-icon img {
                width: 60px;
                height: 60px;
            }

            .stat-text {
                font-size: 12px;
                max-width: 140px;
            }

            .partner-categories {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }

            .partner-category {
                margin: 0 5px 10px;
                font-size: 12px;
                padding: 8px 12px;
            }

            .partner-logo-container {
                padding: 15px;
            }

            .partner-logo img {
                height: 30px;
                margin: 8px;
            }

            .team-section {
                background-color: #192254;
                padding: 20px 0 30px 0;
            }

            .team-section .container {
                padding: 30px 16px 16px 16px;
                margin: 0 auto;
                width: calc(100% - 32px);
                max-width: none;
            }

          


            .news-section .col-md-4 {
                margin-bottom: 20px;
            }

            .news-card {
                margin-bottom: 0;
                height: auto;
            }

            /* Footer移动端样式 - 已提取到main.css */
        }

        /* 为合作伙伴部分添加动画效果 */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

        .partners-logos .logo-wrapper,
        .partners-logos .logo-wrapper-small,
        .partners-logos .logo-wrapper-medium,
        .partners-logos .logo-wrapper-large,
        .partners-logos .logo-wrapper-xl,
        .partners-logos .logo-wrapper-xxl,
        .partners-logos .logo-wrapper-square,
        .partners-logos .logo-box-sm,
        .partners-logos .logo-box-lg,
        .partners-logos .logo-container-xl,
        .partners-logos .logo-container-lg,
        .partners-logos .logo-container-xxl,
        .partners-logos .logo-container-side {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .partners-logos.animated > div {
            opacity: 1;
            transform: scale(1);
        }

        /* 错开动画时间，产生波浪效果 */
        .partners-logos.animated > div:nth-child(1) { transition-delay: 0.1s; }
        .partners-logos.animated > div:nth-child(2) { transition-delay: 0.2s; }
        .partners-logos.animated > div:nth-child(3) { transition-delay: 0.3s; }
        .partners-logos.animated > div:nth-child(4) { transition-delay: 0.4s; }
        .partners-logos.animated > div:nth-child(5) { transition-delay: 0.5s; }
        .partners-logos.animated > div:nth-child(6) { transition-delay: 0.6s; }
        .partners-logos.animated > div:nth-child(7) { transition-delay: 0.7s; }
        .partners-logos.animated > div:nth-child(8) { transition-delay: 0.8s; }
        .partners-logos.animated > div:nth-child(9) { transition-delay: 0.9s; }

        /* 鼠标悬停时的弹性动画 */
        .logo-wrapper:hover, .logo-wrapper-small:hover, .logo-wrapper-medium:hover,
        .logo-wrapper-large:hover, .logo-wrapper-xl:hover, .logo-wrapper-xxl:hover,
        .logo-wrapper-square:hover, .logo-box-sm:hover, .logo-box-lg:hover,
        .logo-container-xl:hover, .logo-container-lg:hover, .logo-container-xxl:hover,
        .logo-container-side:hover, .logo-container-large:hover, .logo-container-medium:hover,
        .logo-group-main:hover {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
            box-shadow 0.5s ease;
            transform: scale(1.08) !important;
            z-index: 10 !important;
        }

        /* 响应式样式 */
        @media (min-width: 1400px) {
            /* 大屏幕优化 */
            .partners-content-wrapper {
                gap: 0;
            }

            .partners-container {
                min-height: 900px;
            }
        }

        @media (max-width: 1200px) and (min-width: 993px) {
            /* 中等桌面屏幕 */
            .partners-content-wrapper {
                gap: 0;
            }

            .partners-sidebar {
                width: 420px;
                height: 500px;
            }

            .partners-logos {
                width: 1000px;
                height: 1000px;
            }
        }

        /* PC Navigation - Original yellow line interaction */
        .nav-links a {
            color: #333;
            margin: 0 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #3C6EDD;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Ensure no conflicts with mobile navigation */
        .nav-links.d-md-none a::after {
            display: none !important;
        }

        /* PC导航栏滚动悬浮置顶效果 */
        @media (min-width: 769px) {
            .top-nav {
                transition: all 0.3s ease;
                background-color: white;
                padding: 15px 0;
                box-shadow: 0 1px 3px rgba(0,0,0,0.1);
                position: relative;
                z-index: 1001;
            }

            .top-nav.sticky {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
            }

            .top-nav.sticky .logo img {
                height: 30px;
                transition: height 0.3s ease;
            }

            /* 为固定导航栏后的内容添加顶部间距 */
            body.nav-sticky .hero-section {
                margin-top: 70px;
            }

            .team-carousel-mobile {
                display: none;
            }
        }

        /* 移动端晓葆人文轮播样式 */
        .team-carousel-mobile {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .team-carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
        }

        .team-carousel-item {
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .team-carousel-item.active {
            opacity: 1;
            transform: scale(1);
            z-index: 3;
        }

        .team-carousel-item.next {
            opacity: 0.7;
            transform: scale(0.95) translateX(10px);
            z-index: 2;
        }

        .team-carousel-item.prev {
            opacity: 0.5;
            transform: scale(0.9) translateX(-10px);
            z-index: 1;
        }

        .team-carousel-mobile .team-card {
            width: 100%;
            height: 100%;
            margin: 0;
            text-align: center;
            border-radius: 8px;
            overflow: hidden;
        }

        .team-carousel-mobile .team-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .owl-dots {
            display: none;
        }