
  /* ================== 【核心产品图修改接口】 ================== 
     请将下方 url('...') 内的图片网址替换为您在 Ueeshop 上传的真实风机/核心技术渲染图。
     建议尺寸：600px * 600px 正方形，白底或浅灰底 */
  .tech-visual-src {
    background-image: url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE114/2606/03/photo/2026060311483313922.png');
  }

  /* 基础容器 */
  .delta-tech-section {
    padding: 100px 20px;
    background-color: transparent; /* 完美契合您的浅色系网页背景 */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow: hidden;
  }
  
  /* 左右分栏 Flex 布局 */
  .delta-tech-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px; /* 宽裕的间距，打造国际化呼吸感 */
  }
  
  /* ================== 左侧立体图片区 ================== */
  .delta-tech-left {
    flex: 1;
    width: 50%;
    position: relative;
  }
  
  /* 底层淡淡的科技蓝色氛围晕光 */
  .tech-image-glow {
    position: absolute;
    top: 10%; left: 10%; width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(0, 93, 166, 0.08) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
  }
  
  /* 图片几何边框 */
  .tech-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 93, 166, 0.04);
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
  }
  
  /* 图片容器实体 */
  .tech-image-box {
    width: 100%;
    padding-top: 100%; /* 强制保持 1:1 完美正方形比例，绝不拉伸变形 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  /* ================== 右侧文案区 ================== */
  .delta-tech-right {
    flex: 1;
    width: 50%;
  }
  
  .tech-section-tag {
    font-size: 12px;
    color: #C1272E; /* 顶部小标签采用特色红，快速吸睛 */
    font-weight: 700;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 12px;
  }
  
  .tech-main-title {
    font-size: 38px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
  }
  
  .blue-text {
    color: #005da6; /* 核心词汇采用 Delta 蓝 */
  }
  
  .tech-main-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 40px 0;
  }
  
  /* ================== 2x2 技术模块网格 ================== */
  .tech-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* 单个微技术卡片 */
  .tech-mod-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }
  
  /* 卡片顶部隐藏红条 */
  .tech-card-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background-color: transparent;
    transition: background-color 0.3s ease;
  }
  
  /* 数字序号 */
  .tech-card-num {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: monospace;
  }
  
  /* 卡片内部小标题 */
  .tech-mod-card h4 {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: transform 0.3s ease;
  }
  
  /* ================== 智能 Hover 联动交互 ================== */
  
  /* 鼠标滑过整区时，左侧图片呈现精密微旋放大效果，契合风扇空气动力学 */
  .delta-tech-container:hover .tech-image-box {
    transform: scale(1.06) rotate(1.5deg);
  }
  
  /* 鼠标滑过单个技术小卡片 */
  .tech-mod-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 93, 166, 0.15);
    box-shadow: 0 10px 25px rgba(0, 93, 166, 0.05);
  }
  
  /* 卡片顶部红条激活 */
  .tech-mod-card:hover .tech-card-line {
    background-color: #C1272E; /* 激活点缀红 */
  }
  
  /* 文字向右平滑微移，增加推入感 */
  .tech-mod-card:hover h4 {
    color: #005da6; /* 激活 Delta 蓝 */
    transform: translateX(4px);
  }
  
  /* ================== 笔记本电脑自适应 (1024px 以下) ================== */
  @media (max-width: 1024px) {
    .delta-tech-section { padding: 70px 25px; }
    .delta-tech-container { gap: 40px; }
    .tech-main-title { font-size: 30px; }
    .tech-main-desc { margin-bottom: 30px; }
    .tech-mod-card { padding: 20px; }
    .tech-mod-card h4 { font-size: 14px; }
  }
  
  /* ================== 移动端手机完美适配 (768px 以下) ================== */
  @media (max-width: 768px) {
    .delta-tech-section { padding: 40px 15px; }
    
    /* 核心改动：打破横向左右布局，强制切换为上下垂直流动结构 */
    .delta-tech-container {
      flex-direction: column;
      gap: 35px;
    }
    
    .delta-tech-left, .delta-tech-right {
      width: 100%;
      flex: none;
    }
    
    /* 移动端图片适当缩小，防止太占空间 */
    .tech-image-frame {
      max-width: 450px;
      margin: 0 auto;
    }
    
    .tech-main-title { font-size: 26px; }
    .tech-main-desc { font-size: 14px; margin-bottom: 25px; }
    
    /* 技术模块在手机上变单列，消除一切拥挤，提高手指点击精准度 */
    .tech-modules-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    
    .tech-mod-card {
      padding: 18px 20px;
    }
  }
