@charset "UTF-8";

/* =========================================================================
   济南世通 - 高端极简工业风样式 (Jinan Shitong Minimalist Industrial CSS)
   核心要求: 大量留白(Negative Space)，严谨的排版，沉稳且有力量的色彩
   字体约束: Noto Sans SC (中文) + Inter (英文/数字), 免版权限制
========================================================================= */

:root {
  /* Colors */
  --bg-color: #0d0f12;           /* 极暗深空灰 - 背景体 */
  --surface-color: #171a1f;      /* 表面卡片颜色 */
  --text-primary: #f2f5f8;       /* 主文本白 */
  --text-secondary: #8b95a1;     /* 次要文本灰 */
  --accent-color: #fca311;       /* 工业橙 - 警示、动力、高亮 */
  --accent-hover: #e5940f;
  
  /* Typography */
  --font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* 默认配置主题变量映射 */
  --border-color: rgba(255, 255, 255, 0.05);
  --hero-overlay: linear-gradient(rgba(13, 15, 18, 0.6), rgba(13, 15, 18, 0.85));
  --nav-bg: rgba(13, 15, 18, 0.85);
  --nav-border: rgba(255, 255, 255, 0.05);
  --footer-bg: #090b0d;
  --logo-filter: drop-shadow(0px 0px 8px rgba(252, 163, 17, 0.35)) drop-shadow(0px 0px 20px rgba(252, 163, 17, 0.12));
  --logo-filter-hover: drop-shadow(0px 0px 12px rgba(252, 163, 17, 0.6)) drop-shadow(0px 0px 28px rgba(252, 163, 17, 0.25));
}

/* =========================================================================
   多主题配置切换配色体系
   ========================================================================= */

/* 方案一：经典深邃 (默认暗黑橙主题) */
.theme-dark-orange {
  --bg-color: #0d0f12;
  --surface-color: #171a1f;
  --text-primary: #f2f5f8;
  --text-secondary: #8b95a1;
  --accent-color: #fca311;
  --accent-hover: #e5940f;
  --border-color: rgba(255, 255, 255, 0.05);
  --hero-overlay: linear-gradient(rgba(13, 15, 18, 0.6), rgba(13, 15, 18, 0.85));
  --nav-bg: rgba(13, 15, 18, 0.85);
  --nav-border: rgba(255, 255, 255, 0.05);
  --footer-bg: #090b0d;
  --logo-filter: drop-shadow(0px 0px 8px rgba(252, 163, 17, 0.35)) drop-shadow(0px 0px 20px rgba(252, 163, 17, 0.12));
  --logo-filter-hover: drop-shadow(0px 0px 12px rgba(252, 163, 17, 0.6)) drop-shadow(0px 0px 28px rgba(252, 163, 17, 0.25));
}

/* 方案二：晨曦白玉 (高保真明亮科技蓝主题 - 科技冷灰蓝与纯白悬浮面板对比) */
.theme-light-blue {
  --bg-color: #f1f5f9;           /* 冰冷质感的淡冷灰蓝底色 */
  --surface-color: #ffffff;      /* 纯白色浮空毛玻璃卡片 */
  --text-primary: #0f172a;       /* 强对比深 Slate 灰主文字 */
  --text-secondary: #475569;     /* 强对比次要灰字 */
  --accent-color: #0284c7;       /* 亮科技天蓝色 */
  --accent-hover: #0369a1;
  --border-color: #e2e8f0;       /* 灰白色冷调细边 */
  --hero-overlay: linear-gradient(rgba(241, 245, 249, 0.45), rgba(241, 245, 249, 0.85));
  --nav-bg: rgba(241, 245, 249, 0.85);
  --nav-border: #e2e8f0;
  --footer-bg: #e2e8f0;          /* 块面深沉灰底页脚 */
  --logo-filter: drop-shadow(0px 0px 6px rgba(2, 132, 199, 0.15));
  --logo-filter-hover: drop-shadow(0px 0px 10px rgba(2, 132, 199, 0.35));
}

/* 方案三：香槟暖阳 (高保真温馨明亮浅暖金主题 - 燕麦暖黄与乳白色浮空面板对比) */
.theme-light-warm {
  --bg-color: #f5efe6;           /* 极高品质的暖调麦芽燕麦底色 */
  --surface-color: #fdfbf7;      /* 温馨象牙白浮空卡片表面 */
  --text-primary: #292524;       /* 偏暖调的深石灰主文字 */
  --text-secondary: #57534e;     /* 暖灰色次要字 */
  --accent-color: #b45309;       /* 浓郁重金属质感的高级琥珀暖金色 */
  --accent-hover: #92400e;
  --border-color: #eaddd0;       /* 温馨麦芽沙金细线 */
  --hero-overlay: linear-gradient(rgba(245, 239, 230, 0.5), rgba(245, 239, 230, 0.88));
  --nav-bg: rgba(245, 239, 230, 0.85);
  --nav-border: #eaddd0;
  --footer-bg: #eaddd0;          /* 温暖沙底色页脚 */
  --logo-filter: drop-shadow(0px 0px 6px rgba(180, 83, 9, 0.15));
  --logo-filter-hover: drop-shadow(0px 0px 10px rgba(180, 83, 9, 0.35));
}

