 /* =======================================================================
           基础动画样式
           ======================================================================= */

        /* 关键帧动画 */
        @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);
        }

        /* =======================================================================
           全局组件样式
           ======================================================================= */

        /* 页面滚动进度条 */
        .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;
        }

        /* 图片懒加载效果 */
        .lazy-image {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .lazy-image.loaded {
            opacity: 1;
        }

        /* =======================================================================
           移动端二级菜单选项卡样式
           ======================================================================= */

        /* 移动端选项卡容器 */
        .mobile-submenu-tabs {
            position: sticky;
            top: 70px; /* 在移动端导航栏下方 */
            z-index: 100;
            background: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-submenu-container {
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }

        .mobile-submenu-scrollable {
            display: flex;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE 10+ */
            scroll-behavior: smooth;
            padding: 0 15px;
            gap: 0;
        }

        .mobile-submenu-scrollable::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        /* 选项卡样式 */
        .mobile-submenu-tab {
            flex: 0 0 auto;
            margin-top: 15px;
            padding: 15px 10px 10px 15px;
            background: transparent;
            color: #999999;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            white-space: nowrap;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
            position: relative;
        }

        .mobile-submenu-tab:hover {
            text-decoration: none;
            color: #5D5F5F;
        }

        .mobile-submenu-tab.active {
            color: #5D5F5F;
            font-weight: 500;
            border-bottom: none;
        }

        .mobile-submenu-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background-color: #3C6EDD;
        }

        /* 滚动进入视图时的激活效果 */
        .mobile-submenu-tabs.scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* PC端隐藏移动端选项卡 */
        @media (min-width: 768px) {
            .mobile-submenu-tabs {
                display: none !important;
            }
        }

        /* 移动端优化 */
        @media (max-width: 767px) {
            .mobile-submenu-tabs {
                top: 60px; /* 适配移动端导航栏高度 */
            }
            
            .mobile-submenu-tab {
                padding: 10px 12px 8px 12px;
                font-size: 13px;
            }
        }

        /* =======================================================================
           交互效果组件
           ======================================================================= */

        /* 按钮微交互 */
        .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;
        }

        /* =======================================================================
           数据成果模块样式
           ======================================================================= */
        .data-results-section {
            position: relative;
            padding: 80px 0;
            background: url('../../../img/data_bg.jpg') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        /* 移除遮罩层，让背景图片直接显示 */

        .data-results-content {
            position: relative;
            z-index: 1;
            text-align: center;
            width: 100%;
        }

        .data-results-title {
            font-size: 30px;
            color: #2A63D4;
            margin-bottom: 100px;
            letter-spacing: 3px;
            position: relative;
            z-index: 2;
        }

        .data-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .data-stat-item {
            text-align: center;
            color: #2A63D4;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .data-stat-item.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .data-stat-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .data-stat-icon:hover {
            transform: scale(1.1);
        }

        .data-stat-icon img {
            width: 120px;
            height: 120px;
        }

        .data-stat-number {
            font-size: 32px;
            margin-bottom: 15px;
            color: #2A63D4;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .data-stat-desc {
            font-size: 14px;
            color: #333333;
            line-height: 1.6;
            font-weight: 400;
        }

        /* 数字统计动画效果 */
        .data-stat-number.counting {
            animation: numberPulse 0.6s ease-in-out;
        }

        @keyframes numberPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .data-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                max-width: 600px;
            }

            .data-results-title {
                font-size: 28px;
                margin-bottom: 60px;
            }

            .data-stat-number {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .data-results-section {
                padding: 60px 0;
                background-attachment: scroll;
            }
            .data-stat-desc { 
                font-size: 12px;
            }
            .data-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 20px;
                max-width: 400px;
            }

            .data-results-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .data-stat-number {
                font-size: 20px;
            }

            .data-stat-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .data-stat-icon img {
                width: 80px;
                height: 80px;
            }
        }

        /* =======================================================================
           为什么选择晓葆模块样式
           ======================================================================= */
        .why-choose-section {
            position: relative;
            padding: 60px 0;
            background: url('../../../img/data_choose_bg.png') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 800px;
            overflow: hidden;
            width: 100%;
        }

        .why-choose-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .why-choose-header {
            text-align: left;
            margin-bottom: 30px;
        }

        .why-choose-main-title {
            font-size: 18px;
            color: #333333;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            font-weight: normal;
        }
        .why-choose-main-title i {
            font-size: 10px;
            opacity: 0.8;
        }
        

        .why-choose-blocks {
            display: flex;
            flex-direction: column;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 硬件优势块 - 内容左对齐，背景图层覆盖 */
        .hardware-advantage-block {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            transform: translateX(-50px);
            transition: all 0.8s ease;
            background: url('../../../img/data_choose_1.png') center center / cover no-repeat;
            border-radius: 8px;
            overflow: hidden;
        }

        .hardware-advantage-block.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .hardware-content {
            background: white;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 3;
            position: relative;
            max-width: 450px;
        }


        /* 软件优势块 - 内容右对齐，背景图层覆盖 */
        .software-advantage-block {
            position: relative;
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            transform: translateX(50px);
            transition: all 0.8s ease;
            background: url('../../../img/data_choose_2.png') center center / cover no-repeat;
            border-radius: 8px;
            overflow: hidden;
        }

        .software-advantage-block.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .software-content {
            background: white;
            padding: 40px 30px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 3;
            position: relative;
            max-width: 450px;
        }

        .software-bg {
            display: none; /* 不再需要单独的背景元素 */
        }

        /* 共同样式 */
        .advantage-title {
            font-size: 20px;
            color: #3C6EDD;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .advantage-desc {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .advantage-details {
            font-size: 13px;
            color: #888;
            line-height: 1.6;
        }

        .advantage-details p {
            margin: 8px 0;
            position: relative;
            padding-left: 15px;
        }

        .advantage-details p::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #676767;
            font-weight: bold;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .why-choose-section {
                padding: 80px 0;
                background-attachment: scroll;
                min-height: 700px;
            }

            .hardware-advantage-block,
            .software-advantage-block {
                min-height: 400px;
                justify-content: center;
                text-align: center;
            }

            .hardware-content,
            .software-content {
                margin: 0;
                padding: 40px 30px;
                max-width: 90%;
            }

            .why-choose-main-title {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 0;
                min-height: 600px;
            }

            .why-choose-blocks {
                gap: 40px;
            }

            .hardware-advantage-block,
            .software-advantage-block {
                min-height: 350px;
                background-attachment: scroll;
            }

            .hardware-content,
            .software-content {
                padding: 30px 25px;
                max-width: 85%;
            }

            .why-choose-main-title {
                font-size: 14px;
            }

            .advantage-title {
                font-size: 18px;
                text-align: left;
            }

            .advantage-desc {
                font-size: 13px;
                text-align: left;
            }

            .advantage-details {
                font-size: 12px;
                text-align: left;
            }
        }

        /* =======================================================================
           服务优势模块样式
           ======================================================================= */
        .service-advantage-section {
            position: relative;
            padding: 100px 0;
            background: url('../../../img/service_bg.png') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        .service-advantage-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .service-advantage-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            color: white;
        }

        .service-advantage-title {
            font-size: 32px;
            color: white;
            margin-bottom: 15px;
            letter-spacing: 2px;
            font-weight: bold;
        }

        .service-advantage-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 80px;
            line-height: 1.6;
        }

        .service-advantage-grid {
            display: grid;
            grid-template-columns: 1fr 1px 1fr 1px 1fr;
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
            align-items: stretch;
        }

        .service-advantage-item {
            padding: 40px 30px;
            text-align: center;
            color: white;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .service-advantage-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .service-advantage-separator {
            width: 1px;
            background: rgba(255, 255, 255, 0.3);
            margin: 20px 0;
        }

        .service-advantage-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .service-advantage-icon:hover {
            transform: scale(1.1);
        }

        .service-advantage-icon img {
            width: 120px;
            height: 120px;
        }

        .service-advantage-name {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 30px;
            color: white;
        }

        .service-advantage-desc {
            font-size: 13px;
            font-weight: 100;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
        }

        .service-advantage-desc p {
            margin: 8px 0;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .service-advantage-section {
                padding: 80px 0;
                background-attachment: scroll;
            }

            .service-advantage-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                max-width: 500px;
            }

            .service-advantage-separator {
                display: none;
            }

            .service-advantage-title {
                font-size: 28px;
            }

            .service-advantage-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                padding-bottom: 30px;
                margin-bottom: 20px;
            }

            .service-advantage-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .service-advantage-section {
                padding: 60px 0;
            }

            .service-advantage-title {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .service-advantage-subtitle {
                font-size: 14px;
                margin-bottom: 50px;
            }

            .service-advantage-item {
                padding: 30px 20px;
            }

            .service-advantage-icon {
                width: 60px;
                height: 60px;
            }

            .service-advantage-icon img {
                width: 80px;
                height: 80px;
            }

            .service-advantage-name {
                font-size: 16px;
                margin-bottom: 15px;
            }

            .service-advantage-desc {
                font-size: 12px;
            }
        }

        /* =======================================================================
           晓葆的服务生态模块样式
           ======================================================================= */
        .service-ecosystem-section {
            position: relative;
            padding: 100px 0;
            background: url('../../../img/data_aiot_bg.png') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        .service-ecosystem-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .service-ecosystem-header {
            margin-bottom: 1px;
            text-align: left;
        }

        
        .service-ecosystem-subtitle {
            font-size: 16px;
            color: #333333;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }

        .service-ecosystem-subtitle::before {
            content: '▶';
            color: #333333;
            font-size: 10px;
        }

        .service-ecosystem-diagram {
            margin: 0;
            text-align: center;
            transform: scale(0.8);
            transition: all 1s ease;
        }

        .service-ecosystem-diagram.animated {
            opacity: 1;
            transform: scale(1);
        }

        .service-ecosystem-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .service-ecosystem-diagram:hover .service-ecosystem-image {
            transform: scale(1.05);
        }

        .service-ecosystem-footer {
            margin-top: 35px;
            text-align: center;
            transform: translateY(30px);
            transition: all 0.8s ease 0.5s;
        }

        .service-ecosystem-footer.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .service-ecosystem-slogan {
            font-size: 28px;
            color: #5D5F5F;
            font-weight: 500;
            letter-spacing: 2px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .service-ecosystem-section {
                padding: 80px 0;
                background-attachment: scroll;
                min-height: 600px;
                margin-top: 40px;
            }

          

            .service-ecosystem-subtitle {
                font-size: 16px;
            }

            .service-ecosystem-image {
                max-width: 500px;
            }

            .service-ecosystem-slogan {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .service-ecosystem-section {
                padding: 60px 0;
                min-height: 500px;
                margin-top: 40px;
            }

          

            .service-ecosystem-subtitle {
                font-size: 14px;
            }

            .service-ecosystem-image {
                max-width: 400px;
            }

            .service-ecosystem-slogan {
                font-size: 16px;
                letter-spacing: 1px;
            }

            .service-ecosystem-header {
                margin-bottom: 20px;
            }

            .service-ecosystem-footer {
                margin-top: 20px;
            }
        }

        /* =======================================================================
           数据优势模块样式
           ======================================================================= */
        .data-advantage-section {
            background-color: #192254;
            padding: 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .data-advantage-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .data-advantage-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 500px;
        }

        .data-advantage-left {
            padding-right: 40px;
            padding-top:40px
        }

        .data-advantage-title {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 15px;
            color: white;
            text-align: center;
        }

        .data-advantage-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 50px;
            line-height: 1.6;
            text-align: center;
        }

        .data-advantage-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px 60px;
        }

        .data-advantage-stat-item {
            display: flex;
            flex-direction: column;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .data-advantage-stat-item.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .data-advantage-stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #FFFFFF;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .data-advantage-stat-desc {
            font-size: 12px;
            font-weight: 100;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        .data-advantage-right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .data-advantage-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .data-advantage-image.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* 背景装饰效果 */
        .data-advantage-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 40%;
            height: 200%;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), transparent);
            transform: rotate(15deg);
            z-index: 1;
        }

        .data-advantage-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 30%;
            height: 100%;
            background: linear-gradient(45deg, rgba(60, 110, 221, 0.1), transparent);
            transform: rotate(-15deg);
            z-index: 1;
        }

        .data-advantage-container {
            position: relative;
            z-index: 2;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .data-advantage-content {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }

            .data-advantage-left {
                padding-right: 0;
                order: 2;
            }

            .data-advantage-right {
                order: 1;
            }

            .data-advantage-title {
                font-size: 36px;
            }

            .data-advantage-stats {
                gap: 30px 40px;
            }

            .data-advantage-stat-number {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .data-advantage-section {
                padding: 0 0 60px 0;
            }
            .data-advantage-container {
                margin: 0 auto;
                padding: 0;
            }
            .data-advantage-content {
                gap: 40px;
            }

            .data-advantage-title {
                font-size: 28px;
                margin-bottom: 15px;
            }

            .data-advantage-subtitle {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .data-advantage-stats {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .data-advantage-stat-item {
                text-align: center;
            }

            .data-advantage-stat-number {
                font-size: 24px;
            }

            .data-advantage-stat-desc {
                font-size: 14px;
                text-align: center;
            }
        }

        /* =======================================================================
           核心产品模块样式（参考首页样式）
           ======================================================================= */
        .core-products-section {
            padding: 30px 0 60px 0;
            background-color: #192254;
        }

        .health-section {
            background-color: #192254;
        }

        .core-products-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 30px;
            background-color: white;
        }

        .core-products-header {
            text-align: left;
            margin-bottom: 4px;
        }

        .core-products-main-title {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
            font-weight: bold;
            position: relative;
        }

        .core-products-main-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #ffc107;
            border-radius: 2px;
        }

        .core-products-subtitle {
            font-size: 16px;
            color: #666;
            text-align: left;
            margin-bottom: 50px;
            line-height: 1.6;
        }

        .core-products-grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin: 0 auto;
        }

        .core-product-item {
            flex: 1;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .core-product-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .core-product-image {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .core-products-grid {
                /* flex-direction: column; */
                align-items: center;
                gap: 40px;
            }

            .core-product-item {
                max-width: 90%;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .core-products-main-title {
                font-size: 24px;
            }

            .core-products-section {
                padding: 0 15px 15px 15px;
            }

            .core-products-container {
                padding: 15px 15px;
            }

            .core-products-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .core-products-grid {
                gap: 30px;
            }

            .core-product-item {
                max-width: 300px;
            }
        }

        /* =======================================================================
           移动智能体检模块样式
           ======================================================================= */
        .mobile-health-check-container {
            position: relative;
            background-image: url('../../../img/data_h_bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: white;
            overflow: hidden;
            margin-top: 60px;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
        }

        .mobile-health-content {
            position: relative;
            z-index: 2;
            padding: 40px;
            max-width: 600px;
            color: white;
            width: 100%;
        }

        .mobile-health-title {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            line-height: 1.3;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .mobile-health-title.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-health-subtitle {
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 500;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .mobile-health-subtitle.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-health-description {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

        .mobile-health-description.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .mobile-health-check-container {
                min-height: 300px;
                margin-top: 40px;
            }

            .mobile-health-content {
                padding: 30px;
                max-width: 100%;
            }

            .mobile-health-title {
                font-size: 24px;
            }

            .mobile-health-subtitle {
                font-size: 14px;
            }

            .mobile-health-description {
                font-size: 12px;
                line-height: 1.8;
            }
        }

        @media (max-width: 768px) {
            .mobile-health-check-container {
                min-height: 250px;
                margin-top: 0px;
                background-attachment: scroll;
            }

            .mobile-health-content {
                padding: 20px;
            }

            .mobile-health-title {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .mobile-health-subtitle {
                font-size: 12px;
                margin-bottom: 15px;
            }

            .mobile-health-description {
                font-size: 12px;
            }
        }

        /* =======================================================================
           解决方案模块样式
           ======================================================================= */
        .solution-container {
            background-color: #F7F7F7;
            margin-top: 60px;
            padding: 40px;
        }

        .solution-container-nobg {
            margin-top: 60px;
            padding: 40px;
        }

        .solution-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            align-items: center;
        }

        @media (min-width: 769px) {
            .solution-content-fixed {
                grid-template-columns: 1.7fr 1fr;
            }
        }

        .solution-left {
            padding-right: 20px;
        }

        .solution-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }



        .solution-description {
            color: #666565;
            font-size: 18px;
            margin-left: 20px;
            margin-bottom: 20px;
            text-align: left;
        }

        .solution-features {
            color: #666565;
            font-size: 14px;
            line-height: 1.6;
        }

        .solution-right {
            display: flex;
            justify-content: center;
            align-items: left;
        }

        .solution-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .solution-image.animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* 解决方案动画效果 */
        .solution-left > * {
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .solution-left.animated > * {
            opacity: 1;
            transform: translateY(0);
        }

        .solution-left.animated .solution-header {
            transition-delay: 0.1s;
        }

        .solution-left.animated .solution-subtitle {
            transition-delay: 0.2s;
        }

        .solution-left.animated .solution-description {
            transition-delay: 0.3s;
        }

        .solution-left.animated .solution-features {
            transition-delay: 0.4s;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .solution-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            /* 第一个solution-content：左侧内容在上，右侧配图在下 */
            .solution-content:nth-child(1) .solution-left {
                padding-right: 0;
                order: 1;
            }

            .solution-content:nth-child(1) .solution-right {
                order: 2;
            }

            /* 第二个solution-content：右侧正文在上，左侧配图在下 */
            .solution-content:nth-child(2) .solution-left {
                padding-right: 0;
                order: 2; /* 左侧配图区域排在下面 */
            }

            .solution-content:nth-child(2) .solution-right {
                order: 1; /* 右侧正文区域排在上面 */
            }

            .solution-header {
                justify-content: left;
            }

            .solution-title {
                font-size: 20px;
            }

            .solution-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .solution-container {
                margin-top: 0;
                padding: 30px 20px;
            }
            .solution-container-nobg {
                margin-top: 0;
                padding: 30px 0;
                height: 100%;
                overflow:hidden;
            }

            .solution-content {
                gap: 30px;
                margin-top: 20px;
            }

            /* 确保在768px以下也维持正确的显示顺序 */
            /* 第一个solution-content：左侧内容在上，右侧配图在下 */
            .solution-content:nth-child(1) .solution-left {
                order: 1;
            }

            .solution-content:nth-child(1) .solution-right {
                order: 2;
            }

            /* 第二个solution-content：右侧正文在上，左侧配图在下 */
            .solution-content:nth-child(2) .solution-left {
                order: 2; /* 左侧配图区域排在下面 */
            }

            .solution-content:nth-child(2) .solution-right {
                order: 1; /* 右侧正文区域排在上面 */
            }

            .solution-title {
                font-size: 18px;
                text-align: left;
            }

            .solution-subtitle {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .solution-description,
            .solution-features {
                font-size: 12px;
            }

            .solution-arrow {
                width: 16px;
                height: 16px;
                margin-right: 10px;
            }
        }

        /* 左侧四图布局样式 */
        .solution-left-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 0 auto;
        }

        .solution-image-item {
            position: relative;
            background-color: #f8f9fa;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 1.8;
            transform: scale(0.8);
            transition: all 0.6s ease;
        }

        .solution-image-item.animated {
            opacity: 1;
            transform: scale(1);
        }

        .solution-image-item:hover {
            transform: scale(1.05);
        }

        .solution-item-image {
            width: 100%;
            background-size: contain;
            transition: transform 0.3s ease;
        }

        .solution-image-item:hover .solution-item-image {
            transform: scale(1.1);
        }

        .solution-image-label {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            background-color:white;
            color: #717171;
            border:1px solid rgba(59, 186, 178, 0.9);
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 500;
            white-space: nowrap;
        }

        /* 右侧内容区域调整 */
        .solution-content:nth-child(2) .solution-right {
            display: flex;
            flex-direction: column;
            justify-content: left;
        }

        .solution-content:nth-child(2) .solution-left {
            display: flex;
            align-items: left;
            justify-content: left;
        }

        .solution-content:nth-child(2) .solution-header {
            align-items: flex-start;
        }

        /* 响应式设计调整 */
        @media (max-width: 992px) {
            .solution-left-images {
                max-width: 300px;
                gap: 15px;
            }

            .solution-content:nth-child(2) .solution-right {
                padding-left: 0;
            }
        }

        @media (max-width: 768px) {
            .solution-left-images {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                max-width: 320px;
                padding: 0;
            }
            
            .solution-image-item {
                aspect-ratio: 1.3;
            }

            .solution-image-label {
                font-size: 10px;
                padding: 4px 6px;
                bottom: 6px;
            }
            
            
        }

        /* =======================================================================
           多维智能体检中心模块样式
           ======================================================================= */
        .multi-dimensional-section {
            padding: 30px 0;
            position: relative;
        }

        .multi-dimensional-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            overflow-x: hidden; /* 防止水平溢出 */
        }

        .multi-dimensional-content {
            display: grid;
            grid-template-columns: 4fr 8fr;
            align-items: center;
        }

        .multi-dimensional-header {
            display: flex;
            margin-bottom: 40px;
            justify-content: flex-start;
            padding: 0; /* 确保标题有合适的左右间距 */
        }

        /* =======================================================================
           带箭头图标的 h3 标题统一样式
           适用于所有包含 ../../../img/data_green_arrow.png 箭头图标的 h3 标题
           统一管理 PC 端和移动端的字体大小、颜色、间距等样式
           ======================================================================= */
        .data-section-title-with-arrow {
            font-size: 24px;
            font-weight: bold;
            color: #3BBAB2;
            margin: 0;
            line-height: 1.6;
        }

        .data-section-arrow-icon {
            width: 14px;
            height: 14px;
            margin-top: 10px;
            margin-right: 10px;
            flex-shrink: 0;
        }

        /* 标题容器样式 - 确保箭头和标题正确对齐 */
        .data-section-header {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 30px;
        }

        /* 响应式字体大小 */
        @media (max-width: 992px) {
            .data-section-title-with-arrow {
                font-size: 24px;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .data-section-title-with-arrow {
                font-size: 20px;
                text-align: left;
            }
            
            .data-section-header {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .data-section-title-with-arrow {
                font-size: 18px;
                text-align: left;
            }
            .data-section-arrow-icon {
                width: 10px;
                height: 10px;
                margin-top: 5px;
                margin-right: 10px;
                flex-shrink: 0;
            }
        }



        .multi-dimensional-subtitle {
            font-size: 16px;
            color: #3BBAB2;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .multi-dimensional-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .multi-dimensional-right {
            display: flex;
            align-items: center;
            justify-content: center;

        }

        /* 中心圆形背景和AI图片 */
        .center-ai-container {
            position: relative;
            width: 650px;
            height: 650px;
            margin: 0 auto;
        }

        .center-ai-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../../img/data_ai_bg.png') center center / contain no-repeat;
            z-index: 1;
        }

        .center-ai-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 95%;
            height: 95%;
            background: url('../../../img/data_ai.png') center center / cover no-repeat;
            z-index: 2;
        }

        /* 左侧四个矩形框垂直排列 */
        .dimension-blocks {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
        }

        .dimension-block {
            background: #F0FAFE;
            border-radius: 8px;
            padding: 15px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: calc(100% - 90px);
            position: relative;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .dimension-block.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .dimension-block:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(59, 186, 178, 0.15);
        }

        .block-content {
            flex: 1;
        }

        .block-title {
            font-size: 18px;
            font-weight: 500;
            color: #2A63D7;
            margin-bottom: 5px;
        }
        .block-title span{
            font-size: 14px;
            font-weight: 400;
        }

        .block-desc {
            font-size: 11px;
            color: #666;
            line-height: 1.6;
        }

        .block-arrow {
            position: absolute;
            right: -60px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 80px;
            flex-shrink: 0;
        }

        .block-arrow img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* PC端特殊缩进样式 */
        .indent-left {
            margin-left: 50px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .multi-dimensional-section {
                padding: 60px 15px;
            }

            .multi-dimensional-container {
                padding: 0;
                max-width: 100%;
                overflow-x: hidden;
            }

            .multi-dimensional-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .multi-dimensional-left {
                order: 2;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0 15px;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-header {
                padding: 0 15px;
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-right {
                order: 1;
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .center-ai-container {
                width: 90%;
                height: min(400px, 90vw);
                max-height: 450px;
                max-width: 450px;
            }

            .center-ai-image {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center center;
            }

            .dimension-blocks {
                width: 100%;
                max-width: 600px;
                display: flex;
                flex-direction: column;
                align-items: center;
                padding: 0;
                margin: 0 auto;
            }

            .dimension-block {
                padding: 15px 20px;
                width: 100%;
                max-width: 500px;
                margin: 0 auto 15px;
                box-sizing: border-box;
            }

            .block-content {
                text-align: left;
            }

            /* 移动端取消特殊缩进和隐藏箭头 */
            .indent-left {
                margin-left: 0;
            }

            .block-arrow {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .multi-dimensional-section {
                padding: 50px 15px;
            }

            .multi-dimensional-container {
                padding: 0;
                max-width: 100%;
                overflow-x: hidden;
            }

            .multi-dimensional-content {
                gap: 30px;
            }

            .multi-dimensional-left {
                padding: 0 10px;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-header {
                padding: 0 10px;
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-right {
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .multi-dimensional-subtitle {
                font-size: 14px;
            }

            .center-ai-container {
                width: 85%;
                height: min(350px, 85vw);
                max-height: 380px;
                max-width: 380px;
            }

            .center-ai-image {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center center;
            }

            .dimension-blocks {
                max-width: 100%;
                padding: 0;
                gap: 3px;
                width: 100%;
                margin: 0 auto;
            }

            .dimension-block {
                padding: 12px 15px;
                width: 100%;
                max-width: 100%;
                margin: 0 auto 15px;
                box-sizing: border-box;
            }

            .block-content {
                text-align: left;
                margin-left: 10px;
            }

            .block-title {
                font-size: 14px;
                font-weight: 500;
            }
            
            .block-title span{
                margin-left: 5px;
                font-size: 12px;
                font-weight: 400;
            }

            .block-desc {
                font-size: 10px;
                word-wrap: break-word;
            }

            .block-arrow {
                display: none;
            }
        }

        /* 针对超小屏幕的优化 */
        @media (max-width: 480px) {
            .multi-dimensional-section {
                padding: 30px 0px;
                height: 100%;
                overflow: hidden;
            }

            .multi-dimensional-container {
                padding: 0;
                max-width: 100%;
                overflow: hidden;
            }

            .multi-dimensional-content {
                gap: 20px;
            }

            .multi-dimensional-left {
                padding: 0 5px;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-header {
                padding: 0 5px;
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-right {
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .center-ai-container {
                width: 100%;
                height: min(280px, 80vw);
                max-height: 300px;
            }

            .center-ai-image {
                width: 100%;
                height: 100%;
                background-size: contain;
                background-position: center center;
            }

            .dimension-blocks {
                padding: 0;
                width: 100%;
                margin: 0 auto;
            }

            .dimension-block {
                padding: 10px 12px;
                width: 100%;
                margin: 0 auto 12px;
                font-size: 12px;
                box-sizing: border-box;
            }

            .block-title {
                font-size: 13px;
                font-weight: 500;
            }

            .block-title span{
                margin-left: 3px;
                font-size: 11px;
                font-weight: 400;
            }

            .block-desc {
                font-size: 9px;
                line-height: 1.3;
                word-wrap: break-word;
            }

            .data-section-title-with-arrow {
                font-size: 16px;
                line-height: 1.4;
            }
        }

        /* 针对极小屏幕的额外优化 (iPhone SE 等) */
        @media (max-width: 375px) {
            .multi-dimensional-section {
                padding: 25px 8px;
            }

            .multi-dimensional-container {
                padding: 0;
            }

            .multi-dimensional-left {
                padding: 0 3px;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-header {
                padding: 0 3px;
                text-align: center;
                width: 100%;
                box-sizing: border-box;
            }

            .multi-dimensional-right {
                padding: 0;
                margin: 0;
                display: flex;
                justify-content: center;
                width: 100%;
            }

            .center-ai-container {
                width: 100%;
                height: min(250px, 75vw);
                max-height: 270px;
                max-width: 270px;
            }

            .center-ai-image {
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center center;
            }

            .dimension-block {
                padding: 8px 10px;
                width: 100%;
                margin: 0 auto 10px;
                box-sizing: border-box;
            }

            .block-title {
                font-size: 12px;
                font-weight: 500;
            }
            
            .block-title span{
                margin-left: 2px;
                font-size: 10px;
                font-weight: 400;
            }

            .block-desc {
                font-size: 8px;
                line-height: 1.2;
            }

            .data-section-title-with-arrow {
                font-size: 14px;
                line-height: 1.3;
            }

            .data-section-arrow-icon {
                width: 9px;
                height: 9px;
                margin-top: 3px;
                margin-right: 8px;
            }
        }

        /* =======================================================================
           数智化健管生态模块样式
           ======================================================================= */
        .digital-health-section {
            padding: 60px 0;
            position: relative;
        }

        .digital-health-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .digital-health-header {
            display: flex;
        }



        .digital-health-subtitle {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin: 10px 0 20px 0;
        }

        .digital-health-description {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 50px;
        }

        .digital-health-apps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .digital-health-app {
            text-align: center;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .digital-health-app.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .digital-health-app-image {
            width: 88%;
            max-width: 200px;
            /*border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);*/
            transition: all 0.3s ease;
            margin-bottom: 20px;
        }

        @media (min-width: 992px) {
            .digital-health-app-image {
                width: 100%;
                max-width: 200px;
                height: auto;
                border-radius: 20px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                margin-bottom: 20px;
            }
        }


        .digital-health-app:hover .digital-health-app-image {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .digital-health-app-label {
            display: inline-block;
            background-color: #3BBAB2;
            border-radius: 5px;
            border:2px solid #BEDC96;
            color: white;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: 400;
        }

        /* 客户端智慧看板样式 */
        .digital-health-dashboard {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .digital-health-dashboard.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .digital-health-dashboard-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .digital-health-dashboard:hover .digital-health-dashboard-image {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        /* 客户端部分间距调整 */
        .digital-health-client-section {
            margin-top: 60px;
            padding-top: 40px;
            position: relative;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .digital-health-apps {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .digital-health-section {
                padding: 60px 0;
            }


        }

        @media (max-width: 768px) {
            .digital-health-apps {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                max-width: 100%;
            }

            .digital-health-section {
                padding: 30px 0;
            }

            .digital-health-app-label {
                font-size: 12px;
            }

            .digital-health-subtitle {
                font-size: 14px;
            }

            .digital-health-description {
                font-size: 13px;
                padding-left: 12px;
                margin-bottom: 0;
            }

            .digital-health-app-image {
                width:55%;
            }

            .digital-health-header {
                justify-content: left;
                text-align: left;
            }

            .digital-health-dashboard-image {
                max-width: 100%;
                border-radius: 10px;
            }

            .digital-health-client-section {
                margin-top: 50px;
                padding-top: 0;
            }
        }

        /* =======================================================================
           行业合作伙伴模块样式
           ======================================================================= */
        .industry-partners-section {
            padding: 60px 0;
            position: relative;
        }

        .industry-partners-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .industry-partners-header {
            display: flex;
            justify-content: flex-start;
            margin-bottom: 50px;
        }



        .industry-partners-showcase {
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .industry-partners-showcase.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .industry-partners-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            transition: all 0.3s ease;
            padding: 20px;
        }

        .industry-partners-showcase:hover .industry-partners-image {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(59, 186, 178, 0.12);
            border-color: #3BBAB2;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .industry-partners-section {
                padding: 60px 0;
            }



            .industry-partners-image {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .industry-partners-section {
                padding: 50px 0;
            }



            .industry-partners-header {
                text-align: left;
                align-items: flex-start;
            }



            .industry-partners-image {
                padding: 0;
            }

          
        }

        /* =======================================================================
           适老化产品模块样式
           ======================================================================= */
        .elderly-care-section {
            position: relative;
            padding: 100px 0;
            background: url('../../../img/elderly_care_bg.webp') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        .elderly-care-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .elderly-care-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .elderly-care-main-box {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 120px;
            background-color: #ffffff;
        }

        .elderly-care-main-box.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .elderly-care-title {
            font-size: 22px;
            font-weight: bold;
            color: #3C6EDD;
            text-align: left;
            line-height: 1.3;
        }

        .elderly-care-subtitle {
            font-size: 16px;
            color: #3C6EDD;
            text-align: left;
            margin-bottom: 40px;
            line-height: 1.5;
        }

        .elderly-care-description {
            font-size: 14px;
            color: #8B8B8B;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 40px;
        }

        .elderly-care-qrcode-section {
            background: #F6F6F6;
            padding: 40px;
            margin-top: 40px;
            position: relative;
        }

        .elderly-care-qrcode-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .elderly-care-qrcode {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
        }

        .elderly-care-qrcode-desc {
            font-size: 14px;
            color: #666;
            margin-top: 10px;
            line-height: 1.2;
        }

        /* 适老化评估和管家服务样式 */
        .care-box-header {
            display: flex;
            align-items: flex-start;
            margin-top: 60px;
            margin-bottom: 20px;
        }

       
        .care-box-subtitle {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            text-align: left;
        }
        .care-box-subtitle-desc {
            font-size: 16px;
            color: #333333;
            line-height: 1.6;
            margin-left: 14px;
            margin-bottom: 10px;
            text-align: left;
        }

        
        /* 评估模块布局 */

        .evaluate-content {
            display: flex;
            flex-direction: column;
        }

        .evaluate-description {
            font-size: 14px;
            color: #8B8B8B;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 30px;
        }

        .evaluate-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .evaluate-feature-item {
            background: #F0FAFE;
            padding: 15px 20px;
            border-radius: 8px;
            border-left: 4px solid #3BBAB2;
        }

        .feature-title {
            font-size: 16px;
            font-weight: bold;
            color: #3BBAB2;
            margin-bottom: 8px;
        }

        .feature-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 5px;
        }

        .feature-desc:last-child {
            margin-bottom: 0;
        }

        .evaluate-image {
            text-align: center;
            transform: translateY(20px);
            transition: all 0.6s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .evaluate-image.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .evaluate-image img {
            max-width: 100%;
            width: auto;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* 简化的评估图片样式 */
        .evaluate-simple-image {
            text-align: center;
            margin: 60px 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .evaluate-simple-image.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .evaluate-simple-image img {
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .care-box-content {
            text-align: center;
            margin-bottom: 20px;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .care-box-content.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .housekeeper-image {
            max-width: 100%;
            margin-top: 40px;
            width: auto;
            height: auto;
        }

        /* 安全管家模块样式 */
        .safety-butler-content {
            margin-left: 14px;
            padding-top: 5px;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .safety-butler-content.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .safety-description {
            font-size: 14px;
            color: #666565;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 40px;
        }

        .smart-monitoring-section {
            text-align: center;
            margin-bottom: 20px;
        }

        .monitoring-title {
            font-size: 18px;
            font-weight: 600;
            color: #3BBAB2;
            margin: 0 auto 30px;
            text-align: center;
            display: inline-block;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        .monitoring-title strong {
            font-size: 20px;
            font-weight: 800;
        }

        .monitoring-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: #9CCA5F;
            opacity: 0.7;
            transition: left 0.5s;

        }

        @media (max-width: 768px) {
            .monitoring-title::after {
                width: 80%;
                left: 10%;
                bottom: 8px;
            }
        }

        .monitoring-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 40px;
            transform: scale(0.9);
            transition: all 0.8s ease;
        }

        .monitoring-image-container.animated {
            opacity: 1;
            transform: scale(1);
        }

        .monitoring-image {
            max-width: 100%;
            width: auto;
            height: auto;
            transition: transform 0.3s ease;
        }

        .monitoring-image-container:hover .monitoring-image {
            transform: scale(1.02);
        }

        /* 健康管家模块样式 */
        .health-butler-content {
            margin-top: 10px;
            opacity: 1;
        }

        .health-description {
            font-size: 14px;
            color: #666565;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 40px;
        }

        .health-image-container {
            position: relative;
            width: 100%;
            min-height: 550px;
            background: url('../../../img/health-butler-bg.png') center center / contain no-repeat;
            background-size: contain;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            margin-bottom: 40px;
            transform: scale(0.95);
            transition: all 0.8s ease;
        }

        .health-image-container.animated {
            opacity: 1;
            transform: scale(1);
        }

        .health-service-text {
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-align: center;
            margin-bottom: 60px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            z-index: 2;
        }

        .health-desc-image {
            width: auto;
            height: auto;
            margin-top: 60px;
            z-index: 2;
            transition: transform 0.3s ease;
            max-width: 90%;
        }

        .health-image-container:hover .health-desc-image {
            transform: scale(1.05);
        }

        /* 365天居家健康监测网格样式 */
        .health-monitoring-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
            background-color: rgba(60, 110, 221, 0.07);
            padding: 20px;
            border-radius: 8px;
        }

        .health-monitor-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transform: translateY(20px);
            transition: all 0.6s ease;
            background: none !important;
            border: none !important;
        }

        .health-monitor-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .monitor-image-box {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            background: none !important;
            border: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .health-monitor-item:hover .monitor-image-box {
            background: rgba(59, 186, 178, 0.05) !important;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(59, 186, 178, 0.15);
        }

        .monitor-product-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .health-monitor-item:hover .monitor-product-image {
            transform: scale(1.1);
        }

        .monitor-product-name {
            font-size: 14px;
            font-weight: 500;
            color: white;
            background: #4285F4;
            padding: 8px 16px;
            border-radius: 8px;
            white-space: nowrap;
            box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
            transition: all 0.3s ease;
        }

        .health-monitor-item:hover .monitor-product-name {
            background: #3367D6;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(66, 133, 244, 0.4);
        }

        /* 建立个人健康档案样式 */
        .health-archive-container {
            max-width: 840px;
            margin: 0 auto;
            padding: 20px;
        }

        .archive-image-wrapper {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .archive-image-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .archive-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .archive-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 186, 178, 0.9), rgba(66, 133, 244, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .archive-image-wrapper:hover .archive-overlay {
            opacity: 1;
        }

        .archive-overlay-content {
            text-align: center;
            color: white;
            padding: 30px;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .archive-image-wrapper:hover .archive-overlay-content {
            transform: translateY(0);
        }

        .archive-overlay-content h5 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .archive-overlay-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .archive-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .feature-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* =======================================================================
           就医管家模块样式
           ======================================================================= */
        .medical-service-item-bg{
            background-image: url("../../../img/medical_butler_1.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .medical-service-item-bg_2{
            background-image: url("../../../img/medical_butler_2.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
       .medical-service-item-bg_3{
            background-image: url("../../../img/medical_butler_3.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .medical-service-item-bg_4{
            background-image: url("../../../img/medical_butler_4.png");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .medical-butler-section {
            background-color: #f8f9fa;
            padding: 0 0 60px 0;
            position: relative;
        }

        .medical-butler-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .medical-butler-header-overlay {
            position: absolute;
            top: 60px;
            left: 120px;
            z-index: 10;
            color: white;
            max-width: 500px;
            text-align: left;
        }

        .medical-butler-title {
            font-size: 20px;
            font-weight: bold;
            color: white;
            letter-spacing: 1px;
            display: flex;
            align-items: baseline;
            gap: 3px;
        }

        .medical-butler-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        .medical-butler-description {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            text-align: left;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .medical-services-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            width: 100%;
            max-width: 100%;
            margin: 0;
            min-height: 600px;
        }

        /* PC端医疗服务网格样式保护 */
        @media (min-width: 769px) {
            .medical-services-grid {
                grid-template-columns: repeat(4, 1fr) !important;
            }
        }

        .medical-service-item {
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
            transition: all 0.8s ease;
            padding: 10px 40px;
        }

        .medical-service-fix {
            margin-bottom: 0 !important;
        }

        .medical-service-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .medical-service-item:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .service-overlay {
            padding:60px 10px;
            margin-top: 200px;
            width: 100%;
            color: white;
            backdrop-filter: blur(2px);
        }

        .service-number {
            font-size: 48px;
            font-weight: 900;
            color: white;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .service-title {
            font-size: 18px;
            font-weight: bold;
            color: white;
            margin-bottom: 20px;
        }

        .service-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .service-feature {
            font-size: 16px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.4;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        /* =======================================================================
           服务网点模块样式
           ======================================================================= */
        .service-network-section {
            background-color: #f8f9fa;
            padding: 80px 0;
            text-align: center;
        }

        .service-network-title {
            font-size: 26px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .service-network-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            font-weight: 400;
        }

        .service-network-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-network-image {
            width: 100%;
            max-width: 860px;
            height: auto;
            margin-bottom: 60px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .service-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 860px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-feature-item {
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .service-feature-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .service-feature-item:hover {
            transform: translateY(-8px);
        }

        .service-feature-image {
            width: 100%;
            height: auto;
            transition: transform 0.3s ease;
        }

        .service-feature-item:hover .service-feature-image {
            transform: scale(1.02);
        }

        .service-feature-title {
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            font-weight: 400;
            color: #333;
            text-align: center;
            width: 80%;
        }

        /* PC端默认样式 - 上下排列：服务特色在上，服务行业在下 */
        .service-mobile-layout {
            display: flex;
            flex-direction: column;
        }

        .service-industries-container,
        .service-features-container {
            width: 100%;
        }

        .service-features-container {
            order: 1; /* 服务特色在上 */
        }

        .service-industries-container {
            order: 2; /* 服务行业在下 */
        }

        .service-industries {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            border-top: 2px dashed #A6C640;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .service-industries-line{
            display: flex;
            border-right: 2px dashed #A6C640;
            flex-direction: row;
            align-items: center;
            text-align: center;
        }

        .service-industries-line:last-child {
            border-right: none;
        }

        .industry-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            background-color: #ffffff;
            border-radius: 10px;
            padding: 10px;
            min-width: 140px;
            transition: all 0.6s ease;
            position: relative;
            margin:20px 30px 0px 30px
        }


        .industry-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .industry-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .industry-icon-image{
            width: 40px;
            height: 40px;
        }

        .industry-item:hover .industry-icon {
            transform: scale(1.1);
        }

        .industry-name {
            font-size: 14px;
            color: #323434;
            margin-left: 24px;
            font-weight: 400;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .elderly-care-section {
                padding: 60px 0;
                background-attachment: scroll;
                min-height: 600px;
            }

            .elderly-care-main-box {
                padding: 40px 50px;
                max-width: 100%;
            }

            .elderly-care-title {
                font-size: 18px;
            }

            .elderly-care-subtitle {
                font-size: 16px;
            }

            .elderly-care-qrcode-section {
                justify-content: center;
            }

            .elderly-care-qrcode-container {
                align-items: center;
            }

            .evaluate-image {
                order: 1;
            }

            .feature-title {
                font-size: 15px;
            }

            .feature-desc {
                font-size: 13px;
            }

            .care-box-header {
                margin-top: 50px;
            }
        }

        @media (max-width: 768px) {
            .elderly-care-section {
                padding: 30px 0;
                min-height: 500px;
            }

            .elderly-care-main-box {
                padding:30px 10px 0px 10px;
                margin: 0;
            }

            .elderly-care-title {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .elderly-care-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
            }

            .elderly-care-description {
                font-size: 12px;
                margin-bottom: 30px;
            }

            .elderly-care-qrcode {
                width: 100px;
                height: 100px;
            }

            .elderly-care-qrcode-desc {
                font-size: 12px;
            }

            .care-box-header {
                margin-top: 40px;
                align-items: flex-start;
            }



            .evaluate-description {
                font-size: 12px;
                margin-bottom: 20px;
            }

            .feature-title {
                font-size: 14px;
            }

            .feature-desc {
                font-size: 12px;
            }

            .evaluate-feature-item {
                padding: 12px 15px;
            }

            .evaluate-features {
                gap: 15px;
            }

            .evaluate-image {
                text-align: center;
                order: -1;
            }

            .evaluate-image img {
                max-width: 280px;
            }

            .housekeeper-image {
                max-width: 280px;
            }

            .evaluate-simple-image {
                margin: 40px 0;
            }

            .safety-description {
                font-size: 12px;
                margin-bottom: 30px;
                text-align: left;
            }

            .safety-butler-content {
                margin-left: 14px;
            }

            .monitoring-title {
                font-size: 14px;
                margin-bottom: 0px;
                padding: 8px 20px;
                letter-spacing: 0.5px;
            }

            .monitoring-image-container {
                margin-bottom: 30px;
                margin-top: 0;
            }

            .health-description {
                font-size: 12px;
                margin-bottom: 30px;
                text-align: left;
                padding-left: 15px;
            }

            .health-image-container {
                min-height: 200px;
            }

            .health-service-text {
                font-size: 18px;
                margin-bottom: 20px;
                letter-spacing: 1px;
            }

            .health-desc-image {
                margin-top: 16px;
                max-width: 90%;
            }

            .health-monitoring-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 1fr);
                gap: 20px;
                padding: 30px 15px;
                max-width: 400px;
                background-color: rgba(60, 110, 221, 0.07);
                border-radius: 8px;
            }

            .monitor-image-box {
                width: 120px;
                height: 120px;
                margin-bottom: 10px;
            }

            .monitor-product-image {
                width: 80px;
                height: 80px;
            }

            .monitor-product-name {
                font-size: 12px;
                padding: 6px 12px;
            }

            .health-archive-container {
                padding: 15px;
            }

            .archive-overlay-content {
                padding: 20px;
            }

            .archive-overlay-content h5 {
                font-size: 20px;
                margin-bottom: 10px;
            }

            .archive-overlay-content p {
                font-size: 14px;
                margin-bottom: 15px;
            }

            .feature-tag {
                font-size: 12px;
                padding: 6px 12px;
            }

            .medical-butler-section {
                padding: 30px 0;
            }

            .medical-butler-header-overlay {
                position: static;
                color: #333;
                max-width: none;
                text-align: center;
                padding: 20px 15px;
                background: #f8f9fa;
                margin-bottom: 0;
            }

            .medical-butler-title {
                font-size: 26px;
                margin-bottom: 12px;
                letter-spacing: 1px;
                color: #3BBAB2;
                text-shadow: none;
            }

            .medical-butler-subtitle {
                font-size: 16px;
                margin-bottom: 15px;
                color: #666;
                text-shadow: none;
            }

            .medical-butler-description {
                font-size: 14px;
                line-height: 1.6;
                color: #666;
                text-shadow: none;
            }

            .medical-services-grid {
                grid-template-columns: 1fr;
                min-height: auto;
                margin: 0;
                width: 100%;
                max-width: 100%;
            }

            .medical-service-item {
                min-height: 300px;
            }

            .medical-service-item:hover {
                transform: translateY(-5px);
            }

            .service-overlay {
                padding: 30px 25px;
                min-width: 300px;
            }

            .service-number {
                font-size: 36px;
                margin-bottom: 12px;
            }

            .service-title {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .service-feature {
                font-size: 14px;
            }

            .service-network-section {
                padding: 30px 0;
            }

            .service-network-title {
                font-size: 18px;
                margin-bottom: 8px;
                text-align: left;
            }

            .service-network-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
                text-align: left;
            }

            /* 移动端左右布局 */
            .service-mobile-layout {
                display: flex;
                flex-direction: row;
                align-items: stretch;
                padding: 0 0 0 10px;
            }

            .service-industries-container {
                flex: 0 0 32%;
                min-width: 0;
                order: 1; /* 移动端服务行业在左 */
                border-right: 1px dashed #A6C640;
                display: flex;
                align-items: stretch;
            }

            .service-features-container {
                flex: 0 0 68%;
                min-width: 0;
                order: 2; /* 移动端服务特色在右 */
                margin-bottom: 0; /* 重置PC端的margin */
                display: flex;
                align-items: stretch;
            }

            .service-features-grid {
                grid-template-columns: 1fr;
                gap: 8px;
                margin-bottom: 0;
                height: 100%;
                display: grid;
                grid-template-rows: 1fr 1fr 1fr;
                align-items: stretch;
                max-width: 100%;
                overflow: hidden;
                padding: 0 0 0 8px;
            }

            .service-feature-item {
                transform: scale(0.7);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;
            }

            .service-feature-title {
                font-size: 11px;
                bottom: 5px;
                width: 90%;
                line-height: 1.2;
                text-align: center;
            }

            .service-industries {
                flex-direction: column;
                align-items: stretch;
                padding: 0 5px 0 0;
                border-top: none;
                margin-top: 0;
                height: 100%;
                display: flex;
                justify-content: space-evenly;
                flex: 1;
            }

            .service-industries-line{
                border-right: none;
                border-bottom: 1px dashed #A6C640;
                padding: 6px 0;
                margin: 0;
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .service-industries-line:last-child {
                border-bottom: none;
            }

            .industry-item{
                width: 100%;
                margin: 0;
                padding: 5px;
                min-width: auto;
                display: flex;
                align-items: center;
                max-width: 100%;
                overflow: hidden;
                font-size: 14px;
                white-space: nowrap;
                flex: 1;
                text-align: left;
            }

            .industry-name{
                font-size: 12px;
                font-weight: 400;
                margin-left: 10px;
            }

            .industry-icon {
                width: 30px;
                height: 30px;
                margin-bottom: 0;
            }

            .industry-icon-image {
                width: 30px;
                height: 30px;
            }

          
        }

        /* =======================================================================
           导航栏样式
           ======================================================================= */

        /* PC端导航栏 */
        .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.hide {
                transform: translateY(-100%);
            }

            .top-nav.sticky .logo img {
                height: 30px;
                transition: height 0.3s ease;
            }

            /* 为固定导航栏后的内容添加顶部间距 */
            body.nav-sticky .hero-section {
                margin-top: 70px;
            }
        }

        @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;
            }

            .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;
            }
        }

        @media (max-width: 480px) {

            /* Footer移动端样式 - 已提取到main.css */
        }

        /* =======================================================================
           可视化数据大屏模块样式
           ======================================================================= */
        .visual-screen-section {
            background-color: #ffffff;
            padding: 80px 0;
                text-align: center;
        }
        .visual-screen-title {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        .visual-screen-subtitle {
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            font-weight: 400;
        }
        .visual-screen-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .visual-screen-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            margin-bottom: 0;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: transform 0.4s cubic-bezier(.25,.8,.25,1), box-shadow 0.4s;
                opacity: 0;
            transform: translateY(40px) scale(0.98);
        }
        .visual-screen-image.animated {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .visual-screen-image:hover {
            transform: scale(1.03);
            box-shadow: 0 16px 48px rgba(60, 110, 221, 0.18);
        }
        @media (max-width: 768px) {
            .visual-screen-section {
                padding: 40px 0;
            }
            .visual-screen-title {
                font-size: 18px;
                margin-bottom: 8px;
                margin-left: 20px;
                text-align: left;
            }
            .visual-screen-subtitle {
                font-size: 14px;
                margin-bottom: 30px;
                text-align: left;
                margin-left: 20px;
            }
            .visual-screen-content {
                padding: 0 5px;
            }
            .visual-screen-image {
                max-width: 100%;
                border-radius: 10px;
            }
        }

        /* =======================================================================
           居家养老数据成果模块样式 (使用原数据成果样式，重命名避免冲突)
           ======================================================================= */
        .elderly-care-stats-section {
            position: relative;
            padding: 80px 0;
            background: url('../../../img/data_bg.jpg') center center / cover no-repeat;
            background-attachment: fixed;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
        }

        .elderly-care-stats-content {
            position: relative;
            z-index: 1;
            text-align: center;
            width: 100%;
        }

        .elderly-care-stats-title {
            font-size: 30px;
            color: #2A63D4;
            margin-bottom: 100px;
            letter-spacing: 3px;
            position: relative;
            z-index: 2;
        }

        .elderly-care-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .elderly-care-stat-item {
            text-align: center;
            color: #2A63D4;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        .elderly-care-stat-item.animated {
            transform: translateY(0);
                opacity: 1;
            }

        .elderly-care-stat-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

        .elderly-care-stat-icon:hover {
            transform: scale(1.1);
        }

        .elderly-care-stat-icon img {
            width: 120px;
            height: 120px;
        }

        .elderly-care-stat-number {
            font-size: 32px;
            margin-bottom: 15px;
            color: #2A63D4;
            letter-spacing: 2px;
            line-height: 1.2;
        }

        .elderly-care-stat-desc {
                font-size: 14px;
            color: #333333;
            line-height: 1.6;
                font-weight: 400;
            }

        /* 数字统计动画效果 */
        .elderly-care-stat-number.counting {
            animation: numberPulse 0.6s ease-in-out;
        }

        @keyframes numberPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

            /* 响应式设计 */
            @media (max-width: 992px) {
            .elderly-care-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                max-width: 600px;
            }

            .elderly-care-stats-title {
                font-size: 28px;
                margin-bottom: 60px;
            }

            .elderly-care-stat-number {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .elderly-care-stats-section {
                    padding: 60px 0;
                    background-attachment: scroll;
            }
            .elderly-care-stat-desc {
                font-size: 12px;
            }
            .elderly-care-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px 20px;
                max-width: 400px;
            }

            .elderly-care-stats-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .elderly-care-stat-number {
                font-size: 20px;
            }

            .elderly-care-stat-icon {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

            .elderly-care-stat-icon img {
                width: 80px;
                height: 80px;
            }
        }

        /* =======================================================================
           爱启医生模块样式
           ======================================================================= */
        .ai-doctor-section {
            background-color: #f8f9fa;
            padding: 60px 0;
            position: relative;
        }

        .ai-doctor-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            margin-bottom: 30px;
        }

        .ai-doctor-header {
            margin-bottom: 30px;
        }

        .ai-doctor-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .ai-doctor-subtitle {
            font-size: 18px;
            color: #666;
            font-weight: 400;
            margin-bottom: 0;
        }

        .ai-doctor-description {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            text-align: justify;
            max-width: 1000px;
        }

        /* IoT智能穿戴部分 */
        .iot-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .iot-header {
            display: flex;
            margin-bottom: 40px;
        }


        /* 日常穿戴部分 */
        .daily-wear-section {
                    margin-top: 20px;
                }

        .daily-wear-title {
            font-size: 16px;
            font-weight: bold;
            color: #1F1F1F;
            margin-bottom: 10px;
        }

        .daily-wear-desc {
            font-size: 14px;
            color: #666;
            padding-left: 12px;
            margin: 0;
        }

        /* 设备展示区域 */
        .devices-showcase {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            padding: 20px 0;
            margin-top: 20px;
            /* justify-content: center; */
        }
        .devices-showcase img{
            width: 80%;
            object-fit: cover;
        }


        .device-item:hover .device-img {
            transform: scale(1.1);
        }

        .device-name {
            display: inline-block;
            background: #3BBAB2;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .device-item:hover .device-name {
            background: #2A9B95;
            transform: scale(1.05);
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .ai-doctor-title {
                font-size: 32px;
            }

            .ai-doctor-subtitle {
                font-size: 18px;
            }

            /* 平板端日常穿戴样式调整 */
            .daily-wear-title {
                font-size: 16px;
            }

            .daily-wear-desc {
                font-size: 13px;
            }

            .devices-showcase {
                padding: 6px 0;
                flex-direction: column;
                gap: 30px;
            }

            .devices-showcase img {
                width: 100%;
            }

        }

        @media (max-width: 768px) {
            .ai-doctor-section {
                padding: 40px 0;
            }

            .ai-doctor-title {
                font-size: 22px;
                text-align: left;
                margin-left: 10px;
            }
            .ai-doctor-header {
                margin-bottom: 16px;
            }
            .ai-doctor-subtitle {
                font-size: 16px;
                text-align: left;
                margin-left: 10px;
            }

            .ai-doctor-description {
                    font-size: 12px;
                text-align: left;
                margin-left: 10px;
            }

            .iot-header {
                text-align: left;
                margin-top: 20px;
                    margin-bottom: 20px;
                }

            /* 移动端日常穿戴样式调整 */
            .daily-wear-title {
                font-size: 14px;
            }

            .daily-wear-desc {
                font-size: 11px;
            }

            .device-name {
                padding: 10px 25px;
                    font-size: 14px;
            }
        }

        /* 7X24小时家庭医生 - 专病监测网格 */
        .disease-monitoring-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 30px 0;
            padding: 0;
        }

        .disease-item {
            transition: all 0.3s ease;
        }

        .disease-item.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .disease-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .disease-item:hover .disease-img {
            transform: scale(1.02);
        }

        /* 医疗服务类专病网络 */
        .medical-service-network {
            margin: 30px 0;
        }

        .medical-service-item {
            display: grid;
            grid-template-columns: 160px 90px 1fr;
            margin-bottom: 15px;
            gap: 0;
            align-items: center;
            transition: all 0.6s ease;
            background-color: #D7F0EB;
            position: relative;
        }

       

        .medical-service-item.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .medical-service-label {
            font-size: 20px;
            font-weight: bold;
            color: #3BBAB2;
                    text-align: center;
            padding-right: 50px;
        }

        .medical-service-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-right: 40px;
        }

        .medical-service-icon::after {
            content: '';
            position: absolute;
            right: -60px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60px;
            background-color: #979797;
        }

        .medical-icon {
            width: 120px;
            max-height: 120px;
            object-fit: contain;
        }

        .medical-service-content {
            padding-left: 80px;
        }

        .medical-service-details {
            font-size: 14px;
            color: #333;
            line-height: 1.8;
            margin-left: 60px;
        }

        .medical-detail-item {
            margin-bottom: 8px;
        }

        .medical-detail-item:last-child {
            margin-bottom: 0;
        }

        /* 健康体验生态模块 */
        .health-ecosystem-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin: 40px 0;
            padding: 0 20px;
        }

        .health-ecosystem-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.8s ease;
            flex: 0 0 auto;
        }

        /* 左对齐第一个项目 */
        .health-ecosystem-item:nth-child(1) {
            align-items: center;
        }

        /* 居中第二个项目 */
        .health-ecosystem-item:nth-child(2) {
            align-items: center;
        }

        /* PC端第二张图片容器设置固定高度并居中对齐 */
        @media (min-width: 769px) {
            .health-ecosystem-item:nth-child(2) .health-ecosystem-image-wrapper {
                align-items: center;
                justify-content: center;
            }
        }

        /* 居中第三个项目 */
        .health-ecosystem-item:nth-child(3) {
            align-items: center;
        }

        .health-ecosystem-image-wrapper {
                    margin-bottom: 30px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .health-ecosystem-image {
            max-width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        /* 针对不同图片的特殊尺寸处理 - 调整为更小的尺寸 */
        .health-ecosystem-item:nth-child(1) .health-ecosystem-image {
            max-height: 320px;
            width: auto;
        }

        .health-ecosystem-item:nth-child(2) .health-ecosystem-image {
            max-height: 240px;
            width: auto;
        }

        .health-ecosystem-item:nth-child(3) .health-ecosystem-image {
            max-height: 280px;
            width: auto;
        }

        .health-ecosystem-item:hover .health-ecosystem-image {
            transform: scale(1.05);
        }

        .health-ecosystem-label {
            font-size: 14px;
            font-weight: 500;
            color: #616161;
            text-align: center;
            padding: 5px 10px;
            border: 1px solid #616161;
            min-width: 100px;
            transition: all 0.3s ease;
        }
        @media (max-width: 768px) {
            .health-ecosystem-label {

            }
        }


            /* 响应式设计 - 专病监测网格 */
        @media (max-width: 992px) {
            .disease-monitoring-grid {
                    grid-template-columns: repeat(2, 1fr);
                gap: 5px;
                padding: 0;
            }

            .medical-service-network {
                padding: 30px 20px;
            }

            /* 中等屏幕也隐藏移动端结构 */
            .medical-service-network-mobile {
                display: none;
            }

            .medical-service-item {
                padding: 25px;
            }

            .medical-service-row {
                gap: 30px;
            }

            .medical-service-icon {
                    width: 120px;
                    height: 120px;
            }

            .medical-service-icon::after {
                height: 60px;
            }

            .medical-icon {
                width: 120px;
                max-height: 120px;
            }

            .medical-service-label {
                font-size: 18px;
            }

            .medical-service-content {
                padding-left: 30px;
            }

            .medical-service-details {
                font-size: 15px;
            }

            /* 健康体验生态响应式 */

            .health-ecosystem-item:nth-child(1) .health-ecosystem-image {
                max-height: 260px;
            }

            .health-ecosystem-item:nth-child(2) .health-ecosystem-image {
                max-height: 200px;
            }

            .health-ecosystem-item:nth-child(3) .health-ecosystem-image {
                max-height: 230px;
            }
        }

        @media (max-width: 768px) {
            .disease-monitoring-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 5px;
                padding: 0;
            }

            .disease-item {
                padding: 0;
            }

            /* 隐藏PC端医疗服务网络 */
            .medical-service-network {
                display: none;
            }

            /* 显示移动端医疗服务网络 */
            .medical-service-network-mobile {
                display: block;
                padding: 0px 10px 20px 10px;
            }

            .medical-service-item-mobile {
                display: grid;
                grid-template-columns: 120px 1fr;
                margin-bottom: 10px;
                gap: 15px;
                align-items: center;
                padding: 15px;
                background-color: #D7F0EB;
                border-radius: 8px;
                transform: translateY(30px);
                transition: all 0.6s ease;
            }

            .medical-service-item-mobile.animated {
                opacity: 1;
                transform: translateY(0);
            }

            .medical-service-icon-mobile {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 120px;
                position: relative;
            }
            
            .medical-service-icon-mobile::after {
                content: '';
                position: absolute;
                right: -7.5px;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 60px;
                background-color: #979797;
            }

            .medical-icon-mobile {
                width: 80px;
                height: 80px;
                object-fit: contain;
                    margin-bottom: 12px;
                }

            .medical-service-label-mobile {
                font-size: 14px;
                font-weight: bold;
                color: #3BBAB2;
                text-align: center;
                line-height: 1.2;
            }

            .medical-service-content-mobile {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                margin-left: 5px;
            }

            .medical-service-details-mobile {
                font-size: 11px;
                color: #333;
                line-height: 1.6;
            }

            .medical-detail-item-mobile {
                margin-bottom: 6px;
            }

            .medical-detail-item-mobile:last-child {
                margin-bottom: 0;
            }

            /* 健康体验生态移动端 */
            .health-ecosystem-container {
                    flex-direction: row;
                flex-wrap: wrap;
                align-items: center;
                gap: 20px;
                margin: 1px 0;
                padding: 0 15px;
                justify-content: center;
            }

            /* 移动端时重置所有项目的对齐方式为居中 */
            .health-ecosystem-item:nth-child(1),
            .health-ecosystem-item:nth-child(2) {
                align-items: center !important;
                flex: 0 0 calc(50% - 10px);
                max-width: calc(50% - 10px);
                align-self: flex-end;
            }

            .health-ecosystem-item:nth-child(3) {
                align-items: center !important;
                flex: 0 0 100%;
                max-width: 100%;
            }

            .health-ecosystem-item:nth-child(1) .health-ecosystem-image {
                max-height: 200px;
            }

            .health-ecosystem-item:nth-child(2) .health-ecosystem-image {
                max-height: 150px;
            }

            /* 移动端第二张图片容器也设置垂直居中 */
            .health-ecosystem-item:nth-child(2) .health-ecosystem-image-wrapper {
                height: 220px; /* 设置固定高度 */
                align-items: center !important;
                justify-content: center;
            }

            .health-ecosystem-item:nth-child(3) .health-ecosystem-image {
                max-height: 220px;
            }

            .health-ecosystem-label {
                font-size: 14px;
                border: none;
            }

            .health-ecosystem-image-wrapper {
                margin-bottom: 10px
            }
        }

        /* =======================================================================
           X未来探索模块样式 - 修正版
                   ======================================================================= */
        .x-future-section {
            position: relative;
            padding: 0;
            background: transparent;
                    overflow: hidden;
            min-height: 600px;
        }

        .x-future-content {
            position: relative;
            z-index: 2;
            padding: 30px 0;
        }

        .x-future-title {
            position: absolute;
            top: 60px;
            left: 150px;
            font-size: 28px;
            font-weight: bold;
            color: #3C6EDD;
            z-index: 10;
            margin: 0;
        }

        /* .x-future-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #FFD700;
        } */

        .x-future-timeline {
            position: relative;
            min-height: 600px;
        }

        .x-future-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
                    display: flex;
                    align-items: center;
            justify-content: center;
        }

        .x-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 1;
            z-index: 1;
        }

        .x-line-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-45%, -45%);
            max-width: 50%;
            max-height: 75%;
            object-fit: contain;
            z-index: 2;
        }

        .x-milestones {
            position: relative;
            z-index: 3;
            height: 720px;
        }

        .x-milestone {
            position: absolute;
                    display: flex;
                    align-items: center;
                    opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .x-milestone.animated {
                    opacity: 1;
                    transform: translateY(0);
                }

        /* 里程碑位置定位 */
        .milestone-1 {
            top: 22%;
            left: 10%;
        }

        .milestone-2 {
            top: 50%;
            left: 9%;
            transform: translateX(-50%);
        }

        .milestone-3 {
            bottom: 16%;
            right: 2%;
        }

        .milestone-marker {
            position: relative;
            z-index: 5;
        }

        .milestone-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #FFC60C;
            border: 3px solid #FFC60C;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            color: #2E3192;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            animation: pulse 2s infinite;
        }

        .milestone-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 75%;
            height: 75%;
            background: white;
            border-radius: 50%;
            z-index: 1;
        }

        .milestone-circle {
            position: relative;
        }

        .milestone-circle > * {
            position: relative;
            z-index: 2;
        }

        .milestone-label {
            position: relative;
            margin-left: 20px;
        }

        .milestone-label-left {
            margin-left: -20px;
            margin-right: 20px;
            order: -1;
        }

        .label-bg {
            width: 300px;
            height: 125px;
        }

        .label-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #2E3192;
            padding: 20px;
            width: 90%;
        }

        .milestone-label-left .label-content {
            text-align: left;
            padding-left: 40px;
        }

        .milestone-label-right .label-content {
            text-align: left;
            padding-right: 40px;
        }

        /* 第一个里程碑(milestone-3)特殊样式 - 将padding-right改为padding-left */
        .milestone-3 .milestone-label-right .label-content {
            padding-right: 10px;
            padding-left: 60px;
        }
        .milestone-3 .milestone-label {
            margin-left: 0px;
        }

        .label-title {
                    font-size: 14px;
            font-weight: bold;
            color: #3C6EDD;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .label-desc {
            font-size: 12px;
            color: #727272;
            line-height: 1.4;
                }

                /* 响应式设计 */
        @media (max-width: 1200px) {
            .milestone-1 {
                top: 17%;
                left: 10%;
            }

            .milestone-2 {
                top: 50%;
                left: 9%;
                transform: translateX(-50%);
            }

            .milestone-3 {
                bottom: 9%;
                right: 2%;
            }

            .label-bg {
                max-width: 300px;
            }

            .label-title {
                font-size: 14px;
            }

            .label-desc {
                font-size: 12px;
            }
        }

         @media (max-width: 992px) {
            .x-future-section {
                position: relative;
                padding: 0;
                background: transparent;
                overflow: hidden;
                        min-height: 600px;
                    }

            .x-future-title {
                position: absolute;
                top: 40px;
                left: 30px;
                font-size: 28px;
                font-weight: bold;
                color: #3C6EDD;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
                z-index: 10;
                margin: 0;
            }
/* 
            .x-future-title::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 50px;
                height: 3px;
                background: #FFD700;
            } */

            .x-future-timeline {
                min-height: 500px;
            }

            .x-milestones {
                height: 500px;
            }

            .milestone-1 {
                top: 17%;
                left: 10%;
            }

            .milestone-2 {
                top: 50%;
                left: 9%;
                transform: translateX(-50%);
            }

            .milestone-3 {
                bottom: 9%;
                right: 2%;
            }

            .label-bg {
                max-width: 250px;
            }

            .milestone-circle {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

                }

            @media (max-width: 768px) {
            .x-future-section {
                position: relative;
                padding: 0;
                background: transparent;
                overflow: hidden;
                min-height: 600px;
            }

            .x-future-title {
                position: absolute;
                top: 40px;
                left: 30px;
                font-size: 28px;
                font-weight: bold;
                color: #3C6EDD;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
                z-index: 10;
                margin: 0;
            }

            /* .x-future-title::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 50px;
                height: 3px;
                background: #FFD700;
            } */

            /* 隐藏路径线图片 */
            .x-line-image {
                display: none !important;
            }

            /* 隐藏里程碑标记圆圈 */
            .milestone-marker {
                display: none !important;
            }

            /* 移动端隐藏标签背景图片 */
            .label-bg {
                display: none !important;
            }

            .x-future-timeline {
                min-height: 400px;
            }

            .x-milestones {
                height: auto;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding: 120px 20px 20px 20px;
                gap: 30px;
                margin-top: 0;
            }

            .x-milestone {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                margin-bottom: 0;
                width: 100%;
                max-width: 350px;
            }

            /* 移动端里程碑顺序调整：1-2-3 */
            .milestone-1 {
                order: 3; /* 3.0 排在最后 */
            }

            .milestone-2 {
                order: 2; /* 2.0 排在中间 */
            }

            .milestone-3 {
                order: 1; /* 1.0 排在最前 */
            }

            .milestone-label {
                margin: 0;
                width: 100%;
                background: white;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                position: relative;
                min-height: 120px;
            }

            .milestone-label-left,
            .milestone-label-right {
                margin: 0;
                order: 0;
                width: 100%;
            }

            .label-bg {
                max-width: 100%;
                width: 100%;
                height: auto;
            }

            .label-content {
                padding: 20px;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
            }

            .milestone-label-left .label-content,
            .milestone-label-right .label-content {
                text-align: left !important;
                padding: 20px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }

            .label-title {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .label-desc {
                font-size: 12px;
                line-height: 1.4;
            }
        }
        @media (min-width: 669px) and (max-width: 1050px){
            .digital-health-app-image{
                max-width: none;
            }
            .footer-brand-logo{
               height: 40px;
            }
            .center-ai-container{
                width: 75%;
                height: min(350px, 55vw);
                max-height: 450px;
                max-width: 445px;
            }
            .service-network-section{
                padding: 0;
            }
            .health-ecosystem-item:nth-child(1) .health-ecosystem-image{
                max-height: 210px;
            }
            .health-ecosystem-item:nth-child(2) .health-ecosystem-image{
                max-height: 160px;
            }
            .health-ecosystem-item:nth-child(3) .health-ecosystem-image{
                max-height: 180px;
            }
        }