/* ==========================================================================
   PipeSolv 官网 — 首页首屏样式（gisco.ae 版式风格 + PipeSolv 视觉规范配色/字体）
   配色/字体：PipeSolv_TankSolv_Hero视觉规范.docx（V1.0）
   版式：参考 gisco.ae —— 全幅背景 Hero、大标题、无装饰平卡、数据统计条
   当前仅包含：基础变量 / 按钮 / 顶部导航 / Hero 首屏（其余区块后续再开发）
   ========================================================================== */

:root {
  /* ---- TankSolv 通用变量（导航下滑白底等基础场景） ---- */
  --ts-steel: #3B4247;
  --ts-yellow: #E8A800;
  --ts-yellow-dark: #c08f00;
  --ts-teal-2: #4E7473;
  --ts-ink: #20262B;

  --ts-white: #ffffff;
  --ts-muted: rgba(222, 227, 225, 0.86);
  --ts-line-dark: rgba(32, 38, 43, 0.12);

  /* ---- 字体家族（C1） ---- */
  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, "Courier New", monospace;

  --nav-h: 78px;
  --container: 1440px;
  --radius: 4px;  /* 规范 C1：统一 4px 圆角（精密工业设备感） */

  /* ---- PipeSolv 色板（A1，Hero 首屏专用） ---- */
  --pipe-deep: #101F30;        /* Blueprint Deep · Hero 主背景 */
  --pipe-blue: #1C3A5E;        /* Blueprint Blue · 品牌主色/描边 */
  --pipe-rust: #0054DA;        /* Blue Accent · 强调/CTA */
  --pipe-rust-dark: #0042AB;   /* Blue Accent hover */
  --pipe-signal: #6FA0C4;      /* Signal Blue · 辅助高亮/图纸标注 */
  --pipe-paper: #E3E7E4;       /* Blueprint Paper · 浅色背景 */
  --pipe-white: #ffffff;
  --pipe-line: rgba(111, 160, 196, 0.28);   /* 深底 Signal 细分割线 */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ==========================================================================
   首页各屏布局说明：每屏高度 = 视口高度（一屏一个板块），
   不做强制吸附，浏览器自然滚动
   ========================================================================== */

/* 锚点跳转（滚动提示 / 页脚链接等）为固定导航预留偏移 */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font-sans);
  color: var(--pipe-white);
  background: var(--pipe-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }


/* 键盘焦点（C2） */
:focus-visible {
  outline: 2px solid var(--ts-yellow);
  outline-offset: 2px;
}

/* ==========================================================================
   按钮（扁平、克制的 4px 圆角，无投影/渐变）
   ========================================================================== */
.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  will-change: transform;
}
.ts-btn:hover { transform: translateY(-2px); }
.ts-btn:active { transform: translateY(0) scale(0.97); }

/* 按钮箭头（→）：hover 时向右滑出，增强交互反馈 */
.ts-btn__arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-btn:hover .ts-btn__arrow { transform: translateX(5px); }
.ts-btn:active .ts-btn__arrow { transform: translateX(2px); }

.ts-btn--primary {
  background: var(--ts-yellow);
  color: var(--ts-ink);
}
.ts-btn--primary:hover { background: var(--ts-yellow-dark); }

.ts-btn--ghost {
  background: transparent;
  color: var(--ts-white);
  border-color: rgba(222, 227, 225, 0.5);
}
.ts-btn--ghost:hover {
  border-color: var(--ts-white);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ts-white);
}

.ts-btn--lg { height: 52px; padding: 0 32px; }

/* ==========================================================================
   顶部导航
   ========================================================================== */
.ts-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ts-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(32, 38, 43, 0.1);
}
/* 下滑后：白底 → 黑 LOGO / 深色文字 */
.ts-nav.is-scrolled .ts-nav__logo--white { display: none; }
.ts-nav.is-scrolled .ts-nav__logo--black { display: block; }
.ts-nav.is-scrolled .ts-nav__links a { color: var(--ts-ink); }
.ts-nav.is-scrolled .ts-nav__links a:hover { color: var(--ts-steel); }
.ts-nav.is-scrolled .ts-nav__lang-switch { border-color: var(--ts-line-dark); }
.ts-nav.is-scrolled .ts-nav__lang-switch button { color: var(--ts-ink); }
.ts-nav.is-scrolled .ts-nav__lang-switch button:hover { color: var(--ts-steel); }
.ts-nav.is-scrolled .ts-nav__lang-switch button.is-active { color: var(--pipe-deep); background: var(--pipe-signal); }
.ts-nav.is-scrolled .ts-nav__burger span { background: var(--ts-ink); }

.ts-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 64px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ts-nav__logo {
  display: inline-flex;
  align-items: center;
}
.ts-nav__logo-img {
  height: 34px;
  width: auto;
}
.ts-nav__logo--white { display: block; }   /* 顶部（透明/深色）时显示白 LOGO */
.ts-nav__logo--black { display: none; }    /* 下滑白底后切换为黑 LOGO */

.ts-nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.ts-nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);   /* 接近纯白，避免深底上发灰 */
  transition: color 0.2s ease;
}
.ts-nav__links a:hover { color: var(--ts-white); }
.ts-nav__links a.is-active { color: var(--pipe-signal); }
.ts-nav.is-scrolled .ts-nav__links a.is-active { color: var(--pipe-rust); }

/* ---- 语言切换（分段开关：EN / 中，选中项 Signal Blue 底，PipeSolv 精密仪器感） ---- */
.ts-nav__lang {
  display: flex;
  align-items: center;
}
/* 菜单内的语言切换仅移动端下拉菜单使用，桌面端隐藏 */
.ts-nav__lang--menu { display: none; }
.ts-nav__lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.ts-nav__lang-switch button {
  padding: 5px 12px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--ts-muted);
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.ts-nav__lang-switch button:hover { color: var(--pipe-white); }
.ts-nav__lang-switch button.is-active {
  color: var(--pipe-deep);
  background: var(--pipe-signal);
}

/* ---- 语言切换下拉（桌面端右上角） ---- */
.ts-nav__dropdown { position: relative; }
.ts-nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  color: var(--ts-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ts-nav__dropdown-trigger:hover {
  color: var(--pipe-white);
  border-color: var(--pipe-signal);
}
.ts-nav__dropdown-caret { transition: transform 0.25s ease; }
.ts-nav__dropdown.is-open .ts-nav__dropdown-caret { transform: rotate(180deg); }

.ts-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 96px;
  padding: 4px;
  margin: 0;
  list-style: none;
  background: var(--pipe-deep);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(6, 15, 26, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 120;
}
.ts-nav__dropdown.is-open .ts-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ts-nav__dropdown-menu button {
  display: block;
  width: 100%;
  padding: 7px 12px;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--ts-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.ts-nav__dropdown-menu button:hover {
  color: var(--pipe-white);
  background: rgba(111, 160, 196, 0.14);
}
.ts-nav__dropdown-menu button.is-active {
  color: var(--pipe-deep);
  background: var(--pipe-signal);
}
/* 下滑白底导航时，下拉转为深色文字/白底面板 */
.ts-nav.is-scrolled .ts-nav__dropdown-trigger {
  border-color: var(--ts-line-dark);
  color: var(--ts-ink);
}
.ts-nav.is-scrolled .ts-nav__dropdown-trigger:hover { color: var(--ts-steel); }
.ts-nav.is-scrolled .ts-nav__dropdown-menu {
  background: var(--pipe-white);
  border-color: var(--ts-line-dark);
  box-shadow: 0 12px 28px rgba(20, 32, 43, 0.12);
}
.ts-nav.is-scrolled .ts-nav__dropdown-menu button { color: var(--ts-ink); }
.ts-nav.is-scrolled .ts-nav__dropdown-menu button:hover {
  color: var(--ts-steel);
  background: rgba(111, 160, 196, 0.12);
}
.ts-nav.is-scrolled .ts-nav__dropdown-menu button.is-active {
  color: var(--pipe-deep);
  background: var(--pipe-signal);
}

.ts-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--ts-steel);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 10px;
}
.ts-nav__burger span {
  display: block;
  height: 2px;
  background: var(--ts-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ts-nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ts-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.ts-nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero 首屏（PipeSolv：蓝图风 + 宇树式大气深色首屏）
   全幅机器人图背景（主体偏右）+ 左侧暗角承载文字 + 蓝图截面线稿签名
   ========================================================================== */
.ts-hero {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;   /* 全屏吸附：一屏整高 */
  min-height: 100vh;
}

/* 背景轮播图（深色棚拍渲染图，主体偏右，左暗区承载文字） */
.ts-hero__slides {
  position: absolute;
  inset: 0;
}
.ts-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 72% center;   /* 主体偏右，左侧深色留文字区 */
  opacity: 0;
  transition: opacity 0.7s ease;
  animation: tsKenBurns 14s ease-in-out infinite alternate;  /* 缓慢推拉，克制的动态质感 */
}
.ts-hero__slide.is-active { opacity: 1; }
.ts-hero__slide--1 { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-hero__slide--2 { background-image: url("../img/robot/GPT Image 2_95601953.png"); }

@keyframes tsKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.045); }
}

/* 科技网格漂移（Signal Blue 细线方格，缓慢斜移，营造科幻操作界面底层氛围；不遮图）
   双线性渐变叠加形成方格，低透明度只做氛围点缀 */
.ts-hero__grid,
.ts-cta__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 160, 196, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 160, 196, 0.13) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: tsGridDrift 16s linear infinite;
  mask-image: radial-gradient(ellipse at 50% 42%, black 42%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 42%, black 42%, transparent 86%);
}
@keyframes tsGridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}

/* 雷达脉冲波纹（Signal Blue 单圈圆环，由 JS 在 Hero / CTA 内随机位置生成，扩散后移除）
   每次仅一个位置出现，低调点缀，不抢视觉中心 */