/* 方案四：竹雅翡翠 (柔和清新爽朗浅亮绿主题 - 竹青浅绿底色与翠白面板对比) */
.theme-light-green {
  --bg-color: #e2ede5;           /* 清新自然、富有呼吸感的竹青浅绿底色 */
  --surface-color: #fcfdfc;      /* 极素净高雅的翠白卡片 */
  --text-primary: #111827;       /* 深黛绿主文字 */
  --text-secondary: #374151;     /* 松石灰次要字 */
  --accent-color: #0d9488;       /* 经典沉稳松石翠绿 */
  --accent-hover: #0f766e;
  --border-color: #cbdad0;       /* 青翠色细边线 */
  --hero-overlay: linear-gradient(rgba(226, 237, 229, 0.45), rgba(226, 237, 229, 0.85));
  --nav-bg: rgba(226, 237, 229, 0.85);
  --nav-border: #cbdad0;
  --footer-bg: #cbdad0;          /* 清爽翠灰底色页脚 */
  --logo-filter: drop-shadow(0px 0px 6px rgba(13, 148, 136, 0.15));
  --logo-filter-hover: drop-shadow(0px 0px 10px rgba(13, 148, 136, 0.35));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* =========================================
   Typography
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   Navigation (三语极简带毛玻璃)
========================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  z-index: 1000;
  transition: padding var(--transition-fast), background var(--transition-fast);
}

.navbar.scrolled {
  padding: 1rem 5%;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0; /* logo图片内含公司名，不额外添加gap */
  text-decoration: none;
}

/* ---- Logo 品牌图片 ----
   透明背景PNG，图内文字已是灰白色，适配深色导航栏
   仅加品牌橙光晕，无需任何白色补偿 */
.site-logo {
  height: 64px;            /* 942:194 ≈ 4.86:1 横版，64px高对应约311px宽 */
  width: auto;
  object-fit: contain;
  /* 轻微品牌光晕，自适应主题配色 */
  filter: var(--logo-filter);
  -webkit-filter: var(--logo-filter);
  transition: all var(--transition-fast);
}

.site-logo:hover {
  filter: var(--logo-filter-hover);
  -webkit-filter: var(--logo-filter-hover);
}

.navbar.scrolled .site-logo {
  height: 52px; /* 滚动后收缩 */
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-links li a:hover {
  color: var(--accent-color);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.mobile-lang-switcher {
  display: none;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  padding: 0.3rem 0.8rem;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.lang-btn.active, .lang-btn:hover {
  color: var(--bg-color);
  background: var(--text-primary);
  border-color: var(--text-primary);
}

/* =========================================
   Hero Section (视差与大图)
========================================= */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* For parallax */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  transition: opacity 0.8s ease-in-out;
}

/* 采用 ::before 伪类加载渐变遮罩，使遮罩配色自动承袭 CSS 变量，绝无色彩穿透 */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  /* Animation handled by JS reveal */
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--bg-color);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* =========================================
   Sections General
========================================= */
.section {
  padding: 8rem 10%;
  scroll-margin-top: 80px; /* 补偿桌面端固定头部高度 */
}

.section-header {
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

/* =========================================
   About Structure
========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  border-radius: 4px;
  /* 全彩显示，不施加灰度效果 */
}

/* =========================================
   Products Structure (Dynamic JS)
========================================= */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 0.5rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.products-grid.fade-out {
  opacity: 0;
  transform: translateY(15px);
}

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition-fast);
}

.product-card:hover .product-img {
  filter: grayscale(0%);
}

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* =========================================
   Pagination UI
========================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 4rem;
}

.page-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-secondary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
  font-size: 1rem;
}

.page-btn.active, .page-btn:hover {
  background: var(--text-primary);
  color: var(--bg-color);
  border-color: var(--text-primary);
}

/* =========================================
   News & Careers
========================================= */
.biform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.list-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: padding-left var(--transition-fast);
}

.news-item {
  flex-direction: row;
  align-items: center;
}

