/* ============================================================
   Pages Lines Theme — 内容页线条感（与首页 home-tech 同语言）
   作用域：body:not(.home-tech) 非首页内容页
   原则：只改视觉，不改变 HTML 结构与布局骨架
   导航/页脚统一在 site-chrome.css，本文件不重复
   ============================================================ */

/* ===== 全局 ===== */
body:not(.home-tech) .bg-grid,
body:not(.home-tech) .bg-glow {
  display: none;
}
body:not(.home-tech) {
  background: #ffffff;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

/* ===== 内容区（核心业务页） ===== */
body:not(.home-tech) .detail-layout {
  width: min(1440px, calc(100% - 120px));
  max-width: none;
  margin: 0 auto;
  padding: 64px 0 88px;
}
body:not(.home-tech) .detail-main {
  background: #ffffff;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 0;
  padding: 48px clamp(28px, 3vw, 52px) 56px;
  box-shadow: 0 12px 44px rgba(15, 23, 42, 0.04);
}
body:not(.home-tech) .service-sidebar {
  background: #ffffff;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 0;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  top: 128px;
}
body:not(.home-tech) .sidebar-title {
  color: #a16207;
  letter-spacing: 0.18em;
  border-bottom-color: rgba(212, 160, 23, 0.25);
}
body:not(.home-tech) .sidebar-link {
  color: #475569;
  border-radius: 0;
  border-left: 2px solid transparent;
  letter-spacing: 0.04em;
}
body:not(.home-tech) .sidebar-link:hover {
  color: #a16207;
  background: rgba(212, 160, 23, 0.06);
  border-left-color: #d4a017;
}
body:not(.home-tech) .sidebar-link.active {
  color: #a16207;
  background: rgba(212, 160, 23, 0.1);
  border-left-color: #d4a017;
  font-weight: 600;
}

/* ===== 正文 ===== */
body:not(.home-tech) .detail-header {
  margin-bottom: 44px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.22);
}
body:not(.home-tech) .detail-eyebrow {
  color: #d4a017;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
}
body:not(.home-tech) .detail-title {
  color: #0f172a;
  font-size: clamp(30px, 3.4vw, 42px);
}
body:not(.home-tech) .detail-meta {
  color: #94a3b8;
  letter-spacing: 0.08em;
}
body:not(.home-tech) .article-body {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.9;
}
body:not(.home-tech) .article-body > p {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 16px;
}
body:not(.home-tech) .article-body p {
  margin-bottom: 20px;
}
body:not(.home-tech) .article-body h2 {
  color: #0f172a;
  margin: 60px 0 22px;
  padding-left: 16px;
  border-left: 3px solid #d4a017;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
body:not(.home-tech) .article-body h2:first-of-type {
  margin-top: 4px;
}
body:not(.home-tech) .article-body h3 {
  color: #0f172a;
  margin: 32px 0 12px;
  font-size: 18px;
}
body:not(.home-tech) .article-body strong,
body:not(.home-tech) .article-body b {
  color: #0f172a;
}
body:not(.home-tech) .article-body em {
  color: #a16207;
  font-style: normal;
}
body:not(.home-tech) .article-body li {
  color: #475569;
}
body:not(.home-tech) .article-body blockquote {
  border-left: 3px solid #d4a017;
  background: rgba(212, 160, 23, 0.06);
  color: #334155;
  border-radius: 0;
}

/* ===== 功能块 ===== */
body:not(.home-tech) .feature-block {
  position: relative;
  margin: 44px 0;
  padding: 38px 34px 36px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 0;
  background: #ffffff;
  overflow: hidden;
}
body:not(.home-tech) .feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a017, #f2cd52);
}
body:not(.home-tech) .feature-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
body:not(.home-tech) .feature-block-title::before {
  content: '';
  width: 6px;
  height: 20px;
  border-radius: 0;
  background: linear-gradient(180deg, #d4a017, #f2cd52);
  flex: 0 0 auto;
}
body:not(.home-tech) .feature-block-desc {
  margin: 0 0 26px;
  max-width: 780px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.85;
}
body:not(.home-tech) .feature-sub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin: 0;
}
body:not(.home-tech) .feature-sub-item {
  position: relative;
  margin: 0;
  padding: 20px 20px 18px 24px;
  background: #fafbfc;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0;
}
body:not(.home-tech) .feature-sub-item::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 0;
  background: #d4a017;
}
body:not(.home-tech) .feature-sub-item h4 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
body:not(.home-tech) .feature-sub-item p {
  margin: 0;
  color: #64748b;
  font-size: 13.5px;
  line-height: 1.75;
}