.ts-hero__radar,
.ts-cta__radar,
.ts-pagehead__radar {
  position: absolute;
  width: 30vmin;
  height: 30vmin;
  margin-left: -15vmin;   /* 以 left/top 为圆心居中 */
  margin-top: -15vmin;
  z-index: 2;
  pointer-events: none;
}
.ts-hero__radar::before,
.ts-cta__radar::before,
.ts-pagehead__radar::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(111, 160, 196, 0.45);
  border-radius: 50%;
  animation: tsRadarPulse 3.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes tsRadarPulse {
  0%   { transform: scale(0.2); opacity: 0.5; }
  70%  { opacity: 0.18; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* 轮播左右切换箭头（桌面端；半透明深底 + 白描边，方形微圆角对齐品牌规范，hover 转 Signal Blue 填充发光） */
.ts-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(6, 15, 26, 0.22);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-hero__arrow:hover {
  background: var(--pipe-signal);
  border-color: var(--pipe-signal);
  color: var(--pipe-deep);
  box-shadow: 0 0 24px rgba(111, 160, 196, 0.45);
}
.ts-hero__arrow--prev { left: 28px; transform: translateY(-50%); }
.ts-hero__arrow--next { right: 28px; transform: translateY(-50%); }
.ts-hero__arrow--prev:hover { transform: translateY(-50%) scale(1.08) translateX(-2px); }
.ts-hero__arrow--next:hover { transform: translateY(-50%) scale(1.08) translateX(2px); }

/* 文字区：垂直居中，左对齐，大留白（宇树式大气感） */
.ts-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 240px) 64px 32px;
  flex: 1;
  display: flex;
  align-items: center;
}

.ts-hero__content {
  max-width: 640px;
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* 首屏产品型号标签（大字号 mono 全大写，Rust → 白 → Signal Blue 品牌三色渐变）
   inline-block 让渐变贴合文字宽度 */
.ts-hero__model {
  display: inline-block;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(23deg, #115bd0 0%, #67a2ff 28%, var(--pipe-white) 50%, #67b3e9 72%, #6b6df7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
/* 轮播切换整片内容"夸张"出现（型号 → 标题 → 副标题 → 按钮错峰上滑 + 型号颜色脉冲）
   由 JS 在切换时给 .ts-hero__content 加 .ts-switch 触发，各子元素带递增延迟形成层次感
   弹性曲线（y>1 的 back-out）带来回弹手感，位移/缩放更大、错峰更明显 */
.ts-hero__content.ts-switch {
  animation: tsContentPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ts-hero__content.ts-switch .ts-hero__title,
.ts-hero__content.ts-switch .ts-hero__lead,
.ts-hero__content.ts-switch .ts-hero__actions {
  animation: tsTextRise 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.ts-hero__content.ts-switch .ts-hero__title { animation-delay: 0.16s; }
.ts-hero__content.ts-switch .ts-hero__lead { animation-delay: 0.32s; }
.ts-hero__content.ts-switch .ts-hero__actions { animation-delay: 0.5s; }
/* 型号最先出：大位移 + 缩放 + 模糊→清晰 + 颜色脉冲（渐变文字短暂提亮） */
.ts-hero__content.ts-switch .ts-hero__model {
  animation: tsModelRise 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.03s both,
             tsModelGlow 0.9s ease 0.05s both;
}
@keyframes tsContentPop {
  0%   { opacity: 0; transform: scale(0.86); }
  60%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes tsTextRise {
  0%   { opacity: 0; transform: translateY(56px) scale(0.88); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes tsModelRise {
  0%   { opacity: 0; transform: translateY(56px) scale(0.85); filter: blur(10px); }
  55%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes tsModelGlow {
  0%   { filter: brightness(1.6) saturate(1.3); }
  100% { filter: brightness(1) saturate(1); }
}

/* 首屏主标题（Archivo，次大字阶置于型号下方；Rust → 白 → Signal Blue 三段渐变）
   inline-block 让元素宽度收缩到文字实际宽度，渐变固定铺满（左橙/中白/右浅蓝）
   呼吸动感改为整体透明度脉动，不影响三色位置 */
.ts-hero__title {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-stretch: 125%;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  background: linear-gradient(23deg, #115bd0 0%, #67a2ff 28%, var(--pipe-white) 50%, #67b3e9 72%, #6b6df7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both,
             tsTitleBreath 7s ease-in-out 1.2s infinite alternate;
}
/* 标题呼吸：整体透明度微微脉动（不影响渐变三色位置） */
@keyframes tsTitleBreath {
  from { opacity: 1; }
  to   { opacity: 0.82; }
}

/* 首屏副标题（纯白） */
.ts-hero__lead {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--pipe-white);
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.ts-hero__actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

/* Hero / CTA 内按钮：PipeSolv 配色覆盖（主=Rust 橙渐变 + 白色微网格纹理，次=白色描边） */
.ts-hero .ts-btn--primary,
.ts-cta .ts-btn--primary {
  position: relative;
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  color: var(--pipe-white);
}
.ts-hero .ts-btn--primary:hover,
.ts-cta .ts-btn--primary:hover {
  background: linear-gradient(135deg, var(--pipe-rust-dark) 0%, var(--pipe-rust) 100%);
}
/* 按钮表面白色微网格（呼应首屏科技网格，仅装饰不挡文字） */
.ts-hero .ts-btn--primary::before,
.ts-cta .ts-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.ts-hero .ts-btn--ghost,
.ts-cta .ts-btn--ghost {
  color: var(--pipe-white);
  border-color: var(--pipe-white);
}
.ts-hero .ts-btn--ghost:hover,
.ts-cta .ts-btn--ghost:hover {
  border-color: var(--pipe-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pipe-white);
}

/* 首屏入场动效（淡入 + 上移 8px，遵循 prefers-reduced-motion） */
@keyframes tsHeroFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .ts-hero__content,
  .ts-hero__model,
  .ts-hero__title,
  .ts-hero__lead,
  .ts-hero__actions { animation: none; }
  .ts-hero__grid,
  .ts-cta__grid { animation: none; }
  /* 轮播切换整片动画不在此禁用：属核心交互反馈，任何环境都运行（同雷达波纹） */
}

/* 滚动提示（桌面端，底部居中） */
.ts-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 96px;
  z-index: 4;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid var(--pipe-line);
  border-radius: 12px;
}
.ts-hero__scroll span {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  border-radius: 1px;
  background: var(--pipe-signal);
  animation: tsScrollHint 1.8s ease-in-out infinite;
}
@keyframes tsScrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   第二屏：应用场景（4 类 2×2 网格；深色延续 Hero，卡片微亮底 + Signal 细边框）
   全屏一屏：内容垂直居中，紧凑排布保证 1366×768 屏幕也不超屏
   ========================================================================== */
.ts-sol {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应，上下间隙对称 */
}
/* 与 Hero 衔接的顶部细分割线 */
.ts-sol::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-sol__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-sol__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.ts-sol__head-text { flex: 1; }
.ts-sol__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 10px;
}
.ts-sol__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
.ts-sol__lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-sol__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ts-sol__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-sol__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
.ts-sol__media {
  position: relative;
  height: 210px;
  background-size: cover;
  background-position: center 30%;
}
/* 底部渐变遮罩：让图自然过渡到卡片内容区 */
.ts-sol__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 31, 48, 0.55) 82%, rgba(16, 31, 48, 0.92) 100%);
}
.ts-sol__media--a { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-sol__media--b { background-image: url("../img/robot/GPT Image 2_95601953.png"); }
.ts-sol__num {
  position: absolute;
  top: 12px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  padding: 3px 8px;
  border-radius: var(--radius);
}
.ts-sol__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px 22px 17px;
}
.ts-sol__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 7px;
}
.ts-sol__desc {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ts-muted);
}
/* 行业痛点（Rust 橙标记，纵向短句，替代特性列表） */
.ts-sol__pains {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ts-sol__pains li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ts-muted);
}
.ts-sol__pains li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 6px; height: 6px;
  background: var(--pipe-rust);
  border-radius: 1px;
}
.ts-sol__foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  justify-content: flex-end;
}
.ts-sol__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-sol__card:hover .ts-sol__link { color: var(--pipe-white); }
.ts-sol__link span { display: inline-block; transition: transform 0.25s ease; }
.ts-sol__card:hover .ts-sol__link span { transform: translateX(4px); }

/* ==========================================================================
   第三屏：产品展示（K20 / K18 双产品大卡；深色延续，参数大数字 Signal Blue）
   ========================================================================== */
.ts-prod {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应 */
}
/* 与上一屏衔接的顶部细分割线 */
.ts-prod::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-prod__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
/* 区块头：左文本 + 右"查看更多"按钮 */
.ts-prod__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 14px;
}
.ts-prod__head-text { flex: 1; }
/* 通用"View all …"按钮：透明背景、白色字、白色细边框（产品/解决方案/新闻通用） */
.ts-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-white);
  background: transparent;
  color: var(--pipe-white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
.ts-more:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 10, 18, 0.35);
}
.ts-more span { display: inline-block; transition: transform 0.25s ease; }
.ts-more:hover span { transform: translateX(4px); }
.ts-prod__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 8px;
}
.ts-prod__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
.ts-prod__lead {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ts-muted);
}
/* 3 列网格：兼容 3 / 6 个产品整行；4-5 个时末行自动等高补齐 */
.ts-prod__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
.ts-prod__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-prod__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
.ts-prod__media {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center 40%;
}
/* 产品卡真实图片：铺满媒体区，位于渐变遮罩之下、标签之上 */
.ts-prod__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* 底部渐变遮罩：图自然过渡到内容区 */
.ts-prod__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(16, 31, 48, 0.5) 82%, rgba(16, 31, 48, 0.92) 100%);
}
.ts-prod__media--k20 { background-image: url("../img/robot/rjbot-k20.png"); }
.ts-prod__media--k18 { background-image: url("../img/robot/rjbot-k18.png"); }
.ts-prod__media--k16 { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-prod__media--k22 { background-image: url("../img/robot/rjbot-k22.png"); }
.ts-prod__media--k22b { background-image: url("../img/robot/rjbot-k22b.png"); }
.ts-prod__media--k22c { background-image: url("../img/robot/rjbot-k22c.png"); }
.ts-prod__media--k25 { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-prod__media--k30 { background-image: url("../img/robot/GPT Image 2_95601953.png"); }
.ts-prod__tag {
  position: absolute;
  top: 14px; left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  padding: 4px 9px;
  border-radius: var(--radius);
}
.ts-prod__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 11px 18px 12px;
}
.ts-prod__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 6px;
}
/* 参数条（对齐产品列表页"底部数据条"设计）：等宽均分，每格数值在上、标签在下居中 */
.ts-prod__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: stretch;
  gap: 0;
}
.ts-prod__specs li {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 14px 6px 16px;
  border-left: 1px solid var(--pipe-line);
}
.ts-prod__specs li:first-child { border-left: 0; }
.ts-prod__specs strong {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--pipe-white);
}
.ts-prod__specs span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}
.ts-prod__foot {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  justify-content: flex-end;
}
.ts-prod__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-prod__card:hover .ts-prod__link { color: var(--pipe-white); }
.ts-prod__link span { display: inline-block; transition: transform 0.25s ease; }
.ts-prod__card:hover .ts-prod__link span { transform: translateX(4px); }