.news-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.list-item:hover {
  padding-left: 10px;
  border-bottom-color: var(--accent-color);
}

.list-meta {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.list-title {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.list-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =========================================
   Contact / Footer (经典三栏横向尊贵排版)
========================================= */
footer.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 3.5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer-layout-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 左栏：Logo 形象 */
.footer-col-logo {
  flex-shrink: 0;
  width: 250px;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  max-width: 100%;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

/* 中栏：企业详细资质与联系方式流 */
.footer-col-info {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.7;
}

.footer-company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}

.footer-meta-line,
.footer-contact-line {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-meta-line span,
.footer-contact-line span {
  white-space: nowrap;
}

.footer-address-line span {
  white-space: normal;
}

.footer-contact-line a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-line a:hover {
  color: var(--accent-color);
}

.footer-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--border-color);
  margin: 0 10px;
  vertical-align: middle;
}

/* 右栏：双二维码互动卡片 */
.footer-col-qrcodes {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.footer-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.qr-img-wrapper {
  width: 96px;
  height: 96px;
  padding: 6px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qr-img-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.qr-card-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 最底部独立居中版权与备案栏 */
.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
  padding-top: 1.8rem;
  letter-spacing: 0.3px;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .footer-layout-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer-col-logo {
    width: 100%;
  }
  .footer-col-qrcodes {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-col-qrcodes {
    width: 100%;
    justify-content: flex-start;
  }
}

/* =========================================
   Animations (Scroll Reveal)
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Responsive & Mobile Menu
========================================= */

/* =============================================================
   移动端暗化遮罩及响应式重构
   ============================================================= */

/* 侧边菜单背景暗化遮罩层 */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 10, 12, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    /* 强制禁止横向溢出 */
    body {
        width: 100vw !important;
        overflow-x: hidden !important;
        position: relative;
    }

    .menu-toggle {
        display: flex !important;
    }

    /* 移动端导航栏：高度微调保证垂直留白优雅 */
    .navbar {
        padding: 0 6% !important;
        height: 68px !important;
        width: 100vw !important;
        left: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
        background: rgba(13, 15, 18, 0.96) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .navbar > .lang-switcher {
        display: none !important; /* 移动端顶部导航栏隐藏语言切换，移入菜单内 */
    }

    .site-logo {
        height: 46px !important; /* 移动端适配新logo尺寸 */
        width: auto !important;
        max-width: 72vw !important;
        object-fit: contain !important;
    }

    .navbar.scrolled .site-logo {
        height: 40px !important; /* 滚动后更紧凑 */
    }

    /* 现代毛玻璃抽屉式侧边栏菜单 */
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        width: 72vw; /* 优雅的右侧半屏 */
        height: 100vh; /* 满屏高度 */
        background: rgba(13, 15, 18, 0.88);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.2rem;
        transform: translateX(100%); /* 默认隐藏在右侧外面 */
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.75);
        z-index: 1000;
        margin: 0;
        padding: 3rem 1.5rem;
        box-sizing: border-box;
    }

    .nav-links.active {
        transform: translateX(0); /* 滑入屏幕 */
    }

    .mobile-lang-switcher {
        display: flex !important;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.35rem;
        font-weight: 600;
        color: var(--text-primary);
        display: block;
        padding: 0.8rem;
        letter-spacing: 1px;
    }

    /* 汉堡变叉动画 */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent-color); /* 激活时变为品牌橙色 */
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    /* 主视觉区域移动端高度控制及背景对齐微调 */
    .hero {
        padding: 0 6%;
        text-align: center;
        justify-content: center;
        height: 75vh;
        /* 将 X 轴定位偏右(75%)，使宽幅设备大图的工程搅拌站主体正好呈现在手机屏幕中心，防止被裁切 */
        background-position: 75% center !important;
        background-size: cover !important;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.25;
        white-space: normal !important;
        word-break: break-all !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.2rem;
        line-height: 1.6;
    }

    .section {
        padding: 4.5rem 6% !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    /* 替换硬性 display: block，使用 flexbox 保持结构弹性与安全间距 */
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    .about-text {
        order: 2;
    }

    .about-visual {
        order: 1;
        margin-bottom: 0.5rem;
    }

    .about-image {
        max-height: 280px;
        width: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    .biform-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 3.5rem !important;
    }

    /* 移动端产品列表网格自适应 */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) !important;
        gap: 2rem !important;
    }

    .news-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .news-thumb {
        width: 100% !important;
        height: 180px !important;
        margin-bottom: 0;
    }

    /* 横向滑动式分类选择器 (Swipeable Tabs) - 极致单手操作体验 */
    .product-filters {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 0.8rem !important;
        margin-top: 2rem !important;
        padding: 0.4rem 1rem 1.2rem !important; /* 留白防截断 */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; /* 弹性惯性滚动 */
        scrollbar-width: none; /* 隐藏 Firefox 滚动条 */
    }

    .product-filters::-webkit-scrollbar {
        display: none; /* 隐藏 Chrome/Safari 滚动条 */
    }

    .filter-btn {
        padding: 0.35rem 0.6rem !important;
        font-size: 0.8rem !important;
        letter-spacing: -0.5px;
    }
    
    .section {
        scroll-margin-top: 85px !important; /* 修正移动端锚点跳转遮挡 */
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr !important; /* 确保单列显示 */
    }
    
    .product-img {
        height: 200px !important;
    }
}