/* ===== 相关推荐 ===== */
body:not(.home-tech) .related-section {
  width: min(1440px, calc(100% - 120px));
  max-width: none;
  margin: 0 auto;
  padding: 0 0 88px;
}
body:not(.home-tech) .related-head {
  color: #a16207;
  letter-spacing: 0.18em;
  font-weight: 600;
}
body:not(.home-tech) .related-head::after {
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.4), transparent);
}
body:not(.home-tech) .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body:not(.home-tech) .related-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(18, 24, 38, 0.13) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 28px 26px 26px;
  transition: background 0.25s, transform 0.25s;
}
body:not(.home-tech) .related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  background: rgba(196, 145, 28, 0.68);
  transition: opacity 0.22s ease;
}
body:not(.home-tech) .related-card:hover {
  transform: none;
  background: rgb(251, 252, 253);
}
body:not(.home-tech) .related-card:hover::before {
  opacity: 0.8;
}
body:not(.home-tech) .related-date {
  color: #a16207;
  letter-spacing: 0.1em;
}
body:not(.home-tech) .related-title {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.55;
}
body:not(.home-tech) .related-excerpt {
  color: #64748b;
  line-height: 1.7;
}

/* ===== 内容页统一 Banner：核心业务 / 行业洞察 / 关于我们 ===== */
body:not(.home-tech) .svc-hero,
body:not(.home-tech) .news-hero,
body:not(.home-tech) .about-hero {
  position: relative;
  width: 100%;
  height: 520px;
  padding: 84px 0 64px;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 69% 37%, rgba(38, 141, 194, 0.1), transparent 30%),
    radial-gradient(circle at 47% 12%, rgba(227, 181, 46, 0.07), transparent 24%),
    linear-gradient(132deg, #040710 0%, #060b15 50%, #071020 100%);
  overflow: hidden;
}
body:not(.home-tech) .svc-hero::after,
body:not(.home-tech) .news-hero::after,
body:not(.home-tech) .about-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(227, 181, 46, 0.55), transparent);
}
body:not(.home-tech) .svc-hero-inner,
body:not(.home-tech) .news-hero-inner,
body:not(.home-tech) .about-hero-inner {
  width: min(1440px, calc(100% - 120px));
  max-width: none;
  margin: 0 auto;
}
body:not(.home-tech) .svc-hero-title,
body:not(.home-tech) .news-hero-title,
body:not(.home-tech) .about-title {
  color: var(--copy-on-dark);
  font-size: var(--type-hero);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
body:not(.home-tech) .svc-hero-sub,
body:not(.home-tech) .news-hero-subtitle,
body:not(.home-tech) .about-subtitle {
  color: #f2cd52;
  font-family: "SF Mono", "Cascadia Code", monospace;
  font-size: var(--type-meta);
  letter-spacing: 0.1em;
  margin: 0 0 22px;
}

/* ===== 核心业务页：沉浸式全屏分区布局 ===== */

/* -- Section 1: Service Hero content -- */
body:not(.home-tech) .svc-hero-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  font-family: "SF Mono", "Cascadia Code", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}
body:not(.home-tech) .svc-hero-num {
  color: rgba(227, 181, 46, 0.7);
}
body:not(.home-tech) .svc-hero-tag {
  color: rgba(255, 255, 255, 0.44);
}
body:not(.home-tech) .svc-hero-desc {
  color: rgba(235, 241, 249, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 28px;
}
body:not(.home-tech) .svc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
body:not(.home-tech) .svc-hero-tag-item {
  padding: 8px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(227, 181, 46, 0.3);
}

/* -- Section: Generic section heading -- */
body:not(.home-tech) .svc-section {
  width: min(1440px, calc(100% - 120px));
  max-width: none;
  margin: 0 auto;
  padding: 96px 0;
}
body:not(.home-tech) .svc-section-head {
  margin-bottom: 60px;
}
body:not(.home-tech) .svc-section-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-family: "SF Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
}
body:not(.home-tech) .svc-section-num {
  color: rgba(227, 181, 46, 0.7);
}
body:not(.home-tech) .svc-section-tag {
  color: #94a3b8;
}
body:not(.home-tech) .svc-section-title {
  position: relative;
  color: #000000;
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 720;
  letter-spacing: -0.03em;
  padding-top: 24px;
  margin-bottom: 0;
}
body:not(.home-tech) .svc-section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 54px;
  height: 3px;
  background: #e3b52e;
}
body:not(.home-tech) .svc-section-sub {
  color: #000000;
  font-size: 17px;
  line-height: 1.8;
  margin-top: 23px;
  max-width: 760px;
}