/* ==========================================================================
   第四屏：关于我们（左品牌故事 + 右核心数据卡；深色延续）
   ========================================================================== */
.ts-about {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应 */
}
/* 与上一屏衔接的顶部细分割线 */
.ts-about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-about__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-about__head { max-width: 720px; margin-bottom: 18px; }
.ts-about__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 10px;
}
.ts-about__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
.ts-about__lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ts-muted);
}
/* 设施图墙：总部 / 工厂 / 展厅（3 列，图内左下 mono 标签） */
.ts-about__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.ts-about__shot {
  position: relative;
  height: 200px;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-line);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.ts-about__shot:hover { border-color: rgba(111, 160, 196, 0.5); }
.ts-about__shot figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pipe-white);
  background: rgba(9, 22, 37, 0.55);
  padding: 3px 8px;
  border-radius: var(--radius);
}
/* 占位图：当前复用现有图，替换真实图时改这三行背景图路径（img/facility/） */
.ts-about__shot--hq       { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-about__shot--factory  { background-image: url("../img/robot/GPT Image 2_95601953.png"); }
.ts-about__shot--showroom { background-image: url("../img/hero-slide-1.png"); }
.ts-about__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
  align-items: stretch;
}
/* 品牌故事卡 */
.ts-about__story {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.ts-about__story-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 14px;
}
.ts-about__story p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ts-muted);
}
.ts-about__story p:last-of-type { margin-bottom: 0; }
.ts-about__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  justify-content: flex-end;
}
/* 核心数据卡 */
.ts-about__stats {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.ts-about__stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 20px;
}
.ts-about__stats-grid li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ts-about__stats-grid strong {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--pipe-signal);
}
.ts-about__stats-grid span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ts-muted);
}
.ts-about__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-about__link:hover { color: var(--pipe-white); }
.ts-about__link span { display: inline-block; transition: transform 0.25s ease; }
.ts-about__link:hover span { transform: translateX(4px); }

/* ==========================================================================
   第五屏：合作客户（行业案例卡 + 结果数字；深色延续）
   ========================================================================== */
.ts-client {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应 */
}
/* 与上一屏衔接的顶部细分割线 */
.ts-client::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-client__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-client__head { max-width: 720px; margin-bottom: 18px; }
.ts-client__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 10px;
}
.ts-client__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
.ts-client__lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ts-muted);
}
/* 客户 LOGO 墙：6 列 × 3 行（共 18 个，当前用 Pipesolv LOGO 占位） */
.ts-client__wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.ts-client__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  background: #ffffff;
  border: 1px solid rgba(15, 40, 65, 0.12);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ts-client__logo:hover {
  border-color: rgba(15, 40, 65, 0.25);
  background: #ffffff;
}
.ts-client__logo img {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.ts-client__logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ==========================================================================
   第六屏：新闻资讯（分类标签 + 日期 + 摘要 + Read more）
   ========================================================================== */
.ts-news {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应 */
}
/* 与上一屏衔接的顶部细分割线 */
.ts-news::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-news__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.ts-news__head-text { flex: 1; }
.ts-news__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 10px;
}
.ts-news__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}
.ts-news__lead {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
/* 新闻卡：整卡可点击（<a>），上图 + 内容区 */
.ts-news__card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-news__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
/* 新闻图（当前为现有图占位，替换时改 .ts-news__media--* 背景图路径） */
.ts-news__media {
  height: 118px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--pipe-line);
}
.ts-news__media--1 { background-image: url("../img/robot/GPT Image 2_95592829.png"); }
.ts-news__media--2 { background-image: url("../img/robot/GPT Image 2_95601953.png"); }
.ts-news__media--3 { background-image: url("../img/hero-slide-1.png"); }
.ts-news__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 18px;
}
.ts-news__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.ts-news__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  border: 1px solid rgba(111, 160, 196, 0.45);
  border-radius: var(--radius);
  padding: 3px 9px;
}
.ts-news__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ts-muted);
}
.ts-news__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 8px;
}
.ts-news__desc {
  margin: 0 0 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-news__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pipe-line);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
  text-align: right;
  transition: color 0.2s ease;
}
.ts-news__foot span { display: inline-block; transition: transform 0.25s ease; }
.ts-news__card:hover .ts-news__foot { color: var(--pipe-white); }
.ts-news__card:hover .ts-news__foot span { transform: translateX(4px); }

/* ==========================================================================
   第七屏：CTA + 页脚（深色收尾；CTA 居中号召，页脚置底）
   ========================================================================== */
.ts-cta {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  flex-direction: column;
}
/* 与上一屏衔接的顶部细分割线 */
.ts-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
/* CTA 网格：复用首屏网格漂移，仅淡出在 CTA 主区（页脚区在上层覆盖） */
.ts-cta__grid {
  z-index: 1;
  mask-image: radial-gradient(ellipse at 50% 45%, black 45%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 45%, transparent 85%);
}
.ts-cta__main,
.ts-cta__foot { position: relative; z-index: 2; }
/* CTA 区：占满剩余空间并垂直居中 */
.ts-cta__main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 24px 24px;
}
.ts-cta__inner {
  width: 100%;
  max-width: 720px;
  text-align: center;
}
.ts-cta__kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 14px;
}
.ts-cta__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ts-cta__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ts-cta__contact {
  margin: 26px 0 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--ts-muted);
}
/* 页脚区：更暗一档纯色底，与 CTA 主区形成视觉区分；
   不透明背景同时遮挡网格/雷达波纹 → 页脚无网格无动效 */
