/* =====================================================
   飞利信 Philisense - Intelligence 页面样式（Hero固定高度优化完整版）
   包含：Hero、卡片、图片网格、表格、响应式等
   ===================================================== */
:root {
  --hero-h-desk: 480px;
  --hero-h-tab: 380px;
  --hero-h-mob: 320px;
  --hero-inner-gap: 44px;
  --hero-padding-x: 24px;
  --hero-img-max-h: 360px;
}
body {
  background: #f6f8fb;
  color: #111827;
}
/* ===== Hero 区域 ===== */
.intelli-hero {
  background: linear-gradient(128deg, #102033 0%, #165dff 52%, #f3f7ff 100%);
  color: #fff;
  overflow: hidden;
  height: var(--hero-h-desk);
  display: flex;
  align-items: center;
  position: relative;
}
.intelli-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -120px;
  left: 44%;
  width: 70%;
  height: 70%;
  background: rgba(255,255,255,.16);
  border-radius: 999px;
  transform: rotate(-8deg);
  pointer-events: none;
}
.intelli-hero-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--hero-padding-x);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: var(--hero-inner-gap);
  align-items: center;
  position: relative;
  z-index: 1;
  max-height: calc(var(--hero-h-desk) - 40px);
  overflow: hidden;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 6px;
  color: #dbeafe;
  font-size: 13px;
  margin-bottom: 18px;
}
.intelli-hero h1 {
  font-family: "Space Grotesk", "Microsoft YaHei", sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.intelli-hero p {
  max-width: 760px;
  color: #e5efff;
  font-size: 17px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-media {
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
  min-height: 300px;
  max-height: var(--hero-img-max-h);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  max-height: var(--hero-img-max-h);
  object-fit: contain;
  display: block;
  border-radius: 6px;
  background: #fff;
}
.hero-placeholder {
  width: 100%;
  min-height: 300px;
  max-height: var(--hero-img-max-h);
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, .14);
  font-size: 44px;
  font-weight: 700;
}
/* ===== 主内容容器 ===== */
.intelli-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 54px 24px 82px;
}
/* ===== 卡片面板 ===== */
.intelli-section,
.intelli-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 26px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
}
.intelli-section {
  padding: 30px;
}
.intelli-panel {
  padding: 34px;
}
/* ===== 区块标题 ===== */
.section-heading {
  margin-bottom: 18px;
}
.section-heading span {
  display: block;
  color: #165dff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-heading h2 {
  font-family: "Space Grotesk", "Microsoft YaHei", sans-serif;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
}
.section-heading img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
/* ===== 富文本 ===== */
.rich-copy {
  color: #374151;
  font-size: 16px;
  line-height: 1.85;
}
.rich-copy p {
  margin-bottom: 13px;
}
.rich-copy ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 4px;
}
.rich-copy li {
  position: relative;
  padding-left: 18px;
}
.rich-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #165dff;
}
/* ===== 图片网格 ===== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.image-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #f8fafc;
}
.image-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 6px;
}
.image-card figcaption {
  padding: 10px 12px;
  color: #6b7280;
  font-size: 13px;
}
/* ===== Meta 卡片 ===== */
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.meta-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 18px;
}
.meta-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.meta-card p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}
/* ===== 表格通用 ===== */
.table-scroll {
  overflow-x: auto;
}
.source-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.source-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  vertical-align: top;
  color: #374151;
  line-height: 1.65;
}
.source-table tr:nth-child(even) td {
  background: #f8fafc;
}
.source-table {
  table-layout: fixed;
}
.source-table th,
.source-table td {
  border: 1px solid #e5e7eb;
  padding: 16px 14px;
  vertical-align: middle;
  color: #374151;
  line-height: 1.7;
  text-align: center;
}
.source-table th {
  background: #f8fafc;
  font-weight: 600;
  white-space: nowrap;
}
.source-table tr:nth-child(even) td {
  background: #f8fafc;
}
.source-table .col-model { width: 140px; }
.source-table .col-name  { width: 160px; }
.source-table .col-desc  { width: auto; word-break: break-word; }
.source-details {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}
.source-details summary {
  cursor: pointer;
  padding: 16px 18px;
  background: #f8fafc;
  font-weight: 600;
}
.source-details .table-scroll {
  padding: 0 14px 14px;
}
.cell-coord {
  display: inline-flex;
  margin: 0 8px 8px 0;
  padding: 2px 7px;
  border-radius: 6px;
  background: #e0edff;
  color: #165dff;
  font-size: 12px;
  font-weight: 600;
}
.raw-cell {
  white-space: pre-wrap;
  margin: 0;
  color: #374151;
  font: inherit;
  line-height: 1.7;
}
/* ===== 统一表格图片 ===== */
.table-img {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* ===== 产品表格（product-table） ===== */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.product-table td {
  border: 1px solid #e5e7eb;
  padding: 20px;
  vertical-align: middle;
  text-align: center;
}
.product-table tr:nth-child(even) {
  background: #f8fafc;
}
.product-table img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  border-radius: 6px;
  background: #fff;
}
.product-table h4 {
  font-size: 16px;
  margin: 0 0 8px;
  color: #111827;
  font-weight: 600;
}
.product-table p {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
/* ===== 案例图片（case-img-wrap） ===== */
.case-img-wrap {
  width: 100%;
  margin: 20px 0 0;
  text-align: center;
}
.case-img-wrap img {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
  display: block;
  margin: 0 auto;
}
/* ===== 3x3 网格 ===== */
.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.grid-3x3 .grid-cell {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.grid-3x3 .grid-cell h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.4;
}
.grid-3x3 .grid-cell p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.grid-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 24px 0 16px;
  text-align: left;
}
.grid-table-wrapper {
  overflow-x: auto;
}
.grid-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.grid-table th,
.grid-table td {
  border: 1px solid #e5e7eb;
  padding: 0;
  vertical-align: middle;
}
.grid-table th {
  background: #f1f5f9;
  font-weight: 600;
}
.grid-table tr:nth-child(even) {
  background: #f8fafc;
}
.grid-cell-inner {
  padding: 16px;
  min-width: 200px;
}
.grid-cell-inner h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin: 0 0 8px;
  line-height: 1.4;
}
.grid-cell-inner p {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
/* ===== 产品参数表格（param-table） ===== */
.param-table-wrap {
  overflow-x: auto;
  margin: 16px 0 30px;
}
.param-table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}
.param-table th {
  background: #4086d8;
  color: #fff;
  border: 1px solid #e5e7eb;
  padding: 14px 12px;
  font-size: 16px;
  text-align: center;
}
.param-table td {
  border: 1px solid #e5e7eb;
  padding: 14px 12px;
  text-align: center;
  font-size: 16px;
  color: #111827;
}
.param-table tr:nth-child(odd) td {
  background: #e8f0fc;
}
.param-table tr:nth-child(even) td {
  background: #f8fafc;
}
.tag-img-small {
  width: 100px;
  height: 60px;
  object-fit: contain;
}
/* ===== 响应式适配 ===== */
@media (max-width: 900px) {
  .intelli-hero {
    height: var(--hero-h-tab);
  }
  .intelli-hero-inner {
    grid-template-columns: 1fr;
    max-height: calc(var(--hero-h-tab) - 30px);
  }
  .hero-media {
    min-height: 220px;
    max-height: 260px;
  }
  .intelli-section,
  .intelli-panel {
    padding: 24px;
  }
  .table-img {
    height: 180px;
  }
  .case-img-wrap img {
    max-width: 600px;
  }
  .grid-3x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .product-table {
    display: block;
    overflow-x: auto;
  }
}
@media (max-width: 520px) {
  .intelli-hero {
    height: var(--hero-h-mob);
  }
  .intelli-hero-inner {
    padding: 0 16px;
    max-height: calc(var(--hero-h-mob) - 20px);
  }
  .intelli-main {
    padding: 34px 16px 56px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .rich-copy {
    font-size: 15px;
  }
  .table-img {
    height: 140px;
  }
  .case-img-wrap img {
    max-width: 100%;
  }
  .grid-3x3 {
    grid-template-columns: 1fr;
  }
}