/* -- Section 2: Module cards grid -- */
body:not(.home-tech) .svc-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body:not(.home-tech) .svc-module-card {
  background: #ffffff;
  border: 1px solid rgba(18, 24, 38, 0.13);
  padding: 44px 38px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}
body:not(.home-tech) .svc-module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  background: rgba(196, 145, 28, 0.68);
  transition: opacity 0.22s ease;
}
body:not(.home-tech) .svc-module-card:hover {
  background: rgb(251, 252, 253);
  transform: translateY(-2px);
  box-shadow: rgba(18, 35, 52, 0.06) 0 14px 38px;
}
body:not(.home-tech) .svc-module-card:hover::before {
  opacity: 0.8;
}
body:not(.home-tech) .svc-module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
body:not(.home-tech) .svc-module-title {
  color: #000000;
  font-size: 22px;
  font-weight: 660;
  letter-spacing: -0.02em;
  margin: 0;
}
body:not(.home-tech) .svc-module-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(227, 181, 46, 0.5);
  background: transparent;
  flex-shrink: 0;
}
body:not(.home-tech) .svc-module-icon svg {
  width: 20px;
  height: 20px;
  stroke: #e3b52e;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body:not(.home-tech) .svc-module-desc {
  color: #000000;
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}
body:not(.home-tech) .svc-module-sub-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body:not(.home-tech) .svc-module-sub-item {
  color: #000000;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
body:not(.home-tech) .svc-module-sub-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e3b52e;
  flex-shrink: 0;
}
body:not(.home-tech) .svc-module-sub-item-desc {
  color: #333333;
  font-size: 12px;
  margin-left: 14px;
  line-height: 1.6;
}
body:not(.home-tech) .svc-module-card--wide {
  grid-column: 1 / -1;
}
body:not(.home-tech) .svc-module-card--wide .svc-module-desc {
  flex: none;
}
body:not(.home-tech) .svc-module-card--wide .svc-module-sub-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}
body:not(.home-tech) .svc-module-card--wide .svc-module-sub-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
body:not(.home-tech) .svc-module-card--wide .svc-module-sub-item-desc {
  margin-left: 0;
}