.ts-cta__foot {
  border-top: 1px solid var(--pipe-line);
  background: #0B1A2E;
  padding: 36px 56px 26px;
}
.ts-cta__foot-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.ts-cta__col { display: flex; flex-direction: column; gap: 8px; }
.ts-cta__col--brand p {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-cta__logo img { height: 34px; width: auto; }
.ts-cta__col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pipe-white);
  margin: 0 0 6px;
}
.ts-cta__col a,
.ts-cta__col span {
  font-size: 13px;
  color: var(--ts-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-cta__col a:hover { color: var(--pipe-white); }
.ts-cta__legal {
  width: 100%;
  max-width: var(--container);
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ts-muted);
}
.ts-cta__social {
  display: flex;
  gap: 18px;
}
.ts-cta__social a {
  color: var(--ts-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-cta__social a:hover { color: var(--pipe-signal); }
.ts-cta__legal-links {
  display: flex;
  gap: 18px;
}
.ts-cta__legal-links a {
  color: var(--ts-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ts-cta__legal-links a:hover { color: var(--pipe-signal); }

/* ---- 法律页（隐私政策 / 使用条款）：自然滚动 + 居中阅读栏 ---- */
.ts-legal { padding: 72px 0 100px; }
.ts-legal__inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.ts-legal__inner h2 { font-size: 26px; color: #fff; margin: 46px 0 14px; }
.ts-legal__inner p { color: var(--ts-muted); line-height: 1.8; margin-bottom: 14px; font-size: 15px; }
.ts-legal__inner ul { color: var(--ts-muted); line-height: 1.8; margin: 0 0 14px 20px; }
.ts-legal__inner li { margin-bottom: 8px; }
.ts-legal__inner a { color: var(--pipe-signal); }
.ts-legal__updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ts-muted); }

/* ==========================================================================
   响应式（仅首屏相关）
   ========================================================================== */

/* 平板 768–1199px */
@media (min-width: 768px) {
  /* 板块主标（kicker）：大号渐变，单行 */
  .ts-sol__kicker, .ts-prod__kicker, .ts-about__kicker,
  .ts-client__kicker, .ts-news__kicker, .ts-cta__kicker {
    font-family: var(--font-head);
    font-weight: 700;
    font-stretch: 125%;
    font-size: clamp(26px, 2.8vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    display: inline-block;
    white-space: nowrap;
    background: linear-gradient(23deg, #115bd0 0%, #67a2ff 28%, var(--pipe-white) 50%, #67b3e9 72%, #6b6df7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  /* 板块次标（h2 口号）：小号浅色 */
  .ts-sol__title, .ts-prod__title, .ts-about__title,
  .ts-client__title, .ts-news__title, .ts-cta__title {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(14px, 1.15vw, 17px);
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--pipe-white);
  }
}

@media (max-width: 1199px) {
  .ts-nav__inner { padding: 0 32px; }
  .ts-hero__inner { padding-left: 32px; padding-right: 32px; }
  .ts-hero__title { font-size: 30px; }
  .ts-sol__inner { padding: 40px 32px 44px; }
  .ts-sol__grid { gap: 16px; }
  .ts-sol__media { height: 190px; }
  .ts-prod__inner { padding: 44px 32px 40px; }
  .ts-prod__head { margin-bottom: 18px; }
  .ts-prod__grid { gap: 16px; }
  .ts-prod__media { height: 200px; }
  .ts-prod__specs strong { font-size: 15px; }
  .ts-about__inner { padding: 44px 32px 40px; }
  .ts-about__head { margin-bottom: 18px; }
  .ts-about__gallery { gap: 14px; }
  .ts-about__shot { height: 160px; }
  .ts-about__grid { gap: 16px; }
  .ts-about__story, .ts-about__stats { padding: 24px 26px; }
  .ts-about__stats-grid { gap: 26px 16px; }
  .ts-about__stats-grid strong { font-size: 26px; }
  .ts-client__inner { padding: 44px 32px 40px; }
  .ts-client__head { margin-bottom: 18px; }
  .ts-client__wall { gap: 12px; }
  .ts-client__logo { height: 100px; }
  .ts-news__inner { padding: 44px 32px 40px; }
  .ts-news__head { margin-bottom: 18px; }
  .ts-news__grid { gap: 16px; }
  .ts-news__body { padding: 14px 18px 16px; }
  .ts-news__media { height: 104px; }
  .ts-cta__foot { padding: 32px 32px 24px; }
  .ts-cta__foot-inner { gap: 28px; }
  /* 移动端：主标（kicker）恢复换行避免窄屏溢出，次标保持小字 */
  .ts-sol__kicker, .ts-prod__kicker, .ts-about__kicker,
  .ts-client__kicker, .ts-news__kicker, .ts-cta__kicker {
    display: block;
    white-space: normal;
    font-size: 22px;
  }
  .ts-sol__title, .ts-prod__title, .ts-about__title,
  .ts-client__title, .ts-news__title, .ts-cta__title {
    font-size: 15px;
  }
}

/* 移动端 <768px */
@media (max-width: 767px) {
  /* 移动端完全关闭吸附对齐（每屏自然滚动），仅保留首屏全屏效果 */
  html { scroll-snap-type: none; }
  /* 移动端锚点跳转时为固定导航预留偏移 */
  section[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }
  /* 移动端：区块头改纵向排列，避免按钮与标题横向挤压 */
  .ts-sol__head, .ts-prod__head, .ts-news__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ts-sol {
    height: auto;
    min-height: 0;
    display: block;
  }
  .ts-nav__inner { padding: 0 24px; }
  .ts-nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    background: var(--pipe-deep);
    border-bottom: 1px solid var(--pipe-line);
  }
  .ts-nav__links.is-open { display: flex; }
  .ts-nav__links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--pipe-line);
  }
  .ts-nav__links a:last-child { border-bottom: none; }
  /* 移动端下拉菜单为深底，下滑白底时链接仍保持浅色，避免看不清 */
  .ts-nav.is-scrolled .ts-nav__links a { color: rgba(255, 255, 255, 0.94); }
  .ts-nav.is-scrolled .ts-nav__links a:hover { color: var(--ts-white); }
  /* 移动端：语言切换移入下拉菜单，顶部栏不再单独显示 */
  .ts-nav__lang { display: none; }
  .ts-nav__lang--menu {
    display: flex;
    width: 100%;
    padding-top: 16px;
  }
  /* 菜单内语言开关：全宽，两段均分 */
  .ts-nav__lang--menu .ts-nav__lang-switch { width: 100%; }
  .ts-nav__lang--menu .ts-nav__lang-switch button {
    flex: 1;
    text-align: center;
    padding: 9px 12px;
  }
  .ts-nav__lang--menu .ts-nav__lang-switch button:hover { color: var(--pipe-white); }
  /* 菜单始终为深底，下滑白底时不套用顶栏的深色文字样式 */
  .ts-nav.is-scrolled .ts-nav__lang--menu .ts-nav__lang-switch button { color: var(--ts-muted); }
  .ts-nav.is-scrolled .ts-nav__lang--menu .ts-nav__lang-switch button:hover { color: var(--pipe-white); }
  .ts-nav.is-scrolled .ts-nav__lang--menu .ts-nav__lang-switch button.is-active { color: var(--pipe-deep); background: var(--pipe-signal); }
  .ts-nav__burger { display: flex; }

  /* 移动端首屏：拉满整屏，视觉中心化，文字下沉贴底 */
  .ts-hero {
    min-height: 100svh;
    min-height: 100vh;
  }
  .ts-hero__inner {
    padding: calc(var(--nav-h) + 16px) 24px 128px;
    align-items: flex-end; /* 文字下沉贴底，顶部留白更高级 */
  }
  .ts-hero__content { width: 100%; }
  .ts-hero__model { margin-bottom: 14px; font-size: 26px; letter-spacing: 0.05em; }
  .ts-hero__title { font-size: 21px; line-height: 1.15; }
  .ts-hero__lead { margin-top: 16px; font-size: 15px; line-height: 1.6; }
  .ts-hero__actions { margin-top: 28px; flex-direction: column; align-items: stretch; }
  .ts-hero__actions .ts-btn { width: 100%; }
  .ts-hero__grid,
  .ts-cta__grid { display: none; }        /* 网格移动端隐藏 */
  .ts-hero__radar,
  .ts-cta__radar,
  .ts-pagehead__radar { display: none; }  /* 雷达波纹移动端隐藏 */
  .ts-hero__arrow { display: none; }       /* 轮播箭头移动端隐藏（自动切换即可） */
  .ts-hero__scroll { display: none; }
  /* 竖屏下机器人图居中偏下更完整 */
  .ts-hero__slide { background-position: center 78%; }

  /* 第二屏场景：单列，图片区更高展示 */
  .ts-sol__inner { padding: 72px 24px 96px; }
  .ts-sol__head { margin-bottom: 40px; }
  .ts-sol__grid { grid-template-columns: 1fr; gap: 20px; }
  .ts-sol__media { height: 190px; background-position: center 25%; }
  .ts-sol__body { padding: 22px 22px 24px; }
  .ts-sol__name { font-size: 21px; }
  .ts-sol__points { gap: 8px 14px; }

  /* 第三屏产品：单列自然滚动（移动端兼容后补） */
  .ts-prod { height: auto; display: block; }
  .ts-prod__inner { padding: 72px 24px 96px; }
  .ts-prod__grid { grid-template-columns: 1fr; gap: 20px; }
  .ts-prod__media { height: 220px; background-position: center 30%; }

  /* 第四屏关于我们：单列自然滚动（移动端兼容后补） */
  .ts-about { height: auto; display: block; }
  .ts-about__inner { padding: 72px 24px 96px; }
  .ts-about__grid { grid-template-columns: 1fr; }
  .ts-about__gallery { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .ts-about__shot { height: 180px; }

  /* 第五屏客户：LOGO 墙 3 列自然滚动（移动端兼容后补） */
  .ts-client { height: auto; display: block; }
  .ts-client__inner { padding: 72px 24px 96px; }
  .ts-client__wall { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ts-client__logo { height: 92px; }

  /* 第六屏新闻：单列自然滚动（移动端兼容后补） */
  .ts-news { height: auto; display: block; }
  .ts-news__inner { padding: 72px 24px 96px; }
  .ts-news__grid { grid-template-columns: 1fr; gap: 20px; }

  /* 第七屏 CTA+页脚：自然滚动（移动端兼容后补） */
  .ts-cta { height: auto; }
  .ts-cta__main { padding: 72px 24px 48px; }
  .ts-cta__foot { padding: 36px 24px 28px; }
  .ts-cta__foot-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .ts-cta__col--brand { grid-column: 1 / -1; }
  .ts-cta__legal { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ==========================================================================
   关于我们页（页头 + 公司介绍 + 品牌故事 + 价值观 + 时间线 + 客户 + 专利）
   设计调性对齐首页（PipeSolv 蓝图风：深蓝 + Signal Blue 标注 + Rust 强调）
   ========================================================================== */

/* 内容型二级页（无首屏 Hero 的页面）：关闭全屏吸附，恢复自然滚动 */
html:not(:has(.ts-hero)) { scroll-snap-type: none; }

/* ---- 通用 kicker（mono 小标签，Signal Blue 标注感） ---- */
.ts-kicker {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pipe-signal);
  margin-bottom: 10px;
}

/* ---- 页头（深蓝渐变底 + 机器人图轮播 + 浮尘粒子） ---- */
.ts-pagehead {
  position: relative;
  overflow: hidden;
  /* Banner 头部底色：深蓝基底叠加两团蓝紫渐变光晕（左上冷蓝 / 右下靛紫），比纯色更有纵深，仍低于内容区（--pipe-deep #101F30）一档 */
  background:
    radial-gradient(1100px 520px at 82% -12%, rgba(107, 109, 247, 0.22), transparent 62%),
    radial-gradient(900px 480px at 8% 118%, rgba(17, 91, 208, 0.38), transparent 58%),
    linear-gradient(135deg, #06182d 0%, #0b2b4d 52%, #133a63 100%);
  color: var(--pipe-white);
}
/* Banner 纯色化：二级页页头不再用图片轮播，改为蓝图网格 + 雷达波纹（纯色） */
.ts-pagehead__slides { display: none; }     /* 图片轮播关闭 */
.ts-pagehead__particles { display: none; }  /* 浮尘粒子关闭 */
/* 网格化：Signal Blue 细线方格缓慢漂移（复用首页 hero 科技网格动画），椭圆遮罩聚焦视觉中心 */
.ts-pagehead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 160, 196, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 160, 196, 0.11) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: tsGridDrift 16s linear infinite;
  mask-image: radial-gradient(ellipse at 55% 45%, black 38%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 55% 45%, black 38%, transparent 82%);
}
/* 背景浮尘粒子（Banner 纯色化后不再使用，容器由模板保留但隐藏） */
.ts-pagehead__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.ts-pagehead__particles i {
  position: absolute;
  bottom: -12px;
  display: block;
  border-radius: 1px;
  background: var(--pipe-signal);
  opacity: 0;
  animation: tsDrift linear infinite;
}
@keyframes tsDrift {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.35; }
  100% { transform: translateY(-85vh) translateX(24px); opacity: 0; }
}
.ts-pagehead__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 104px 64px 60px;
}
/* 面包屑：视觉隐藏（保留 DOM 结构利于 SEO） */
.ts-breadcrumb {
  display: none;
}
.ts-pagehead__title {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-stretch: 125%;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  /* 渐变标题：对齐首页 Hero 标题规范（蓝白渐变裁剪到文字） */
  background: linear-gradient(23deg, #115bd0 0%, #67a2ff 28%, var(--pipe-white) 50%, #67b3e9 72%, #6b6df7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* 口号（次标）：对齐首页次标——小号白色 */
.ts-pagehead__lead {
  margin-top: 13px;
  max-width: 720px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--pipe-white);
}
/* 产品页：副标加大（层级仍低于主标） */
.ts-pagehead--prod .ts-pagehead__lead {
  font-size: clamp(18px, 1.8vw, 26px);
}
/* 描述：比口号更小、更弱（等宽字体，图纸标注感） */
.ts-pagehead__ans {
  margin-top: 8px;
  max-width: 780px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ts-muted);
}
/* 窄版页头（新闻详情等文章页）：标题列收窄，利于长文阅读 */
.ts-pagehead__inner--narrow { max-width: 900px; }
/* 文章详情页：标题字号再降一档（文章标题长，避免过大） */
.ts-pagehead--article .ts-pagehead__title {
  font-size: clamp(22px, 2.4vw, 34px);
}

/* 文章 meta 行（日期 · 阅读时长） */
.ts-pagehead__meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pipe-signal);
}
.ts-pagehead__meta-sep { opacity: 0.5; }

/* ---- 产品列表页：页头下深蓝内容区（6 卡 2 列，复用首页产品卡样式） ---- */
.ts-prod-list {
  background: var(--pipe-deep);
  color: var(--pipe-white);
}
.ts-prod-list__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 64px 96px;
}
/* 列表页产品网格：2 列（首页产品屏保持 3 列），宽卡配更高图片 */
.ts-prod-list .ts-prod__grid {
  grid-template-columns: repeat(2, 1fr);
}
.ts-prod-list .ts-prod__media { height: 300px; }
/* 列表页卡片专属：主体留白与标题略放大（参数数据条样式已统一为基础 .ts-prod__specs） */
.ts-prod-list .ts-prod__body { padding: 16px 18px 0; }
.ts-prod-list .ts-prod__name {
  font-size: 17px;
  margin-bottom: 14px;
}
.ts-prod-list .ts-prod__foot {
  padding: 12px 0 16px;
}
@media (max-width: 767px) {
  .ts-prod-list .ts-prod__grid { grid-template-columns: 1fr; }
  .ts-prod-list .ts-prod__media { height: 240px; }
}
@media (max-width: 1199px) {
  .ts-prod-list__inner { padding: 48px 32px 64px; }
}
@media (max-width: 767px) {
  .ts-prod-list__inner { padding: 48px 20px 64px; }
}