/* =========================================================================
   核心产品体系与工程案例：无侵入平滑滑动动画类
   ========================================================================= */
.products-grid {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease-out;
  will-change: transform, opacity;
}

/* 离场：向左滑出 */
.grid-slide-out-left {
  transform: translate3d(-35px, 0, 0) !important;
  opacity: 0 !important;
}

/* 离场：向右滑出 */
.grid-slide-out-right {
  transform: translate3d(35px, 0, 0) !important;
  opacity: 0 !important;
}

/* 进场准备：右侧就位 */
.grid-prep-right {
  transform: translate3d(35px, 0, 0) !important;
  opacity: 0 !important;
  transition: none !important;
}

/* 进场准备：左侧就位 */
.grid-prep-left {
  transform: translate3d(-35px, 0, 0) !important;
  opacity: 0 !important;
  transition: none !important;
}

/* =========================================================================
   极简工业风沉浸式明细弹窗 (Detail Modal) 与技术参数表格 (Specs Table)
   ========================================================================= */
.detail-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.detail-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.detail-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.detail-modal-card {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 88vh;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 2001;
  overflow-y: auto;
  padding: 2.5rem;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
}

.detail-modal.active .detail-modal-card {
  transform: scale(1) translateY(0);
}

.detail-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.detail-modal-close:hover {
  color: var(--accent-color);
}

/* 弹窗内容内部视觉层排版 */
.modal-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .modal-header-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.modal-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.modal-info-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.modal-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
}

.modal-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  background: rgba(252, 163, 17, 0.12);
  color: var(--accent-color);
  border: 1px solid rgba(252, 163, 17, 0.3);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary-accent {
  background: var(--accent-color);
  color: #0d0f12;
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.modal-section-h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-section-h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2rem;
  background: var(--accent-color);
  border-radius: 2px;
}

.modal-desc-body {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
  white-space: pre-line;
}

/* 高质感极简工业风技术参数大表 (Industrial Specs Table) */
.industrial-specs-wrapper {
  overflow-x: auto;
  margin-top: 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.industrial-specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.92rem;
}

.industrial-specs-table th, 
.industrial-specs-table tr:first-child td {
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-color);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  white-space: nowrap;
}

.industrial-specs-table td {
  padding: 12px 16px;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-fast);
}

.industrial-specs-table tr:last-child td {
  border-bottom: none;
}

.industrial-specs-table tr:hover td {
  background: rgba(252, 163, 17, 0.08);
}

/* =========================================================================
   100% 还原【图一】旧网站经典产品详情带状标题栏与橘黄色参数大表 CSS
   ========================================================================= */
.classic-orange-bar {
  background: #f8f9fa;
  border-left: 6px solid #f39c12;
  color: #d68910;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 4px;
  margin: 2rem 0 1.2rem;
  display: flex;
  align-items: center;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

/* 深色模式下的带状标题栏高对比度修饰 */
[class*="theme-dark"] .classic-orange-bar {
  background: #21262d;
  color: #f39c12;
  border-left-color: #f39c12;
}

.classic-desc-text {
  line-height: 1.85;
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
  white-space: normal;
}

.classic-desc-text p {
  margin: 0 0 0.8rem 0;
  text-indent: 2em;
}

/* 彻底解决表格竖排与一字一行问题 */
.industrial-specs-wrapper {
  width: 100% !important;
  overflow-x: auto !important;
  margin-top: 1.2rem !important;
}

.exact-classic-table,
.exact-classic-table table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: collapse !important;
  table-layout: auto !important;
  margin: 0 auto !important;
  display: table !important;
}

.exact-classic-table tr {
  display: table-row !important;
}