/* -- Section 3: Advantage cards -- */
body:not(.home-tech) .svc-adv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body:not(.home-tech) .svc-adv-card {
  background: #ffffff;
  border: 1px solid rgba(18, 24, 38, 0.13);
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s;
}
body:not(.home-tech) .svc-adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  opacity: 0;
  background: rgba(196, 145, 28, 0.68);
  transition: opacity 0.22s ease;
}
body:not(.home-tech) .svc-adv-card:hover {
  background: rgb(251, 252, 253);
  transform: translateY(-2px);
  box-shadow: rgba(18, 35, 52, 0.06) 0 14px 38px;
}
body:not(.home-tech) .svc-adv-card:hover::before {
  opacity: 0.8;
}
body:not(.home-tech) .svc-adv-num {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 760;
  color: #e3b52e;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
body:not(.home-tech) .svc-adv-title {
  color: #000000;
  font-size: 22px;
  font-weight: 660;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
body:not(.home-tech) .svc-adv-desc {
  color: #000000;
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  body:not(.home-tech) .svc-modules-grid,
  body:not(.home-tech) .svc-adv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body:not(.home-tech) .svc-module-card--wide .svc-module-sub-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  body:not(.home-tech) .svc-hero,
  body:not(.home-tech) .news-hero,
  body:not(.home-tech) .about-hero {
    height: auto;
    min-height: 440px;
    padding: 64px 0;
  }
  body:not(.home-tech) .svc-hero-inner,
  body:not(.home-tech) .news-hero-inner,
  body:not(.home-tech) .about-hero-inner,
  body:not(.home-tech) .svc-section {
    width: calc(100% - 40px);
  }
  body:not(.home-tech) .svc-section {
    padding: 64px 0;
  }
  body:not(.home-tech) .svc-section-head {
    margin-bottom: 36px;
  }
  body:not(.home-tech) .svc-module-card {
    padding: 32px 28px 28px;
  }
  body:not(.home-tech) .svc-adv-card {
    padding: 36px 28px 28px;
  }
}
@media (max-width: 768px) {
  body:not(.home-tech) .svc-modules-grid,
  body:not(.home-tech) .svc-adv-grid {
    grid-template-columns: 1fr;
  }
  body:not(.home-tech) .svc-module-card--wide .svc-module-sub-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body:not(.home-tech) .svc-hero,
  body:not(.home-tech) .news-hero,
  body:not(.home-tech) .about-hero {
    min-height: 0;
    padding: 48px 0;
  }
}

/* ===== Banner 内容：行业洞察 + 关于我们 ===== */
body:not(.home-tech) .news-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}
body:not(.home-tech) .about-hero-inner {
  text-align: left;
}
body:not(.home-tech) .news-hero-sub {
  color: var(--copy-on-dark-body);
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
  max-width: 720px;
  margin-bottom: 28px;
}
body:not(.home-tech) .news-stats {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(227, 181, 46, 0.2);
  border-top-color: rgba(227, 181, 46, 0.2);
  justify-content: flex-start;
}
body:not(.home-tech) .news-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body:not(.home-tech) .news-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #f2cd52;
}
body:not(.home-tech) .news-stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--copy-on-dark-muted);
}
body:not(.home-tech) .about-desc {
  color: var(--copy-on-dark-body);
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
  max-width: 720px;
  margin: 0;
}
body:not(.home-tech) .about-desc p {
  margin-bottom: 16px;
}
body:not(.home-tech) .about-desc p:last-child {
  margin-bottom: 0;
}

/* ===== 内容区：行业洞察 + 关于我们 ===== */
body:not(.home-tech) .news-list-section,
body:not(.home-tech) .about-section {
  width: min(1440px, calc(100% - 120px));
  max-width: none;
  margin: 0 auto;
  padding: 96px 0;
}