/* ---- 公司介绍（深蓝底：简介 + 总部/工厂/展厅） ---- */
/* 关于页各板块：统一顶部渐变细分割线 + 深蓝底（对齐首页/详情页分屏规范） */
.ts-abt-intro,
.ts-abt-story,
.ts-abt-timeline,
.ts-abt-clients,
.ts-abt-patents {
  position: relative;
  background: var(--pipe-deep);
}
.ts-abt-intro::before,
.ts-abt-story::before,
.ts-abt-timeline::before,
.ts-abt-clients::before,
.ts-abt-patents::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-abt-intro__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
/* 区块头对齐首页（ts-sol__head），与下方内容间距对齐首页 */
.ts-abt-intro .ts-sol__head { margin-bottom: 48px; }
.ts-abt-intro__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ts-abt-intro__shot {
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ts-abt-intro__shot:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 16px 32px rgba(4, 10, 18, 0.45);
}
.ts-abt-intro__shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ts-abt-intro__shot:hover img { transform: scale(1.04); }
.ts-abt-intro__shot figcaption { padding: 18px 20px 20px; }
.ts-abt-intro__shot-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--pipe-white);
}
.ts-abt-intro__shot-desc {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-abt-intro__foot {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ts-abt-intro__brand {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}
/* 白底区块按钮：覆盖为 PipeSolv Rust 主色 + 微网格（对齐首页 Hero/CTA） */
.ts-abt-intro .ts-btn--primary {
  position: relative;
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  color: var(--pipe-white);
}
.ts-abt-intro .ts-btn--primary:hover {
  background: linear-gradient(135deg, var(--pipe-rust-dark) 0%, var(--pipe-rust) 100%);
}
.ts-abt-intro .ts-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

/* ---- 品牌故事 ---- */
.ts-abt-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.ts-abt-story .ts-sol__head { margin-bottom: 20px; }
.ts-abt-story__para {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}
/* 数据条 */
.ts-abt-stats {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--pipe-line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ts-abt-stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--pipe-rust);
}
.ts-abt-stat__label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(222, 227, 225, 0.55);
}
/* 配图 */
.ts-abt-story__img {
  margin: 0;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ts-abt-story__img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---- 价值观（深色横幅，Blueprint Deep 底 + Signal 分割线） ---- */
.ts-abt-values {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
}
/* 与上一屏衔接的顶部细分割线 */
.ts-abt-values::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-abt-values__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-abt-values .ts-sol__head { margin-bottom: 48px; }
.ts-abt-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
/* 价值观卡：对齐首页玻璃卡语言（细边框 + 底部悬浮） */
.ts-abt-value {
  padding: 26px 24px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.ts-abt-value:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.ts-abt-value__idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-abt-value__title {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--pipe-white);
}
.ts-abt-value__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ts-muted);
}

/* ---- 里程碑时间线（2 列玻璃卡，对齐首页卡片语言） ---- */
.ts-abt-timeline__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-abt-timeline .ts-sol__head { margin-bottom: 48px; }
.ts-abt-timeline__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ts-abt-timeline__item {
  padding: 26px 26px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.ts-abt-timeline__item:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.ts-abt-timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 30px;
  padding: 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-abt-timeline__text {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ts-muted);
}

/* ---- 合作客户（深蓝底 LOGO 墙，板块结构完全复用首页 .ts-client：head + wall + logo） ---- */
.ts-abt-clients__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
/* 页头与 LOGO 墙间距对齐首页（首页 head margin-bottom: 18px + wall 顶部微调） */
.ts-abt-clients .ts-client__head { margin-bottom: 48px; }

/* ---- 专利证书 ---- */
.ts-abt-patents__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-abt-patents .ts-sol__head { margin-bottom: 48px; }
.ts-abt-patents__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ts-abt-patents__card {
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ts-abt-patents__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 12px 28px rgba(4, 10, 18, 0.45);
}
.ts-abt-patents__img {
  display: block;
  width: 100%;
  aspect-ratio: 7 / 10;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
}
.ts-abt-patents__cap {
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}

/* ---- 关于页响应式 ---- */
@media (max-width: 1199px) {
  .ts-pagehead__inner { padding: 96px 32px 56px; }
  .ts-abt-intro__inner { padding: 44px 32px 48px; }
  .ts-abt-story__inner { grid-template-columns: 1fr; gap: 48px; padding: 44px 32px 48px; }
  .ts-abt-story__img img { aspect-ratio: 16 / 9; }
  .ts-abt-values__inner { padding: 44px 32px 48px; }
  .ts-abt-values__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ts-abt-timeline__inner { padding: 44px 32px 48px; }
  .ts-abt-clients__inner { padding: 44px 32px 48px; }
  .ts-abt-patents__inner { padding: 44px 32px 48px; }
  .ts-abt-patents__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 767px) {
  .ts-pagehead__inner { padding: calc(var(--nav-h) + 16px) 24px 44px; }
  .ts-pagehead__title { font-size: 26px; }
  .ts-pagehead__lead { font-size: 13.5px; }
  .ts-pagehead--prod .ts-pagehead__lead { font-size: 17px; }
  .ts-abt-intro__inner { padding: 44px 24px 48px; }
  .ts-abt-intro__gallery { grid-template-columns: 1fr; gap: 14px; }
  .ts-abt-intro__foot { flex-direction: column; align-items: flex-start; gap: 20px; }
  .ts-abt-story__inner { padding: 44px 24px 48px; }
  .ts-abt-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ts-abt-values__inner { padding: 44px 24px 48px; }
  .ts-abt-values__grid { grid-template-columns: 1fr; }
  .ts-abt-timeline__inner { padding: 44px 24px 48px; }
  .ts-abt-timeline__list { grid-template-columns: 1fr; gap: 14px; }
  .ts-abt-clients__inner { padding: 44px 24px 48px; }
  .ts-abt-patents__inner { padding: 44px 24px 48px; }
  .ts-abt-patents__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ==========================================================================
   方案列表页（solutions.html）
   架构对齐 tank 参考站：页头 + 2 列大图卡网格；色板对齐 PipeSolv 首页（深蓝蓝图感）
   ========================================================================== */
/* 答案优先段落样式已并入基础 .ts-pagehead__ans（对齐 From the Field 简述层级：更小、半透明、无装饰） */

/* ---- 列表容器（复用首页应用场景卡片：ts-sol__head + ts-sol__grid + ts-sol__card） ---- */
.ts-slist { background: var(--pipe-deep); }
.ts-slist__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 64px 120px;
}
.ts-slist .ts-sol__head { margin-bottom: 44px; }

/* ---- 方案列表响应式 ---- */
@media (max-width: 1199px) {
  .ts-slist__inner { padding: 80px 32px 96px; }
}

@media (max-width: 767px) {
  .ts-slist__inner { padding: 64px 24px 80px; }
  .ts-slist .ts-sol__head { margin-bottom: 32px; }
}

/* ---- 新闻列表容器（复用首页 News 区块卡片：ts-news__head + ts-news__grid + ts-news__card） ---- */
.ts-nlist { background: var(--pipe-deep); }
.ts-nlist__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 64px 120px;
}
.ts-nlist .ts-news__head { margin-bottom: 44px; }
/* 列表页新闻图：加高（首页区块保持默认高度） */
.ts-nlist .ts-news__media { height: 200px; }

/* ---- 新闻列表响应式 ---- */
@media (max-width: 1199px) {
  .ts-nlist__inner { padding: 80px 32px 96px; }
}

@media (max-width: 767px) {
  .ts-nlist__inner { padding: 64px 24px 80px; }
  .ts-nlist .ts-news__head { margin-bottom: 32px; }
}

/* ==========================================================================
   方案详情页（solution_detail.html）
   全暗色 Blueprint 调性：Hero 复用全站二级页页头（ts-pagehead）、
   各区块头复用首页 ts-sol__head（kicker + title + lead + ts-more）、
   痛点 / 优势 / 流程卡复用首页玻璃卡语言（ts-dsec__card）、
   推荐产品与更多方案复用首页卡（ts-sol__card）；不沿用第三方参考站样式
   ========================================================================== */
/* 深底 kicker 变体（Signal 蓝） */
.ts-kicker--light .ts-kicker__text { color: var(--pipe-signal); }

/* ---- 页头操作按钮组（详情页 Hero 双 CTA） ---- */
.ts-pagehead__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- 详情区块容器（深蓝底；--alt 深一档区分层次） ---- */
.ts-dsec { background: var(--pipe-deep); }
.ts-dsec--alt { background: #0A1526; }
.ts-dsec__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 64px 112px;
}
.ts-dsec .ts-sol__head { margin-bottom: 44px; }

/* ---- 痛点 / 优势 / 流程卡（复用首页玻璃卡：深底 + 细边框 + 蓝色序号块 + hover 上浮） ---- */
.ts-dsec__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ts-dsec__card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 34px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-dsec__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
.ts-dsec__num {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-dsec__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--pipe-white);
}
.ts-dsec__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ts-muted);
}

/* ---- 图文分栏（Our Solution / 推荐产品：大图 + 文字） ---- */
.ts-dsec__split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.ts-dsec__split-media {
  overflow: hidden;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
}
.ts-dsec__split-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-dsec__split-media:hover img { transform: scale(1.03); }
.ts-dsec__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ts-muted);
}
.ts-dsec__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- 正文板块（Answer-first 直答，暗色） ---- */
.ts-pbody { background: var(--pipe-deep); }
.ts-pbody__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 64px 0;
}
/* 正文富文本排版（方案详情 .ts-pbody__inner 与新闻详情 .ts-ndetail__text 通用） */
.ts-nbody__text {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}
.ts-nbody__text p,
.ts-nbody__text ul,
.ts-nbody__text ol,
.ts-nbody__text blockquote,
.ts-nbody__text li {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}
.ts-nbody__text h2,
.ts-nbody__text h3 {
  margin-top: 24px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--pipe-white);
}
.ts-nbody__text h3 { font-size: 22px; }
.ts-nbody__text a { color: var(--pipe-rust); }
.ts-nbody__text strong { color: var(--pipe-white); font-weight: 600; }
.ts-nbody__text img { max-width: 100%; height: auto; border-radius: 12px; margin: 0.5em 0 1.3em; }
.ts-nbody__text table { width: 100%; border-collapse: collapse; margin: 1.2em 0 1.6em; font-size: 15px; }
.ts-nbody__text th,
.ts-nbody__text td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--pipe-line); }
.ts-nbody__text th { color: var(--pipe-white); font-family: var(--font-head); font-weight: 700; }

