/* banner距 */       .etalk-banner-wrap {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .etalk-slide {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .etalk-slide.etalk-active {
            opacity: 1;
            z-index: 1;
        }

        /* 4种渐变背景 */
        .etalk-bg1 {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        }

        .etalk-bg2 {
            background: linear-gradient(135deg, #f5f9ff 0%, #e8f4ff 100%);
        }

        .etalk-bg3 {
            background: linear-gradient(135deg, #f5f9ff 0%, #e8f4ff 100%);
        }

        .etalk-bg4 {
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        }

        .etalk-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        @media (min-width: 1600px) {
            .etalk-container {
                max-width: 1400px;
            }
            .etalk-banner-wrap {
            width: 100%;
            height: 600px;
        }
        }
       
        /* 左侧内容 */
        .etalk-left {
            flex: 1;
            max-width: 600px;
        }

        .etalk-slide.etalk-active .etalk-left {
            animation: etalkSlideLeft 1s ease-out;
        }

        @keyframes etalkSlideLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .etalk-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .etalk-slide.etalk-active .etalk-tag {
            animation: etalkFadeDown 0.8s ease-out 0.2s both;
        }

        @keyframes etalkFadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .etalk-tag i {
            color: #187EFF;
            font-size: 18px;
        }

        .etalk-tag-text {
            color: #187EFF;
            font-size: 14px;
            font-weight: 600;
        }

        .etalk-title {
            font-size: 38px;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        .etalk-slide.etalk-active .etalk-title {
            animation: etalkFadeUp 0.8s ease-out 0.4s both;
        }

        @keyframes etalkFadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .etalk-title .etalk-highlight {
            color: #187EFF;
        }

        .etalk-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .etalk-slide.etalk-active .etalk-desc {
            animation: etalkFadeUp 0.8s ease-out 0.6s both;
        }

        .etalk-btns {
            display: flex;
            gap: 16px;
        }

        .etalk-slide.etalk-active .etalk-btns {
            animation: etalkFadeUp 0.8s ease-out 0.8s both;
        }

        .etalk-btn {
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .etalk-btn-primary {
            background: linear-gradient(135deg, #187EFF 0%, #4da3ff 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(24, 126, 255, 0.3);
        }

        .etalk-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(24, 126, 255, 0.4);
        }

        .etalk-btn-secondary {
            background: white;
            color: #187EFF;
            border: 2px solid #187EFF;
        }

        .etalk-btn-secondary:hover {
            background: #187EFF;
            color: white;
            transform: translateY(-2px);
        }

        /* 右侧图片区域 */
        .etalk-right {
            flex: 1;
            max-width: 500px;
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .etalk-slide.etalk-active .etalk-right {
            animation: etalkSlideRight 1s ease-out;
        }

        @keyframes etalkSlideRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 中心主图 */
        .etalk-main-img {
            position: relative;
            z-index: 2;
            max-width: 100%;
            height: auto;
            /* animation: etalkFloat 3s ease-in-out infinite;*/
        }

        @keyframes etalkFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .etalk-main-img img {
            width: 100%;
            height: auto;
            max-height: 380px;
            object-fit: contain;
        }

        /* 浮动装饰图片 */
        .etalk-float-img {
            position: absolute;
            width: 80px;
            height: 80px;
            animation: etalkBounce 2s ease-in-out infinite;
			z-index: 5;
        }

        @keyframes etalkBounce {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        .etalk-float-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
        }

        .etalk-float1 {
            top: 10px;
            left: 20px;
            animation-delay: 0s;
        }

        .etalk-float2 {
            top: 10px;
            right: 20px;
            animation-delay: 0.5s;
        }

        .etalk-float3 {
            bottom: 10px;
            left: 20px;
            animation-delay: 1s;
        }

        .etalk-float4 {
            bottom: 10px;
            right: 20px;
            animation-delay: 1.5s;
        }

        /* 导航点 */
        .etalk-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .etalk-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D6D6D6;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .etalk-dot.etalk-active {
            background: #187EFF;
            width: 30px;
            border-radius: 5px;
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .etalk-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
                gap: 30px;
            }

            .etalk-left {
                max-width: 100%;
            }

            .etalk-title {
                font-size: 32px;
            }

            .etalk-btns {
                justify-content: center;
            }

            .etalk-right {
                max-width: 400px;
                height: 320px;
            }

            .etalk-float-img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 768px) {
            .etalk-banner-wrap {
                height: auto;
                min-height: 500px;
            }

            .etalk-title {
                font-size: 26px;
            }

            .etalk-desc {
                font-size: 14px;
            }

            .etalk-btns {
                flex-direction: column;
                width: 100%;
            }

            .etalk-btn {
                width: 100%;
            }

            .etalk-right {
                height: 280px;
            }

            .etalk-main-img img {
                max-height: 260px;
            }

            .etalk-float-img {
                width: 50px;
                height: 50px;
            }
        }
		
		
/* banner距 */ /* 文字容器：控制间距 */
    .text-group {
      display: flex;
      gap: 15px; /* 增大间距，避免文字渐变重叠 */
    }

    /* 基础文字样式：强制文字渐变可见 */
    .nav-link {
      font-weight: bold;
      font-size: 14px; /* 增大字体，让渐变更明显 */
      position: relative;
      transition: transform 0.3s;
    }

    /* 1. 第一个文字：纯#3B8EFF（文字纯色，无渐变） */
    .text-group .nav-link:nth-child(1) {
      color: #3B8EFF !important; /* 直接设置文字颜色（最高优先级） */
    }

    /* 2. 第二个文字：文字自身渐变（#3B8EFF → #5685FF） */
    .text-group .nav-link:nth-child(2) {
      /* 仅文字应用渐变，不影响背景 */
      background: linear-gradient(90deg, #3B8EFF, #5685FF);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent; /* 文字透明，显示渐变 */
      -webkit-text-fill-color: transparent;
    }

    /* 3. 第三个文字：文字自身渐变（#5685FF → #9979FF） */
    .text-group .nav-link:nth-child(3) {
      background: linear-gradient(90deg, #5685FF, #9979FF);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    /* 4. 第四个文字：文字自身渐变（#9979FF → #BD6FFF） */
    .text-group .nav-link:nth-child(4) {
      background: linear-gradient(90deg, #9979FF, #BD6FFF);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    /* 响应式字体（按需求调整） */
    @media (min-width: 1440px) and (max-width: 1600px) {
      .nav-link { font-size: 12px; }
    }
    @media (max-width: 1439px) {
      .nav-link { font-size: 11px; }
    }
    @media (min-width: 1601px) {
      .nav-link { font-size: 13px; }
    }

    /* 悬停效果：下划线与文字颜色匹配 */
  
    .text-group .nav-link:nth-child(1)::after { background: #3B8EFF; }
    .text-group .nav-link:nth-child(2)::after { background: linear-gradient(90deg, #3B8EFF, #5685FF); }
    .text-group .nav-link:nth-child(3)::after { background: linear-gradient(90deg, #5685FF, #9979FF); }
    .text-group .nav-link:nth-child(4)::after { background: linear-gradient(90deg, #9979FF, #BD6FFF); }
    
    .nav-link:hover::after { width: 100%; }
    .nav-link:hover { transform: scale(1.05); }
	
	
	  /* 容器样式 */
	
        .explore-mores {
            text-align: center;
            margin-top: 30px; /* 与上方椭圆底保持紧凑距离 */
        }
        
        
        .explore-mores a {
            color: #000;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            transition: color 0.3s ease; /* 过渡效果 */
        }
        
        .explore-mores a:hover {
            color: #165DFF; /* 鼠标滑过变为蓝色（与对勾同色） */
        }
        
        .explore-mores i {
            transform: rotate(-45deg); /* 右斜向上箭头 */
        }
        
		
    .case-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 0px;
    }

    /* 标题区域样式 */
    .title-section {
      text-align: center;
      margin-bottom: 30px;
    }
    .main-titles {
      font-size: 34px;
      font-weight: bold;
      margin-bottom: 8px;
      color: #333;
    }
    .sub-title {
      font-size: 16px;
      color: #666;
    }

    /* 卡片容器 */
    .cards-wrapper {
      display: flex;
      flex-wrap: wrap;
      height: 450px;
      gap: 16px;
    }

    /* 案例卡片基础样式 */
    .case-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      border: 1px solid #EDEDEE;
      transition: all 0.5s ease-in-out;
      cursor: pointer;
      height: 100%;
    }

    /* 卡片展开/折叠状态 - 强化优先级解决颜色冲突 */
    .case-card.case-card-expanded {
      background-color: black;
      width: calc(40% - 16px);
    }
    .case-card.case-card-collapsed {
      background-color: transparent;
      width: calc(30% - 16px);
    }

    /* 卡片内容容器 - 强制颜色继承 */
    .case-card.case-card-expanded .card-contents {
      color: white !important;
    }
    .case-card.case-card-collapsed .card-contents {
      color: black !important;
    }
    .card-contents {
      position: relative;
      height: 100%;
      padding: 24px;
      display: flex;
      flex-direction: column;
      color: inherit;
    }

    /* LOGO样式（位置固定） */
    .case-logo {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      margin: 0 0 24px 0; /* 固定位置，不随状态变化 */
    }
    .case-logo-expanded {
      background-color: white;
      color: black !important; /* 强制黑色 */
    }
    .case-logo-collapsed {
      background-color: #EDEDEE;
      color: #666 !important; /* 强制灰色 */
    }

    /* 案例标题样式（在内容上方） */
    .case-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 12px;
      color: inherit !important; /* 强制继承颜色 */
    }

    /* 内容文本样式（在标题下方） */
    .case-content {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: inherit !important; /* 强制继承颜色 */
    }

    /* 统计数据样式 - 始终显示（不隐藏） */
    .stats-container {
      display: flex;
      gap: 32px;
      margin-bottom: 20px;
      justify-content: flex-start;
      transition: all 0.3s ease;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 8px 0;
    }
    .stat-number {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 4px;
      color: inherit !important; /* 强制继承颜色 */
    }
    .stat-label {
      font-size: 14px;
      color: inherit !important; /* 强制继承颜色 */
    }

    /* 按钮样式 */
    .detail-btn {
      margin-top: auto;
      padding: 8px 16px;
      border-radius: 50px;
      border: 1px solid;
      transition: all 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      align-self: flex-start;
      background: transparent;
      cursor: pointer;
      color: inherit !important; /* 强制继承颜色 */
    }
    .detail-btn-expanded {
      border-color: white;
    }
    /* 展开状态按钮hover：白底黑字，无蓝色边框 */
    .detail-btn-expanded:hover {
      background-color: white;
      color: black !important;
      border-color: white; /* 保持白色边框 */
    }
    .detail-btn-collapsed {
      border-color: black;
    }

    /* 背景图样式 */
    .bg-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0.3;
      transition: opacity 0.5s ease;
    }
    .case-card-collapsed .bg-img {
      opacity: 0;
    }

    /* 响应式调整 */
    @media (min-width: 1440px) and (max-width: 1600px) {
      .case-container {
        max-width: 1200px;
      }
    }
    @media (max-width: 1439px) or (min-width: 1601px) {
      .case-container {
        max-width: 90%;
      }
    }
    @media (max-width: 768px) {
      .cards-wrapper {
        height: auto;
      }
      .case-card-expanded,
      .case-card-collapsed {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
      }
    }

    /* 新增：可信任的服务区域样式 */
    .trust-section {
      margin: 60px auto 40px; /* 与上方案例区域间距 */
      max-width: 1200px;
      padding: 0 20px;
    }
    .trust-title {
      font-size: 18px; /* 小字 */
      color: #666;
      text-align: center; /* 居中 */
      margin-bottom: 20px;
      font-weight: normal;
    }

    /* 认证图片滚动容器 */
    .certifications {
      overflow: hidden; /* 隐藏超出部分 */
      position: relative;
      height: 80px; /* 图片高度 */
    }
    .cert-slider {
      display: flex;
      gap: 30px; /* 图片间距 */
      position: absolute;
      top: 0;
      left: 0;
      animation: slideRight 20s linear infinite; /* 向右滑动动画 */
    }
    .cert-item {
      width: 100px; /* 图片宽度 */
      height: 60px;
      flex-shrink: 0; /* 不压缩 */
    }
    .cert-item img {
      width: 100%;
      height: 100%;
      object-fit: contain; /* 保持图片比例 */
      filter: grayscale(100%); /* 可选：灰色调更显专业 */
      transition: filter 0.3s ease;
    }
    .cert-item img:hover {
      filter: grayscale(0); /* hover时恢复彩色 */
    }

    /* 向右滑动动画 */
    @keyframes slideRight {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%); /* 滑动一半距离（配合重复图片实现无缝） */
      }
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
      .cert-item {
        width: 100px;
        height: 60px;
      }
      .cert-slider {
        gap: 20px;
      }
    }  /* 生态 */	
        .region-container {
            width: 100%;
            padding: 20px 0px 80px;
            background-color: #fff;
            margin: 0 auto;
        }
        

        /* 中等屏幕适配 */
        @media (min-width: 1440px) and (max-width: 1600px) {
            .region-container {
                width: 1200px;
                margin: 0 auto;
            }
        }

        /* 标题区域 */
        .region-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .region-title {
            font-size: 34px;
            color: #1D2129;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .region-subtitle {
            font-size: 16px;
            color: #6B7280;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* 卡片网格 */
        .region-cards {
            display: flex;
            gap: 24px;
            width: 100%;
        }

        /* 椭圆卡片基础样式 - 确保按钮对齐 */
        .region-card {
            flex: 1;
            min-width: 300px;
            border: 1px solid #EDEDEE;
            border-radius: 20px;
            padding: 36px;
            background-color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column; /* 纵向布局 */
        }

        .region-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        /* 卡片背景渐变 */
        .region-card:nth-child(1) {
            background: linear-gradient(145deg, #F9F5FF 0%, #F5F3FF 100%);
        }

        .region-card:nth-child(2) {
            background: linear-gradient(145deg, #F0F7FF 0%, #E8F3FF 100%);
        }

        .region-card:nth-child(3) {
            background: linear-gradient(145deg, #F8F9FA 0%, #F3F4F6 100%);
        }

        /* 卡片标题 */
        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #165DFF;
            background-color: rgba(22, 93, 255, 0.1);
        }

        .card-icon i {
            font-size: 20px;
        }

        .card-heading {
            font-size: 20px;
            color: #1D2129;
            font-weight: 600;
        }

        /* 核心内容 */
        .card-content {
            font-size: 15px;
            color: #4B5563;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* 案例容器 - 仅承载引号 */
        .card-case {
            font-size: 14px;
            color: #374151;
            line-height: 1.6;
            margin-bottom: 30px;
            padding: 24px 20px 20px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            position: relative;
            z-index: 0;
        }

        /* 案例文字 - 单独设置缩进（仅作用于文字） */
        .case-text {
            text-indent: 2em; /* 仅文字首行空2个字符 */
        }

        /* 双引号样式（独立定位，不随文字缩进） */
        .card-case::before,
        .card-case::after {
            font-family: "Times New Roman", Georgia, serif;
            font-size: 70px;
            color: #165DFF;
            position: absolute;
            opacity: 0.3;
            z-index: -1;
        }

        /* 左引号（左上角固定位置） */
        .card-case::before {
            content: "\201C";
            top: -15px;
            left: 10px;
        }

        /* 右引号（右下角固定位置） */
        .card-case::after {
            content: "\201D";
            bottom: -35px;
            right: 10px;
        }

        /* 伙伴LOGO墙 - 自动滑动效果 */
        .partner-logos {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partner-logos-wrapper {
            display: inline-flex;
            gap: 20px;
            animation: scrollLogos 15s linear infinite;
            padding: 5px 0;
        }

        .partner-logos:hover .partner-logos-wrapper {
            animation-play-state: paused;
        }

        .partner-logo {
            width: 120px;
            height: 48px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
            flex-shrink: 0;
        }

        @keyframes scrollLogos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* 资源入口 */
        .resource-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .resource-link {
            font-size: 15px;
            color: #165DFF;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.2s ease;
        }

        .resource-link:hover {
            color: #0E4CD1;
            text-decoration: underline;
        }

        .resource-link i {
            font-size: 14px;
            transition: transform 0.2s ease;
        }

        .resource-link:hover i {
            transform: translateX(3px);
        }

        /* 双按钮容器 - 左对齐 */
        .button-group {
            display: flex;
            gap: 12px;
            margin-top: auto;
            justify-content: flex-start;
        }

        /* 按钮样式 */
        .primary-btn, .secondary-btn {
            padding: 0 18px;
            height: 36px;
            font-size: 15px;
            font-weight: 500;
            text-align: center;
            line-height: 36px;
            text-decoration: none;
            border-radius: 6px;
            cursor: pointer;
            white-space: nowrap;
        }

        .primary-btn {
            background-color: #000;
            color: #fff;
            border: none;
            transition: background-color 0.3s ease;
        }

        .primary-btn:hover {
            background-color: #165DFF;
        }

        .secondary-btn {
            background-color: #fff;
            color: #000;
            border: 1px solid #000;
            line-height: 34px;
            transition: color 0.3s ease, border-color 0.3s ease;
        }

        .secondary-btn:hover {
            color: #165DFF;
            border-color: #165DFF;
        }

        /* 平板端适配 */
        @media (max-width: 992px) {
            .region-cards {
                flex-direction: column;
                gap: 20px;
            }

            .region-title {
                font-size: 34px;
            }

            .region-subtitle {
                font-size: 16px;
            }

            .region-card {
                padding: 30px;
                min-width: auto;
            }

            .partner-logo {
                width: 80px;
            }
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .region-container {
                padding: 60px 16px;
            }

            .region-header {
                margin-bottom: 40px;
            }

            .card-case {
                margin-bottom: 25px;
            }

            .case-text {
                text-indent: 1.5em; /* 移动端缩进稍小 */
            }

            .button-group {
                flex-direction: column;
                gap: 8px;
            }

            .primary-btn, .secondary-btn {
                width: 100%;
            }

            .card-case::before,
            .card-case::after {
                font-size: 50px;
            }

            .card-case::after {
                bottom: -25px;
            }

            .partner-logo {
                width: 70px;
                font-size: 12px;
            }
        }

        /* 小屏手机适配 */
        @media (max-width: 375px) {
            .region-title {
                font-size: 28px;
            }

            .card-heading {
                font-size: 18px;
            }

            .card-case::before,
            .card-case::after {
                font-size: 40px;
            }
        }
	   /* 生态 */	
   .zp-content-wrapper * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    .zp-content-wrapper {
      color: #333333;
      min-height: 100vh;
      padding: 40px 20px;
    }
    
    .zp-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0px;
    }
    
    .zp-module {
      margin-bottom: 80px;
    }
    
    .zp-module:last-child {
      margin-bottom: 40px;
    }
    
    .zp-section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .zp-section-header h1 {
      font-size: 32px !important;
      font-weight: bold;
      margin-bottom: 14px;
      line-height: 1.2;
      color: #333333;
    }
    
    .zp-section-header p {
      font-size: 16px;
      color: #666666;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.5;
    }
    
    .zp-cards-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .zp-big-card {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(68, 151, 254, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .zp-big-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(68, 151, 254, 0.15);
    }
    
    .zp-card-content {
      padding: 20px;
      min-height: 100%;
      background-repeat: no-repeat;
      background-position: bottom center;
      background-size: 100% auto;
      position: relative;
    }
    
    /* 背景样式 */
    .zp-product-card-1 .zp-card-content {
      background: 
                  url("b2_1_3.png") bottom center no-repeat;
      background-size: 100% 100%, 100% auto;
    }
    
    .zp-product-card-2 .zp-card-content,
    .zp-product-card-3 .zp-card-content {
      background: 
                  url("b_2_1_1.png") bottom center no-repeat;
      background-size: 100% 100%, 100% auto;
    }
    
    .zp-number-card-1 .zp-card-content {
      background: 
                  url("b2_1_3.png") bottom center no-repeat;
      background-size: 100% 100%, 100% auto;
    }
    
    .zp-number-card-2 .zp-card-content,
    .zp-number-card-3 .zp-card-content,
    .zp-number-card-4 .zp-card-content {
      background: 
                  url("b_2_1_1.png") bottom center no-repeat;
      background-size: 100% 100%, 100% auto;
    }
    
    /* 核心：修复图标与文字对linear-gradient(180deg, #EFF6FF 0%, #E0EAFF 30%, #F0F7FF 100%),齐 */
    .zp-card-header {
      display: flex;
      align-items: center; /* 强制垂直居中 */
      gap: 10px; /* 替代margin，更稳定 */
      margin-bottom: 4px;
    }

    .zp-card-header h2 {
      font-size: 21px;
      font-weight: bold;
      color: #333333;
      margin: 20px 0px 0px 0px;
      padding: 0px 0 0px 18px;
      line-height: 1; /* 消除行高影响 */
      height: 24px; /* 与图标等高 */
      display: flex;
      align-items: center; /* 文字自身居中 */
    }
    
    .zp-card-subtitle {
      font-size: 14px;
      color: #666666;
      margin-bottom: 10px;
      line-height: 1.5;
       padding: 0px 0 0px 18px;
    }
    
    .zp-small-cards {
        border-radius: 14px;
  /* 将每个颜色转换为rgba格式，添加alpha值（这里用0.8示例） */
  background: linear-gradient(
    180deg, 
    rgba(255, 255, 255, 0.5) 0%,  /* #F2F9FE 带透明度 */
    rgba(255, 255, 255, 0.5) 50%, /* #E7F5FE 带透明度 */
    rgba(255, 255, 255, 0.5) 100% /* #E7F4FE 带透明度 */
  );
      padding: 12px 0px 40px 20px;
    }
    
    .zp-small-card {
     padding: 15px 0px 0px 0px;
    }
    
    .zp-small-card a {
      text-decoration: none;
      color: inherit;
      display: block;
    }
    
    .zp-small-card:hover {
    }
    
    .zp-small-card h3 {
      font-size: 17px;
      font-weight: 900;
      margin-bottom: 2px;
      color: #333333;
    }
    
    .zp-small-card p {
      font-size: 13px;
      color: #666666;
    }
    
    /* 响应式设计 */
    @media (min-width: 768px) {
      .zp-product-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .zp-number-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .zp-section-header h1 {
        font-size: 38px;
      }
    }
    
    @media (min-width: 1024px) {
      .zp-product-cards {
        grid-template-columns: repeat(3, 1fr);
      }
      
      .zp-number-cards {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    
    @media (min-width: 1440px) and (max-width: 1600px) {
      .zp-container {
        width: 1200px;
      }
    }
    
    @media (min-width: 1601px) {
      .zp-container,.solutions-container,.region-container,.case-container {
        max-width: 1400px;
      }
    }

/* 解决方案组件容器，冲突 */
        .solutions-container {
            width: 100%;
            box-sizing: border-box;
            padding: 40px 0px 40px ;
            font-family: Arial, sans-serif;
            margin: auto;
        }
        
        /* 中等屏幕适配 */
        @media (min-width: 1440px) and (max-width: 1600px) {
            .solutions-container {
                width: 1200px;
                margin: 0 auto;
            }
        }
        
        /* 标题样式 */
        .solutions-title {
            font-size: 36px;
            color: #000;
            margin: 0 0 10px 0;
            font-weight: bold;
            text-align: center;
        }
        
        .solutions-subtitle {
            font-size: 16px;
            color: #666;
            margin: 0 0 30px 0;
            text-align: center;
        }
        
        /* TAB 导航样式 */
        .solutions-tabs {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .solutions-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            color: #000;
            transition: all 0.3s ease;
            background: transparent;
            border: none;
            outline: none;
        }
        
        .solutions-tab.active {
            background-color: #F4F5F8;
        }
        
        .solutions-tab i {
            font-size: 18px;
        }
        
        /* TAB 内容区域 - 椭圆形边框和底色 */
        .solutions-content {
            display: none;
            border: 1px solid #F4F5F6; /* 椭圆边框颜色 */
            border-radius: 12px; /* 椭圆形边框 */
            background-color: #F8FCFF; /* 内部底色 */
            padding: 30px;
            box-sizing: border-box;
            margin-bottom: 20px; /* 与外部的探索更多保持距离 */
        }
        
        .solutions-content.active {
            display: block;
        }
        
        .solutions-grid {
            display: flex;
            gap: 0;
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }
        
        .solutions-column {
            flex: 1;
            padding: 20px;
            box-sizing: border-box;
            position: relative;
            min-width: 280px;
            display: flex;
            flex-direction: column; /* 让按钮居底 */
        }
        
        /* 列分割线 */
        .solutions-column:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background-color: #F4F5F6;
        }
        
        /* 列内容样式 */
        .column-title {
            font-size: 25px;
            color: #000;
            margin: 0 0 15px 0;
            font-weight: bold;
        }
        
        .column-desc {
            font-size: 14px;
            color: #666;
            margin: 0 0 20px 0;
            line-height: 1.6;
        }
        
        .column-divider {
            height: 1px;
            background-color: #F4F5F6;
            margin: 0 0 20px 0;
        }
        
        .column-highlights {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px; /* 与按钮保持距离 */
        }
        
        .highlight-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        
        .highlight-title {
            font-size: 16px;
            color: #000;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .highlight-title i {
            color: #165DFF; /* 蓝色对勾 */
        }
        
        .highlight-desc {
            font-size: 14px;
            color: #666;
            margin: 0;
            padding-left: 24px;
            line-height: 1.5;
        }
        
        /* 了解更多按钮 - 统一大小样式 */
        .learn-more-btn {
            width: 120px;
            height: 36px;
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: auto; /* 推到列底部 */
            transition: background-color 0.3s ease; /* 过渡效果 */
        }
        
        .learn-more-btn:hover {
            background-color: #165DFF; /* 鼠标滑过变为蓝色（与对勾同色） */
            opacity: 1; /* 取消原有透明度，保持蓝色纯净 */
        }
        
        /* 探索更多解决方案链接（放在椭圆底外部） */
        .explore-more {
            text-align: center;
            margin-top: 0; /* 与上方椭圆底保持紧凑距离 */
            display: none; /* 默认隐藏 */
        }
        
        .explore-more.active {
            display: block; /* 仅当前TAB激活时显示 */
        }
        
        .explore-more a {
            color: #000;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            transition: color 0.3s ease; /* 过渡效果 */
        }
        
        .explore-more a:hover {
            color: #165DFF; /* 鼠标滑过变为蓝色（与对勾同色） */
        }
        
        .explore-more i {
            transform: rotate(-45deg); /* 右斜向上箭头 */
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .solutions-grid {
                flex-direction: column;
            }
            
            .solutions-column:not(:last-child)::after {
                width: 80%;
                height: 1px;
                right: 10%;
                top: auto;
                bottom: 0;
            }
            
            .solutions-column {
                padding: 20px 10px;
            }
        }
	/* 1440-1600区间固定1200宽居中 */	
	
.pm-container {
  max-width: 1400px;
  min-width: 1200px;
  width: 100%;
  margin: 40px auto;
  padding: 0 24px;
  box-sizing: border-box;
padding: 0px 0 60px 0; 
}

/* 1440-1600区间固定1200宽居中 */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  .pm-container {
    width: 1200px !important;
    max-width: 1200px !important;
    min-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
}

/* 1200-1439自适应 */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .pm-container {
    max-width: 100%;
    width: 100%;
    min-width: auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

/* 小屏全宽且padding缩小 */
@media screen and (max-width: 1199px) {
  .pm-container {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 0 16px;
    box-sizing: border-box;
  }
}

/* 标题区 */
.pm-title-section {
  text-align: center;
  margin-bottom: 48px;
}
.pm-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a2c75;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.pm-sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #5a7ab8;
  margin: 0;
  line-height: 1.5;
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .pm-main-title {
    font-size: 34px;
  }
  .pm-sub-title {
    font-size: 17px;
  }
  .pm-title-section {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .pm-main-title {
    font-size: 28px;
  }
  .pm-sub-title {
    font-size: 16px;
  }
  .pm-title-section {
    margin-bottom: 32px;
  }
}

/* 卡片行 宽度与间距 */
.pm-cards-row {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .pm-cards-row {
    flex-wrap: wrap;
    gap: 24px 20px;
  }
}

/* 卡片样式 */
.pm-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(10, 44, 117, 0.12);
  flex: 1 1 calc((100% - 3 * 32px) / 4);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px;
  position: relative;
  cursor: default;
  transition: box-shadow 0.3s ease;
  min-width: 0;
  user-select: none;
}
.pm-card:hover,
.pm-card:focus-within {
  box-shadow: 0 10px 24px rgba(10, 44, 117, 0.18);
  z-index: 10;
}
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .pm-card {
    padding: 28px 24px 20px;
    flex: 1 1 calc((100% - 3 * 24px) / 4);
  }
}
@media screen and (max-width: 1199px) {
  .pm-card {
    flex: 1 1 calc(50% - 20px);
    padding: 24px 20px 20px;
  }
}

/* 卡片头部布局 */
.pm-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pm-card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: #0a2c75;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a2c75;
  user-select: text;
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .pm-card-title {
    font-size: 20px;
  }
}

/* 核心描述文字 */
.pm-card-content {
  font-size: 16px;
  line-height: 28px;
  color: #0a2c75;
  margin-bottom: 20px;
  user-select: text;
  white-space: pre-line;
}
@media screen and (max-width: 1199px) {
  .pm-card-content {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}

/* 鼠标悬浮额外链接区域 */
.pm-hover-extra {
  position: absolute;
  bottom: 72px;
  left: 28px;
  right: 28px;
  background: #e7ecfc;
  border-radius: 12px;
  padding: 14px 24px;
  box-shadow: 0 6px 16px rgba(10, 44, 117, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  user-select: text;
  z-index: 10;
}
.pm-card:hover .pm-hover-extra,
.pm-card:focus-within .pm-hover-extra {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .pm-hover-extra {
    position: static;
    margin-top: 12px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: #f0f4ff;
    padding: 10px 16px;
    gap: 12px;
  }
}

/* 额外链接按钮 */
.pm-hover-extra a {
  background: #cbd5f8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0a2c75;
  box-shadow: inset 0 0 8px rgba(10,44,117,0.18);
  white-space: nowrap;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.pm-hover-extra a:hover,
.pm-hover-extra a:focus {
  background-color: #a5b9f5;
  outline: none;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .pm-hover-extra a {
    font-size: 13px;
    padding: 7px 14px;
  }
}

/* 行动按钮，和区域生态支持完全一致 */
.pm-action-button {
  background-color: #0a2c75;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  user-select: none;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}
.pm-action-button:hover,
.pm-action-button:focus {
  background-color: #143caa;
  outline: none;
  text-decoration: none;
  color: #fff !important;
}
@media screen and (max-width: 1199px) {
  .pm-action-button {
    width: 100%;
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* 英雄轮播模块 */
.yzj-hero-banner-carousel * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.yzj-hero-banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #FFFFFF;
  margin-top: 60px;
}

.yzj-hero-carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.yzj-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.yzj-hero-slide.yzj-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.yzj-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.yzj-hero-content {
  flex: 0 0 500px;
}

.yzj-hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

.yzj-hero-title-highlight {
  color: #2968ED;
}

.yzj-hero-subtitle {
  font-size: 15px;
  color: #666666;
  line-height: 1.7;
  margin: 0 0 36px 0;
}

.yzj-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px solid rgba(41, 104, 237, 0.1);
  border-bottom: 1px solid rgba(41, 104, 237, 0.1);
}

.yzj-stat-item {
  text-align: left;
}

.yzj-stat-number {
  font-size: 34px;
  font-weight: 700;
  color: #2968ED;
  margin-bottom: 8px;
  line-height: 1.2;
}

.yzj-stat-label {
  font-size: 13px;
  color: #888888;
  line-height: 1.4;
}

.yzj-hero-cta {
  display: flex;
  gap: 14px;
}

.yzj-btn-primary {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2968ED 0%, #1e54c7 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.yzj-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.yzj-btn-primary:hover::before {
  left: 100%;
}

.yzj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(41, 104, 237, 0.3);
}

.yzj-btn-secondary {
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  background: #F5F8FF;
  color: #2968ED;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yzj-btn-secondary:hover {
  background: #E8EFFF;
  transform: translateY(-2px);
}

.yzj-hero-visual {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yzj-hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.yzj-carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.yzj-indicator-bar {
  width: 50px;
  height: 4px;
  background: rgba(41, 104, 237, 0.2);
  border-radius: 2px;
  cursor: pointer;
}

.yzj-indicator-bar.yzj-active {
  background: #2968ED;
}

/* 英雄轮播模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-hero-banner-carousel {
    margin-top: 70px;
  }

  .yzj-hero-carousel-wrapper {
    min-height: 600px;
  }

  .yzj-hero-slide {
    padding: 80px 0 100px;
  }

  .yzj-hero-container {
    max-width: 1400px;
    padding: 0 ;
    gap: 100px;
  }
  
  .yzj-hero-content {
    flex: 0 0 600px;
  }

  .yzj-hero-title {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .yzj-hero-subtitle {
    font-size: 17px;
    margin-bottom: 44px;
  }

  .yzj-hero-stats {
    gap: 32px;
    padding: 36px 0;
    margin-bottom: 44px;
  }

  .yzj-stat-number {
    font-size: 40px;
  }

  .yzj-stat-label {
    font-size: 15px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 16px 42px;
    font-size: 17px;
  }

  .yzj-hero-visual {
    max-width: 600px;
  }

  .yzj-carousel-indicators {
    bottom: 50px;
  }

  .yzj-indicator-bar {
    width: 60px;
    height: 5px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-hero-carousel-wrapper {
    min-height: 700px;
  }

  .yzj-hero-slide {
    padding: 100px 0 120px;
  }

  .yzj-hero-container {
    max-width: 1600px;
    padding: 0 100px;
    gap: 120px;
  }

  .yzj-hero-content {
    flex: 0 0 700px;
  }

  .yzj-hero-title {
    font-size: 56px;
    margin-bottom: 28px;
  }

  .yzj-hero-subtitle {
    font-size: 19px;
    margin-bottom: 48px;
  }

  .yzj-hero-stats {
    gap: 40px;
    padding: 40px 0;
    margin-bottom: 48px;
  }

  .yzj-stat-number {
    font-size: 48px;
  }

  .yzj-stat-label {
    font-size: 16px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 18px 48px;
    font-size: 18px;
  }

  .yzj-hero-visual {
    max-width: 700px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-hero-slide {
    padding: 50px 0 70px;
  }

  .yzj-hero-container {
    max-width: 100%;
    padding: 0 40px;
    gap: 50px;
  }

  .yzj-hero-content {
    flex: 0 0 420px;
  }

  .yzj-hero-title {
    font-size: 34px;
  }

  .yzj-hero-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .yzj-hero-stats {
    gap: 20px;
    padding: 24px 0;
    margin-bottom: 32px;
  }

  .yzj-stat-number {
    font-size: 28px;
  }

  .yzj-stat-label {
    font-size: 12px;
  }

  .yzj-hero-visual {
    max-width: 420px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-hero-slide {
    padding: 40px 0 60px;
  }

  .yzj-hero-container {
    flex-direction: column;
    padding: 0 24px;
    gap: 36px;
  }
  
  .yzj-hero-content {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .yzj-hero-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .yzj-hero-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .yzj-hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 28px;
  }

  .yzj-stat-number {
    font-size: 26px;
  }

  .yzj-hero-cta {
    justify-content: center;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    padding: 13px 32px;
    font-size: 14px;
  }

  .yzj-hero-visual {
    max-width: 100%;
  }

  .yzj-carousel-indicators {
    bottom: 30px;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-hero-slide {
    padding: 32px 0 50px;
  }

  .yzj-hero-container {
    padding: 0 20px;
    gap: 28px;
  }

  .yzj-hero-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .yzj-hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .yzj-hero-stats {
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 24px;
  }

  .yzj-stat-number {
    font-size: 22px;
  }

  .yzj-stat-label {
    font-size: 11px;
  }

  .yzj-hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .yzj-btn-primary,
  .yzj-btn-secondary {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }

  .yzj-carousel-indicators {
    bottom: 24px;
  }

  .yzj-indicator-bar {
    width: 40px;
  }
}

/* 产品矩阵模块 */
.yzj-product-matrix {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px ;
}

.yzj-matrix-header {
  text-align: center;
  margin-bottom: 60px;
}

.yzj-matrix-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.yzj-matrix-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.yzj-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yzj-product-card {
  background: #F5F8FF;
  border: none;
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.yzj-product-card:hover {
  background: #2968ED;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(41, 104, 237, 0.25);
}

.yzj-product-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.yzj-product-card:hover .yzj-product-icon {
  background: rgba(255, 255, 255, 0.2);
}

.yzj-product-icon i {
  font-size: 28px;
  color: #2968ED;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-icon i {
  color: #fff;
}

.yzj-product-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-title {
  color: #fff;
}

.yzj-product-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.yzj-product-card:hover .yzj-product-desc {
  color: rgba(255, 255, 255, 0.9);
}

.yzj-product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2968ED;
  text-decoration: none;
  transition: all 0.3s ease;
}

.yzj-product-card:hover .yzj-product-link {
  color: #fff;
}

.yzj-product-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.yzj-product-card:hover .yzj-product-link i {
  transform: translateX(4px);
}

/* 产品矩阵模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-product-matrix {
    max-width: 1400px;
    padding: 100px 80px;
  }

  .yzj-matrix-header {
    margin-bottom: 80px;
  }

  .yzj-matrix-title {
    font-size: 48px;
  }

  .yzj-matrix-subtitle {
    font-size: 22px;
  }

  .yzj-products-grid {
    gap: 32px;
  }

  .yzj-product-card {
    padding: 40px 32px;
  }

  .yzj-product-icon {
    width: 64px;
    height: 64px;
  }

  .yzj-product-icon i {
    font-size: 34px;
  }

  .yzj-product-title {
    font-size: 20px;
    min-height: 56px;
  }

  .yzj-product-desc {
    font-size: 16px;
  }

  .yzj-product-link {
    font-size: 16px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-product-matrix {
    max-width: 1600px;
    padding: 120px 100px;
  }

  .yzj-matrix-header {
    margin-bottom: 90px;
  }

  .yzj-matrix-title {
    font-size: 54px;
  }

  .yzj-matrix-subtitle {
    font-size: 24px;
  }

  .yzj-products-grid {
    gap: 36px;
  }

  .yzj-product-card {
    padding: 44px 36px;
  }

  .yzj-product-icon {
    width: 72px;
    height: 72px;
  }

  .yzj-product-icon i {
    font-size: 36px;
  }

  .yzj-product-title {
    font-size: 22px;
    min-height: 60px;
  }

  .yzj-product-desc {
    font-size: 17px;
  }

  .yzj-product-link {
    font-size: 17px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-product-matrix {
    padding: 60px 40px;
  }

  .yzj-matrix-header {
    margin-bottom: 50px;
  }

  .yzj-matrix-title {
    font-size: 34px;
  }

  .yzj-matrix-subtitle {
    font-size: 16px;
  }

  .yzj-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yzj-product-card {
    padding: 30px 22px;
  }

  .yzj-product-icon {
    width: 52px;
    height: 52px;
  }

  .yzj-product-icon i {
    font-size: 26px;
  }

  .yzj-product-title {
    font-size: 17px;
    min-height: 48px;
  }

  .yzj-product-desc {
    font-size: 14px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-product-matrix {
    padding: 50px 24px;
  }

  .yzj-matrix-header {
    margin-bottom: 40px;
  }

  .yzj-matrix-title {
    font-size: 28px;
  }

  .yzj-matrix-subtitle {
    font-size: 15px;
  }

  .yzj-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yzj-product-card {
    padding: 28px 24px;
  }

  .yzj-product-icon {
    width: 48px;
    height: 48px;
  }

  .yzj-product-icon i {
    font-size: 24px;
  }

  .yzj-product-title {
    font-size: 18px;
    min-height: auto;
  }

  .yzj-product-desc {
    font-size: 14px;
    margin-bottom: 18px;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-product-matrix {
    padding: 40px 20px;
  }

  .yzj-matrix-header {
    margin-bottom: 32px;
  }

  .yzj-matrix-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .yzj-matrix-subtitle {
    font-size: 14px;
  }

  .yzj-products-grid {
    gap: 14px;
  }

  .yzj-product-card {
    padding: 24px 20px;
  }

  .yzj-product-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .yzj-product-icon i {
    font-size: 22px;
  }

  .yzj-product-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .yzj-product-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .yzj-product-link {
    font-size: 13px;
  }
}

/* 全球声音模块 */
.yzj-global-voice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 60px;
}

.yzj-global-header {
  text-align: center;
  margin-bottom: 60px;
}

.yzj-global-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.yzj-global-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.yzj-voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.yzj-voice-card {
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.yzj-voice-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.yzj-voice-card:hover::before {
  opacity: 1;
}

.yzj-voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.yzj-voice-card.card-1 {
  background: #F1F0FF;
}

.yzj-voice-card.card-2 {
  background: #F2FFFF;
}

.yzj-voice-card.card-3 {
  background: #F4FCFF;
}

.yzj-voice-card.card-4 {
  background: #FFF6F2;
}

.yzj-voice-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.yzj-voice-card:hover .yzj-voice-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card-1 .yzj-voice-icon i {
  font-size: 28px;
  color: #6B5FED;
}

.card-2 .yzj-voice-icon i {
  font-size: 28px;
  color: #00CCC0;
}

.card-3 .yzj-voice-icon i {
  font-size: 28px;
  color: #2ABEEF;
}

.card-4 .yzj-voice-icon i {
  font-size: 28px;
  color: #FF6726;
}

.yzj-voice-badge {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-1 .yzj-voice-badge {
  color: #6B5FED;
}

.card-2 .yzj-voice-badge {
  color: #00CCC0;
}

.card-3 .yzj-voice-badge {
  color: #2ABEEF;
}

.card-4 .yzj-voice-badge {
  color: #FF6726;
}

.yzj-voice-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yzj-voice-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  min-height: 70px;
}

.yzj-voice-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.card-1 .yzj-voice-link {
  color: #6B5FED;
}

.card-2 .yzj-voice-link {
  color: #00CCC0;
}

.card-3 .yzj-voice-link {
  color: #2ABEEF;
}

.card-4 .yzj-voice-link {
  color:#FF6726;
}

.yzj-voice-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.yzj-voice-card:hover .yzj-voice-link i {
  transform: translateX(4px);
}

/* 全球声音模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .yzj-global-voice {
    max-width: 1400px;
    padding: 100px 80px;
  }

  .yzj-global-header {
    margin-bottom: 80px;
  }

  .yzj-global-title {
    font-size: 48px;
  }

  .yzj-global-subtitle {
    font-size: 22px;
  }

  .yzj-voice-grid {
    gap: 32px;
  }

  .yzj-voice-card {
    padding: 40px 32px;
  }

  .yzj-voice-icon {
    width: 64px;
    height: 64px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 34px;
  }

  .yzj-voice-badge {
    font-size: 24px;
  }

  .yzj-voice-title {
    font-size: 18px;
    min-height: 50px;
  }

  .yzj-voice-desc {
    font-size: 15px;
    min-height: 80px;
  }

  .yzj-voice-link {
    font-size: 16px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .yzj-global-voice {
    max-width: 1600px;
    padding: 120px 100px;
  }

  .yzj-global-header {
    margin-bottom: 90px;
  }

  .yzj-global-title {
    font-size: 54px;
  }

  .yzj-global-subtitle {
    font-size: 24px;
  }

  .yzj-voice-grid {
    gap: 36px;
  }

  .yzj-voice-card {
    padding: 44px 36px;
  }

  .yzj-voice-icon {
    width: 72px;
    height: 72px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 36px;
  }

  .yzj-voice-badge {
    font-size: 26px;
  }

  .yzj-voice-title {
    font-size: 19px;
    min-height: 54px;
  }

  .yzj-voice-desc {
    font-size: 16px;
    min-height: 85px;
  }

  .yzj-voice-link {
    font-size: 17px;
  }
}

/* 平板 768-992px */
@media screen and (max-width: 992px) {
  .yzj-global-voice {
    padding: 60px 40px;
  }

  .yzj-global-header {
    margin-bottom: 50px;
  }

  .yzj-global-title {
    font-size: 34px;
  }

  .yzj-global-subtitle {
    font-size: 16px;
  }

  .yzj-voice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .yzj-voice-card {
    padding: 30px 22px;
  }

  .yzj-voice-icon {
    width: 52px;
    height: 52px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 26px;
  }

  .yzj-voice-badge {
    font-size: 19px;
  }

  .yzj-voice-title {
    font-size: 15px;
    min-height: 42px;
  }

  .yzj-voice-desc {
    font-size: 13px;
    min-height: 68px;
  }
}

/* 手机 < 768px */
@media screen and (max-width: 768px) {
  .yzj-global-voice {
    padding: 50px 24px;
  }

  .yzj-global-header {
    margin-bottom: 40px;
  }

  .yzj-global-title {
    font-size: 28px;
  }

  .yzj-global-subtitle {
    font-size: 15px;
  }

  .yzj-voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yzj-voice-card {
    padding: 28px 24px;
  }

  .yzj-voice-icon {
    width: 48px;
    height: 48px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 24px;
  }

  .yzj-voice-badge {
    font-size: 20px;
  }

  .yzj-voice-title {
    font-size: 16px;
    min-height: auto;
  }

  .yzj-voice-desc {
    font-size: 14px;
    margin-bottom: 18px;
    min-height: auto;
  }
}

/* 小手机 < 480px */
@media screen and (max-width: 480px) {
  .yzj-global-voice {
    padding: 40px 20px;
  }

  .yzj-global-header {
    margin-bottom: 32px;
  }

  .yzj-global-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .yzj-global-subtitle {
    font-size: 14px;
  }

  .yzj-voice-grid {
    gap: 14px;
  }

  .yzj-voice-card {
    padding: 24px 20px;
  }

  .yzj-voice-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .card-1 .yzj-voice-icon i,
  .card-2 .yzj-voice-icon i,
  .card-3 .yzj-voice-icon i,
  .card-4 .yzj-voice-icon i {
    font-size: 22px;
  }

  .yzj-voice-badge {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .yzj-voice-title {
    font-size: 15px;
  }

  .yzj-voice-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .yzj-voice-link {
    font-size: 13px;
  }
}

/* 信息标签页模块 */
.info-title {
  text-align: center;
  margin: clamp(30px, 4vw, 40px) 0 clamp(40px, 5vw, 50px) 0;
  padding: 0 20px;
}

.info-title h1 {
  font-size: clamp(36px, 3.33vw, 48px);
  font-weight: 800;
  color: #1F2937;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1F2937 0%, #374151 50%, #2563EB 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-subtitle {
  font-size: clamp(16px, 1.39vw, 20px);
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.8;
}

/* 主容器 */
.info-wrapper {
  max-width: min(1540px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(20px, 2vw, 40px) clamp(30px, 3vw, 40px);
}

.info-tabs {
  margin-bottom: clamp(20px, 2vw, 30px);
}

/* TAB导航 */
.tabs-nav-box {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 2vw, 30px);
  position: relative;
}

.tabs-nav {
  background: #F5FAFF;
  border-radius: 80px;
  padding: clamp(6px, 0.56vw, 8px);
  display: flex;
  gap: 4px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
}

.tabs-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
  border-radius: 80px;
  z-index: 1;
}

.tab-btn {
  background: transparent;
  border: none;
  border-radius: 76px;
  padding: clamp(12px, 1.11vw, 16px) clamp(20px, 1.94vw, 28px);
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: clamp(120px, 11.11vw, 160px);
  text-align: center;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn i {
  font-size: clamp(12px, 0.97vw, 14px);
  transition: all 0.3s ease;
}

.tab-btn:hover:not(.active) {
  color: #374151;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #fff;
  color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

.tab-btn.active i {
  color: #2563EB;
}

/* TAB内容面板 */
.tab-panel {
  background: #F5FAFF;
  border-radius: clamp(16px, 1.67vw, 24px);
  padding: clamp(40px, 4.86vw, 70px);
  min-height: clamp(400px, 34.72vw, 500px);
  display: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
}

.tab-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(147, 51, 234, 0.01) 100%);
  z-index: 1;
  pointer-events: none;
}

.tab-panel.active {
  display: block;
  animation: panelFadeIn 0.6s ease-out;
}

@keyframes panelFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 面板布局 */
.panel-layout {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: clamp(30px, 3.47vw, 50px);
  position: relative;
  z-index: 2;
}

.panel-left,
.panel-right {
  min-height: clamp(450px, 38.89vw, 560px);
}

/* 案例展示区 */
.case-box {
  background: #fff;
  border-radius: clamp(12px, 1.11vw, 16px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.case-img-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-img-link:hover {
  opacity: 0.9;
}

.case-img {
  position: relative;
  height: clamp(280px, 27.78vw, 400px);
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.case-img-link:hover .case-img img {
  transform: scale(1.05);
}

.case-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  padding: clamp(18px, 1.74vw, 25px);
}

.case-mask h3 {
  font-size: clamp(18px, 1.53vw, 22px);
  margin-bottom: 10px;
  font-weight: 600;
}

.case-mask p {
  font-size: clamp(13px, 1.04vw, 15px);
  opacity: 0.9;
}

.case-info {
  padding: clamp(18px, 1.74vw, 25px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-info h4 {
  font-size: clamp(16px, 1.25vw, 18px);
  color: #1F2937;
  margin-bottom: clamp(14px, 1.25vw, 18px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-info h4 i {
  color: #2563EB;
}

.case-info h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

.case-info h4 a:hover {
  color: #2563EB;
}

.case-desc {
  color: #4B5563;
  font-size: clamp(13px, 1.04vw, 15px);
  line-height: 1.8;
  text-align: justify;
  flex: 1;
}

/* 新闻列表 */
.news-container {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 1.67vw, 24px);
  height: 100%;
}

.news-card {
  display: flex;
  gap: clamp(12px, 1.11vw, 16px);
  background: #fff;
  border-radius: clamp(10px, 0.83vw, 12px);
  padding: clamp(16px, 1.39vw, 20px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.15);
}

.news-time {
  flex-shrink: 0;
  width: clamp(60px, 4.86vw, 70px);
  height: clamp(60px, 4.86vw, 70px);
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  border-radius: clamp(10px, 0.83vw, 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.time-day {
  font-size: clamp(22px, 1.81vw, 26px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}

.time-month {
  font-size: clamp(11px, 0.9vw, 13px);
  opacity: 0.9;
  font-weight: 500;
}

.news-text {
  flex: 1;
  min-width: 0;
}

.news-text h4 {
  font-size: clamp(15px, 1.18vw, 17px);
  margin-bottom: clamp(8px, 0.69vw, 10px);
  color: #1F2937;
  font-weight: 600;
  line-height: 1.5;
}

.news-text h4 a {
  color: #1F2937;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-text h4 a:hover {
  color: #2563EB;
}

.news-text p {
  color: #6B7280;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.6;
  margin-bottom: clamp(10px, 0.83vw, 12px);
}

.news-stats {
  display: flex;
  gap: clamp(12px, 1.11vw, 16px);
  font-size: clamp(12px, 0.9vw, 13px);
  color: #9CA3AF;
}

.news-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-stats i {
  font-size: clamp(11px, 0.83vw, 12px);
}

/* 信息标签页模块 - 响应式样式 */
/* 大屏优化 > 1440px */
@media screen and (min-width: 1441px) {
  .info-wrapper {
    max-width: 1600px;
    padding: 0 80px 60px;
  }

  .info-title {
    margin: 50px 0 60px 0;
  }

  .info-title h1 {
    font-size: 54px;
    margin-bottom: 16px;
  }

  .info-subtitle {
    font-size: 22px;
  }

  .tabs-nav {
    padding: 10px;
    gap: 6px;
  }

  .tab-btn {
    padding: 18px 36px;
    font-size: 17px;
    min-width: 180px;
  }

  .tab-btn i {
    font-size: 15px;
  }

  .tab-panel {
    padding: 80px;
    min-height: 600px;
    border-radius: 28px;
  }

  .panel-layout {
    gap: 60px;
  }

  .panel-left,
  .panel-right {
    min-height: 650px;
  }

  .case-img {
    height: 450px;
  }

  .case-mask {
    padding: 30px;
  }

  .case-mask h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .case-mask p {
    font-size: 16px;
  }

  .case-info {
    padding: 30px;
  }

  .case-info h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .case-desc {
    font-size: 16px;
  }

  .news-card {
    gap: 20px;
    padding: 24px;
  }

  .news-time {
    width: 80px;
    height: 80px;
  }

  .time-day {
    font-size: 30px;
  }

  .time-month {
    font-size: 14px;
  }

  .news-text h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .news-text p {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .news-stats {
    gap: 18px;
    font-size: 14px;
  }
}

/* 超大屏 > 1920px */
@media screen and (min-width: 1921px) {
  .info-wrapper {
    /* 原代码此处不完整，保持现有结构 */
  }
}

/* 响应式断点优化 */
@media (max-width: 1200px) {
  .panel-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .panel-left,
  .panel-right {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .tabs-nav {
    border-radius: 40px;
  }
  
  .tab-btn {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .info-title h1 {
    font-size: 34px;
  }
  
  .info-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .tabs-nav {
    border-radius: 20px;
    padding: 6px;
  }
  
  .tab-btn {
    min-width: calc(50% - 4px);
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .tab-panel {
    padding: 25px 16px;
    min-height: 350px;
  }
  
  .case-img {
    height: 220px;
  }
  
  .news-card {
    flex-direction: column;
    gap: 12px;
  }
  
  .news-time {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .info-title h1 {
    font-size: 28px;
  }
  
  .tab-btn {
    min-width: 100%;
    margin: 2px 0;
  }
  
  .tabs-nav {
    flex-direction: column;
    border-radius: 16px;
  }
}


.my-scenario-container {
    max-width: 1520px;
    margin:80px auto ;
}
.my-tab-wrapper { margin-bottom: 30px; }
.my-tab-nav-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}
.my-tab-nav {
    background: #F5FAFF;
    border-radius: 80px;
    padding: 8px;
    display: flex;
    gap: 4px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.my-tab-nav::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 80px;
    z-index: 1;
}
.my-tab-item {
    background: transparent;
    border: none;
    border-radius: 76px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 160px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}
.my-tab-item:hover:not(.active) {
    color: #374151;
    transform: translateY(-2px);
}
.my-tab-item.active {
    background: #fff;
    color: #2968ED;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    transform: translateY(-1px);
}
/* 适配1440px及以上分辨率 */
@media screen and (min-width: 1440px) {
  .my-tab-wrapper {
    margin-bottom: 40px; /* 增大底部间距 */
  }
  
  .my-tab-nav-container {
    margin-bottom: 40px; /* 增大导航容器底部间距 */
  }
  
  .my-tab-nav {
    padding: 10px; /* 增大导航容器内边距 */
    gap: 6px; /* 增大标签之间的间距 */
  }
  
  .my-tab-item {
    padding: 18px 32px; /* 增大标签内边距 */
    font-size: 18px; /* 增大字体尺寸 */
    min-width: 180px; /* 增大最小宽度 */
    letter-spacing: 0.6px; /* 微调字间距 */
  }
}
/* TAB鍐呭鍖?- 鑳屾櫙#EFF5FD */
.my-tab-content {
    background: #EFF5FD;
    border-radius: 24px;
    padding: 0;
    min-height: 500px;
    display: none;
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden;
    position: relative;
}
.my-tab-content.active {
    display: block;
    animation: tabFadeIn 0.6s ease-out;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 鍐呭甯冨眬 */
.my-content-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 100%;
    min-height: 500px;
    position: relative;
}

/* 娓愬彉鍒嗗壊绾?*/
.my-content-layout::after {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26,131,255,0.1) 0%, 
        rgba(26,131,255,0.3) 30%, 
        rgba(26,131,255,0.5) 50%, 
        rgba(26,131,255,0.3) 70%, 
        rgba(26,131,255,0.1) 100%);
    z-index: 2;
}

/* 宸﹀鑸尯 */
.my-side-nav {
    position: relative;
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
}
.my-side-nav button {
    width: 100%;
    height: 140px;
    background: #EFF5FD;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    transition: all 0.3s ease;
    position: relative;
    line-height: 1.2;
}

/* 鏈€変腑鎸夐挳涔嬮棿鐨勫垎鍓茬嚎 */
.my-side-nav button:not(:last-child):not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(75, 85, 99, 0.2) 50%, 
        transparent 100%);
}

/* 閫変腑鐘舵€佷笅闅愯棌鍒嗗壊绾?*/
.my-side-nav button.active::after,
.my-side-nav button.active + button::before {
    display: none;
}

/* 閫変腑鐘舵€佺殑涓婁竴涓寜閽篃闅愯棌涓嬪垎鍓茬嚎 */
.my-side-nav button:has(+ button.active)::after {
    display: none;
}

/* 閫変腑鐘舵€?- 娓愬彉鑳屾櫙 + 5px绾挎潯 */
.my-side-nav button.active {
    background: linear-gradient(to right, #DFECFD 0%, #EFF5FD 100%);
    color: #2968ED;
}
.my-side-nav button.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2968ED;
    z-index: 1;
}

/* 鎮仠鐘舵€?- 鏄剧ず宸﹁竟绾挎潯 */
.my-side-nav button:hover:not(.active) {
    background: #EFF5FD;
    color: #2968ED;
    transform: translateX(3px);
}
.my-side-nav button:hover:not(.active)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #2968ED;
    z-index: 1;
}

/* 鍙充晶鍐呭鍖?- 璺濈鍒嗗壊绾?5px */
.my-content-area {
    padding: 40px 40px 40px 115px;
    background: #EFF5FD;
    border-radius: 0 24px 24px 0;
    position: relative;
    overflow: hidden;
}

/* 鑳屾櫙鍥剧墖 - 閰掑簵鏂规 */
.my-content-area.hotel-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 璺ㄥ閫氫俊 */
.my-content-area.cross-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鑳屾櫙鍥剧墖 - 浼佷笟閫氫俊 */
.my-content-area.enterprise-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 0 24px 0 0;
    opacity: 0.15;
    z-index: 1;
}

/* 鍙宠嚦宸﹂€忔槑婊ら暅 */
.my-content-area::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 300px;
    background: linear-gradient(to left, 
        rgba(239,245,253,0) 0%, 
        rgba(239,245,253,0.3) 30%, 
        rgba(239,245,253,0.7) 70%, 
        rgba(239,245,253,1) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 0 24px 0 0;
}

.my-content-panel { 
    display: none; 
    position: relative;
    z-index: 3;
}
.my-content-panel.active { display: block; }

/* ICON + 鏍囬 - 缂╃煭闂磋窛 */
.my-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    margin-top: 50px;
}
.my-title-icon {
    width: 80px;
    height: 80px;
    background-color: #F36249;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 34px;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(243,98,73,0.3);
}
.my-title-text {
    font-size: 38px;
    font-weight: 700;
    color: #1F2937;
}

/* 鏍囬瓒呴摼鎺?*/
.my-title-link {
    color: #1F2937;
    text-decoration: none;
    transition: color 0.3s ease;
}
.my-title-link:hover {
    color: #2968ED;
}

/* 鎻忚堪鍖?- 鍘绘帀搴曡壊鍜屽乏杈圭嚎 */
.my-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    padding: 0;
    margin-bottom: 20px;
    margin-right: 260px;
}

/* 浜嗚В鏇村閾炬帴 */
.my-learn-more {
    margin-top: 15px;
}
.my-learn-more a {
    color: #2968ED;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}
.my-learn-more a:hover {
    color: #0066CC;
    transform: translateX(3px);
}

/* 鍒嗗尯璁捐 - 缁熶竴瀹藉害瀹瑰櫒 */
.my-section {
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px; /* 澧炲姞瀹藉害 */
}
.my-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
}
.my-section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.my-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

/* 鍦烘櫙鑱斿姩 - 澧炲姞瀹藉害閫傞厤3寮犲崱鐗囦竴鎺掓樉绀?*/
.my-scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-scenario-card {
    padding: 24px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-card:hover {
    background: rgba(26,131,255,0.08);
    transform: translateY(-3px);
}
.my-scenario-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}
.my-scenario-card:hover .my-scenario-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(26,131,255,0.3);
}
.my-scenario-content {
    flex: 1;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-scenario-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
    transition: color 0.4s ease;
    word-wrap: break-word;
}
.my-scenario-card:hover .my-scenario-title {
    color: #2968ED;
}
.my-scenario-desc {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
    word-wrap: break-word;
}

/* 瀵规帴鍏煎 - 澧炲姞瀹藉害閫傞厤5寮犲崱鐗囦竴鎺掓樉绀?*/
.my-compat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: rgba(255,255,255,0.4);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
}
.my-compat-card {
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #4B5563;
    border: 1px solid #F3F4F6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0; /* 闃叉鍐呭婧㈠嚭 */
}
.my-compat-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #2968ED, #3B82F6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.my-compat-text {
    transition: all 0.4s ease;
    font-size: 15px;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}
.my-compat-card:hover {
    transform: translateY(-4px);
    border-color: #E5E7EB;
    box-shadow: 0 8px 20px rgba(26,131,255,0.15);
    background: rgba(26,131,255,0.03);
}
.my-compat-card:hover .my-compat-icon {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(26,131,255,0.25);
}
.my-compat-card:hover .my-compat-text {
    color: #2968ED;
}

/* 鍝嶅簲寮?- 涓ユ牸鑷€傚簲 */
@media (max-width: 1400px) {
    .my-scenario-container {
        max-width: 1200px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 200px;
    }
    .my-section {
        max-width: 800px;
    }
}

@media (max-width: 1200px) {
    .my-scenario-container {
        max-width: 100%;
        padding: 0 15px 40px 15px;
    }
    .my-content-area {
        padding: 35px 35px 35px 90px;
    }
    .my-desc {
        margin-right: 180px;
    }
    .my-section {
        max-width: 750px;
    }
    .my-side-nav button {
        font-size: 16px;
        height: 130px;
    }
    /* 鍦烘櫙鑱斿姩淇濇寔3鍒?*/
    .my-scenario-grid {
        gap: 20px;
        padding: 20px;
    }
    .my-scenario-card {
        padding: 20px;
        gap: 16px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒?*/
    .my-compat-grid {
        gap: 16px;
        padding: 20px;
    }
    .my-compat-card {
        padding: 16px 12px;
        gap: 10px;
    }
    .my-compat-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    .my-compat-text {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .my-content-layout {
        grid-template-columns: 180px 1fr;
    }
    .my-content-area {
        padding: 30px 30px 30px 80px;
    }
    .my-title-text {
        font-size: 34px;
    }
    .my-section-title {
        font-size: 22px;
    }
    .my-desc {
        margin-right: 150px;
    }
    .my-section {
        max-width: 650px;
    }
    .my-side-nav button {
        font-size: 15px;
        height: 120px;
    }
    /* 鍦烘櫙鑱斿姩鍙樹负2鍒?*/
    .my-scenario-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    /* 瀵规帴鍏煎淇濇寔5鍒椾絾缂╁皬 */
    .my-compat-card {
        padding: 14px 10px;
        gap: 8px;
    }
    .my-compat-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .my-compat-text {
        font-size: 13px;
    }
}


/* ==================== 手机端完整CSS ==================== */

/* 768px以下 - 平板和大屏手机 */
@media (max-width: 768px) {
    /* 容器 */
    .my-scenario-container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 12px;
    }

    /* Tab导航 */
    .my-tab-wrapper {
        margin-bottom: 15px;
    }

    .my-tab-nav-container {
        margin-bottom: 15px;
        padding: 0;
    }

    .my-tab-nav {
        padding: 4px;
        gap: 4px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .my-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .my-tab-item {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 90px;
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* Tab内容 */
    .my-tab-content {
        border-radius: 12px;
        min-height: auto;
        border: none;
    }

    /* 布局改为垂直 */
    .my-content-layout {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        min-height: auto;
    }

    .my-content-layout::after {
        display: none;
    }

    /* 侧边导航改为顶部横向 */
    .my-side-nav {
        width: 100%;
        flex-direction: row;
        border-radius: 12px 12px 0 0;
        background: #EFF5FD;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        display: flex;
        flex-wrap: nowrap;
    }

    .my-side-nav::-webkit-scrollbar {
        display: none;
    }

    .my-side-nav button {
        width: auto;
        height: 50px;
        min-width: 100px;
        flex-shrink: 0;
        padding: 12px 16px;
        font-size: 13px;
        background: #EFF5FD;
        white-space: nowrap;
        border-radius: 0;
    }

    /* 移除垂直分割线 */
    .my-side-nav button::after {
        display: none !important;
    }

    .my-side-nav button:has(+ button.active)::after {
        display: none !important;
    }

    /* 选中状态 - 底部蓝条 */
    .my-side-nav button.active {
        background: #EFF5FD;
        color: #2968ED;
    }

    .my-side-nav button.active::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: #2968ED;
        z-index: 1;
        top: auto;
    }

    /* 悬停状态 */
    .my-side-nav button:hover:not(.active) {
        transform: none;
        background: #EFF5FD;
    }

    .my-side-nav button:hover:not(.active)::before {
        display: none;
    }

    /* 内容区域 */
    .my-content-area {
        width: 100%;
        padding: 20px 15px;
        border-radius: 0 0 12px 12px;
        background: #EFF5FD;
    }

    /* 隐藏背景图 */
    .my-content-area::before,
    .my-content-area::after {
        display: none !important;
    }

    .my-content-area.hotel-bg::before,
    .my-content-area.cross-bg::before,
    .my-content-area.enterprise-bg::before {
        display: none !important;
    }

    /* 标题区域 */
    .my-title-block {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .my-title-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
        border-radius: 6px;
    }

    .my-title-text {
        font-size: 22px;
        line-height: 1.3;
    }

    /* 描述 */
    .my-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-right: 0;
        margin-bottom: 15px;
        padding: 0;
    }

    .my-learn-more {
        margin-top: 10px;
    }

    .my-learn-more a {
        font-size: 14px;
        gap: 5px;
    }

    /* 分区 */
    .my-section {
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
    }

    .my-section-header {
        gap: 8px;
        margin-bottom: 12px;
        padding: 10px 0;
    }

    .my-section-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 6px;
    }

    .my-section-title {
        font-size: 17px;
    }

    /* 场景网格 - 单列 */
    .my-scenario-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        gap: 12px;
        padding: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
    }

    .my-scenario-card {
        padding: 15px;
        gap: 12px;
        border-radius: 10px;
        background: white;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-card:hover {
        background: white;
        transform: none;
    }

    .my-scenario-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    .my-scenario-card:hover .my-scenario-icon {
        transform: none;
    }

    .my-scenario-content {
        flex: 1;
        min-width: 0;
    }

    .my-scenario-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .my-scenario-desc {
        font-size: 13px;
        line-height: 1.5;
        color: #6B7280;
    }

    /* 兼容网格 - 2列 */
    .my-compat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
    }

    .my-compat-card {
        padding: 12px 8px;
        gap: 8px;
        border-radius: 8px;
        background: white;
        border: 1px solid #F3F4F6;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-card:hover {
        transform: none;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
        border-radius: 5px;
    }

    .my-compat-card:hover .my-compat-icon {
        transform: none;
    }

    .my-compat-text {
        font-size: 12px;
        line-height: 1.3;
    }
}




/*妗堜緥LDO*/

.partners-section {
    padding: 0px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.partners-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.partners-scroll-wrapper {
    position: relative;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.partners-mask-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 10;
    pointer-events: none;
}

.partners-scroll-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.partners-logos-track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: scrollUpContinuous 50s linear infinite;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: nowrap;
    min-height: 65px;
}

.partners-row img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(50%) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    transform: scale(0.98);
    cursor: pointer;
}

.partners-row img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.02);
}

/* 鏃犵紳寰幆鍔ㄧ敾 */
@keyframes scrollUpContinuous {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* 鏍囬鍔ㄧ敾 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 榧犳爣鎮仠鏆傚仠鍔ㄧ敾 */
.partners-scroll-wrapper:hover .partners-logos-track {
    animation-play-state: paused;
}

/* 瀹藉睆閫傞厤 */
@media (min-width: 1400px) {
    .partners-container {
        max-width: 1800px;
        padding: 0 60px;
    }
    
    .partners-scroll-wrapper {
        height: 650px;
    }
    
    .partners-scroll-container {
        padding: 130px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 130px;
    }
    
    .partners-row {
        gap: 45px;
    }
    
    .partners-row img {
        max-width: 160px;
        max-height: 80px;
    }
}

/* 涓瓑灞忓箷閫傞厤 */
@media (max-width: 1200px) {
    .partners-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .partners-scroll-wrapper {
        height: 550px;
    }
    
    .partners-scroll-container {
        padding: 110px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 110px;
    }
    
    .partners-row {
        gap: 30px;
    }
    
    .partners-row img {
        max-width: 120px;
        max-height: 60px;
    }
}

/* 骞虫澘閫傞厤 */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-container {
        padding: 0 20px;
    }
    
    .partners-title {
        font-size: 34px;
        margin-bottom: 12px;
    }
    
    .partners-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .partners-scroll-wrapper {
        height: 450px;
    }
    
    .partners-scroll-container {
        padding: 100px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 100px;
    }
    
    .partners-logos-track {
        gap: 15px;
        animation-duration: 40s;
    }
    
    .partners-row {
        gap: 20px;
        min-height: 55px;
    }
    
    .partners-row img {
        max-width: 100px;
        max-height: 50px;
        padding: 6px;
    }
}

/* 鎵嬫満閫傞厤 */
@media (max-width: 480px) {
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .partners-scroll-wrapper {
        height: 380px;
    }
    
    .partners-scroll-container {
        padding: 90px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 90px;
    }
    
    .partners-logos-track {
        gap: 12px;
        animation-duration: 35s;
    }
    
    .partners-row {
        gap: 15px;
        min-height: 45px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .partners-row img {
        max-width: 75px;
        max-height: 38px;
        padding: 4px;
    }
}

/* 楂樻竻灞忓箷浼樺寲 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .partners-row img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 鍑忓急鍔ㄧ敾鏁堟灉锛堥拡瀵圭敤鎴峰亸濂借缃級 */
@media (prefers-reduced-motion: reduce) {
    .partners-logos-track {
        animation-duration: 80s;
    }
    
    .partners-title,
    .partners-subtitle {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* 瓒呭灞忓箷閫傞厤 */
@media (min-width: 1920px) {
    .partners-container {
        max-width: 2000px;
    }
    
    .partners-scroll-wrapper {
        height: 700px;
    }
    
    .partners-scroll-container {
        padding: 140px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 140px;
    }
    
    .partners-row {
        gap: 55px;
    }
    
    .partners-row img {
        max-width: 180px;
        max-height: 90px;
    }
}

/* 4K灞忓箷閫傞厤 */
@media (min-width: 2560px) {
    .partners-scroll-wrapper {
        height: 800px;
    }
    
    .partners-scroll-container {
        padding: 160px 0;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        height: 160px;
    }
    
    .partners-row {
        gap: 70px;
    }
    
    .partners-row img {
        max-width: 200px;
        max-height: 100px;
    }
}

/* 鍔ㄧ敾鎬ц兘浼樺寲 */
.partners-logos-track {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.partners-row img {
    will-change: transform, filter;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 鎵撳嵃鏍峰紡 */
@media print {
    .partners-section {
        padding: 40px 0;
    }
    
    .partners-scroll-wrapper {
        height: auto;
        overflow: visible;
    }
    
    .partners-mask-top,
    .partners-mask-bottom {
        display: none;
    }
    
    .partners-logos-track {
        animation: none;
    }
    
    .partners-row img {
        filter: none;
        transform: none;
    }
}

/* 鎵撳嵃鏍峰紡 */
 .vs-wrap {
            width: 100%;
            box-sizing: border-box;
            padding: 0px 40px 80px 0px;
            background: transparent;
        }

        .vs-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .vs-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .vs-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 24px;
            background: #F5F9FE;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .vs-link:hover .vs-card {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(74, 112, 255, 0.12);
        }

        .vs-icon-box {
            flex-shrink: 0;
        }

        .vs-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        /* 鍥炬爣棰滆壊鏂规 */
        .vs-link:nth-child(1) .vs-icon {
            background: #E8EDFF;
        }

        .vs-link:nth-child(1) .vs-icon i {
            color: #4A70FF;
        }

        .vs-link:nth-child(2) .vs-icon {
            background: #EBEAFF;
        }

        .vs-link:nth-child(2) .vs-icon i {
            color: #6A4BFF;
        }

        .vs-link:nth-child(3) .vs-icon {
            background: #E4F9F9;
        }

        .vs-link:nth-child(3) .vs-icon i {
            color: #00C7A9;
        }

        .vs-link:nth-child(4) .vs-icon {
            background: #EBF6FF;
        }

        .vs-link:nth-child(4) .vs-icon i {
            color: #29A3FA;
        }

        .vs-link:hover .vs-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .vs-icon i {
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .vs-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .vs-title {
            font-size: 20px;
            font-weight: 600;
            color: #394F81;
            margin: 0;
            letter-spacing: 0.2px;
            transition: color 0.3s ease;
        }

        .vs-link:hover .vs-title {
            color: #4A70FF;
        }

        .vs-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #7B889C;
            margin: 0;
        }

        /* 骞虫澘閫傞厤 */
        @media screen and (max-width: 1024px) and (min-width: 768px) {
            .vs-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }

            .vs-card {
                padding: 20px;
            }
        }

        /* 鎵嬫満閫傞厤 */
        @media screen and (max-width: 767px) {
            .vs-wrap {
                padding: 40px 16px;
            }

            .vs-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vs-card {
                gap: 12px;
                padding: 20px;
                border-radius: 10px;
            }

            .vs-icon {
                width: 32px;
                height: 32px;
            }

            .vs-icon i {
                font-size: 14px;
            }

            .vs-title {
                font-size: 18px;
            }

            .vs-desc {
                font-size: 13px;
            }
        }
/* 1440px 鍒嗚鲸鐜囧叏闈㈤€傞厤 - 瀹屾暣淇鐗� */
@media (max-width: 1600px) {
  /* ========== 鏍稿績瀹瑰櫒绫� - 鏈€楂樹紭鍏堢骇 ========== */
  /* 淇℃伅瀹瑰櫒 */
  .info-wrapper {
    max-width: 1200px ;
    margin:  auto ;
    padding: 0 0px ;
  }
  
  /* 閫氱敤瀹瑰櫒璋冩暣 */
  .comm-wrapper {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* Banner瀹瑰櫒璋冩暣 - 涓嶉檺鍒堕珮搴︼紝璁╁唴瀹硅嚜鐒舵拺寮€ */
  .banner-container {
    max-width: 1300px ;
    margin: 0 auto ;
    padding: 0 ;
  }
  
  /* MY鍦烘櫙瀹瑰櫒 */
  .my-scenario-container {
    max-width: 1200px ;
    padding: 0 0px ;
  }
  
  /* 閰掑簵鍦烘櫙瀹瑰櫒 */
  .hotel-scenario-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px 28px 20px ;
  }
  
  /* ET鍥藉瀹瑰櫒 */
  .et-countries {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* ========== Banner鐩稿叧 - 绉婚櫎楂樺害闄愬埗锛屼慨澶嶉噸鍙� ========== */
  
  /* ========== 閫氱敤鍥剧墖澶勭悊 ========== */
  /* 鎵€鏈夊浘鐗囧鍣� */
  .image-container,
  .img-container,
  .picture-container {
    width: 100% ;
    height: 190px ;
    overflow: hidden ;
    border-radius: 10px ;
    margin-bottom: 14px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    background: #f5f5f5 ;
  }
  
  /* 鎵€鏈夊浘鐗� */
  .image-container img,
  .img-container img,
  .picture-container img,
  .comm-card img,
  .vs-card img,
  .my-scenario-card img,
  .hotel-card img {
    max-width: 100% ;
    max-height: 100% ;
    width: auto ;
    height: auto ;
    object-fit: contain ;
    display: block ;
  }
  
  /* 鍦烘櫙鍗＄墖鍥剧墖鐗规畩澶勭悊 */
  .my-scenario-card .image-container,
  .hotel-card .image-container {
    height: 160px ;
  }
  
  /* VS鍗＄墖鍥剧墖 */
  .vs-card .image-container {
    height: 140px ;
  }
  
  /* 閫氱敤鍗＄墖鍥剧墖 */
  .comm-card .image-container {
    height: 180px ;
  }
  
  /* content-right鍥剧墖瀹瑰櫒 - 澧炲姞楂樺害 */
  .content-right .image-container,
  .content-right .img-container,
  .content-right .picture-container,
  .content-right .image-placeholder {
    height: 100% ;
    min-height: 400px ;
    margin-bottom: 0 ;
  }
  
  /* content-right鍥剧墖 */
  .content-right img {
    max-width: 100% ;
    max-height: 100% ;
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
    display: block ;
    margin: 0 ;
  }
  
  /* image-placeholder鐗规畩澶勭悊 */
  .image-placeholder {
    width: 100% ;
    height: 100% ;
    min-height: 400px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    overflow: hidden ;
  }
  
  .image-placeholder img {
    width: 100% ;
    height: 100% ;
    object-fit: cover ;
  }
  
  /* ========== 閫氱敤缃戞牸鍜屽崱鐗� - 淇涓轰竴鎺�4涓� ========== */
  /* 閫氱敤缃戞牸甯冨眬 - 寮哄埗4鍒� */
  .comm-wrapper .comm-grid,
  .comm-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    padding: 0 20px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* 閫氱敤鍗＄墖鍐呰竟璺� */
  .comm-card {
    padding: 20px 16px ;
    border-radius: 12px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* 閫氱敤鏍囬瀛椾綋 */
  .comm-title {
    font-size: 16px ;
    margin-bottom: 10px ;
  }
  
  /* 閫氱敤鎻忚堪 */
  .comm-desc {
    font-size: 13px ;
    height: 70px ;
    margin-bottom: 14px ;
    overflow: hidden ;
  }
  
  /* ========== 涓绘爣棰樺尯鍩� ========== */
  /* 涓绘爣棰樺鍣� */
  .main-title {
    margin: 50px auto 30px auto ;
    padding: 0 20px ;
    max-width: 1200px ;
  }
  
  /* 涓绘爣棰榟1 */
  .main-title h1 {
    font-size: 36px ;
    line-height: 1.3 ;
  }
  
  /* 涓绘爣棰樺壇鏍囬 */
  .main-title .subtitle {
    font-size: 15px ;
  }
  
  /* ========== Tab鍐呭鍖哄煙 - 淇瀹瑰櫒鍜岄棿璺� ========== */
  /* Tab鍐呭瀹瑰櫒 - 纭繚姝ｇ‘鐨勫搴﹀拰灞呬腑 */
  .tab-content {
    max-width: 1200px ;
    width: 100% ;
    margin: 0 auto ;
    padding: 40px 20px ;
    box-sizing: border-box ;
  }
  
  /* Tab鍐呭鍐呴儴瀹瑰櫒 */
  .tab-content > div,
  .tab-content > section {
    max-width: 100% ;
    width: 100% ;
  }
  
  /* 鍐呭甯冨眬缃戞牸 - 澧炲姞鍐呭闂磋窛 */
  .content-layout {
    display: grid ;
    grid-template-columns: 1fr 1fr ;
    gap: 40px ;
    max-width: 100% ;
    margin: 0 ;
    padding: 30px ;
    box-sizing: border-box ;
  }
  
  /* 宸︿晶鍐呭 */
  .content-left {
    width: 100% ;
    padding-right: 20px ;
  }
  
  /* 鍙充晶鍐呭 */
  .content-right {
    width: 100% ;
    display: flex ;
    flex-direction: column ;
    min-height: 400px ;
  }
  
  /* 宸︿晶鍐呭鏍囬 */
  .content-left h2 {
    font-size: 24px ;
    margin-bottom: 16px ;
  }
  
  /* 鍓爣棰樺浘鏍囧鍣� */
  .subtitle-icons {
    display: flex ;
    gap: 14px ;
    margin-bottom: 22px ;
    flex-wrap: wrap ;
  }
  
  /* 鍓爣棰橀」 */
  .subtitle-item {
    font-size: 13px ;
    padding: 6px 11px ;
    display: flex ;
    align-items: center ;
    gap: 6px ;
  }
  
  /* 鍓爣棰樺浘鏍� */
  .subtitle-item i,
  .subtitle-item .icon {
    font-size: 14px ;
    width: 16px ;
    height: 16px ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* Tab鍐呭涓殑鎵€鏈夊浘鏍� */
  .tab-content i,
  .tab-content .icon,
  .tab-content .fa,
  .tab-content .fas,
  .tab-content .far,
  .tab-content .fab {
    font-size: 14px ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* Tab鍐呭涓殑鍥炬爣瀹瑰櫒 */
  .tab-content .icon-container,
  .tab-content .icon-wrapper {
    width: auto ;
    height: auto ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* 鏈嶅姟椤逛腑鐨勫浘鏍� */
  .service-item i,
  .service-item .icon {
    font-size: 16px ;
    width: 20px ;
    height: 20px ;
    margin-right: 8px ;
    flex-shrink: 0 ;
  }
  
  /* 浜у搧椤逛腑鐨勫浘鏍� */
  .product-item i,
  .product-item .icon {
    font-size: 12px ;
    width: 16px ;
    height: 16px ;
    margin-right: 6px ;
  }
  
  /* ========== 鏈嶅姟鍜屼骇鍝� - 淇P鍐呭婧㈠嚭 ========== */
  /* 鏈嶅姟椤瑰鍣� */
  .service-item {
    margin-bottom: 16px ;
    padding: 14px 12px ;
    display: block ;
    width: 100% ;
    box-sizing: border-box ;
  }
  
  /* 鏈嶅姟椤笻4 */
  .service-item h4 {
    font-size: 16px ;
    margin-bottom: 8px ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
    width: 100% ;
    display: flex ;
    align-items: center ;
    gap: 8px ;
  }
  
  /* 鏈嶅姟椤笻4涓殑閾炬帴 */
  .service-item h4 a {
    flex: 1 ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
  }
  
  /* 鏈嶅姟椤筆 - 淇婧㈠嚭 */
  .service-item p {
    font-size: 14px ;
    line-height: 1.6 ;
    margin: 0 ;
    padding: 0 ;
    word-wrap: break-word ;
    word-break: break-word ;
    white-space: normal ;
    overflow: visible ;
    max-height: none ;
    height: auto ;
    width: 100% ;
    box-sizing: border-box ;
  }
  
  /* 鏈嶅姟鍒楄〃瀹瑰櫒 */
  .services-list,
  .service-list {
    width: 100% ;
    overflow: visible ;
  }
  
  /* 浜у搧椤� */
  .product-item {
    font-size: 12px ;
    padding: 6px 9px ;
    display: inline-flex ;
    align-items: center ;
  }
  
  /* 浜у搧鍒楄〃 */
  .products-list,
  .product-list {
    display: flex ;
    flex-wrap: wrap ;
    gap: 8px ;
    margin-top: 12px ;
  }
  
  /* ========== ET鏁版嵁灞曠ず - 淇婧㈠嚭 ========== */
  /* ET鏁版嵁灞曠ず瀹瑰櫒 */
  .et-data-showcase {
    max-width: 1200px ;
    width: 100% ;
    margin: 0 auto ;
    padding: 40px 20px ;
    box-sizing: border-box ;
  }
  
  /* ET鏁版嵁缃戞牸 */
  .et-data-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    max-width: 100% ;
  }
  
  /* ET鏁版嵁鍗＄墖 */
  .et-data-card {
    padding: 20px 14px ;
    border-radius: 12px ;
    text-align: center ;
    display: flex ;
    flex-direction: column ;
    align-items: center ;
    justify-content: center ;
    min-height: 140px ;
  }
  
  /* ET鏁版嵁鍥炬爣 */
  .et-data-icon {
    width: 45px ;
    height: 45px ;
    font-size: 18px ;
    margin-bottom: 12px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    flex-shrink: 0 ;
  }
  
  .et-data-icon i {
    font-size: 18px ;
  }
  
  /* ET鏁版嵁鏁板瓧 */
  .et-data-number {
    font-size: 28px ;
    font-weight: 700 ;
    margin-bottom: 6px ;
    line-height: 1.2 ;
    white-space: nowrap ;
  }
  
  /* ET鏁版嵁鏍囩 */
  .et-data-label {
    font-size: 13px ;
    line-height: 1.3 ;
    word-wrap: break-word ;
    word-break: keep-all ;
    white-space: nowrap ;
    overflow: hidden ;
    text-overflow: ellipsis ;
    max-width: 100% ;
  }
  
  /* ET鏁版嵁鏍囬 */
  .et-data-showcase h2,
  .et-data-showcase .section-title {
    font-size: 30px ;
    margin-bottom: 28px ;
    text-align: center ;
  }
  
  /* ========== VS瀵规瘮閮ㄥ垎 ========== */
  /* VS瀹瑰櫒 */
  .vs-wrap {
    padding: 35px 20px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* VS缃戞牸 */
  .vs-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* VS鍗＄墖 */
  .vs-card {
    padding: 16px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* VS閾炬帴 */
  .vs-link {
    gap: 11px ;
    display: flex ;
    align-items: center ;
  }
  
  /* VS鍥炬爣 */
  .vs-icon {
    width: 38px ;
    height: 38px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .vs-icon i {
    font-size: 14px ;
  }
  
  /* VS鏍囬 */
  .vs-title {
    font-size: 15px ;
  }
  
  /* VS鎻忚堪 */
  .vs-desc {
    font-size: 12px ;
  }
  
  /* ========== MY绯诲垪鏍峰紡 ========== */
  /* MY鍐呭甯冨眬 */
  .my-content-layout {
    border-radius: 14px ;
    max-width: 1200px ;
    margin: 0 auto ;
    display: flex ;
  }
  
  /* MY渚ц竟瀵艰埅 */
  .my-side-nav {
    width: 170px ;
    flex-shrink: 0 ;
  }
  
  .my-side-nav button {
    height: 100px ;
    font-size: 14px ;
    padding: 12px ;
    width: 100% ;
  }
  
  /* MY鍐呭鍖哄煙 */
  .my-content-area {
    padding: 25px 32px 25px 60px ;
    flex: 1 ;
  }
  
  /* MY鏍囬鏂囧瓧 */
  .my-title-text {
    font-size: 28px ;
  }
  
  /* MY鎻忚堪 */
  .my-desc {
    margin-right: 180px ;
    font-size: 14px ;
  }
  
  /* MY绔犺妭鏍囬 */
  .my-section-title {
    font-size: 18px ;
  }
  
  /* MY鍦烘櫙鍗＄墖 */
  .my-scenario-card {
    padding: 16px ;
    gap: 12px ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* MY鍦烘櫙缃戞牸 */
  .my-scenario-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 16px ;
    padding: 16px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* MY鍏煎鎬у崱鐗� */
  .my-compat-card {
    padding: 11px 9px ;
    gap: 6px ;
    display: flex ;
    align-items: center ;
  }
  
  /* MY鍏煎鎬у浘鏍� */
  .my-compat-icon {
    width: 22px ;
    height: 22px ;
    font-size: 10px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-compat-icon i {
    font-size: 10px ;
  }
  
  /* MY鍏煎鎬ф枃瀛� */
  .my-compat-text {
    font-size: 12px ;
  }
  
  /* MY鏍囬鍥炬爣 */
  .my-title-icon {
    width: 60px ;
    height: 60px ;
    font-size: 24px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-title-icon i {
    font-size: 24px ;
  }
  
  /* MY绔犺妭鍥炬爣 */
  .my-section-icon {
    width: 32px ;
    height: 32px ;
    font-size: 14px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .my-section-icon i {
    font-size: 14px ;
  }
  
  /* MY Tab鍐呭 */
  .my-tab-content {
    min-height: 400px ;
  }
  
  /* MY绔犺妭 */
  .my-section {
    max-width: 700px ;
  }
  
  /* ========== 鍥藉閫夋嫨鐩稿叧 ========== */
  /* 鍥藉缃戞牸 */
  .all-countries-grid {
    grid-template-columns: repeat(3, 1fr) ;
    gap: 10px ;
  }
  
  /* 鍥藉閾炬帴 */
  .country-link {
    padding: 8px 11px ;
    display: flex ;
    align-items: center ;
    gap: 8px ;
  }
  
  /* 鍥藉鏃楀笢 */
  .country-link-flag {
    width: 24px ;
    height: 17px ;
    flex-shrink: 0 ;
    object-fit: cover ;
  }
  
  /* 鍥藉鍚嶇О */
  .country-link-name {
    font-size: 13px ;
  }
  
  /* 鍥藉浠ｇ爜 */
  .country-code {
    font-size: 12px ;
  }
  
  /* ET鍥藉瀹瑰櫒 */
  .et-country-container {
    gap: 9px ;
    padding: 13px ;
  }
  
  /* ET鍥藉鍦嗗湀 */
  .et-country-circle {
    width: 52px ;
    height: 52px ;
    flex-shrink: 0 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  /* ET鍥藉鏃楀笢 */
  .et-country-flag {
    width: 28px ;
    height: 17px ;
    object-fit: cover ;
  }
  
  /* 鍏ㄧ悆鍥炬爣 */
  .global-icon {
    width: 24px ;
    height: 24px ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
  }
  
  .global-icon i {
    font-size: 16px ;
  }
  
  /* ET鍥藉鍚嶇О */
  .et-country-name {
    font-size: 13px ;
  }
  
  /* ========== 妯℃€佹 ========== */
  /* 妯℃€佹鍐呭 */
  .modal-content {
    max-width: 800px ;
    border-radius: 14px ;
  }
  
  /* 妯℃€佹澶撮儴 */
  .modal-header {
    padding: 16px 24px ;
  }
  
  .modal-header h2 {
    font-size: 19px ;
  }
  
  /* 妯℃€佹涓讳綋 */
  .modal-body {
    padding: 18px ;
  }
  
  /* ========== 鎸夐挳 ========== */
  /* 涓绘寜閽� */
  .btn-primary {
    padding: 10px 20px ;
    font-size: 14px ;
  }
  
  /* 娆¤鎸夐挳 */
  .btn-secondary,
  .btn-link {
    padding: 10px 20px ;
    font-size: 14px ;
  }
  
  /* 鎸夐挳鍥炬爣 */
  .btn-primary i,
  .btn-secondary i,
  .btn-link i {
    font-size: 14px ;
    margin-right: 6px ;
  }
  
  /* ========== 鍏朵粬鍙兘鐨勫鍣� ========== */
  /* 椤甸潰涓诲鍣� */
  .page-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 鍐呭瀹瑰櫒 */
  .content-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 鍖哄潡瀹瑰櫒 */
  .section-container {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 0 20px ;
  }
  
  /* 閰掑簵缃戞牸 */
  .hotel-grid {
    display: grid ;
    grid-template-columns: repeat(4, 1fr) ;
    gap: 18px ;
    padding: 18px ;
    max-width: 1200px ;
    margin: 0 auto ;
  }
  
  /* 閰掑簵鍗＄墖 */
  .hotel-card {
    padding: 16px ;
    max-width: 100% ;
    display: flex ;
    flex-direction: column ;
  }
  
  /* 閰掑簵鍗＄墖鍥剧墖瀹瑰櫒 */
  .hotel-card .image-container {
    height: 160px ;
    margin-bottom: 12px ;
  }
  
  /* ========== 娴姩鍥炬爣 ========== */
  /* Banner娴姩鍥炬爣 */

}


@media (width: 1440px) {
    
    
    .info-title h1 {
        font-size: 42px ;
    }
    
    .info-subtitle {
        font-size: 18px ;
    }
    
    .tab-panel {
        padding: 55px ;
        min-height: 460px ;
    }
    
    .panel-layout {
        gap: 40px ;
    }
    
    .panel-left,
    .panel-right {
        min-height: 500px ;
    }
    
    .case-img {
        height: 340px ;
    }
    
    .case-mask {
        padding: 20px ;
    }
    
    .case-mask h3 {
        font-size: 19px ;
    }
    
    .case-info {
        padding: 20px ;
    }
    
    .case-info h4 {
        font-size: 16px ;
        margin-bottom: 15px ;
    }
    
    .news-container {
        gap: 20px ;
    }
    
    .news-card {
        padding: 17px ;
    }
    
    .news-time {
        width: 62px ;
        height: 62px ;
    }
    
    .time-day {
        font-size: 23px ;
    }
    
    .news-text h4 {
        font-size: 14px ;
    }
    
    .news-text p {
        font-size: 13px ;
    }
}


/* 1440分辨率缩小适配 */
@media (min-width: 1440px) {
    .my-tab-wrapper {
        margin-bottom: 24px; /* 缩小底部间距 */
    }
    
    .my-tab-nav-container {
        margin-bottom: 24px; /* 缩小导航容器底部间距 */
    }
    
    .my-tab-nav,.tabs-nav {
        padding: 6px; /* 缩小导航内边距 */
        gap: 3px; /* 缩小选项间隙 */
    }
    
    .my-tab-item,.tab-btn {
        font-size: 14px; /* 缩小字体 */
        padding: 14px 24px; /* 缩小内边距 */
        min-width: 140px; /* 缩小选项最小宽度 */
        letter-spacing: 0.4px; /* 缩小字间距 */
    }
    .yzj-global-header {
  margin-bottom: 40px;
}
    .my-tab-item.active {
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.18); /* 缩小阴影范围 */
    }
}


/*宽屏*/
       


/* 基础重置 */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        overflow-x: hidden;
    }

    /* 容器 */
    .my-scenario-container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 12px;
    }

    /* 全局标题 */
    .yzj-global-header {
        margin-bottom: 25px;
        text-align: center;
    }

    .yzj-global-title {
        font-size: 24px;
        font-weight: 700;
        color: #1F2937;
    }

    /* Tab导航区域 */
    .my-tab-wrapper {
        margin-bottom: 15px;
    }

    .my-tab-nav-container {
        margin-bottom: 15px;
        padding: 0;
    }

    .my-tab-nav {
        background: #F5FAFF;
        border-radius: 80px;
        padding: 4px;
        display: flex;
        gap: 4px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .my-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .my-tab-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(37, 99, 235, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
        border-radius: 80px;
        z-index: 1;
    }

    .my-tab-item {
        background: transparent;
        border: none;
        border-radius: 76px;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        color: #6B7280;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        min-width: 90px;
        flex-shrink: 0;
        text-align: center;
        position: relative;
        z-index: 2;
        letter-spacing: 0.3px;
    }

    .my-tab-item:hover:not(.active) {
        color: #374151;
        transform: none;
    }

    .my-tab-item.active {
        background: #fff;
        color: #2968ED;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
        transform: none;
    }

    /* Tab内容区域 */
    .my-tab-content {
        background: #EFF5FD;
        border-radius: 12px;
        padding: 0;
        min-height: auto;
        display: none;
        border: 1px solid rgba(255,255,255,0.3);
        overflow: hidden;
        position: relative;
    }

    .my-tab-content.active {
        display: block;
        animation: tabFadeIn 0.6s ease-out;
    }

    @keyframes tabFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* 内容布局 - 改为垂直 */
    .my-content-layout {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        position: relative;
    }

    .my-content-layout::after {
        display: none;
    }

    /* 侧边导航 - 改为顶部横向 */
    .my-side-nav {
        width: 100%;
        position: relative;
        background: #EFF5FD;
        border-radius: 12px 12px 0 0;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .my-side-nav::-webkit-scrollbar {
        display: none;
    }

    .my-side-nav button {
        width: auto;
        height: 50px;
        min-width: 100px;
        flex-shrink: 0;
        background: #EFF5FD;
        border: none;
        font-size: 13px;
        font-weight: 600;
        color: #4B5563;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        transition: all 0.3s ease;
        position: relative;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* 移除所有分割线 */
    .my-side-nav button::after {
        display: none !important;
    }

    .my-side-nav button:has(+ button.active)::after {
        display: none !important;
    }

    /* 选中状态 - 底部蓝条 */
    .my-side-nav button.active {
        background: #EFF5FD;
        color: #2968ED;
    }

    .my-side-nav button.active::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        height: 3px;
        background: #2968ED;
        z-index: 1;
    }

    /* 悬停状态 */
    .my-side-nav button:hover:not(.active) {
        background: #EFF5FD;
        color: #2968ED;
        transform: none;
    }

    .my-side-nav button:hover:not(.active)::before {
        display: none;
    }

    /* 内容区域 */
    .my-content-area {
        width: 100%;
        padding: 20px 15px;
        background: #EFF5FD;
        border-radius: 0 0 12px 12px;
        position: relative;
        overflow: hidden;
    }

    /* 隐藏所有背景图 */
    .my-content-area::before,
    .my-content-area::after {
        display: none !important;
    }

    .my-content-area.hotel-bg::before,
    .my-content-area.cross-bg::before,
    .my-content-area.enterprise-bg::before {
        display: none !important;
    }

    /* 内容面板 */
    .my-content-panel {
        display: none;
        position: relative;
        z-index: 3;
    }

    .my-content-panel.active {
        display: block;
    }

    /* 标题区域 */
    .my-title-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .my-title-icon {
        width: 50px;
        height: 50px;
        background-color: #F36249;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        font-size: 22px;
        color: white;
        margin-bottom: 10px;
        box-shadow: 0 4px 12px rgba(243,98,73,0.3);
    }

    .my-title-text {
        font-size: 22px;
        font-weight: 700;
        color: #1F2937;
        line-height: 1.3;
    }

    .my-title-link {
        color: #1F2937;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .my-title-link:hover {
        color: #2968ED;
    }

    /* 描述区域 */
    .my-desc {
        font-size: 14px;
        line-height: 1.6;
        color: #374151;
        padding: 0;
        margin-bottom: 15px;
        margin-right: 0;
    }

    .my-learn-more {
        margin-top: 10px;
    }

    .my-learn-more a {
        color: #2968ED;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }

    .my-learn-more a:hover {
        color: #0066CC;
        transform: none;
    }

    /* 分区设计 */
    .my-section {
        margin-bottom: 25px;
        width: 100%;
        max-width: 100%;
    }

    .my-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        padding: 10px 0;
    }

    .my-section-icon {
        width: 30px;
        height: 30px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
    }

    .my-section-title {
        font-size: 17px;
        font-weight: 700;
        color: #1F2937;
        margin: 0;
    }

    /* 场景网格 - 单列 */
    .my-scenario-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
        padding: 12px;
        width: 100%;
    }

    .my-scenario-card {
        padding: 15px;
        border-radius: 10px;
        background: white;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        transition: none;
        cursor: pointer;
        min-width: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-card:hover {
        background: white;
        transform: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-scenario-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 18px;
        flex-shrink: 0;
        transition: none;
    }

    .my-scenario-card:hover .my-scenario-icon {
        transform: none;
        box-shadow: none;
    }

    .my-scenario-content {
        flex: 1;
        min-width: 0;
    }

    .my-scenario-title {
        font-size: 15px;
        font-weight: 700;
        color: #1F2937;
        margin: 0 0 5px 0;
        transition: none;
        word-wrap: break-word;
    }

    .my-scenario-card:hover .my-scenario-title {
        color: #1F2937;
    }

    .my-scenario-desc {
        font-size: 13px;
        color: #6B7280;
        line-height: 1.5;
        margin: 0;
        word-wrap: break-word;
    }

    /* 兼容网格 - 2列 */
    .my-compat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        background: rgba(255,255,255,0.5);
        border-radius: 10px;
        padding: 12px;
        width: 100%;
    }

    .my-compat-card {
        padding: 12px 8px;
        border-radius: 8px;
        text-align: center;
        font-size: 12px;
        font-weight: 600;
        color: #4B5563;
        border: 1px solid #F3F4F6;
        transition: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        min-width: 0;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    .my-compat-card:hover {
        transform: none;
        border-color: #F3F4F6;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        background: white;
    }

    .my-compat-icon {
        width: 28px;
        height: 28px;
        background: linear-gradient(135deg, #2968ED, #3B82F6);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 12px;
        transition: none;
        flex-shrink: 0;
    }

    .my-compat-card:hover .my-compat-icon {
        transform: none;
        box-shadow: none;
    }

    .my-compat-text {
        transition: none;
        font-size: 12px;
        word-wrap: break-word;
        text-align: center;
        line-height: 1.3;
        color: #4B5563;
    }

    .my-compat-card:hover .my-compat-text {
        color: #4B5563;
    }

    /* VS卡片区域 */
    .vs-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 0 0 40px 0;
        background: transparent;
    }

    .vs-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        margin: 0 auto;
    }

    .vs-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .vs-card {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        background: #F5F9FE;
        border-radius: 10px;
        transition: none;
    }

    .vs-link:hover .vs-card {
        transform: none;
        box-shadow: none;
    }

    .vs-icon-box {
        flex-shrink: 0;
    }

    .vs-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: none;
    }

    .vs-link:nth-child(1) .vs-icon {
        background: #E8EDFF;
    }

    .vs-link:nth-child(1) .vs-icon i {
        color: #4A70FF;
    }

    .vs-link:nth-child(2) .vs-icon {
        background: #EBEAFF;
    }

    .vs-link:nth-child(2) .vs-icon i {
        color: #6A4BFF;
    }

    .vs-link:nth-child(3) .vs-icon {
        background: #E4F9F9;
    }

    .vs-link:nth-child(3) .vs-icon i {
        color: #00C7A9;
    }

    .vs-link:nth-child(4) .vs-icon {
        background: #EBF6FF;
    }

    .vs-link:nth-child(4) .vs-icon i {
        color: #29A3FA;
    }

    .vs-link:hover .vs-icon {
        transform: none;
    }

    .vs-icon i {
        font-size: 14px;
        transition: none;
    }

    .vs-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .vs-title {
        font-size: 16px;
        font-weight: 600;
        color: #394F81;
        margin: 0;
        letter-spacing: 0.2px;
        transition: none;
    }

    .vs-link:hover .vs-title {
        color: #394F81;
    }

    .vs-desc {
        font-size: 13px;
        line-height: 1.6;
        color: #7B889C;
        margin: 0;
    }
}

/* 576px以下 - 小屏手机 */
@media (max-width: 576px) {
    .my-scenario-container {
        margin: 15px auto;
        padding: 0 10px;
    }

    .yzj-global-title {
        font-size: 20px;
    }

    .my-tab-nav {
        padding: 3px;
        gap: 3px;
    }

    .my-tab-item {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }

    .my-side-nav button {
        height: 45px;
        min-width: 85px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .my-content-area {
        padding: 15px 12px;
    }

    .my-title-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
    }

    .my-title-text {
        font-size: 20px;
    }

    .my-desc {
        font-size: 13px;
    }

    .my-section {
        margin-bottom: 20px;
    }

    .my-section-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .my-section-title {
        font-size: 16px;
    }

    .my-scenario-grid {
        gap: 10px;
        padding: 10px;
    }

    .my-scenario-card {
        padding: 12px;
        gap: 10px;
    }

    .my-scenario-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .my-scenario-title {
        font-size: 14px;
    }

    .my-scenario-desc {
        font-size: 12px;
    }

    .my-compat-grid {
        gap: 8px;
        padding: 10px;
    }

    .my-compat-card {
        padding: 10px 6px;
        gap: 6px;
    }

    .my-compat-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .my-compat-text {
        font-size: 11px;
    }

    .vs-card {
        padding: 12px;
        gap: 10px;
    }

    .vs-title {
        font-size: 15px;
    }

    .vs-desc {
        font-size: 12px;
    }
}

/* 375px以下 - 超小屏 */
@media (max-width: 375px) {
    .yzj-global-title {
        font-size: 18px;
    }

    .my-tab-item {
        padding: 7px 10px;
        font-size: 11px;
        min-width: 70px;
    }

    .my-side-nav button {
        min-width: 75px;
        font-size: 11px;
        padding: 8px 10px;
    }

    .my-title-text {
        font-size: 18px;
    }

    .my-section-title {
        font-size: 15px;
    }

    .my-scenario-title {
        font-size: 13px;
    }

    .my-scenario-desc {
        font-size: 11px;
    }

    .my-compat-text {
        font-size: 10px;
    }

    .vs-title {
        font-size: 14px;
    }

    .vs-desc {
        font-size: 11px;
    }
}

.section-wrapper1 {

    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    animation: containerPulse 15s infinite ease-in-out;
}

/* 容器整体脉动动画 */
@keyframes containerPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 50px rgba(58, 158, 254, 0.05) inset;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 60px rgba(58, 158, 254, 0.1) inset;
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 50px rgba(58, 158, 254, 0.05) inset;
    }
}
/* 动态背景效果 - 增强容器氛围 */
.section-wrapper1::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(58, 158, 254, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatLarge 25s infinite ease-in-out;
}

.section-wrapper1::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(58, 158, 254, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatMedium 20s infinite ease-in-out;
    animation-delay: 3s;
}

/* 背景浮动动画 */
@keyframes floatLarge {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-40px) translateX(20px); }
    50% { transform: translateY(0) translateX(40px); }
    75% { transform: translateY(40px) translateX(20px); }
    100% { transform: translateY(0) translateX(0); }
}

@keyframes floatMedium {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(30px) translateX(-20px); }
    50% { transform: translateY(0) translateX(-40px); }
    75% { transform: translateY(-30px) translateX(-20px); }
    100% { transform: translateY(0) translateX(0); }
}
        