/* ---- 区块标题：左对齐 + 金色短线 ---- */
body:not(.home-tech) .about-section .section-head-center {
  text-align: left;
  margin-bottom: 60px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
body:not(.home-tech) .about-section .section-meta {
  justify-content: flex-start;
  margin-bottom: 20px;
}
body:not(.home-tech) .about-section .section-num {
  color: rgba(227, 181, 46, 0.7);
}
body:not(.home-tech) .about-section .section-tag {
  color: #94a3b8;
}
body:not(.home-tech) .about-section .section-title {
  position: relative;
  color: var(--copy-title);
  font-size: var(--type-section-title);
  font-weight: 720;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
body:not(.home-tech) .about-section .section-title::before {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 24px;
  background: #e3b52e;
}
body:not(.home-tech) .about-section .section-sub {
  color: var(--copy-body);
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
  margin-top: 23px;
  max-width: 760px;
}
body:not(.home-tech) .news-list-head {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(18, 24, 38, 0.1);
}
body:not(.home-tech) .news-list-title {
  position: relative;
  color: var(--copy-title);
  font-size: var(--type-list-title);
  font-weight: 720;
  letter-spacing: -0.02em;
}
body:not(.home-tech) .news-list-title::before {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 18px;
  background: #e3b52e;
}
body:not(.home-tech) .news-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

/* 行业洞察列表不显示标题和分隔线，仅保留分类筛选。 */
body.news-index-page .news-list-head {
  justify-content: flex-end;
  padding-bottom: 0;
  border-bottom: 0;
}

/* ===== 卡片网格：独立卡片 ===== */
body:not(.home-tech) .news-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body:not(.home-tech) .about-grid,
body:not(.home-tech) .team-grid,
body:not(.home-tech) .jobs-grid {
  display: grid;
  gap: 16px;
}
body:not(.home-tech) .about-grid,
body:not(.home-tech) .jobs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body:not(.home-tech) .team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---- 通用卡片：白底独立边框，hover 顶部金线 ---- */
body:not(.home-tech) .news-card,
body:not(.home-tech) .about-card,
body:not(.home-tech) .team-card,
body:not(.home-tech) .job-card {
  background: #ffffff;
  border: 1px solid rgba(18, 24, 38, 0.13) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body:not(.home-tech) .news-card {
  padding: 30px 28px 26px;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 18px;
  row-gap: 20px;
  border-radius: 6px !important;
  color: #121826;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}
body:not(.home-tech) .about-card {
  padding: 44px 38px 36px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
body:not(.home-tech) .team-card {
  padding: 40px 34px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
body:not(.home-tech) .job-card {
  padding: 44px 38px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
body:not(.home-tech) .news-card::before,
body:not(.home-tech) .about-card::before,
body:not(.home-tech) .team-card::before,
body:not(.home-tech) .job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  background: rgba(196, 145, 28, 0.68);
  transition: opacity 0.22s ease;
}
body:not(.home-tech) .news-card:hover,
body:not(.home-tech) .about-card:hover,
body:not(.home-tech) .team-card:hover,
body:not(.home-tech) .job-card:hover {
  background: rgb(251, 252, 253);
  transform: translateY(-2px);
  box-shadow: rgba(18, 35, 52, 0.06) 0 14px 38px !important;
}
body:not(.home-tech) .news-card:hover {
  border-color: rgba(196, 145, 28, 0.42) !important;
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09) !important;
}
body:not(.home-tech) .news-card:hover::before,
body:not(.home-tech) .about-card:hover::before,
body:not(.home-tech) .team-card:hover::before,
body:not(.home-tech) .job-card:hover::before {
  opacity: 0.8;
}

/* ---- 卡片图标：与首页 core-icon-wrap 一致的圆形描边 ---- */
body:not(.home-tech) .about-card-icon,
body:not(.home-tech) .team-card-icon,
body:not(.home-tech) .job-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: 1px solid rgba(227, 181, 46, 0.5);
  background: transparent !important;
  box-shadow: none !important;
  color: #e3b52e;
  flex-shrink: 0;
}
body:not(.home-tech) .about-card-icon svg,
body:not(.home-tech) .team-card-icon svg,
body:not(.home-tech) .job-icon svg {
  width: 20px;
  height: 20px;
  stroke: #e3b52e !important;
  color: #e3b52e !important;
}

/* ---- 卡片标题/描述：与首页 core-card 对齐 ---- */
body:not(.home-tech) .about-card-head,
body:not(.home-tech) .team-card-head,
body:not(.home-tech) .job-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
body:not(.home-tech) .about-card-title {
  color: var(--copy-title);
  font-size: var(--type-card-title);
  font-weight: 660;
  letter-spacing: -0.02em;
  margin: 0;
}
body:not(.home-tech) .team-card-title {
  color: var(--copy-title);
  font-size: var(--type-subtitle);
  font-weight: 660;
  letter-spacing: -0.01em;
  margin: 0;
}
body:not(.home-tech) .job-title {
  color: var(--copy-title);
  font-size: var(--type-card-title);
  font-weight: 660;
  letter-spacing: -0.02em;
  margin: 0;
}
body:not(.home-tech) .about-card-desc,
body:not(.home-tech) .team-card-desc {
  color: var(--copy-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  flex: 1;
}
body:not(.home-tech) .job-desc {
  color: var(--copy-body);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  margin-top: 4px;
}
body:not(.home-tech) .job-meta {
  color: var(--copy-muted);
  font-size: var(--type-meta);
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
body:not(.home-tech) .job-requirements {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
body:not(.home-tech) .job-requirements li {
  color: var(--copy-body);
  font-size: var(--type-meta);
  line-height: 1.6;
  margin-bottom: 4px;
}
body:not(.home-tech) .job-requirements li::before {
  background: #e3b52e;
}
body:not(.home-tech) .job-apply {
  border-radius: 0 !important;
  min-width: 160px;
  height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: var(--type-button);
  font-weight: 650;
  letter-spacing: 0.03em;
  border: 1px solid rgba(227, 181, 46, 0.72);
  color: #151004;
  background: linear-gradient(135deg, #f2cd52, #dca51c);
  box-shadow: 0 18px 44px rgba(227, 181, 46, 0.16);
  margin-top: auto;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
body:not(.home-tech) .job-apply:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f2cd52, #dca51c);
  border-color: #f2cd52;
  color: #151004;
}

/* ===== 新闻卡片内容：与首页 home-tech .news-card 一致 ===== */
body:not(.home-tech) .news-card .news-date {
  grid-column: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0;
  border: 0;
}
body:not(.home-tech) .news-card .news-day {
  color: var(--copy-accent);
  font-size: 30px;
  font-weight: 750;
  line-height: 1;
}
body:not(.home-tech) .news-card .news-month {
  color: var(--copy-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
body:not(.home-tech) .news-card .news-category-tag {
  grid-column: 2;
  justify-self: end;
  align-self: center;
  margin: 0;
  padding: 6px 11px;
  color: #76530a;
  border: 1px solid rgba(196, 145, 28, 0.3);
  border-radius: 4px;
  background: #fffaf0;
  font-family: var(--font-cn);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
body:not(.home-tech) .news-card .news-title {
  grid-column: 1 / -1;
  min-height: 62px;
  display: block;
  overflow: visible;
  color: var(--copy-title);
  font-size: var(--type-card-title);
  font-weight: 750;
  line-height: 1.42;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
body:not(.home-tech) .news-card:hover .news-title {
  color: #76530a;
}
body:not(.home-tech) .news-card .news-excerpt {
  grid-column: 1 / -1;
  display: block;
  overflow: visible;
  color: var(--copy-body);
  font-size: var(--type-body);
  font-weight: 450;
  line-height: 1.72;
}
body:not(.home-tech) .news-card .news-more {
  grid-column: 1 / -1;
  justify-self: start;
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 146px;
  height: 48px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid rgba(227, 181, 46, 0.72);
  border-radius: var(--radius-box);
  background: linear-gradient(135deg, #f2cd52, #dca51c);
  color: #151004;
  font-family: var(--font-cn);
  font-size: var(--type-button);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 44px rgba(227, 181, 46, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
body:not(.home-tech) .news-card:hover .news-more {
  color: #151004;
  transform: translateY(-1px);
  border-color: #dca51c;
  box-shadow: 0 12px 30px rgba(227, 181, 46, 0.24);
}
body:not(.home-tech) .news-card .news-more > span {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}
body:not(.home-tech) .news-card:hover .news-more > span {
  transform: translateX(3px);
}
body:not(.home-tech) .news-card:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.2);
  outline-offset: 3px;
}

/* 行业洞察列表：悬停仅做颜色反馈，卡片、按钮和箭头均不发生位移。 */
body.news-index-page .news-card,
body.news-index-page .news-card:hover,
body.news-index-page .news-card:focus-within {
  transform: none !important;
}
body.news-index-page .news-card:hover {
  background: rgb(251, 252, 253);
  box-shadow: none !important;
}
body.news-index-page .news-card:hover .news-title,
body.news-index-page .news-card:focus-within .news-title {
  color: #121826;
}
body.news-index-page .news-card .news-more {
  width: 134px;
  min-width: 134px;
  height: 48px;
  justify-self: end;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: #000000;
  background: #ffffff;
  border-color: rgba(227, 181, 46, 0.75);
  font-size: 15px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transform: none !important;
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
body.news-index-page .news-card:hover .news-more,
body.news-index-page .news-card:focus-within .news-more,
body.news-index-page .news-card .news-more:hover,
body.news-index-page .news-card .news-more:focus-visible {
  color: #151004;
  background: #e3b52e;
  border-color: #e3b52e;
  transform: none !important;
  box-shadow: none !important;
}
body.news-index-page .news-card:hover .news-more > span,
body.news-index-page .news-card:focus-within .news-more > span {
  transform: none !important;
}

/* ===== 按钮：筛选 + 分页 ===== */
body:not(.home-tech) .filter-btn {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid #dfe3ea;
  border-radius: 4px !important;
  background: #ffffff;
  color: #4b5565;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body:not(.home-tech) .filter-btn:hover {
  border-color: rgba(196, 145, 28, 0.7);
  background: #fffdf7;
  color: #8a650d;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
body:not(.home-tech) .filter-btn.active {
  border-color: #c99518;
  background: linear-gradient(135deg, #e4b52d, #cf9817);
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(196, 145, 28, 0.2);
}
body:not(.home-tech) .filter-btn.active:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #dbaa25, #c58e12);
}
body:not(.home-tech) .filter-btn:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.2);
  outline-offset: 2px;
}

/* 行业洞察分类按钮：不同字数仍保持统一尺寸。 */
body.news-index-page .news-filter .filter-btn {
  flex: 0 0 96px !important;
  width: 96px;
  min-width: 96px;
  height: 40px;
  min-height: 40px !important;
  padding: 0 10px !important;
  justify-content: center;
  transform: none !important;
}
body.news-index-page .news-filter .filter-btn:hover,
body.news-index-page .news-filter .filter-btn:focus-visible,
body.news-index-page .news-filter .filter-btn.active:hover {
  transform: none !important;
}
body:not(.home-tech) .news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(18, 24, 38, 0.1);
}
body:not(.home-tech) .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  border: 1px solid #dfe3ea;
  border-radius: 4px !important;
  background: #ffffff;
  color: #4b5565;
  font-family: var(--font-cn);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body:not(.home-tech) .page-btn.prev,
body:not(.home-tech) .page-btn.next {
  min-width: 108px;
}
body:not(.home-tech) .page-btn:hover:not(:disabled):not(.active) {
  border-color: rgba(196, 145, 28, 0.7);
  background: #fffdf7;
  color: #8a650d;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}
body:not(.home-tech) .page-btn.active {
  border-color: #c99518;
  background: linear-gradient(135deg, #e4b52d, #cf9817);
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(196, 145, 28, 0.2);
}
body:not(.home-tech) .page-btn:disabled {
  border-color: #e7e9ee;
  background: #f7f8fa;
  color: #a2a9b5;
  opacity: 1;
  cursor: not-allowed;
  box-shadow: none;
}
body:not(.home-tech) .page-btn:focus-visible {
  outline: 3px solid rgba(212, 160, 23, 0.2);
  outline-offset: 2px;
}

/* ===== 响应式（全部断点合并） ===== */
@media (max-width: 1100px) {
  body:not(.home-tech) .news-list-grid,
  body:not(.home-tech) .about-grid,
  body:not(.home-tech) .team-grid,
  body:not(.home-tech) .jobs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  /* 内容区 */
  body:not(.home-tech) .news-list-section,
  body:not(.home-tech) .about-section {
    width: calc(100% - 40px);
    padding: 64px 0;
  }
  body:not(.home-tech) .about-section .section-head-center {
    margin-bottom: 36px;
  }
  body:not(.home-tech) .news-list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  body:not(.home-tech) .news-filter {
    width: 100%;
    justify-content: flex-start;
  }
  /* 卡片 */
  body:not(.home-tech) .news-card {
    padding: 26px 24px 24px;
    min-height: 340px;
  }
  body:not(.home-tech) .about-card {
    padding: 32px 28px 28px;
    min-height: 280px;
  }
  body:not(.home-tech) .team-card {
    padding: 28px 24px 24px;
    min-height: 220px;
  }
  body:not(.home-tech) .job-card {
    padding: 32px 28px 28px;
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  body:not(.home-tech) .news-list-grid,
  body:not(.home-tech) .about-grid,
  body:not(.home-tech) .team-grid,
  body:not(.home-tech) .jobs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  body:not(.home-tech) .news-list-grid {
    gap: 16px;
  }
  body:not(.home-tech) .news-card {
    min-height: 0;
    padding: 22px 20px 20px;
    row-gap: 16px;
  }
  body:not(.home-tech) .news-card .news-day {
    font-size: 27px;
  }
  body:not(.home-tech) .news-card .news-title {
    min-height: 0;
    font-size: 20px;
    line-height: 1.45;
  }
  body:not(.home-tech) .news-card .news-excerpt {
    font-size: var(--type-body);
    line-height: var(--leading-body);
  }
  body:not(.home-tech) .news-card .news-more {
    min-width: 140px;
    height: 46px;
    padding: 0 20px;
    font-size: var(--type-button);
  }
  body:not(.home-tech) .news-pagination {
    width: 100%;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
  }
  body:not(.home-tech) .page-btn.prev,
  body:not(.home-tech) .page-btn.next {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 10px;
  }
  body:not(.home-tech) .page-btn.active {
    flex: 0 0 44px;
    padding: 0;
  }
  body:not(.home-tech) .news-list-head {
    padding-bottom: 24px;
    margin-bottom: 28px;
  }
  body:not(.home-tech) .news-filter {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  body:not(.home-tech) .news-filter::-webkit-scrollbar {
    display: none;
  }
  body:not(.home-tech) .filter-btn {
    min-height: 38px;
    padding: 0 15px;
    flex: 0 0 auto;
    font-size: 13px;
  }
  /* 英雄区 */
  body:not(.home-tech) .news-hero,
  body:not(.home-tech) .about-hero {
    padding: 96px 0 48px;
  }
  body:not(.home-tech) .news-stats {
    gap: 24px;
  }
}

/* ===== 内容页框体规范：与首页统一为轻微圆角 ===== */
body:not(.home-tech) .news-card,
body:not(.home-tech) .about-card,
body:not(.home-tech) .team-card,
body:not(.home-tech) .job-card,
body:not(.home-tech) .job-apply,
body:not(.home-tech) .filter-btn,
body:not(.home-tech) .page-btn {
  border-radius: var(--radius-box) !important;
}