/* ---- 新闻详情页（news_detail.html）：左文右荐，全暗色 ---- */
.ts-ndetail { background: var(--pipe-deep); }
.ts-ndetail__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 64px 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
/* 封面大图：细边框圆角，与方案详情大图一致 */
.ts-ndetail__cover {
  margin: 0 0 48px;
  overflow: hidden;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
}
.ts-ndetail__cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
/* 结论卡（玻璃卡 + Signal 左标 + 粗体结论） */
.ts-ndetail__conclusion {
  margin-top: 40px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-left: 3px solid var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-ndetail__conclusion-label {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--pipe-signal);
}
.ts-ndetail__conclusion p {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  color: var(--pipe-white);
}
.ts-ndetail__back { margin-top: 40px; }
/* 右栏推荐：吸顶 + 玻璃条目卡 */
.ts-ndetail__side { position: sticky; top: calc(var(--nav-h) + 24px); }
.ts-ndetail__group { margin-bottom: 44px; }
.ts-ndetail__group-title {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}
.ts-ndetail__item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-ndetail__item + .ts-ndetail__item { margin-top: 10px; }
.ts-ndetail__item:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--pipe-line);
  transform: translateY(-2px);
}
.ts-ndetail__item-media {
  flex: 0 0 92px;
  width: 92px;
  overflow: hidden;
  border-radius: var(--radius);
}
.ts-ndetail__item-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ts-ndetail__item-body { min-width: 0; display: flex; flex-direction: column; }
.ts-ndetail__item-meta {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ts-muted);
}
.ts-ndetail__item-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--pipe-white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-ndetail__item:hover .ts-ndetail__item-title { color: var(--pipe-signal); }

/* ---- 更多解决方案（复用首页应用场景卡片） ---- */
.ts-smore__grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ts-smore__read { margin-top: 36px; font-size: 14px; }
.ts-smore__read a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--pipe-rust);
  transition: color 0.25s ease;
}
.ts-smore__read a:hover { color: var(--pipe-signal); }
.ts-smore__read a span { display: inline-block; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.ts-smore__read a:hover span { transform: translateX(6px); }

/* ---- 详情页响应式 ---- */
@media (max-width: 1199px) {
  .ts-dsec__inner { padding: 80px 32px 96px; }
  .ts-pbody__inner { padding: 56px 32px 0; }
  .ts-dsec__split { grid-template-columns: 1fr; gap: 28px; }
  .ts-smore__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* 新闻详情：右栏下移，恢复单列阅读流 */
  .ts-ndetail__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px 96px; }
  .ts-ndetail__side { position: static; }
}

@media (max-width: 767px) {
  .ts-dsec__inner { padding: 64px 24px 80px; }
  .ts-dsec .ts-sol__head { margin-bottom: 32px; }
  .ts-dsec__grid { grid-template-columns: 1fr; gap: 14px; }
  .ts-pbody__inner { padding: 48px 24px 0; }
  .ts-smore__grid { grid-template-columns: 1fr; gap: 14px; }
  .ts-pagehead__actions { margin-top: 24px; }
  /* 新闻详情：封面 / 结论 / 推荐条目紧凑化 */
  .ts-ndetail__inner { padding: 48px 24px 80px; }
  .ts-ndetail__cover { margin-bottom: 36px; }
  .ts-ndetail__conclusion { padding: 24px; }
  .ts-ndetail__item-media { flex-basis: 84px; width: 84px; }
}

/* ==========================================================================
   联系我们页（contact.html）：左列直达渠道 + 右列留言表单，全暗色
   渠道卡复用首页玻璃卡语言（深底 + 细边框 + Signal 图标块 + hover 上浮）
   ========================================================================== */
.ts-contact { background: var(--pipe-deep); }
.ts-contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 64px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 72px;
  align-items: start;
}
.ts-contact .ts-sol__head { margin-bottom: 36px; }
.ts-contact__info { min-width: 0; }

/* ---- 渠道列表（玻璃卡条目） ---- */
.ts-contact__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ts-contact__link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}
a.ts-contact__link:hover {
  transform: translateY(-2px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.ts-contact__ico {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-contact__ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ts-contact__ico svg[fill="currentColor"] { fill: currentColor; stroke: none; }
.ts-contact__body { min-width: 0; display: flex; flex-direction: column; }
.ts-contact__label {
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}
.ts-contact__value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--pipe-white);
  word-break: break-word;
}
.ts-contact__note {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ts-muted);
}

/* ---- 表单卡（玻璃卡 + 暗色表单控件） ---- */
.ts-contact__card {
  padding: 40px 38px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  color-scheme: dark;   /* 原生控件（select 下拉等）暗色适配 */
}
/* 表单卡标题：卡片内不使用区块级大渐变主标，改为中等卡片标题 */
.ts-contact__card .ts-sol__kicker {
  display: block;
  white-space: normal;
  font-size: 22px;
  font-weight: 700;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--pipe-white);
}
.ts-contact__form { margin-top: 32px; }
.ts-contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ts-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.ts-field__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pipe-signal);
}
.ts-field__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--pipe-white);
  background: rgba(16, 31, 48, 0.6);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ts-field__input::placeholder { color: rgba(222, 227, 225, 0.4); }
.ts-field__input:focus {
  outline: none;
  border-color: var(--pipe-signal);
  box-shadow: 0 0 0 3px rgba(111, 160, 196, 0.18);
}
.ts-field__input--area { height: auto; padding: 12px 14px; resize: vertical; line-height: 1.6; }
.ts-field__phone { display: grid; grid-template-columns: minmax(150px, 210px) 1fr; gap: 10px; }
.ts-contact__form-hint {
  margin: -4px 0 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ts-muted);
}
.ts-contact__form-ok {
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pipe-signal);
  background: rgba(111, 160, 196, 0.08);
  border: 1px solid rgba(111, 160, 196, 0.3);
  border-radius: var(--radius);
}
.ts-contact__form-ok[hidden] { display: none; }

/* ---- 联系我们响应式 ---- */
@media (max-width: 1199px) {
  .ts-contact__inner { grid-template-columns: 1fr; gap: 56px; padding: 80px 32px 96px; }
}

@media (max-width: 767px) {
  .ts-contact__inner { padding: 64px 24px 80px; }
  .ts-contact__card { padding: 28px 22px; }
  .ts-contact__row { grid-template-columns: 1fr; gap: 0; }
  .ts-contact__link { padding: 16px; }
  .ts-contact__ico { flex-basis: 42px; width: 42px; height: 42px; }
}

/* ==========================================================================
   FQA 页面（faq.html 分类网格 + faq_cat.html 问答列表 + 其他分类切换）
   卡片复用首页玻璃卡语言：深底 + 细边框 + Signal 序号块 + hover 上浮
   ========================================================================== */
.ts-faq { background: var(--pipe-deep); }
.ts-faq__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px 64px 120px;
}
.ts-faq .ts-sol__head { margin-bottom: 44px; }
.ts-faq__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---- 分类卡（玻璃卡） ---- */
.ts-faqcard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease, background 0.25s ease;
}
.ts-faqcard:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.ts-faqcard__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-faqcard__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.25;
  color: var(--pipe-white);
}
.ts-faqcard__desc {
  flex: 1;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ts-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ts-faqcard__foot {
  width: 100%;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--pipe-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ts-faqcard__count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ts-muted);
}
.ts-faqcard__open {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--pipe-signal);
  white-space: nowrap;
  transition: transform 0.25s ease;
}
.ts-faqcard__open span { display: inline-block; transition: transform 0.25s ease; }
.ts-faqcard:hover .ts-faqcard__open span { transform: translateX(4px); }

/* ---- 第 6 卡：实心渐变 CTA ---- */
.ts-faqcard--cta {
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  border-color: transparent;
}
.ts-faqcard--cta:hover {
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.5);
}
.ts-faqcard--cta .ts-faqcard__num { color: var(--pipe-rust); background: var(--pipe-white); }
.ts-faqcard--cta .ts-faqcard__desc { color: rgba(255, 255, 255, 0.82); }
.ts-faqcard--cta .ts-faqcard__count { color: rgba(255, 255, 255, 0.7); }
.ts-faqcard--cta .ts-faqcard__open { color: var(--pipe-white); }
.ts-faqcard--cta .ts-faqcard__foot { border-top-color: rgba(255, 255, 255, 0.22); }

/* ---- 问答列表（分类页，2 卡片一行，对齐首页卡片语言） ---- */
.ts-faqa { background: var(--pipe-deep); }
.ts-faqa__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 64px 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch;
}
.ts-faqa__item {
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-left: 3px solid var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-faqa__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ts-faqa__num {
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-faqa__question {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.4;
  color: var(--pipe-white);
}
.ts-faqa__answer {
  margin-top: 14px;
  padding-left: 48px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}
.ts-faqa__back {
  margin-top: 24px;
  grid-column: 1 / -1;
  justify-self: start;
}

/* ---- 其他分类（横向切换，交替底色） ---- */
.ts-faqmore { background: #0A1526; }
.ts-faqmore__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 64px 96px;
}
.ts-faqmore .ts-sol__head { margin-bottom: 36px; }
.ts-faqmore__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ts-faqmore__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, background 0.25s ease;
}
.ts-faqmore__card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 160, 196, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.ts-faqmore__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--pipe-white);
}
.ts-faqmore__open { color: var(--pipe-signal); transition: transform 0.25s ease; }
.ts-faqmore__card:hover .ts-faqmore__open { transform: translateX(4px); }

/* ---- FQA 响应式 ---- */
@media (max-width: 1199px) {
  .ts-faq__inner { padding: 80px 32px 96px; }
  .ts-faq__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ts-faqa__inner { padding: 64px 32px 80px; }
  .ts-faqmore__inner { padding: 64px 32px 80px; }
}