.exact-classic-table th,
.exact-classic-table td {
  display: table-cell !important;
  vertical-align: middle !important;
  text-align: center !important;
  padding: 10px 8px !important;
  white-space: nowrap !important; /* 强制单行，绝不一字一行！ */
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.exact-classic-table tr:first-child td,
.exact-classic-table tr:nth-child(4) td,
.exact-classic-table tr.header-row td {
  background: #f39c12 !important;
  color: #ffffff !important;
  font-weight: bold !important;
  padding: 12px 10px !important;
  border: 1px solid #e67e22 !important;
}

.exact-classic-table p,
.exact-classic-table div,
.exact-classic-table span {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
}

/* =========================================================================
   100% 还原【图二】老网站原汁原味 header 与橘色按钮组 CSS
   ========================================================================= */
.old-site-header-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .old-site-header-grid {
    grid-template-columns: 1fr;
  }
}

.old-site-img-box {
  width: 100%;
}

.old-site-main-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.old-site-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.old-site-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 1rem;
}

.old-site-meta-row {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.old-site-meta-row strong {
  color: var(--text-primary);
}

.old-site-meta-row .meta-val {
  color: #f39c12;
}

.old-site-btn-row {
  display: flex;
  gap: 0.8rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}

.old-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.92rem;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.old-btn.dark-btn {
  background: #34495e;
  color: #ffffff;
}

.old-btn.orange-btn {
  background: #f39c12;
  color: #ffffff;
}

.old-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.old-site-keyword-row {
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(243, 156, 18, 0.08);
  padding: 8px 12px;
  border-radius: 4px;
  display: inline-block;
}

/* =============================================================
   右下角常驻悬浮客服与极速询盘挂件 (Floating Consultation Widget)
   ============================================================= */
.floating-consult-widget {
  position: fixed;
  right: 24px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.floating-action-item {
  position: relative;
}

.floating-btn-main {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent-color), #ff7a45);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(241, 90, 36, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-btn-main:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(241, 90, 36, 0.5);
}

.floating-btn-icon {
  font-size: 1.2rem;
}

.floating-btn-secondary {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
  margin-left: auto;
}

.floating-btn-secondary:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* 悬停卡片弹出层 (精简纯净版电话热线卡片) */
.floating-popover {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  width: 220px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 100;
}

.floating-action-item:hover .floating-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.popover-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.popover-tel-link {
  display: block;
  font-size: 1.05rem;
  font-weight: bold;
  color: var(--accent-color);
  text-decoration: none;
  margin: 6px 0;
}

.popover-qr-box {
  margin-top: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px;
  border-radius: 6px;
}

.popover-qr-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 4px;
}

/* =============================================================
   实时在线客服聊天窗口样式 (Live Chat Widget - 免填表直开即聊)
   ============================================================= */
.live-chat-card {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 360px;
  height: 520px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 120px);
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-chat-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* 顶部客服信息栏 */
.live-chat-header {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-advisor-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.advisor-avatar-box {
  position: relative;
  width: 36px;
  height: 36px;
}

.advisor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1.5px solid var(--accent-color);
}

.online-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #10b981;
  border: 1.5px solid #111;
  border-radius: 50%;
}

.advisor-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.advisor-status {
  font-size: 0.72rem;
  color: #10b981;
  margin-top: 2px;
}

.chat-header-actions {
  display: flex;
  gap: 4px;
}

.chat-action-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chat-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* 消息主体滚动区 */
.live-chat-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg-bubble {
  display: flex;
  flex-direction: column;
  max-width: 82%;
}

.chat-msg-bubble.incoming {
  align-self: flex-start;
}

.chat-msg-bubble.outgoing {
  align-self: flex-end;
  align-items: flex-end;
}

.msg-author {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 3px;
  padding: 0 4px;
}

.msg-text {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  word-break: break-word;
}

.chat-msg-bubble.incoming .msg-text {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-bottom-left-radius: 2px;
}

.chat-msg-bubble.outgoing .msg-text {
  background: linear-gradient(135deg, var(--accent-color), #ff7a45);
  color: #ffffff;
  border-bottom-right-radius: 2px;
  box-shadow: 0 4px 12px rgba(241, 90, 36, 0.25);
}

/* 快捷提问胶囊标签 */
.chat-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0;
}

.chat-tag-btn {
  background: rgba(241, 90, 36, 0.1);
  border: 1px solid rgba(241, 90, 36, 0.3);
  color: var(--accent-color);
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.chat-tag-btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-1px);
}

/* 底部输入栏 */
.live-chat-footer {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--border-color);
}

.live-chat-footer form {
  display: flex;
  gap: 8px;
  margin: 0;
}

.live-chat-footer input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.live-chat-footer input:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.09);
}

.btn-chat-send {
  padding: 8px 16px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-chat-send:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .live-chat-card {
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
}

