/* ========== 关于我们区域增强样式 ========== */

@media (min-width: 1024px) {
  /* 整体容器布局 */
  .indxAboutus-v2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: center !important;
  }

  /* 左侧双图叠层布局 - 创意交互设计 */
  .about-image-col {
    position: relative !important;
    width: 100% !important;
    height: 500px !important; /* 固定容器高度 */
  }

  /* 第一张图 - 工厂外景 - 默认在上层 */
  .about-image-col .image-1 {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 90% !important; /* 稍微收窄，露出下层图片 */
    height: 400px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25) !important;
    z-index: 2 !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease, opacity 0.4s ease !important;
    cursor: pointer !important;
    animation: slideInFromLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
  }

  /* 第二张图 - 展厅内景 - 默认在下层 */
  .about-image-col .image-2 {
    position: absolute !important;
    top: 80px !important; /* 错开显示 */
    right: 0 !important;
    width: 90% !important;
    height: 400px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15) !important;
    z-index: 1 !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease, opacity 0.4s ease !important;
    cursor: pointer !important;
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
  }

  /* 悬停第一张图 - 它保持在上层，突出显示 */
  .about-image-col .image-1:hover {
    transform: translateX(-15px) scale(1.02) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.35) !important;
    animation: none; /* 悬停时禁用初始动画 */
    opacity: 1 !important; /* 确保悬停时完全不透明 */
    filter: none !important; /* 确保悬停时无模糊 */
  }

  /* 悬停第二张图 - 它提升到最上层，突出显示 */
  .about-image-col .image-2:hover {
    transform: translateX(15px) scale(1.02) !important;
    z-index: 10 !important;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.35) !important;
    animation: none; /* 悬停时禁用初始动画 */
    opacity: 1 !important; /* 确保悬停时完全不透明 */
    filter: none !important; /* 确保悬停时无模糊 */
  }

  /* 当悬停第一张图时，第二张图微微后退并降低透明度 */
  .about-image-col:has(.image-1:hover) .image-2:not(:hover) {
    opacity: 0.65 !important;
    transform: translateX(8px) scale(0.98) !important;
    z-index: 1 !important;
    filter: blur(1px) !important;
  }

  /* 当悬停第二张图时，第一张图微微后退并降低透明度 */
  .about-image-col:has(.image-2:hover) .image-1:not(:hover) {
    opacity: 0.65 !important;
    transform: translateX(-8px) scale(0.98) !important;
    z-index: 1 !important;
    filter: blur(1px) !important;
  }

  .about-image-col .image-1 img,
  .about-image-col .image-2 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease !important;
  }

  /* 图片悬停放大效果 */
  .about-image-col .image-1:hover img,
  .about-image-col .image-2:hover img {
    transform: scale(1.1) !important;
  }

  /* 初始加载动画 - 第一张图片从左侧淡入 */
  @keyframes slideInFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* 初始加载动画 - 第二张图片从右侧淡入 */
  @keyframes slideInFromRight {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* 蓝色渐变遮罩效果 */
  .about-image-col .image-1::before,
  .about-image-col .image-2::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, transparent 60%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .about-image-col .image-1:hover::before,
  .about-image-col .image-2:hover::before {
    opacity: 1 !important;
  }

  /* 图片标签 */
  .about-image-col .image-label {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    z-index: 2 !important;
    border: 2px solid rgba(0, 212, 255, 0.7) !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important; /* 防止标签干扰悬停交互 */
  }

  /* 标签悬停效果 */
  .about-image-col .image-1:hover .image-label,
  .about-image-col .image-2:hover .image-label {
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%) !important;
    border-color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6) !important;
  }

  /* 添加微妙的边缘发光效果 */
  .about-image-col .image-1:hover,
  .about-image-col .image-2:hover {
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.35),
                0 0 0 3px rgba(0, 212, 255, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
  }

  /* 右侧文字内容区域 */
  .about-content-col {
    padding-left: 20px !important;
  }

  /* 标题样式 */
  .about-title h2.cn {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.3 !important;
  }

  .about-title h3.en {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #666 !important;
    text-transform: capitalize !important;
    letter-spacing: 1.5px !important;
    opacity: 0.8 !important;
    margin-bottom: 35px !important;
  }

  /* 添加特色亮点列表样式 */
  .about-highlights {
    margin: 30px 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .about-highlights li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 18px !important;
    padding: 16px !important;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%) !important;
    border-radius: 12px !important;
    border-left: 4px solid #0066ff !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  }

  .about-highlights li:hover {
    transform: translateX(8px) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15) !important;
    border-left-color: #00d4ff !important;
  }

  .about-highlights .highlight-icon {
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3) !important;
  }

  .about-highlights .highlight-content {
    flex: 1 !important;
  }

  .about-highlights .highlight-content strong {
    display: block !important;
    color: #1a1a1a !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    line-height: 1.4 !important;
  }

  .about-highlights .highlight-content span {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    display: block !important;
  }

  /* 优化"了解更多"按钮 */
  .index-more a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 15px !important;
  }

  .index-more a::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s, height 0.6s !important;
  }

  .index-more a:hover::before {
    width: 300px !important;
    height: 300px !important;
  }

  .index-more a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5) !important;
  }

  .index-more a::after {
    content: '→' !important;
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
  }

  .index-more a:hover::after {
    transform: translateX(5px) !important;
  }
}

