body {
  
    font-family: Montserrat !important;
 
}

 /* ===== 侧边导航栏样式 (完全独立) ===== */
        .sidebar-nav {
            width: 280px;
            flex-shrink: 0;
        }

        .sidebar-nav .nav-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* 基础链接样式 */
        .sidebar-nav .nav-link {
            display: block;
            padding: 18px 25px;
            color: #333333;
            text-decoration: none;
            font-size: 15px;
            border-left: 3px solid transparent;
            transition: all 0.2s ease;
        }

        /* 当前激活 / 关于环世 特殊样式 */
        .sidebar-nav .nav-link.active {
            color: #1890ff;
            border-left-color: #1890ff;
            background: #f0f7ff;
        }

        /* 悬停效果 (可选, 提升交互) */
        .sidebar-nav .nav-link:hover {
            background: #f5f9ff;
            border-left-color: #1890ff;
            color: #1890ff;
        }

        /* 如果你想要和其他链接严格一致，可以不加额外类，但是这里完全保留你提供的激活样式 
           注意: .nav-link.active 已经包含 #1890ff, 左边框蓝, 背景浅蓝 */
		   
		   
		    /* 下拉菜单样式 */
      .dropdown {
        position: relative;
        display: inline-block;
      }
      
      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        background: white;
        min-width: 600px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid #e8e8e8;
        padding: 20px;
      }
      
      .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid white;
        z-index: 1001;
      }
      
      .dropdown-menu::after {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #e8e8e8;
        z-index: 1000;
      }
      
      .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
      }
      
      .dropdown-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
      }
      
      .dropdown-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 12px 15px;
        color: #333;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 13px;
        text-align: left;
        border: 1px solid transparent;
        gap: 12px;
            line-height: 25px;
      }
      
      .dropdown-item:hover {
        background: #f8f9fa;
        color: #e26640;
        border-color: #e8e8e8;
        transform: translateY(-2px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      }
      
      .dropdown-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        flex-shrink: 0;
      }
      
      .dropdown-toggle {
        cursor: pointer;
      }
      
      /* 确保下拉菜单在导航栏中正确显示 */
      .style_navs__tGyqm .dropdown {
        position: relative;
      }
      
      .style_navs__tGyqm .dropdown-menu {
        top: 40px;
        min-width: 650px;
      }
      
      .style_navs__tGyqm .dropdown-menu::before,
      .style_navs__tGyqm .dropdown-menu::after {
        left: 50%;
        transform: translateX(-50%);
      }
      
      /* 移动端适配 */
      @media (max-width: 768px) {
        .dropdown-menu {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          border: none;
          display: none;
          min-width: 100%;
          padding: 10px;
          left: 0;
          transform: none !important;
        }
        
        .dropdown-menu::before,
        .dropdown-menu::after {
          display: none;
        }
        
        .dropdown-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }
        
        .dropdown-item {
          padding: 10px 8px;
          font-size: 12px;
          gap: 8px;
        }
        
        .dropdown-icon {
          width: 24px;
          height: 24px;
          flex-shrink: 0;
        }
        
        .dropdown:hover .dropdown-menu {
          display: block;
        }
      }
      
      /* 小屏幕适配 */
       @media (max-width: 480px) {
         .dropdown-grid {
           grid-template-columns: 1fr;
         }
       }
       
       /* 模块二图片动画 - 移入和移出效果 */
       .home_module-two__YEhm_ .slide-in-left {
         opacity: 0;
         transform: translateX(-100px);
         transition: all 0.6s ease-out;
       }
       
       .home_module-two__YEhm_.animate-active .slide-in-left {
         opacity: 1;
         transform: translateX(0);
       }
       
       .home_module-two__YEhm_ .slide-in-left-delayed {
         opacity: 0;
         transform: translateX(-100px);
         transition: all 0.6s ease-out 0.3s;
       }
       
       .home_module-two__YEhm_.animate-active .slide-in-left-delayed {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 右边文字动画 - 移入和移出效果 */
       .home_module-two__YEhm_ .slide-in-right {
         opacity: 0;
         transform: translateX(100px);
         transition: all 0.6s ease-out 0.5s;
       }
       
       .home_module-two__YEhm_.animate-active .slide-in-right {
         opacity: 1;
         transform: translateX(0);
       }
       
       .home_module-two__YEhm_ .slide-in-right-delayed {
         opacity: 0;
         transform: translateX(100px);
         transition: all 0.6s ease-out 0.8s;
       }
       
       .home_module-two__YEhm_.animate-active .slide-in-right-delayed {
         opacity: 1;
         transform: translateX(0);
       }
       

       
       /* 滚动触发动画 */
       .home_module-two__YEhm_ {
         opacity: 0;
         transition: opacity 0.3s ease;
       }
       
       .home_module-two__YEhm_.animate {
         opacity: 1;
       }
       
       /* 模块三波浪文字动画 */
       .home_module-three__XdkNp .texty.top span {
         opacity: 0;
         transform: translateY(-50px) rotateX(-90deg);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       .home_module-three__XdkNp.animate-active .texty.top span {
         opacity: 1;
         transform: translateY(0) rotateX(0);
       }
       
       /* 波浪效果 - 每个字母延迟显示 */
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(1) { transition-delay: 0.1s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(2) { transition-delay: 0.15s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(3) { transition-delay: 0.2s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(4) { transition-delay: 0.25s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(5) { transition-delay: 0.3s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(6) { transition-delay: 0.35s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(7) { transition-delay: 0.4s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(8) { transition-delay: 0.45s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(9) { transition-delay: 0.5s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(10) { transition-delay: 0.55s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(11) { transition-delay: 0.6s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(12) { transition-delay: 0.65s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(13) { transition-delay: 0.7s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(14) { transition-delay: 0.75s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(15) { transition-delay: 0.8s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(16) { transition-delay: 0.85s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(17) { transition-delay: 0.9s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(18) { transition-delay: 0.95s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(19) { transition-delay: 1.0s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(20) { transition-delay: 1.05s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(21) { transition-delay: 1.1s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(22) { transition-delay: 1.15s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(23) { transition-delay: 1.2s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(24) { transition-delay: 1.25s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(25) { transition-delay: 1.3s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(26) { transition-delay: 1.35s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(27) { transition-delay: 1.4s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(28) { transition-delay: 1.45s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(29) { transition-delay: 1.5s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(30) { transition-delay: 1.55s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(31) { transition-delay: 1.6s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(32) { transition-delay: 1.65s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(33) { transition-delay: 1.7s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(34) { transition-delay: 1.75s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(35) { transition-delay: 1.8s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(36) { transition-delay: 1.85s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(37) { transition-delay: 1.9s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(38) { transition-delay: 1.95s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(39) { transition-delay: 2.0s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(40) { transition-delay: 2.05s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(41) { transition-delay: 2.1s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(42) { transition-delay: 2.15s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(43) { transition-delay: 2.2s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(44) { transition-delay: 2.25s; }
       .home_module-three__XdkNp.animate-active .texty.top span:nth-child(45) { transition-delay: 2.3s; }
       
       /* 模块三滚动触发动画 */
       .home_module-three__XdkNp {
         opacity: 0;
         transition: opacity 0.3s ease;
       }
       
       .home_module-three__XdkNp.animate {
         opacity: 1;
       }
       
       /* 模块三center-box单独动画 */
       .center-box-animate {
         opacity: 0;
         transform: scale(0.8) translateY(50px);
         transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
       }
       
       .center-box-animate.animate-active {
         opacity: 1;
         transform: scale(1) translateY(0);
       }
       
       /* 标题和副标题打字机下落动画 */
       .home_mainTitle__sJ0im span,
       .home_subTitle__hJVVx span {
         opacity: 0;
         transform: translateY(-30px);
         display: inline-block;
         transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span,
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span {
         opacity: 1;
         transform: translateY(0);
       }
       
       /* 打字机效果 - 每个字符延迟显示 */
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(1) { transition-delay: 0.1s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(2) { transition-delay: 0.15s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(3) { transition-delay: 0.2s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(4) { transition-delay: 0.25s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(5) { transition-delay: 0.3s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(6) { transition-delay: 0.35s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(7) { transition-delay: 0.4s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(8) { transition-delay: 0.45s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(9) { transition-delay: 0.5s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(10) { transition-delay: 0.55s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(11) { transition-delay: 0.6s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(12) { transition-delay: 0.65s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(13) { transition-delay: 0.7s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(14) { transition-delay: 0.75s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(15) { transition-delay: 0.8s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(16) { transition-delay: 0.85s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(17) { transition-delay: 0.9s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(18) { transition-delay: 0.95s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(19) { transition-delay: 1.0s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(20) { transition-delay: 1.05s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(21) { transition-delay: 1.1s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(22) { transition-delay: 1.15s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(23) { transition-delay: 1.2s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(24) { transition-delay: 1.25s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(25) { transition-delay: 1.3s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(26) { transition-delay: 1.35s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(27) { transition-delay: 1.4s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(28) { transition-delay: 1.45s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(29) { transition-delay: 1.5s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(30) { transition-delay: 1.55s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(31) { transition-delay: 1.6s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(32) { transition-delay: 1.65s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(33) { transition-delay: 1.7s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(34) { transition-delay: 1.75s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(35) { transition-delay: 1.8s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(36) { transition-delay: 1.85s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(37) { transition-delay: 1.9s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(38) { transition-delay: 1.95s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(39) { transition-delay: 2.0s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(40) { transition-delay: 2.05s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(41) { transition-delay: 2.1s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(42) { transition-delay: 2.15s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(43) { transition-delay: 2.2s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(44) { transition-delay: 2.25s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(45) { transition-delay: 2.3s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(46) { transition-delay: 2.35s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(47) { transition-delay: 2.4s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(48) { transition-delay: 2.45s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(49) { transition-delay: 2.5s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(50) { transition-delay: 2.55s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(51) { transition-delay: 2.6s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(52) { transition-delay: 2.65s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(53) { transition-delay: 2.7s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(54) { transition-delay: 2.75s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(55) { transition-delay: 2.8s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(56) { transition-delay: 2.85s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(57) { transition-delay: 2.9s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(58) { transition-delay: 2.95s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(59) { transition-delay: 3.0s; }
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span:nth-child(60) { transition-delay: 3.05s; }
       
       /* 副标题延迟动画 - 与标题同时开始 */
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(1) { transition-delay: 0.1s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(2) { transition-delay: 0.15s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(3) { transition-delay: 0.2s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(4) { transition-delay: 0.25s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(5) { transition-delay: 0.3s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(6) { transition-delay: 0.35s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(7) { transition-delay: 0.4s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(8) { transition-delay: 0.45s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(9) { transition-delay: 0.5s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(10) { transition-delay: 0.55s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(11) { transition-delay: 0.6s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(12) { transition-delay: 0.65s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(13) { transition-delay: 0.7s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(14) { transition-delay: 0.75s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(15) { transition-delay: 0.8s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(16) { transition-delay: 0.85s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(17) { transition-delay: 0.9s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(18) { transition-delay: 0.95s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(19) { transition-delay: 1.0s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(20) { transition-delay: 1.05s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(21) { transition-delay: 1.1s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(22) { transition-delay: 1.15s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(23) { transition-delay: 1.2s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(24) { transition-delay: 1.25s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(25) { transition-delay: 1.3s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(26) { transition-delay: 1.35s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(27) { transition-delay: 1.4s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(28) { transition-delay: 1.45s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(29) { transition-delay: 1.5s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(30) { transition-delay: 1.55s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(31) { transition-delay: 1.6s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(32) { transition-delay: 1.65s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(33) { transition-delay: 1.7s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(34) { transition-delay: 1.75s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(35) { transition-delay: 1.8s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(36) { transition-delay: 1.85s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(37) { transition-delay: 1.9s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(38) { transition-delay: 1.95s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(39) { transition-delay: 2.0s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(40) { transition-delay: 2.05s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(41) { transition-delay: 2.1s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(42) { transition-delay: 2.15s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(43) { transition-delay: 2.2s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(44) { transition-delay: 2.25s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(45) { transition-delay: 2.3s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(46) { transition-delay: 2.35s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(47) { transition-delay: 2.4s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(48) { transition-delay: 2.45s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(49) { transition-delay: 2.5s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(50) { transition-delay: 2.55s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(51) { transition-delay: 2.6s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(52) { transition-delay: 2.65s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(53) { transition-delay: 2.7s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(54) { transition-delay: 2.75s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(55) { transition-delay: 2.8s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(56) { transition-delay: 2.85s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(57) { transition-delay: 2.9s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(58) { transition-delay: 2.95s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(59) { transition-delay: 3.0s; }
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span:nth-child(60) { transition-delay: 3.05s; }
       
       /* 模块三标题文字从左滑入动画 */
       .home_module-three__XdkNp.animate .home_mainTitle__sJ0im span {
         opacity: 0;
         transform: translateX(-50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       .home_module-three__XdkNp.animate-active .home_mainTitle__sJ0im span {
         opacity: 1;
         transform: translateX(0);
       }
       
       .home_module-three__XdkNp.animate .home_subTitle__hJVVx span {
         opacity: 0;
         transform: translateX(-50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       .home_module-three__XdkNp.animate-active .home_subTitle__hJVVx span {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 轮播图切换动画 - 所有图片都完全显示 */
       .home_module-three__XdkNp .slick-slide {
         transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
         opacity: 1;
       }
       
       .home_module-three__XdkNp .slick-slide.slick-active {
         z-index: 10;
       }
       
       .home_module-four__mJhaF .slick-slide {
         transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
         opacity: 1;
       }
       
       .home_module-four__mJhaF .slick-slide.slick-active {
         z-index: 10;
       }
       
       /* 模块四滚动动画 - 文字标题从左滑入 */
       #module-four-animate.animate .home_left-panel___aQ_0 h4 span {
         opacity: 0;
         transform: translateX(-50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 模块四文字标题打字机效果 - 从左滑入 */
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(1) { transition-delay: 0.1s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(2) { transition-delay: 0.15s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(3) { transition-delay: 0.2s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(4) { transition-delay: 0.25s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(5) { transition-delay: 0.3s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(6) { transition-delay: 0.35s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(7) { transition-delay: 0.4s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(8) { transition-delay: 0.45s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(9) { transition-delay: 0.5s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(10) { transition-delay: 0.55s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(11) { transition-delay: 0.6s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(12) { transition-delay: 0.65s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(13) { transition-delay: 0.7s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(14) { transition-delay: 0.75s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(15) { transition-delay: 0.8s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(16) { transition-delay: 0.85s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(17) { transition-delay: 0.9s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(18) { transition-delay: 0.95s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(19) { transition-delay: 1.0s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 h4 span:nth-child(20) { transition-delay: 1.05s; }
       
       /* 模块四列表项动画 - 独立于模块三 */
       #module-four-animate.animate .home_left-panel___aQ_0 .home_sub-list__rBo15 li {
         opacity: 0;
         transform: translateX(-30px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-four-animate.animate-active .home_left-panel___aQ_0 .home_sub-list__rBo15 li {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 模块四列表项延迟动画 */
       #module-four-animate.animate-active .home_left-panel___aQ_0 .home_sub-list__rBo15 li:nth-child(1) { transition-delay: 1.1s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 .home_sub-list__rBo15 li:nth-child(2) { transition-delay: 1.2s; }
       #module-four-animate.animate-active .home_left-panel___aQ_0 .home_sub-list__rBo15 li:nth-child(3) { transition-delay: 1.3s; }
       
       /* 模块四左侧面板整体动画 - 从左边滑入 */
       #module-four-animate.animate .home_left-panel___aQ_0 {
         opacity: 0;
         transform: translateX(-100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-four-animate.animate-active .home_left-panel___aQ_0 {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 模块四右侧图片从右边滑入动画 - 独立于其他模块 */
       #module-four-animate.animate .module-four-slide-in {
         opacity: 0;
         transform: translateX(100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-four-animate.animate-active .module-four-slide-in {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 模块四右侧图片延迟动画 */
       #module-four-animate.animate-active .module-four-slide-in.home_mainBg__IaqIA {
         transition-delay: 0.3s;
       }
       
       #module-four-animate.animate-active .module-four-slide-in.home_mobile-temp__lgxZP {
         transition-delay: 0.5s;
       }
       
       /* 模块五产品列表样式 - 优化版 */
       .home_module-five__service {
         background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
         padding: 100px 0;
         position: relative;
         overflow: hidden;
       }
       
       
       
       .product-grid {
         display: grid;
         grid-template-columns: repeat(3, 1fr);
         gap: 20px;
         margin-top: 20px;
       }
       
       .product-item {
         background: #ffffff;
         padding: 20px 15px;
         border-radius: 0;
         box-shadow: none;
         border: 1px solid #e8e8e8;
         transition: none;
         text-decoration: none;
         color: inherit;
         display: block;
         text-align: center;
         position: relative;
         overflow: hidden;
       }
       
       .product-item:hover {
         background: #f8f9fa;
         border-color: #e26640;
         transform: none;
         text-decoration: none;
         color: inherit;
       }
       
       .product-icon {
         font-size: 36px;
         margin-bottom: 15px;
         display: block;
         transition: none;
         position: relative;
         z-index: 2;
       }
       
       .product-icon img {
         width: 100% !important;
        
         object-fit: contain;
         border-radius: 0;
         background: none;
         padding: 0;
         box-shadow: none;
         transition: none;
         border: none;
       }
       
       .product-item h5 {
         font-size: 18px;
         font-weight: 600;
         color: #2d3748;
         margin-bottom: 12px;
         letter-spacing: -0.2px;
         position: relative;
         display: inline-block;
         line-height: 1.4;
       }
       
       /* Tag标签样式优化 - 一行一个布局 */
       .product-item p {
         font-size: 16px;
         color: #4a5568;
         line-height: 1.8;
         margin: 0;
         font-weight: 500;
         position: relative;
         padding: 0;
         min-height: auto;
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 10px;
         width: 100%;
       }
       
       .product-item p::before {
         content: none;
       }
       
       /* 单个tag标签样式 - 一行一个 */
       .product-item p span {
         background: linear-gradient(135deg, #e26640 0%, #ff8c69 100%);
         color: white;
         padding: 10px 20px;
         border-radius: 25px;
         font-size: 14px;
         font-weight: 600;
         letter-spacing: 0.5px;
         box-shadow: 0 2px 8px rgba(226, 102, 64, 0.3);
         transition: all 0.3s ease;
         display: block;
         margin: 0;
         position: relative;
         overflow: hidden;
         width: 100%;
         text-align: center;
         box-sizing: border-box;
       }
       
       .product-item p span::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;
       }
       
       .product-item:hover p span {
         transform: translateY(-2px);
         box-shadow: 0 6px 20px rgba(226, 102, 64, 0.4);
       }
       
       .product-item:hover p span::before {
         left: 100%;
       }
       
       /* 多tag标签容器 */
       .product-item .tag-container {
         display: flex;
         flex-direction: column;
         align-items: center;
         gap: 10px;
         margin-top: 10px;
         width: 100%;
       }
       
       /* 空tag状态 */
       .product-item p:empty::before {
         content: '暂无标签';
         color: #a0aec0;
         font-style: italic;
         font-size: 13px;
       }
       
       .service-title {
         font-size: 36px;
         font-weight: 600;
         color: #e26640;
         text-align: center;
         margin-bottom: 20px;
         letter-spacing: -0.5px;
         position: relative;
         display: block;
         width: 100%;
       }
       
       .service-intro {
         font-size: 18px;
         color: #4a5568;
         text-align: center;
         line-height: 1.6;
         margin-bottom: 40px;
         max-width: 800px;
         margin-left: auto;
         margin-right: auto;
         padding: 0 20px;
       }
       
       /* 模块五滚动动画 - 整体一起加载 */
       #module-five-animate.animate .home_left-panel__service {
         opacity: 0;
         transform: translateX(-100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-five-animate.animate-active .home_left-panel__service {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 模块五右侧图片从右边滑入动画 */
       #module-five-animate.animate .module-five-slide-in {
         opacity: 0;
         transform: translateX(100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-five-animate.animate-active .module-five-slide-in {
         opacity: 1;
         transform: translateX(0);
         transition-delay: 0.3s;
       }
       
       /* Counter Area模块动画 - 与模块六保持一致 */
       #counter-area-animate.animate .counter-slide-in {
         opacity: 0;
         transform: translateY(50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .counter-slide-in {
         opacity: 1;
         transform: translateY(0);
       }
       
       /* Counter Area模块计数器动画 */
       #counter-area-animate.animate .counter {
         opacity: 0;
         transform: translateY(30px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .counter {
         opacity: 1;
         transform: translateY(0);
       }
       
       /* Counter Area模块图标动画 */
       #counter-area-animate.animate .counter_icon {
         opacity: 0;
         transform: scale(0.8);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .counter_icon {
         opacity: 1;
         transform: scale(1);
       }
       
       /* Counter Area模块标题动画 */
       #counter-area-animate.animate .inner_counter_area h2 {
         opacity: 0;
         transform: translateY(20px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .inner_counter_area h2 {
         opacity: 1;
         transform: translateY(0);
       }
       
       /* Counter Area模块背景图片动画 */
       #counter-area-animate.animate .counter_area {
         opacity: 0;
         transform: scale(1.1);
         transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .counter_area {
         opacity: 1;
         transform: scale(1);
       }
       
       /* Counter Area模块数字计数动画 */
       #counter-area-animate.animate .counter {
         opacity: 0;
         transform: translateY(30px) scale(0.8) rotate(-10deg);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .counter {
         opacity: 1;
         transform: translateY(0) scale(1) rotate(0deg);
         animation: counterNumberAnimation 2s ease-out forwards;
       }
       
       @keyframes counterNumberAnimation {
         0% {
           transform: scale(0.5) rotate(-30deg);
           opacity: 0;
           text-shadow: 0 0 20px rgba(226, 102, 64, 0.8);
         }
         30% {
           transform: scale(1.3) rotate(5deg);
           opacity: 1;
           text-shadow: 0 0 30px rgba(226, 102, 64, 1);
         }
         60% {
           transform: scale(0.9) rotate(-2deg);
           opacity: 0.9;
           text-shadow: 0 0 15px rgba(226, 102, 64, 0.6);
         }
         80% {
           transform: scale(1.1) rotate(1deg);
           opacity: 1;
           text-shadow: 0 0 10px rgba(226, 102, 64, 0.4);
         }
         100% {
           transform: scale(1) rotate(0deg);
           opacity: 1;
           text-shadow: 0 0 0 rgba(226, 102, 64, 0);
         }
       }
       
       /* 数字单位动画 */
       #counter-area-animate.animate .inner_counter_sub_cont span {
         opacity: 0;
         transform: translateY(20px) scale(0.7);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #counter-area-animate.animate-active .inner_counter_sub_cont span {
         opacity: 1;
         transform: translateY(0) scale(1);
         animation: counterUnitAnimation 1.2s ease-out forwards;
       }
       
       @keyframes counterUnitAnimation {
         0% {
           transform: scale(0.5);
           opacity: 0;
         }
         50% {
           transform: scale(1.2);
           opacity: 1;
         }
         100% {
           transform: scale(1);
           opacity: 1;
         }
       }
       
       /* Counter Area模块延迟动画 */
       #counter-area-animate.animate-active .counter_area { 
         transition-delay: 0.1s; 
         animation-delay: 0.1s;
       }
       #counter-area-animate.animate-active .main_counter:nth-child(1) { transition-delay: 0.3s; }
       #counter-area-animate.animate-active .main_counter:nth-child(2) { transition-delay: 0.5s; }
       #counter-area-animate.animate-active .main_counter:nth-child(3) { transition-delay: 0.7s; }
       #counter-area-animate.animate-active .main_counter:nth-child(4) { transition-delay: 0.9s; }
       
       /* 第一个计数器动画延迟 */
       #counter-area-animate.animate-active .main_counter:nth-child(1) .counter { 
         transition-delay: 0.4s; 
         animation-delay: 0.8s; 
       }
       #counter-area-animate.animate-active .main_counter:nth-child(1) .inner_counter_sub_cont span { 
         transition-delay: 0.5s; 
         animation-delay: 1.2s; 
       }
       
       /* 第二个计数器动画延迟 */
       #counter-area-animate.animate-active .main_counter:nth-child(2) .counter { 
         transition-delay: 0.6s; 
         animation-delay: 1.0s; 
       }
       #counter-area-animate.animate-active .main_counter:nth-child(2) .inner_counter_sub_cont span { 
         transition-delay: 0.7s; 
         animation-delay: 1.4s; 
       }
       
       /* 第三个计数器动画延迟 */
       #counter-area-animate.animate-active .main_counter:nth-child(3) .counter { 
         transition-delay: 0.8s; 
         animation-delay: 1.2s; 
       }
       #counter-area-animate.animate-active .main_counter:nth-child(3) .inner_counter_sub_cont span { 
         transition-delay: 0.9s; 
         animation-delay: 1.6s; 
       }
       
       /* 第四个计数器动画延迟 */
       #counter-area-animate.animate-active .main_counter:nth-child(4) .counter { 
         transition-delay: 1.0s; 
         animation-delay: 1.4s; 
       }
       #counter-area-animate.animate-active .main_counter:nth-child(4) .inner_counter_sub_cont span { 
         transition-delay: 1.1s; 
         animation-delay: 1.8s; 
       }
       
       #counter-area-animate.animate-active .counter_icon { transition-delay: 0.2s; }
       #counter-area-animate.animate-active .inner_counter_area h2 { transition-delay: 0.6s; }
       
       /* home_carouselWrap__2VH5w 幻灯样式修复 */
       .home_carouselWrap__2VH5w {
         width: 100%;
         overflow: hidden;
         margin: 30px 0;
       }
       
       .home_carouselContent__L3uom {
         width: 100%;
         max-width: 1200px;
         margin: 0 auto;
       }
       
       .home_carouselWrap__2VH5w .ant-carousel {
         width: 100%;
       }
       
       .home_carouselWrap__2VH5w .slick-slider {
         width: 100%;
       }
       
       .home_carouselWrap__2VH5w .slick-list {
         width: 100%;
         overflow: hidden;
       }
       
       .home_carouselWrap__2VH5w .slick-track {
         display: flex;
         align-items: center;
       }
       
       .home_carouselWrap__2VH5w .slick-slide {
         width: 100% !important;
         max-width: 100% !important;
         flex-shrink: 0;
       }
       
       .home_carouselWrap__2VH5w .slick-slide img {
         width: 100% !important;
         height: auto !important;
         max-width: 100% !important;
         min-width: 100% !important;
         display: block !important;
         position: static !important;
         inset: auto !important;
         margin: 0 auto !important;
         border-radius: 8px;
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
       }
       
       .home_carouselWrap__2VH5w .slick-slide > div {
         width: 100%;
         height: 100%;
       }
       
       .home_carouselWrap__2VH5w .slick-slide > div > span {
         width: 100% !important;
         height: auto !important;
         display: block !important;
         position: relative !important;
       }
       
       .home_carouselWrap__2VH5w .slick-slide > div > span > span {
         width: 100% !important;
         height: auto !important;
         display: block !important;
       }
       
       /* 幻灯导航按钮样式 */
       .home_carouselWrap__2VH5w .slick-prev,
       .home_carouselWrap__2VH5w .slick-next {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         z-index: 10;
         background: rgba(226, 102, 64, 0.8);
         border: none;
         width: 40px;
         height: 40px;
         border-radius: 50%;
         color: white;
         font-size: 18px;
         cursor: pointer;
         transition: all 0.3s ease;
       }
       
       .home_carouselWrap__2VH5w .slick-prev {
         left: 20px;
       }
       
       .home_carouselWrap__2VH5w .slick-next {
         right: 20px;
       }
       
       .home_carouselWrap__2VH5w .slick-prev:hover,
       .home_carouselWrap__2VH5w .slick-next:hover {
         background: rgba(226, 102, 64, 1);
         transform: translateY(-50%) scale(1.1);
       }
       
       /* 幻灯指示器样式 */
       .home_carouselWrap__2VH5w .slick-dots {
         position: absolute;
         bottom: 20px;
         left: 50%;
         transform: translateX(-50%);
         display: flex;
         gap: 8px;
         list-style: none;
         margin: 0;
         padding: 0;
       }
       
       .home_carouselWrap__2VH5w .slick-dots li {
         margin: 0;
       }
       
       .home_carouselWrap__2VH5w .slick-dots button {
         width: 10px;
         height: 10px;
         border-radius: 50%;
         background: rgba(255, 255, 255, 0.5);
         border: none;
         cursor: pointer;
         transition: all 0.3s ease;
         font-size: 0;
       }
       
       .home_carouselWrap__2VH5w .slick-dots .slick-active button {
         background: rgba(226, 102, 64, 1);
         transform: scale(1.2);
       }
       
       /* 移动端适配 - 价格表风格 */
       @media (max-width: 1200px) {
         .product-grid {
           grid-template-columns: repeat(3, 1fr);
           gap: 15px;
         }
         
         .product-item {
           padding: 12px 8px;
         }
         
         .service-title {
           font-size: 32px;
           margin-bottom: 15px;
         }
         
         .product-icon img {
           height: 50px !important;
         }
         
         .product-item h5 {
           font-size: 16px;
         }
         
         .product-item p span {
           font-size: 13px;
           padding: 8px 16px;
         }
       }
       
       @media (max-width: 768px) {
         .product-grid {
           grid-template-columns: repeat(2, 1fr);
           gap: 12px;
         }
         
         .product-item {
           padding: 10px 6px;
         }
         
         .service-title {
           font-size: 28px;
           margin-bottom: 15px;
         }
         
         .product-icon {
           margin-bottom: 8px;
         }
         
         .product-icon img {
           height: 40px !important;
         }
         
         .product-item h5 {
           font-size: 14px;
           margin-bottom: 10px;
         }
         
         .product-item p span {
           font-size: 12px;
           padding: 6px 12px;
         }
         
         .product-item p {
           font-size: 11px;
         }
         
         .home_module-five__service {
           padding: 60px 0;
         }
       }
       
       @media (max-width: 480px) {
         .product-grid {
           grid-template-columns: repeat(1, 1fr);
           gap: 10px;
         }
         
         .product-item {
           padding: 8px 4px;
         }
         
         .service-title {
           font-size: 24px;
           margin-bottom: 15px;
         }
         
         .product-icon {
           margin-bottom: 6px;
         }
         
         .product-icon img {
           height: 35px !important;
         }
         
         .product-item h5 {
           font-size: 13px;
           margin-bottom: 8px;
         }
         
         .product-item p span {
           font-size: 11px;
           padding: 5px 10px;
         }
         
         .product-item p {
           font-size: 10px;
         }
         
         .home_module-five__service {
           padding: 40px 0;
         }
       }
       

       
       /* 全新关于我们模块样式 */
       .about_us_section_wrapper {
         min-height: 600px;
         background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
         padding: 100px 0;
         position: relative;
         overflow: hidden;
         opacity: 1;
       }
       
       .about_us_section_content_container {
         max-width: 1200px;
         margin: 0 auto;
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 80px;
         align-items: center;
         padding: 0 20px;
       }
       
       .about_us_section_left_panel {
         position: relative;
         height: 400px;
         border-radius: 20px;
         overflow: hidden;
         box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
       }
       
       .about_us_section_background_area {
         width: 100%;
         height: 100%;
         position: relative;
         display: flex;
         align-items: center;
         justify-content: center;
         overflow: hidden;
       }
       
       .about_us_section_background_area::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.3);
         z-index: 1;
       }
       
       .about_us_section_play_button_wrapper {
         position: relative;
         z-index: 10;
       }
       
       .about_us_section_video_play_button {
         width: 80px;
         height: 80px;
         border-radius: 50%;
         background: rgba(255, 255, 255, 0.95);
         border: none;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         position: relative;
         transition: all 0.3s ease;
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
       }
       
       .about_us_section_video_play_button:hover {
         transform: scale(1.1);
         background: rgba(255, 255, 255, 1);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
       }
       
       .about_us_section_video_play_button svg {
         width: 30px;
         height: 30px;
         color: #e26640;
         margin-left: 4px;
       }
       
       .about_us_section_pulse_ring {
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         width: 100px;
         height: 100px;
         border: 2px solid rgba(255, 255, 255, 0.6);
         border-radius: 50%;
         animation: about_us_section_pulse_animation 2s infinite;
       }
       
       .about_us_section_pulse_ring_delayed {
         animation-delay: 1s;
         width: 120px;
         height: 120px;
       }
       
       @keyframes about_us_section_pulse_animation {
         0% {
           transform: translate(-50%, -50%) scale(0.8);
           opacity: 1;
         }
         100% {
           transform: translate(-50%, -50%) scale(1.4);
           opacity: 0;
         }
       }
       
       .about_us_section_right_panel {
         padding: 0 20px;
       }
       
       .about_us_section_company_title {
         font-size: 30px;
         font-weight: bold;
         color: #e26640;
         margin-bottom: 30px;
         position: relative;
       }
       
       .about_us_section_company_title::after {
         content: '';
         position: absolute;
         bottom: -10px;
         left: 0;
         width: 80px;
         height: 4px;
         background: linear-gradient(90deg, #e26640, #f28c6a);
         border-radius: 2px;
       }
       
       .about_us_section_company_description {
         font-size: 18px;
         line-height: 1.8;
         color: #666;
         margin-bottom: 20px;
         text-align: justify;
       }
       
       /* 关于我们模块动画 - 与模块四保持一致 */
       #about_us_section_animate_id.about_us_section_animate .about_us_section_text_content .about_us_section_company_title span {
         opacity: 0;
         transform: translateX(-50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_title span {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 关于我们模块文字标题打字机效果 - 从左滑入 */
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_title span:nth-child(1) { transition-delay: 0.1s; }
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_title span:nth-child(2) { transition-delay: 0.15s; }
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_title span:nth-child(3) { transition-delay: 0.2s; }
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_title span:nth-child(4) { transition-delay: 0.25s; }
       
       /* 关于我们模块列表项动画 */
       #about_us_section_animate_id.about_us_section_animate .about_us_section_text_content .about_us_section_company_description {
         opacity: 0;
         transform: translateX(-30px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_description {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 关于我们模块列表项延迟动画 */
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_description:nth-child(1) { transition-delay: 0.6s; }
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_text_content .about_us_section_company_description:nth-child(2) { transition-delay: 0.8s; }
       
       /* 关于我们模块左侧面板整体动画 - 从左边滑入 */
       #about_us_section_animate_id.about_us_section_animate .about_us_section_slide_in_left {
         opacity: 0;
         transform: translateX(-100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_slide_in_left {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 关于我们模块右侧面板整体动画 - 从右边滑入 */
       #about_us_section_animate_id.about_us_section_animate .about_us_section_right_panel {
         opacity: 0;
         transform: translateX(100px);
         transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_right_panel {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 关于我们模块右侧面板延迟动画 */
       #about_us_section_animate_id.about_us_section_animate_active .about_us_section_right_panel {
         transition-delay: 0.3s;
       }
       
       /* 移动端适配 */
       @media (max-width: 1024px) {
         .about_us_section_content_container {
           grid-template-columns: 1fr;
           gap: 50px;
         }
         
         .about_us_section_left_panel {
           height: 300px;
         }
         
         .about_us_section_company_title {
           font-size: 36px;
         }
         
         .about_us_section_company_description {
           font-size: 16px;
         }
       }
       
       @media (max-width: 768px) {
         .about_us_section_wrapper {
           padding: 60px 0;
           min-height: 500px;
         }
         
         .about_us_section_left_panel {
           height: 250px;
         }
         
         .about_us_section_video_play_button {
           width: 60px;
           height: 60px;
         }
         
         .about_us_section_video_play_button svg {
           width: 24px;
           height: 24px;
         }
         
         .about_us_section_pulse_ring {
           width: 80px;
           height: 80px;
         }
         
         .about_us_section_pulse_ring_delayed {
           width: 100px;
           height: 100px;
         }
         
         .about_us_section_company_title {
           font-size: 32px;
         }
         
         .about_us_section_company_description {
           font-size: 15px;
         }
       }
       
       @media (max-width: 480px) {
         .about_us_section_wrapper {
           padding: 40px 0;
           min-height: 400px;
         }
         
         .about_us_section_content_container {
           padding: 0 15px;
           gap: 30px;
         }
         
         .about_us_section_left_panel {
           height: 200px;
           border-radius: 15px;
         }
         
         .about_us_section_video_play_button {
           width: 50px;
           height: 50px;
         }
         
         .about_us_section_video_play_button svg {
           width: 20px;
           height: 20px;
         }
         
         .about_us_section_pulse_ring {
           width: 70px;
           height: 70px;
         }
         
         .about_us_section_pulse_ring_delayed {
           width: 90px;
           height: 90px;
         }
         
         .about_us_section_company_title {
           font-size: 28px;
         }
         
         .about_us_section_company_description {
           font-size: 14px;
         }
       }
       
       /* 视频播放弹窗样式 */
       .about_us_section_video_modal {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.8);
         display: none;
         align-items: center;
         justify-content: center;
         z-index: 9999;
         opacity: 0;
         transition: opacity 0.3s ease;
       }
       
       .about_us_section_video_modal.show {
         display: flex;
         opacity: 1;
       }
       
       .about_us_section_video_modal_content {
         position: relative;
         width: 90%;
         max-width: 90%;
         background: #fff;
         border-radius: 12px;
         overflow: hidden;
         box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
       }
       
       .about_us_section_video_modal_close {
         position: absolute;
         top: 15px;
         right: 15px;
         width: 40px;
         height: 40px;
         background: rgba(0, 0, 0, 0.5);
         border: none;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         z-index: 10;
         transition: all 0.3s ease;
       }
       
       .about_us_section_video_modal_close:hover {
         background: rgba(0, 0, 0, 0.7);
         transform: scale(1.1);
       }
       
       .about_us_section_video_modal_close svg {
         width: 20px;
         height: 20px;
         color: #fff;
       }
       
       .about_us_section_video_container {
         width: 100%;
         padding-top: 56.25%; /* 16:9 宽高比 */
         position: relative;
       }
       
       .about_us_section_video {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         object-fit: cover;
       }
       
       /* 移动端适配 */
       @media (max-width: 768px) {
         .about_us_section_video_modal_content {
           width: 95%;
           margin: 20px;
         }
         
         .about_us_section_video_modal_close {
           top: 10px;
           right: 10px;
           width: 35px;
           height: 35px;
         }
         
         .about_us_section_video_modal_close svg {
           width: 18px;
           height: 18px;
         }
       }
       
       @media (max-width: 480px) {
         .about_us_section_video_modal_content {
           width: 98%;
           margin: 10px;
         }
         
         .about_us_section_video_modal_close {
           top: 8px;
           right: 8px;
           width: 30px;
           height: 30px;
         }
         
         .about_us_section_video_modal_close svg {
           width: 16px;
           height: 16px;
         }
       }
       
       /* 新闻模块样式 */
       .home_module-six__3FCz9 {
         min-height: 600px;
         background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
         padding: 100px 0;
         position: relative;
         overflow: hidden;
       }
       
       .news-content {
         max-width: 1200px;
         margin: 0 auto;
         padding: 0 20px;
       }
       
       .news-header {
         text-align: center;
         margin-bottom: 50px;
       }
       
       .news-title {
             font-weight: 700;
    font-size: 36px;
         color: #e26640;
         margin-bottom: 20px;
         position: relative;
       }
       
       
       
       .news-subtitle {
         font-size: 18px;
         color: #666;
         margin: 0;
         line-height: 1.6;
       }
       
       .news-grid {
         display: grid;
         grid-template-columns: 2fr 1fr;
         gap: 60px;
         align-items: start;
       }
       
       .news-list {
         display: flex;
         flex-direction: column;
         gap: 30px;
       }
       
       .news-item {
         background: #ffffff;
         padding: 30px;
         border-radius: 12px;
         box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
         border: 1px solid rgba(226, 102, 64, 0.1);
         transition: all 0.3s ease;
       }
       
       .news-item:hover {
         transform: translateY(-5px);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
         border-color: rgba(226, 102, 64, 0.2);
       }
       
       .news-date {
         font-size: 14px;
         color: #999;
         margin-bottom: 15px;
       }
       
       .news-item-title {
         font-size: 20px;
         font-weight: 600;
         color: #333;
         margin-bottom: 20px;
         line-height: 1.4;
       }
       
       .news-item-desc {
         font-size: 16px;
         color: #666;
         line-height: 1.6;
         margin-bottom: 25px;
       }
       
       .news-link {
         color: #e26640;
         text-decoration: none;
         font-weight: 500;
         transition: color 0.3s ease;
       }
       
       .news-link:hover {
         color: #d45a2a;
         text-decoration: underline;
       }
       
       .news-image {
         height: 490px;
         background: linear-gradient(135deg, #e26640 0%, #f28c6a 100%);
         border-radius: 12px;
         display: flex;
         align-items: center;
         justify-content: center;
         position: relative;
         overflow: hidden;
       }
       
       .news-image-content {
         text-align: center;
         color: white;
         padding: 40px;
       }
       
       .news-image-title {
         font-size: 28px;
         font-weight: bold;
         margin-bottom: 15px;
       }
       
       .news-image-desc {
         font-size: 16px;
         line-height: 1.6;
         opacity: 0.9;
       }
       
       /* 新闻模块动画 - 与模块四保持一致 */
       #module-six-animate.animate .news-title span {
         opacity: 0;
         transform: translateX(-50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
         display: inline-block;
       }
       
       #module-six-animate.animate-active .news-title span {
         opacity: 1;
         transform: translateX(0);
       }
       
       /* 新闻模块文字标题打字机效果 - 从左滑入 */
       #module-six-animate.animate-active .news-title span:nth-child(1) { transition-delay: 0.1s; }
       #module-six-animate.animate-active .news-title span:nth-child(2) { transition-delay: 0.15s; }
       #module-six-animate.animate-active .news-title span:nth-child(3) { transition-delay: 0.2s; }
       #module-six-animate.animate-active .news-title span:nth-child(4) { transition-delay: 0.25s; }
       
       /* 新闻模块副标题动画 */
       #module-six-animate.animate .news-subtitle {
         opacity: 0;
         transform: translateY(30px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-six-animate.animate-active .news-subtitle {
         opacity: 1;
         transform: translateY(0);
         transition-delay: 0.5s;
       }
       
       /* 新闻模块列表项动画 */
       #module-six-animate.animate .module-six-slide-in {
         opacity: 0;
         transform: translateY(50px);
         transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
       }
       
       #module-six-animate.animate-active .module-six-slide-in {
         opacity: 1;
         transform: translateY(0);
       }
       
       /* 新闻模块列表项延迟动画 */
       #module-six-animate.animate-active .news-item:nth-child(1) { transition-delay: 0.6s; }
       #module-six-animate.animate-active .news-item:nth-child(2) { transition-delay: 0.8s; }
       #module-six-animate.animate-active .news-item:nth-child(3) { transition-delay: 1.0s; }
       #module-six-animate.animate-active .news-image { transition-delay: 0.7s; }
       
       /* 移动端适配 */
       @media (max-width: 1024px) {
         .custom_about_us_module_content_container {
           grid-template-columns: 1fr;
           gap: 50px;
         }
         
         .custom_about_us_module_left_panel {
           height: 300px;
         }
         
         .custom_about_us_module_company_title {
           font-size: 36px;
         }
         
         .custom_about_us_module_company_description {
           font-size: 16px;
         }
       }
       
       @media (max-width: 768px) {
         .custom_about_us_module_wrapper {
           padding: 60px 0;
           min-height: 500px;
         }
         
         .custom_about_us_module_left_panel {
           height: 250px;
         }
         
         .custom_about_us_module_video_play_button {
           width: 60px;
           height: 60px;
         }
         
         .custom_about_us_module_video_play_button svg {
           width: 24px;
           height: 24px;
         }
         
         .custom_about_us_module_pulse_ring {
           width: 80px;
           height: 80px;
         }
         
         .custom_about_us_module_pulse_ring_delayed {
           width: 100px;
           height: 100px;
         }
         
         .custom_about_us_module_company_title {
           font-size: 32px;
         }
         
         .custom_about_us_module_company_description {
           font-size: 15px;
         }
       }
       
       @media (max-width: 480px) {
         .custom_about_us_module_wrapper {
           padding: 40px 0;
           min-height: 400px;
         }
         
         .custom_about_us_module_content_container {
           padding: 0 15px;
           gap: 30px;
         }
         
         .custom_about_us_module_left_panel {
           height: 200px;
           border-radius: 15px;
         }
         
         .custom_about_us_module_video_play_button {
           width: 50px;
           height: 50px;
         }
         
         .custom_about_us_module_video_play_button svg {
           width: 20px;
           height: 20px;
         }
         
         .custom_about_us_module_pulse_ring {
           width: 70px;
           height: 70px;
         }
         
         .custom_about_us_module_pulse_ring_delayed {
           width: 90px;
           height: 90px;
         }
         
         .custom_about_us_module_company_title {
           font-size: 28px;
         }
         
         .custom_about_us_module_company_description {
           font-size: 14px;
         }
         
         /* 新闻模块移动端适配 */
         .home_module-six__3FCz9 {
           padding: 40px 0;
           min-height: 500px;
         }
         
         .news-grid {
           grid-template-columns: 1fr;
           gap: 30px;
         }
         
         .news-item {
           padding: 20px;
         }
         
         .news-title {
           font-size: 32px;
         }
         
         .news-item-title {
           font-size: 18px;
         }
         
         .news-image {
           height: 250px;
         }
         
         .news-image-title {
           font-size: 24px;
         }
       }
       
       /* 首页幻灯片样式 */
       .home-slideshow-container {
         position: relative;
         width: 100%;
        
         overflow: hidden;
         margin-bottom: 20px;
       }
       
       .home-slideshow-slides {
         position: relative;
         width: 100%;
         height: 100%;
       }
       
       .home-slide {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         opacity: 0;
         transition: opacity 0.8s ease-in-out;
       }
       
       .home-slide.home-slide-active {
         opacity: 1;
       }
       
       .home-slide img {
         width: 100%;
         height: 100%;
         object-fit: cover;
       }
       
       .home-slideshow-controls {
         position: absolute;
         bottom: 20px;
         left: 50%;
         transform: translateX(-50%);
         display: flex;
         align-items: center;
         gap: 15px;
         background: rgba(0, 0, 0, 0.5);
         padding: 10px 15px;
         border-radius: 25px;
       }
       
       .home-slide-prev,
       .home-slide-next {
         background: rgba(255, 255, 255, 0.8);
         border: none;
         width: 35px;
         height: 35px;
         border-radius: 50%;
         cursor: pointer;
         font-size: 16px;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: all 0.3s ease;
       }
       
       .home-slide-prev:hover,
       .home-slide-next:hover {
         background: rgba(255, 255, 255, 1);
         transform: scale(1.1);
       }
       
       .home-slide-indicators {
         display: flex;
         gap: 8px;
       }
       
       .home-indicator {
         width: 10px;
         height: 10px;
         border-radius: 50%;
         background: rgba(255, 255, 255, 0.5);
         cursor: pointer;
         transition: all 0.3s ease;
       }
       
       .home-indicator.home-indicator-active {
         background: rgba(255, 255, 255, 1);
         transform: scale(1.2);
       }
       
       /* 移动端适配 */
       @media (max-width: 768px) {
         .home-slideshow-container {
           height: 300px;
         }
         
         .home-slideshow-controls {
           bottom: 10px;
           padding: 8px 12px;
           gap: 10px;
         }
         
         .home-slide-prev,
         .home-slide-next {
           width: 30px;
           height: 30px;
           font-size: 14px;
         }
         
         .home-indicator {
           width: 8px;
           height: 8px;
         }
       }
       
       @media (max-width: 480px) {
         .home-slideshow-container {
           height: 250px;
         }
       }
	   
	   /* 地图参数 */
	   .counter_area {
    padding: 280px 0;
    position: relative;
}
	    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }.main_counter {
    display: flex
;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
}.counter_icon i {
    font-size: 40px;
    width: 100px;
    height: 100px;
    display: block;
    color: var(--bgcolor);
    line-height: 80px;
    text-align: center;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: var(--titlecolor);
    border-radius: 50px 50px 50px 50px;
    transform: rotate(0deg);
    margin: 0px 20px 0px 0px;
}.inner_counter_area {
    position: relative;
}.text-center {
    text-align: center !important;
}.inner_counter_sub_cont {
 
    justify-content: start;
    align-items: baseline;
}.inner_counter_sub_cont h3, .inner_counter_sub_cont span {
    font-size: 36px;
    font-weight: 700;
    color: var(--bgcolor);
}.inner_counter_area h2 {
    font-size: 16px;
    font-weight: 600;
    margin-top: -5px;
    position: relative;
}   .rowxd {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex
;
    flex-wrap: wrap;
    margin-top: calc(-1* var(--bs-gutter-y));
    margin-right: calc(-.5* var(--bs-gutter-x));
    margin-left: calc(-.5* var(--bs-gutter-x));
}

.container1{
   position: relative;
    width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
}.counter_icon i {
    font-size: 40px;
    width: 100px;
    height: 100px;
    display: block;
    color: var(--bgcolor);
    line-height: 80px;
    text-align: center;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: #e47400;
    border-radius: 50px 50px 50px 50px;
    transform: rotate(0deg);
    margin: 0px 20px 0px 0px;
}



  .huanshi-about-page {
            width: 100%;
        }

        /* ----- 顶部banner (专用类) ----- */
        .huanshi-about-banner {
            width: 100%;
            height: 500px;
           
        }

        /* ----- 主体内容区域 (flex 布局) ----- */
        .huanshi-about-container {
            max-width: 1280px;
            margin: 40px auto;
            padding: 0 20px;
            display: flex;
            gap: 40px;
        }

        /* ----- 左侧边栏 (宽度固定) ----- */
        .huanshi-about-sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        /* 导航卡片 */
        .huanshi-about-navcard {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* 侧栏链接 - 基类 */
        .huanshi-about-navlink {
            display: block;
            padding: 18px 25px;
            text-decoration: none;
            font-size: 15px;
            border-left: 3px solid transparent;
            transition: background 0.15s, color 0.15s, border-color 0.15s;
        }

        /* 普通状态 (非激活) */
        .huanshi-about-navlink {
            color: #333;
            background: transparent;
        }

        /* 激活状态 (关于环世) */
        .huanshi-about-navlink.-active {
            color: #e26640;
            border-left-color: #e26640;
            background: #e266400f;
        }

        /* 悬停效果 */
        .huanshi-about-navlink:hover {
            background: #f5f9ff;
            border-left-color: #e26640;
            color: #e26640;
        }

        /* ----- 右侧主内容区 ----- */
        .huanshi-about-main {
            flex: 1;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 40px;
        }

        /* 主标题 */
        .huanshi-about-title {
            font-size: 32px;
            font-weight: 700;
            color: #05234d;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8e8e8;
        }

        /* ----- 合作伙伴栅格 (完全独立类名) ----- */
        .huanshi-partner-row {
            margin-left: -10px;
            margin-right: -10px;
            
            flex-wrap: wrap;
            row-gap: 20px;
        }

        .huanshi-partner-col {
            padding-left: 10px;
            padding-right: 10px;
            width: 25%;                /* 默认四列  */
            flex: 0 0 25%;
            max-width: 25%;
        }

        /* 合作伙伴图片 */
        .huanshi-partner-img {
            width: 100%;
            display: block;
            border: 1px solid #f0f0f0;
            border-radius: 4px;
            transition: 0.2s;
        }
        .huanshi-partner-img:hover {
            border-color: #1890ff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* 响应式调整 */
        @media screen and (max-width: 900px) {
            .huanshi-about-container {
                flex-direction: column;
            }
            .huanshi-about-sidebar {
                width: 100%;
            }
            .huanshi-partner-col {
                width: 33.333%;
                flex: 0 0 33.333%;
                max-width: 33.333%;
            }
        }

        @media screen and (max-width: 600px) {
            .huanshi-partner-col {
                width: 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }
            .huanshi-about-title {
                font-size: 28px;
            }
        }
		
		/* ----- 主体内容区域 (flex 布局) ----- */
        .huanshi-about-container {
            max-width: 1280px;
            margin: 40px auto;
            padding: 0 20px;
            display: flex;
            gap: 40px;
        }

        /* ----- 左侧边栏 (宽度固定) ----- */
        .huanshi-about-sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        /* 导航卡片 */
        .huanshi-about-navcard {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* 侧栏链接 - 基类 */
        .huanshi-about-navlink {
            display: block;
            padding: 18px 25px;
            text-decoration: none;
            font-size: 15px;
            border-left: 3px solid transparent;
            transition: background 0.15s, color 0.15s, border-color 0.15s;
        }

        /* 普通状态 (非激活) */
        .huanshi-about-navlink {
            color: #333;
            background: transparent;
        }

        /* 激活状态 (关于环世) */
        .huanshi-about-navlink.-active {
            color: #e26640;
            border-left-color: #e26640;
            background: #e266400f;
        }

        /* 悬停效果 */
        .huanshi-about-navlink:hover {
               background: #ffe3da;
    border-left-color: #e14d1f;
    color: #e26640;
        }

        /* ----- 右侧主内容区 ----- */
        .huanshi-about-main {
            flex: 1;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 40px;
        }

        /* 主标题 */
        .huanshi-about-title {
            font-size: 32px;
            font-weight: 700;
            color: #05234d;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e8e8e8;
        }

        /* ----- 合作伙伴栅格 (完全独立类名) ----- */
        .huanshi-partner-row {
            margin-left: -10px;
            margin-right: -10px;
            
            flex-wrap: wrap;
            row-gap: 20px;
        }

        .huanshi-partner-col {
            padding-left: 10px;
            padding-right: 10px;
            width: 25%;                /* 默认四列  */
            flex: 0 0 25%;
            max-width: 25%;
        }

        /* 合作伙伴图片 */
        .huanshi-partner-img {
            width: 100%;
            display: block;
            border: 1px solid #f0f0f0;
            border-radius: 4px;
            transition: 0.2s;
        }
        .huanshi-partner-img:hover {
            border-color: #1890ff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* 响应式调整 */
        @media screen and (max-width: 900px) {
            .huanshi-about-container {
                flex-direction: column;
            }
            .huanshi-about-sidebar {
                width: 100%;
            }
            .huanshi-partner-col {
                width: 33.333%;
                flex: 0 0 33.333%;
                max-width: 33.333%;
            }
        }

        @media screen and (max-width: 600px) {
            .huanshi-partner-col {
                width: 50%;
                flex: 0 0 50%;
                max-width: 50%;
            }
            .huanshi-about-title {
                font-size: 28px;
            }
        }
		
		
		
        /* 主容器：使用Grid布局 */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 默认3列 */
            gap: 20px; /* 项目之间的间距 */
            max-width: 1200px; /* 容器的最大宽度 */
            width: 100%;
        }

        /* 单个卡片样式 */
        .card {
            background-color: white;
            border-radius: 4px; /* 轻微圆角 */
            overflow: hidden; /* 确保内容不超出圆角范围 */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 添加阴影 */
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加悬停动画过渡 */
        }

        /* 卡片悬停效果 */
        .card:hover {
            transform: translateY(-5px); /* 向上轻微移动 */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* 加深阴影 */
        }

        /* 图片容器 */
        .image-container {
            width: 100%;
            height: 200px; /* 固定高度，保持统一 */
            overflow: hidden;
        }

        /* 图片样式 */
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 关键属性：让图片填满容器且不变形 */
            display: block;
        }

        /* 标题/说明文字样式 */
        .caption {
            padding: 15px;
            text-align: center;
            color: #333;
            font-size: 16px;
            line-height: 1.5;
        }

        /* --- 响应式设计 (适配小屏幕) --- */

        /* 当屏幕宽度小于900px时，变为2列 */
        @media (max-width: 900px) {
            .gallery-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* 当屏幕宽度小于600px时，变为1列 */
        @media (max-width: 600px) {
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
		
		
		/* ----- 通用PB分页条 ----- */
.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination a {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 3px;
    line-height: 20px;
}
.pagination a:hover {
  color: #e26640;
  border: 1px solid #e26640;
}
.pagination a.page-num-current {
  color: #fff;
  background: #e26640;
  border: 1px solid #e26640;
}


        /* 主容器 */
        .blog-container {
            max-width: 900px; /* 限制最大宽度，使阅读更舒适 */
            margin: 0 auto; /* 居中显示 */
            background-color: #fff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        /* 单个文章项 */
        .blog-post {
            display: flex; /* 使用Flexbox实现左右布局 */
            gap: 30px; /* 图片和内容之间的间距 */
            padding-bottom: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid #eee; /* 底部边框 */
        }

        /* 最后一个文章项去掉底部边框和间距 */
        .blog-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        /* 文章缩略图 */
        .post-thumbnail {
            flex: 0 0 220px; /* 固定宽度，不伸缩 */
            height: 150px;
            overflow: hidden;
            border-radius: 4px;
        }

        .post-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 关键属性：让图片填满容器且不变形 */
            display: block;
            transition: transform 0.3s ease;
        }

        /* 可选：悬停时图片轻微放大 */
        .blog-post:hover .post-thumbnail img {
            transform: scale(1.05);
        }

        /* 文章内容区域 */
        .post-content {
            flex: 1; /* 占据剩余空间 */
            display: flex;
            flex-direction: column;
            justify-content: center; /* 垂直居中内容 */
        }

        /* 文章标题 */
        .post-title {
            font-size: 20px;
            font-weight: bold;
            color: #222;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .post-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s ease;
        }

        .post-title a:hover {
            color: #007bff; /* 悬停时标题变色 */
        }

        /* 文章元信息 (日期等) */
        .post-meta {
            font-size: 14px;
            color: #888;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* 文章摘要 */
        .post-excerpt {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            text-align: justify; /* 两端对齐，使文本块更整齐 */
        }

        /* --- 响应式设计 (适配小屏幕) --- */
        @media (max-width: 768px) {
            .blog-container {
                padding: 20px;
            }

            .blog-post {
                flex-direction: column; /* 在小屏幕上改为上下布局 */
                gap: 15px;
            }

            .post-thumbnail {
                flex: 0 0 auto; /* 取消固定宽度 */
                width: 100%; /* 宽度占满 */
                height: 200px; /* 可以设置一个合适的高度 */
            }
            
            .post-content {
                justify-content: flex-start; /* 内容从顶部开始 */
            }
        }
		
		
		/* --- 基础重置与变量 --- */
:root {
    --lh-primary-color: #0056b3; /* 主色调：蓝色，可修改 */
    --lh-hover-color: #004494;
    --lh-text-color: #333;
    --lh-border-color: #ddd;
    --lh-bg-light: #f9f9f9;
    --lh-input-height: 45px;
}

.lh-contact-b {
    max-width: 1000px;
     
    padding: 40px;
    
    border-radius: 8px;
    
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    color: var(--lh-text-color);
}

/* --- 标题样式 --- */
.lh-public-h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
    text-align: center;
    font-weight: normal;
}

.lh-public-h3 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

/* --- 表单布局核心 (Flex/Grid) --- */
.lh-contact-item {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    gap: 20px; /* 项目之间的间距 */
}

.lh-contact-item li {
    display: flex;
    flex-direction: column; /* 标签在上，输入框在下 (或者并排，看下面调整) */
    position: relative;
}

/* 
   布局策略：
   姓名、电话、邮箱：各占 1/3 (在大屏幕上)
   留言区域：占满整行 
*/
.lh-contact-item li:nth-child(1),
.lh-contact-item li:nth-child(2),
.lh-contact-item li:nth-child(3) {
    flex: 1 1 30%; /* 最小宽度30%，自动增长 */
    min-width: 250px; /* 防止太窄 */
    flex-direction: row; /* 标签和输入框横向排列 */
    align-items: center; /* 垂直居中 */
    border-bottom: 1px solid var(--lh-border-color);
    padding-bottom: 10px;
}

.lh-contact-item li:nth-child(4) {
    flex: 1 1 100%; /* 占满整行 */
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
}

/* --- 标签 (Span) 样式 --- */
.lh-contact-item li span {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    white-space: nowrap; /* 防止文字换行 */
    margin-right: 15px;
    width: 50px; /* 固定标签宽度，对齐更整齐 */
    text-align: right;
}

/* --- 输入框与文本域通用样式 --- */
.lh-contact-item input[type="text"],
.lh-contact-item textarea {
    flex: 1; /* 占据剩余空间 */
    border: 1px solid transparent; /* 默认无边框，显得干净 */
    background-color: var(--lh-bg-light);
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
    border-radius: 4px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

/* 输入框获得焦点时的效果 */
.lh-contact-item input[type="text"]:focus,
.lh-contact-item textarea:focus {
    background-color: #fff;
    border-color: var(--lh-primary-color);
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

/* 文本域特有样式 */
.lh-contact-item textarea {
    height: 120px;
    resize: vertical; /* 允许垂直拉伸 */
    margin-bottom: 15px;
    display: block;
    width: 100%;
}

/* --- 提交按钮样式 --- */
.lh-contact-item li a {
    display: inline-block;
    background-color: var(--lh-primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    align-self: flex-end; /* 靠右对齐，或者用 margin-left: auto */
}

.lh-contact-item li a:hover {
    background-color: var(--lh-hover-color);
    transform: translateY(-2px);
}

.lh-contact-item li a:active {
    transform: translateY(0);
}

/* --- 响应式设计 (手机端适配) --- */
@media (max-width: 768px) {
    .lh-contact-b {
        padding: 20px;
        margin: 20px 10px;
    }

    .lh-contact-item li:nth-child(1),
    .lh-contact-item li:nth-child(2),
    .lh-contact-item li:nth-child(3) {
        flex: 1 1 100%; /* 手机上每个输入框占一行 */
        flex-direction: column; /* 改为上下结构：标签在上，输入框在下 */
        align-items: flex-start;
        border-bottom: none; /* 去掉下边框 */
        padding-bottom: 0;
        margin-bottom: 15px;
    }

    .lh-contact-item li span {
        width: auto;
        text-align: left;
        margin-right: 0;
        margin-bottom: 8px;
        display: block;
    }

    .lh-contact-item input[type="text"] {
        width: 100%;
    }
    
    .lh-contact-item li a {
        width: 100%; /* 手机上按钮全宽 */
        text-align: center;
        margin-top: 10px;
    }
}


/* 提交按钮样式 */
form button[type="submit"] {
    /* 布局与尺寸 */
    display: inline-block;
    padding: 12px 35px;       /* 上下内边距12px，左右35px */
    font-size: 16px;          /* 字体大小 */
    font-weight: 600;         /* 字体加粗 */
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;      /* 防止文字换行 */
    
    /* 颜色与背景 */
    color: #ffffff;           /* 文字颜色：白色 */
    background-color: #e26640; /* 背景颜色：专业蓝 (可修改) */
    border: none;             /* 去掉默认边框 */
    border-radius: 4px;       /* 圆角：4px */
    
    /* 交互效果 */
    cursor: pointer;          /* 鼠标变为手型 */
    transition: all 0.3s ease; /* 平滑过渡动画 */
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2); /* 轻微阴影 */
    
    /* 对齐方式 (如果需要在li内部靠右或居中，可取消下面注释) */
    /* margin-left: auto; */ 
    /* margin-top: 10px; */
}

/* 鼠标悬停时的效果 */
form button[type="submit"]:hover {
    background-color: #da3300; /* 背景变深 */
    transform: translateY(-2px); /* 微微上浮 */
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.3); /* 阴影加深 */
}

/* 鼠标按下时的效果 */
form button[type="submit"]:active {
    transform: translateY(0); /* 回到原位 */
    box-shadow: 0 2px 4px rgba(0, 86, 179, 0.2); /* 阴影变浅 */
}

/* 可选：移动端适配 - 让按钮在手机上占满宽度 */
@media (max-width: 768px) {
    form button[type="submit"] {
        width: 100%;
        padding: 15px 0;
    }
}



/* 主容器 - 使用 Flexbox 实现左右布局 */
.contact-section-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* 左侧联系信息区域 */
.contact-section-info {
    flex: 0 0 350px; /* 固定宽度 */
    background-color: #e26640; /* 深蓝色背景 */
    color: #ffffff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 单个联系项 */
.contact-item {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 30px;
}

/* 标签样式 (如"联系电话：") */
.contact-label {
    font-weight: 600;
    margin-right: 8px;
    opacity: 0.9;
}

/* 值样式 (具体的电话、地址等) */
.contact-value {
    font-weight: 400;
    opacity: 1;
}

/* 二维码区域 */
.contact-qr {
    text-align: center;
    margin-top: 20px;
}

.contact-qr img {
    width: 120px;
    height: 120px;
    background-color: #fff;
    padding: 5px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.contact-qr p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* 右侧地图图片区域 */
.contact-section-map {
    flex: 1; /* 占据剩余空间 */
    position: relative;
    min-height: 400px; /* 最小高度 */
}

.contact-section-map img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填满容器且不变形 */
    display: block;
}

/* --- 响应式设计 (手机端适配) --- */
@media (max-width: 768px) {
    .contact-section-wrapper {
        flex-direction: column; /* 改为上下布局 */
        margin: 20px 10px;
    }
    
    .contact-section-info {
        flex: none;
        width: 100%;
        padding: 30px 20px;
    }
    
    .contact-section-map {
        min-height: 300px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
}

.style_right__d7dq2 a {    color: #000000;     font-size: 16px;}


  /* --- 模块基础布局 --- */
  .home_module-five__service {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    background: #f9f9f9; 
  }

  .home_center-box__KnsKc {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .home_left-panel__service {
    text-align: center;
  }

  .svc-main-title {
   font-weight: 700;
    font-size: 36px;
    color: #e26640; 
    margin-bottom: 20px;
    text-align: center;
  }

  .svc-main-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- 滚动容器核心样式 --- */
  .svc-slider-wrapper {
    position: relative;
    padding: 0 50px; 
    box-sizing: border-box;
  }

  .product-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px 40px 5px;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }

  .product-grid::-webkit-scrollbar {
    display: none; 
  }

  /* --- 单个卡片样式 --- */
  .product-item {
    flex: 0 0 260px; 
    background: #ffffff;
    border-radius: 8px;
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    border: 1px solid transparent; 
  }

  .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(228, 116, 0, 0.15);
    border-color: rgba(228, 116, 0, 0.3);
  }

  /* --- 图标区域 (已移除悬停变色逻辑) --- */
  .product-icon {
    
    background: #fff3e0; /* 始终保持浅橙色背景 */
     
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    /* 移除了 transition 和 hover 变化 */
  }

  .product-icon img {
     
    object-fit: contain;
    /* 移除了 filter 变化 */
  }

  .product-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
  }

  /* --- 标签区域 (修改为一行一个) --- */
  .product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8; /* 增加行高让每行更清晰 */
    text-align: center;
    flex-grow: 1; 
    margin-bottom: 25px;
    width: 100%;
    /* 移除了 -webkit-line-clamp，允许无限行数 */
    display: block; 
  }

  .tag-line {
    display: block; /* 强制每个标签独占一行 */
    margin-bottom: 4px; /* 标签之间的间距 */
  }
  
  /* 如果没有标签，防止空白过大，可选 */
  .product-desc:empty {
    display: none;
  }

  /* --- “了解更多”按钮样式 --- */
  .svc-learn-more-btn {
    display: inline-block;
    padding: 8px 30px;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    
    /* 默认：白底，橙边，橙字 */
    background-color: #ffffff;
    border: 1px solid #e47400;
    color: #e47400;
  }

  /* 悬停：橙底，白字 */
  .svc-learn-more-btn:hover {
    background-color: #e47400;
    color: #ffffff;
    border-color: #e47400;
  }

  /* --- 左右导航箭头 --- */
  .svc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e47400;
    color: #e47400;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    outline: none;
  }

  .svc-prev { left: 0; }
  .svc-next { right: 0; }

  .svc-nav-btn:hover {
    background: #e47400;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
  }

  /* 移动端适配 */
  @media (max-width: 768px) {
    .svc-main-title { font-size: 32px; }
    .svc-slider-wrapper { padding: 0 40px; }
    .product-item { flex: 0 0 240px; }
    .svc-nav-btn { width: 36px; height: 36px; font-size: 16px; }
    .svc-prev { left: 0; }
    .svc-next { right: 0; }
  }
  
  .style_content__L07lE .style_contact__B85X55 {
    width: 255px;
    margin-top: 13px;
}
.style_content__L07lE .style_contact__B85X55 .style_tel___uQOp {
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
}.style_content__L07lE .style_contact__B85X55 .style_tel___uQOp h4 {
    color: #fff;
}

.contact-value a{
    color: #fff;
}
.styleuQOp {
    font-size: 14px;
    font-weight: 500;
    color: aliceblue;
        line-height: 30px;
}
.follow-company-icon {margin-top: 30px;}