@media (max-width: 767px) {
  .ts-faq__inner { padding: 64px 24px 80px; }
  .ts-faq .ts-sol__head { margin-bottom: 32px; }
  .ts-faq__grid { grid-template-columns: 1fr; gap: 14px; }
  .ts-faqcard { padding: 24px 22px 20px; }
  .ts-faqa__inner { padding: 48px 24px 64px; grid-template-columns: 1fr; }
  .ts-faqa__item { padding: 24px 20px; }
  .ts-faqa__answer { padding-left: 0; }
  .ts-faqmore__inner { padding: 56px 24px 64px; }
  .ts-faqmore__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   产品详情页（对齐首页设计语言：全深蓝底、每屏一屏 100vh、渐变主标、平卡）
   ========================================================================== */

/* ---- Hero（全幅产品图 + 科技网格，对齐首页首屏） ---- */
.ts-phero {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ts-phero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 70% center;   /* 主体偏右，左侧深色留文字区 */
}
/* 左→右暗化渐变遮罩：保证左列文字可读，右侧图保持清晰 */
.ts-phero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(16, 31, 48, 0.96) 0%, rgba(16, 31, 48, 0.78) 34%, rgba(16, 31, 48, 0.28) 62%, rgba(16, 31, 48, 0) 100%);
}
.ts-phero__inner {
  position: relative;
  z-index: 3;
  flex: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) 64px 40px;
  display: flex;
  align-items: center;
}
.ts-phero__content {
  max-width: 680px;
  animation: tsHeroFadeIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}
.ts-phero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-stretch: 125%;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  background: linear-gradient(23deg, #115bd0 0%, #67a2ff 28%, var(--pipe-white) 50%, #67b3e9 72%, #6b6df7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ts-phero__lead {
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--pipe-white);
}
.ts-phero__ans {
  margin-top: 10px;
  max-width: 620px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}
.ts-phero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* Hero 内按钮：PipeSolv 蓝色覆盖（与首页 Hero 一致：蓝色渐变 + 白色微网格） */
.ts-phero .ts-btn--primary {
  position: relative;
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  color: var(--pipe-white);
}
.ts-phero .ts-btn--primary:hover {
  background: linear-gradient(135deg, var(--pipe-rust-dark) 0%, var(--pipe-rust) 100%);
}
.ts-phero .ts-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.ts-phero .ts-btn--ghost {
  color: var(--pipe-white);
  border-color: var(--pipe-white);
}
.ts-phero .ts-btn--ghost:hover {
  border-color: var(--pipe-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--pipe-white);
}

/* ---- 通用内容分屏（对齐首页各屏：全深蓝 100vh + 顶部细分隔线 + 垂直居中） ---- */
.ts-pscreen {
  position: relative;
  background: var(--pipe-deep);
  color: var(--pipe-white);
  display: flex;
  align-items: flex-start;   /* 顶部对齐：分割线到内容间距恒定；高度随内容自适应，上下间隙对称 */
}
/* 长内容屏（FAQ / 富文本等）：内容多时随基础规则自然延伸 */
/* 与上一屏衔接的顶部渐变细分割线 */
.ts-pscreen::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pipe-line), transparent);
}
.ts-pscreen__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 56px 96px;
}
.ts-pscreen__head {
  max-width: 820px;
  margin-bottom: 14px;
}
.ts-pscreen__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--pipe-white);
}
.ts-pscreen__lead {
  margin-top: 10px;
  max-width: 720px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ts-muted);
}
/* 副标（口号）：白色 600，对齐首页二级页 banner 口号层级 */
.ts-pscreen__lead--ans {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--pipe-white);
}
/* 简述：更小、半透明（等宽字体，图纸标注感），对齐首页 banner 描述层级 */
.ts-pscreen__ans {
  margin-top: 8px;
  max-width: 720px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ts-muted);
}

/* ---- Hero 关键指标条（横贯全宽） ---- */
.ts-phero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--pipe-line);
  margin-top: 8px;
}
.ts-phero__stat { padding: 28px 24px 32px; border-right: 1px solid var(--pipe-line); }
.ts-phero__stat:last-child { border-right: 0; }
.ts-phero__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-stretch: 125%;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--pipe-white);
}
.ts-phero__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ts-muted);
}

/* ---- 核心特性（2×2 平卡，对齐首页场景卡语言：signal blue 编号 + 边框平卡） ---- */
.ts-feat__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ts-feat__card {
  padding: 28px 30px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-feat__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
.ts-feat__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.ts-feat__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--pipe-white);
  margin-bottom: 10px;
}
.ts-feat__desc { font-size: 15.5px; line-height: 1.7; color: var(--ts-muted); }

/* ---- 现场图墙（自定义图片板块：每行双图，深蓝底带边框圆角） ---- */
.ts-pgallery {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}
.ts-pgallery__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ts-pgallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-line);
}
.ts-pgallery__item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-pgallery__item:hover img { transform: scale(1.03); }

/* ---- 技术参数（Tab + 表格） ---- */
.ts-pdetail__specs { margin-top: 24px; }
.ts-pdetail__spec-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--pipe-line);
  padding-bottom: 14px;
}
.ts-pdetail__spec-tab {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ts-muted);
  background: transparent;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ts-pdetail__spec-tab:hover { color: var(--pipe-white); border-color: var(--pipe-signal); }
.ts-pdetail__spec-tab.is-active {
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  border-color: var(--pipe-signal);
}
.ts-pdetail__spec-pane { display: none; }
.ts-pdetail__spec-pane.is-active { display: block; }
.ts-pdetail__spec-table { width: 100%; border-collapse: collapse; }
.ts-pdetail__spec-table tr { border-bottom: 1px solid var(--pipe-line); }
.ts-pdetail__spec-table td { padding: 18px 8px; font-size: 15px; vertical-align: top; }
.ts-pdetail__spec-k { width: 42%; color: var(--ts-muted); }
.ts-pdetail__spec-v { color: var(--pipe-white); font-family: var(--font-mono); text-align: right; }

/* ---- 应用场景（2 列大图卡） ---- */
.ts-pdetail__apps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ts-pdetail__app {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--pipe-line);
}
.ts-pdetail__app img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-pdetail__app:hover img { transform: scale(1.05); }
.ts-pdetail__app::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 31, 48, 0.92) 0%, rgba(16, 31, 48, 0.25) 55%, transparent 100%);
}
.ts-pdetail__app-idx {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--pipe-white);
  background: rgba(16, 31, 48, 0.55);
  padding: 4px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-line);
}
.ts-pdetail__app-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.ts-pdetail__app-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: var(--pipe-white);
}
.ts-pdetail__app-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.ts-pdetail__app:hover .ts-pdetail__app-cta { color: var(--pipe-white); }

/* ---- FAQ（编号列表） ---- */
.ts-pfaq { margin-top: 24px; }
.ts-pfaq__item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--pipe-line);
}
.ts-pfaq__item:last-of-type { border-bottom: 1px solid var(--pipe-line); }
.ts-pfaq__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--pipe-signal);
  padding-top: 4px;
}
.ts-pfaq__body { flex: 1; }
.ts-pfaq__question {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--pipe-white);
  margin-bottom: 8px;
}
.ts-pfaq__answer { font-size: 16px; line-height: 1.7; color: var(--ts-muted); }
.ts-pfaq__more { margin-top: 28px; font-family: var(--font-mono); font-size: 14px; }
.ts-pfaq__more a { color: var(--pipe-signal); transition: color 0.2s ease; }
.ts-pfaq__more a:hover { color: var(--pipe-white); }

/* ---- 可搭配件（auto-fit 平卡，signal blue 编号标签） ---- */
.ts-pacc__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.ts-pacc__card {
  padding: 28px 30px 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.ts-pacc__card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 160, 196, 0.5);
  box-shadow: 0 18px 40px rgba(4, 10, 18, 0.45);
}
.ts-pacc__num {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--pipe-deep);
  background: var(--pipe-signal);
  padding: 3px 8px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.ts-pacc__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--pipe-white);
  margin-bottom: 10px;
}
.ts-pacc__desc { font-size: 15.5px; line-height: 1.65; color: var(--ts-muted); margin-bottom: 16px; }
.ts-pacc__spec {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--pipe-signal);
}

/* ---- 视频（可选） ---- */
.ts-pmedia { background: #0A1526; padding: 96px 64px; }
.ts-pmedia__video-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--pipe-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ts-pmedia__video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #000; }

/* ---- 详情页组件响应式 ---- */
@media (max-width: 1199px) {
  .ts-phero__inner { padding: calc(var(--nav-h) + 60px) 40px 32px; }
  .ts-pscreen__inner { padding: 40px 40px 44px; }
  .ts-phero__stats { margin-top: 0; }
  .ts-phero__stat { padding: 22px 20px 26px; }
  .ts-pmedia { padding: 64px 32px; }
}
@media (max-width: 767px) {
  .ts-phero { height: auto; min-height: 100svh; }
  .ts-phero__slide::after {
    background: linear-gradient(100deg, rgba(16, 31, 48, 0.97) 0%, rgba(16, 31, 48, 0.85) 100%);
  }
  .ts-phero__inner { padding: calc(var(--nav-h) + 48px) 24px 28px; }
  .ts-phero__content { max-width: 100%; }
  .ts-phero__title { font-size: clamp(34px, 11vw, 52px); }
  .ts-phero__actions { gap: 10px; }
  .ts-phero__actions .ts-btn { flex: 1 1 auto; }
  .ts-phero__stats { grid-template-columns: repeat(2, 1fr); }
  .ts-phero__stat:nth-child(2n) { border-right: 0; }
  .ts-phero__stat { padding: 20px 18px 24px; }
  .ts-phero__num { font-size: 22px; }
  .ts-pscreen { height: auto; min-height: 100svh; }
  .ts-pscreen__inner { padding: 64px 24px 72px; }
  .ts-pscreen__head { margin-bottom: 8px; }
  .ts-feat__grid,
  .ts-pgallery__row,
  .ts-pdetail__apps,
  .ts-pacc__grid { grid-template-columns: 1fr; gap: 16px; }
  .ts-pgallery__item img { height: 220px; }
  .ts-pdetail__app { height: 200px; }
  .ts-pdetail__spec-k { width: 48%; }
  .ts-pfaq__item { gap: 16px; }
  .ts-pfaq__num { display: none; }
  .ts-pmedia { padding: 48px 20px; }
}

/* ==========================================================================
   解决方案详情页（与产品详情页共用 .ts-phero / .ts-pscreen 分屏体系，
   仅补充方案页特有组件样式）
   ========================================================================== */

/* ---- 分屏内主按钮：PipeSolv 蓝色覆盖（与 Hero 一致，去黄色按钮） ---- */
.ts-pscreen .ts-btn--primary {
  background: linear-gradient(135deg, var(--pipe-rust) 0%, var(--pipe-rust-dark) 100%);
  color: var(--pipe-white);
}
.ts-pscreen .ts-btn--primary:hover {
  background: linear-gradient(135deg, var(--pipe-rust-dark) 0%, var(--pipe-rust) 100%);
}

/* ---- 图文分栏 / 更多方案网格在分屏内的顶部间距 ---- */
.ts-pscreen .ts-dsec__split,
.ts-pscreen .ts-smore__grid { margin-top: 20px; }

/* ---- Answer First 富文本：分屏内限宽，保持阅读流 ---- */
.ts-pscreen .ts-nbody__text { max-width: 900px; }

/* ---- 合规红线：应用筛查提示区（油 / 化工方案专属） ---- */
.ts-safety__points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  max-width: 900px;
  display: grid;
  gap: 12px;
}
.ts-safety__point {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ts-muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--pipe-line);
  border-left: 3px solid var(--pipe-signal);
  border-radius: var(--radius);
}
.ts-safety__point::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--pipe-signal);
  border-radius: 50%;
}
.ts-safety__foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 28px;
}
.ts-safety__note {
  flex: 1 1 420px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ts-muted);
}

/* ==========================================================================
   右侧浮动联系方式条（WhatsApp / Email / 微信）
   桌面端：右侧竖向圆形按钮，滚动过首屏后淡入（不遮挡首屏轮播/雷达）
   移动端：转底部固定横向条，始终显示
   ========================================================================== */
.ts-contactbar {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ts-contactbar.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.ts-contactbar__item {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pipe-line);
  border-radius: 50%;
  background: rgba(16, 31, 48, 0.82);
  color: var(--pipe-white);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.ts-contactbar__item:hover {
  background: var(--pipe-signal);
  border-color: var(--pipe-signal);
  color: var(--pipe-deep);
  transform: translateY(-2px);
}
.ts-contactbar__icon { width: 22px; height: 22px; }
.ts-contactbar__label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pipe-deep);
  background: var(--pipe-white);
  border-radius: var(--radius);
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.ts-contactbar__item:hover .ts-contactbar__label { opacity: 1; }

/* ---- 微信二维码弹窗 ---- */
.ts-wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 24, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ts-wechat-modal.is-open { opacity: 1; pointer-events: auto; }
.ts-wechat-modal__card {
  position: relative;
  width: 300px;
  padding: 36px 32px 32px;
  background: var(--pipe-white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(4, 10, 18, 0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-wechat-modal.is-open .ts-wechat-modal__card { transform: none; }
.ts-wechat-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--ts-ink);
  cursor: pointer;
}
.ts-wechat-modal__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ts-ink);
  margin-bottom: 18px;
}
.ts-wechat-modal__qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  border: 1px solid var(--ts-line-dark);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-wechat-modal__qr img { width: 100%; height: 100%; object-fit: contain; }
.ts-wechat-modal__id {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--pipe-blue);
  margin: 0 0 8px;
}
.ts-wechat-modal__hint { font-size: 13px; color: var(--ts-muted); }

/* ---- 报价弹窗（Get a Quote）：白底卡片，对齐微信弹窗设计语言 ---- */
.ts-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 15, 24, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ts-quote-modal.is-open { opacity: 1; pointer-events: auto; }
.ts-quote-modal__card {
  position: relative;
  width: min(460px, calc(100vw - 32px));
  padding: 44px 40px 40px;
  background: var(--pipe-white);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(4, 10, 18, 0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-quote-modal.is-open .ts-quote-modal__card { transform: none; }
.ts-quote-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  color: var(--ts-ink);
  cursor: pointer;
}
.ts-quote-modal__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pipe-rust);
  margin-bottom: 8px;
}
.ts-quote-modal__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ts-ink);
  margin-bottom: 8px;
}
.ts-quote-modal__sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ts-ink);
  margin-bottom: 24px;
}
.ts-quote-modal__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.ts-quote-modal__tabs button {
  flex: 1;
  height: 40px;
  border: 1px solid var(--ts-line-dark);
  border-radius: var(--radius);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ts-ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ts-quote-modal__tabs button.is-active {
  background: var(--pipe-rust);
  border-color: var(--pipe-rust);
  color: #fff;
}
.ts-quote-modal__pane {
  display: none;
  gap: 10px;
  margin-bottom: 20px;
}
.ts-quote-modal__pane.is-active { display: flex; }
.ts-quote-modal__code {
  width: 38%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--ts-line-dark);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ts-ink);
}
.ts-quote-modal__input {
  flex: 1;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--ts-line-dark);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ts-ink);
}
.ts-quote-modal__input::placeholder { color: rgba(32, 38, 43, 0.42); }
.ts-quote-modal__input:focus,
.ts-quote-modal__code:focus { outline: none; border-color: var(--pipe-rust); }
.ts-quote-modal__submit {
  width: 100%;
  background: var(--pipe-rust);
  color: #fff;
}
.ts-quote-modal__submit:hover { background: var(--pipe-rust-dark); }
.ts-quote-modal__done {
  text-align: center;
  padding: 18px 0 4px;
}
.ts-quote-modal__done-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--ts-ink);
  margin-bottom: 6px;
}
.ts-quote-modal__done-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ts-ink);
}

/* ---- 移动端：底部固定横向浮动条 ---- */
@media (max-width: 767px) {
  body { padding-bottom: 62px; }
  .ts-contactbar {
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    padding: 8px 16px calc(8px + env(safe-area-inset-bottom));
    background: rgba(16, 31, 48, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--pipe-line);
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .ts-contactbar__item {
    width: auto;
    height: auto;
    flex: 1;
    border: 0;
    border-radius: 0;
    background: transparent;
    flex-direction: column;
    gap: 4px;
    padding: 6px 0;
  }
  .ts-contactbar__item:hover {
    background: transparent;
    transform: none;
    color: var(--pipe-white);
  }
  .ts-contactbar__icon { width: 20px; height: 20px; }
  .ts-contactbar__label {
    position: static;
    transform: none;
    opacity: 1;
    background: transparent;
    color: var(--pipe-white);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0;
    padding: 0;
    pointer-events: auto;
  }
}

/* ---- 产品详情屏 2 · 第二屏视频（后台「内容管理-视频」配置；滚入自动播放、滚出暂停） ---- */
.ts-video {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 36px auto 0;
  border-radius: 14px;
  overflow: hidden;
  background: #060d18;
  box-shadow: 0 30px 70px rgba(0, 10, 25, 0.5);
}
.ts-video__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #060d18;
  object-fit: cover;
}
.ts-video__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #060d18;
}
.ts-video__mute {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 20, 38, 0.55);
  color: var(--pipe-white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.ts-video__mute:hover { background: rgba(8, 20, 38, 0.85); border-color: var(--ts-yellow); color: var(--ts-yellow); }
.ts-video__mute .ts-video__mute-off { display: none; }
.ts-video__mute.is-sound .ts-video__mute-on { display: none; }
.ts-video__mute.is-sound .ts-video__mute-off { display: inline; }

/* ---- 产品详情屏 3 · 正文板块（后台「内容管理-正文」富文本，黑底浅字图文混排） ---- */
.ts-pscreen--body {
  background: var(--pipe-deep);
  color: #f2f6fb;
}
.ts-pscreen--body::before { background: linear-gradient(90deg, transparent, rgba(126, 214, 255, 0.10), transparent); }
.ts-pscreen__inner--body { max-width: var(--container); }
.ts-richtext { font-size: 17px; line-height: 1.9; }
.ts-richtext p { margin: 0 0 1.15em; }
.ts-richtext img { max-width: 100%; height: auto; border-radius: 12px; margin: 0.5em 0 1.3em; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); }
.ts-richtext h2, .ts-richtext h3, .ts-richtext h4 { font-family: var(--font-head); color: #ffffff; line-height: 1.35; margin: 1.5em 0 0.55em; }
.ts-richtext h2 { font-size: 27px; }
.ts-richtext h3 { font-size: 21px; }
.ts-richtext h4 { font-size: 18px; }
.ts-richtext a { color: #7cc4ff; text-decoration: underline; text-underline-offset: 3px; }
.ts-richtext ul, .ts-richtext ol { margin: 0 0 1.2em; padding-left: 1.5em; }
.ts-richtext li { margin-bottom: 0.4em; }
.ts-richtext blockquote { margin: 1.3em 0; padding: 0.4em 1.2em; border-left: 3px solid var(--ts-yellow); color: #b7c6d5; }
.ts-richtext hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.14); margin: 1.6em 0; }

/* ---- 产品详情屏 · 图文板块（后台「内容管理-图文板块」；左图右文，显示在正文板块下方） ---- */
.ts-ti { margin-top: 20px; display: flex; flex-direction: column; gap: 26px; }
.ts-ti__row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 34px; align-items: center; }
.ts-ti__media { margin: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--pipe-line); }
.ts-ti__media img { display: block; width: 100%; height: auto; }
.ts-ti__title { font-family: var(--font-head); color: #ffffff; font-size: 22px; line-height: 1.35; margin: 0 0 10px; }
.ts-ti__desc { font-size: 15.5px; line-height: 1.85; color: #b7c6d5; }
@media (max-width: 767px) {
  .ts-ti__row { grid-template-columns: 1fr; gap: 14px; }
  .ts-ti__title { font-size: 19px; }
}
@media (max-width: 767px) {
  .ts-video { border-radius: 10px; }
  .ts-richtext { font-size: 16px; line-height: 1.85; }
  .ts-richtext h2 { font-size: 22px; }
}

/* ---- 产品详情屏 4 · 现场图廊（后台「内容管理-图廊」，建议 4-6 张，3 列网格） ---- */
.ts-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ts-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-line);
}
.ts-gallery__item img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ts-gallery__item:hover img { transform: scale(1.03); }

/* ---- 产品详情屏 5 · 自定义图片板块（1 图全宽 / 2 图并排，不支持背景色） ---- */
.ts-cmedia {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ts-cmedia__block {
  display: grid;
  gap: 18px;
}
.ts-cmedia__block--single { grid-template-columns: 1fr; }
.ts-cmedia__block--pair { grid-template-columns: repeat(2, 1fr); }
.ts-cmedia__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--pipe-line);
}
.ts-cmedia__item img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.ts-cmedia__block--single .ts-cmedia__item img { height: 580px; }
@media (max-width: 767px) {
  .ts-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ts-gallery__item img { height: 200px; }
  .ts-cmedia__block--pair { grid-template-columns: 1fr; gap: 12px; }
  .ts-cmedia__item img,
  .ts-cmedia__block--single .ts-cmedia__item img { height: 260px; }
}

