/* ============================================================
   WINTEL — page styles
   ------------------------------------------------------------
   与 site.css 配套：site.css 放全站共享样式（基础 + 页头页脚 + 共享组件），
   本文件放各页面的具体版式。

   约束（重要）：本文件是全站生效的，因此
     1) 不写裸元素选择器（h2 / ul / li / p ...），一律挂在类下面；
     2) 需要作用于"无类名列表"时用 .card > ul:not([class]) 这种精确写法，
        避免顺带把 .tick / .dash / .chips / .cares 之类的列表样式改掉。
   ============================================================ */

/* ============================================================
   1) 通用页面骨架
   ============================================================ */
.article { max-width: 880px; }
.article h3 { font-size: 1.05rem; }
.card h4 { margin: 0 0 6px; font-size: 1rem; }
.lead { max-width: 780px; }
.muted { color: var(--color-muted); font-size: 0.94rem; }
.small { font-size: 0.9rem; }
.meta { color: var(--color-muted); font-size: 0.86rem; }
.updated { display: block; color: var(--color-muted); font-size: 0.85rem; margin-top: 6px; }
.more { display: inline-block; margin-top: 10px; font-size: 0.9rem; font-weight: 600; }
.byline {
  color: var(--color-muted);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.byline .dot { color: var(--color-border); }
.intent {
  display: inline-block;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 999px;
  padding: 1px 10px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* 内页顶部满幅小横条：面包屑 + 页面标题
   2026-09-20 财哥反馈：加高、用和公司简介同款深色渐变 */
.page-band {
  background: linear-gradient(135deg, #0b1622 0%, #102a4c 55%, #0b3a7a 100%);
  color: #fff;
  padding: 58px 0 66px;
}
.page-band .breadcrumb {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 10px;
}
.page-band .breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.page-band .breadcrumb a:hover { color: #fff; }
.page-band .breadcrumb .current { color: rgba(255, 255, 255, 0.72); }
.page-band .breadcrumb .sep { color: rgba(255, 255, 255, 0.4); }
.page-band h1 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
}
.page-band + .container { padding-top: 28px; }
@media (max-width: 640px) {
  .page-band { padding: 38px 0 44px; }
  .page-band h1 { font-size: 1.7rem; }
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

/* ============================================================
   2) 复用件：CTA 区块 / 步骤 / 勾叉清单 / 标签胶囊
   ============================================================ */
.cta-block {
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 34px 0 10px;
}
.cta-block > p { margin: 0 0 16px; }
.cta-block > h2 { margin-top: 0; }

.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 1px solid var(--color-border);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-name { display: block; font-weight: 600; margin-bottom: 2px; }

.tick, .dash, .cross, .checklist { list-style: none; padding: 0; margin: 0; }
.tick li, .dash li, .cross li, .checklist li {
  position: relative;
  padding: 9px 0 9px 28px;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
}
.tick li::before,
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: #2e7d32;
  font-weight: 700;
}
.dash li::before {
  content: '–';
  position: absolute;
  left: 6px;
  color: var(--color-muted);
  font-weight: 700;
}
.cross li::before {
  content: '✕';
  position: absolute;
  left: 2px;
  color: #b3261e;
  font-weight: 700;
}

.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.chips li {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.9rem;
}

/* 无类名的说明性列表（如 about 页供应链卡片）：用 :not([class]) 精确限定，
   不会波及 .tick / .dash / .chips 这类自定义列表 */
.card > ul:not([class]) { margin: 8px 0 10px; padding-left: 18px; }
.card > ul:not([class]) > li { font-size: 0.92rem; padding: 2px 0; border: 0; }

/* ============================================================
   3) 首页
   ============================================================ */
/* 2026-09-20 视觉重构：满幅轮播 Hero + 生产车间背景图 + 渐变遮罩 */
.hero {
  padding: 0;
  border-bottom: none;
}
.hero-carousel {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b1622;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 20, 34, 0.86) 0%, rgba(8, 20, 34, 0.62) 50%, rgba(8, 20, 34, 0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 100px;
}
.hero-carousel h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
.hero-carousel .hero-sub { max-width: 680px; color: rgba(255, 255, 255, 0.9); font-size: 1.15rem; }
.hero-carousel .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }
@media (max-width: 860px) {
  .hero-carousel { min-height: auto; }
  .hero-content { padding: 78px 0 64px; }
  .hero-carousel h1 { font-size: 2rem; }
}
.hero-sub { max-width: 720px; font-size: 1.12rem; color: var(--color-muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 0; }

/* ============================================================
   Factory & products overview（首页第 6 板块，紧贴 Why buyers）
   深色技术带风格上移到公司简介：海军蓝渐变底 + 白字 + 浅色玻璃信息卡，
   底部的 tech-band 已删除，避免 5,000㎡/50+/2015/4 数据重复。
   ============================================================ */
.factory-overview {
  background: linear-gradient(135deg, #0b1622 0%, #102a4c 55%, #0b3a7a 100%);
  color: #fff;
  padding: 64px 0 72px;
}
.factory-overview .section-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.factory-overview .section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  vertical-align: middle;
  margin-right: 8px;
}
.factory-overview h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  max-width: none;
  margin: 0 0 18px;
  line-height: 1.2;
  white-space: nowrap;
}
.factory-overview .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 32px;
}
.factory-overview a { color: #fff; text-decoration: underline; }
.factory-overview a:hover { color: rgba(255, 255, 255, 0.82); }

.factory-overview .fact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 18px;
}
.factory-overview .fact-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin: 0 0 14px;
}
.factory-overview .fact-card h3 .icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: -4px;
}
.factory-overview .fact-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem;
  line-height: 1.65;
  margin: 0;
}
.factory-overview .fact-card .highlight {
  color: #ffd9c2;
  font-weight: 600;
}

.factory-overview .fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 6px;
}
.factory-overview .fact-grid .col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 10px;
}
.factory-overview .fact-grid .col p,
.factory-overview .fact-grid .col ul {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}
.factory-overview .fact-grid .col ul { padding-left: 18px; }
.factory-overview .fact-grid .col li { margin-bottom: 4px; }

.factory-overview .vertical-integration {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin: 44px 0 36px;
}
.factory-overview .vertical-integration .text h3 {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 14px;
}
.factory-overview .vertical-integration .text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
.factory-overview .process-list {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding-left: 18px;
  line-height: 1.7;
  margin: 0 0 18px;
}
.factory-overview .process-list strong { color: #fff; }
.factory-overview .vertical-integration .photo-band {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.factory-overview .vertical-integration .photo-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.factory-overview .vertical-integration .photo-band figcaption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  margin-top: 8px;
}

.factory-overview .img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 40px;
}
.factory-overview .img-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.factory-overview .stat-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}
.factory-overview .stat-bar .stat-num {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .factory-overview .stat-bar .stat-num {
    background: linear-gradient(180deg, #ffffff 0%, #bcd4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.factory-overview .stat-bar .stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .factory-overview { padding: 52px 0 60px; }
  .factory-overview h2 { font-size: 1.7rem; white-space: normal; }
  .factory-overview .fact-grid,
  .factory-overview .stat-bar { grid-template-columns: 1fr; text-align: left; }
  .factory-overview .vertical-integration,
  .factory-overview .img-grid { grid-template-columns: 1fr; }
}

/* 价值主张：bento 非对称版式 + 顶部线性图标（克制、不赛博朋克） */
.value-grid { display: grid; gap: 20px; }
.value-grid.bento { grid-template-columns: repeat(3, 1fr); }
.value-grid.bento .value-card:nth-child(1) { grid-column: span 2; }
.value-grid.bento .value-card:nth-child(2) { grid-column: span 1; }
.value-grid.bento .value-card:nth-child(3) { grid-column: span 1; }
.value-grid.bento .value-card:nth-child(4) { grid-column: span 2; }
.value-card {
  border-left: 4px solid var(--color-primary);
  padding-top: 26px;
  padding-bottom: 26px;
}
.value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  margin-bottom: 16px;
}
.value-card .value-icon .icon { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.22rem; margin: 0 0 8px; }
.value-card .muted { margin: 0 0 14px; }
.value-card .value-cta { margin: 0; }
/* 交错入场（仅增强，无 JS 时不影响可读） */
.reveal-ready .value-grid .value-card:nth-child(2) { transition-delay: 90ms; }
.reveal-ready .value-grid .value-card:nth-child(3) { transition-delay: 180ms; }
.reveal-ready .value-grid .value-card:nth-child(4) { transition-delay: 270ms; }
@media (max-width: 820px) {
  .value-grid.bento { grid-template-columns: 1fr; }
  .value-grid.bento .value-card { grid-column: auto; }
}

/* 卡片悬浮：克制微质感，全站一致（不引第三方动效）。
   注意：resting 阴影 / 悬浮阴影 / 位移 lift 已统一在 site.css 的 .card 上，
   这里只保留 a.card 的「不显示下划线 + 强调边框」行为，避免与 site.css 重复定义。 */
a.card:hover,
.card:hover {
  text-decoration: none;
  border-color: var(--color-primary);
}

/* 图片占位符（2026-09-18）：财哥供图前的视觉标记，明确"此处放图"。
   非数据占位符，不进 JSON-LD / llms.txt，不计入 verify 的 [Add] 计数。 */
.img-ph {
  margin: 22px 0;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, #fafcfe, #fafcfe 12px, #f3f7fb 12px, #f3f7fb 24px);
  min-height: 184px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--color-muted);
}
.img-ph-label {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}
.img-ph-hint { font-size: 0.88rem; max-width: 540px; line-height: 1.5; }
.img-ph-compact { min-height: 120px; padding: 16px; margin: 16px 0 4px; }
.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-light:hover { background: rgba(255, 255, 255, 0.92); text-decoration: none; }
.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); text-decoration: none; }
.note-line { color: var(--color-muted); font-size: 0.95rem; margin: 20px 0 0; max-width: 820px; }

a.card { color: inherit; }
a.card:hover { text-decoration: none; border-color: var(--color-primary); }
.product-card, .scenario-card, .solution-card, .post-card, .product-link {
  display: flex;
  flex-direction: column;
}
.product-card h3, .scenario-card h3, .solution-card h3, .post-card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}
.product-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  object-fit: contain;
  /* 产品实拍图不是正方形，contain 保证不变形 */
}
.product-card .more, .solution-card .more, .post-card .date { margin-top: auto; }
.scenario-card .more { margin-top: 14px; }

/* 首页服务卡片顶图：每张卡片自带配图，避免多个内容共用一张大图 */
.card-shot {
  margin: -20px -20px 16px -20px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.card-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
a.card .card-shot { color: inherit; }

.q-list { list-style: none; padding: 0; margin: 0; }
.q-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.q-list li a { font-weight: 500; }

.honesty {
  background: #fbfcfd;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 4px 26px 24px;
}
.honesty > h2 { margin-top: 24px; }

.final-cta {
  background: linear-gradient(135deg, #1a6dff 0%, #0b4fc4 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(26, 109, 255, 0.22);
}
.final-cta h2 { color: #fff; margin-top: 0; }
.final-cta p { color: #d8e7f8; max-width: 640px; margin: 0 auto 20px; }
.final-cta .btn { background: #fff; color: var(--color-primary); }
.final-cta .btn:hover { background: #e8f1fb; }

/* ============================================================
   4) 产品总览 / 产品详情
   ============================================================ */
.product-item { display: flex; gap: 18px; align-items: flex-start; }
.product-item img {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px;
}
.product-item h2 { margin: 0 0 4px; font-size: 1.15rem; }
.mini-spec { list-style: none; padding: 0; margin: 0 0 6px; }
.mini-spec li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.88rem;
  padding: 4px 0;
  border-bottom: 1px solid var(--color-border);
}
.mini-spec li span:first-child { color: var(--color-muted); }
.compare { padding-top: 34px; }
@media (max-width: 560px) {
  .product-item { flex-direction: column; }
}

.product-top {
  display: grid;
  grid-template-columns: 224px 1fr;
  gap: 28px;
  align-items: start;
  margin: 26px 0 10px;
}
.product-media {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 180px;
  height: 180px;
  max-width: 100%;
  object-fit: contain;
}
.fit { padding-top: 30px; }
@media (max-width: 700px) {
  .product-top { grid-template-columns: 1fr; }
}

/* ============================================================
   5) 应用场景 / 服务
   ============================================================ */
.scenario-item h2, .sol-item h2 { margin: 0 0 8px; font-size: 1.14rem; }
.cares { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.cares li {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.82rem;
  color: var(--color-muted);
}
.inc { list-style: none; padding: 0; margin: 14px 0 0; }
.inc li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.88rem;
  color: var(--color-muted);
}
.inc li::before {
  content: '·';
  position: absolute;
  left: 7px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ============================================================
   6) 问题页 / 指南
   ============================================================ */
.table-wrap { overflow-x: auto; }
.table-wrap table { min-width: 520px; }
.related, .sources { padding: 34px 0 0; }
.related ul, .sources ul { padding-left: 20px; }
.related li, .sources li { margin: 6px 0; }
.sources li { font-size: 0.94rem; }

.post { max-width: 800px; }
.post .meta { margin: 0 0 10px; }
.post .prose { margin: 26px 0 0; }
.post .prose h2 { margin-top: 1.7em; }
.post .prose h3 { margin-top: 1.4em; }
.post .prose ul, .post .prose ol { padding-left: 22px; }
.post .prose li { margin: 6px 0; }
.post .prose blockquote {
  margin: 1.2em 0;
  padding: 10px 18px;
  border-left: 4px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
}
.post .prose code {
  background: var(--color-surface);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.9em;
}
.post .prose img { border-radius: var(--radius); margin: 1.4em 0; }
.post .back { margin-top: 30px; font-size: 0.92rem; }

.post-card .cat {
  align-self: flex-start;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-card .date { padding-top: 10px; font-size: 0.82rem; color: var(--color-muted); }
.more-questions { margin-top: 30px; color: var(--color-muted); }

/* ============================================================
   7) 联系页
   ============================================================ */
.backend-warning {
  background: #fff8e1;
  border: 1px dashed #e0b64a;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #6d4c00;
  max-width: 820px;
}
.backend-warning code {
  background: rgba(109, 76, 0, 0.12);
  border-radius: 3px;
  padding: 0 4px;
}
.contact-grid { align-items: start; }
.inquiry-form { display: flex; flex-direction: column; gap: 14px; }
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 500;
  font-size: 0.95rem;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  color: var(--color-text);
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form .btn { align-self: flex-start; border: 0; cursor: pointer; }
.form-note { font-size: 0.84rem; color: var(--color-muted); margin: 0; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { margin-top: 0; font-size: 1.08rem; }
.ph-note { font-size: 0.82rem; color: var(--color-muted); margin: 12px 0 0; }

/* ============================================================
   8) 其它
   ============================================================ */
.terms { max-width: 720px; }
.terms li { align-items: baseline; }
.terms li span:last-child { text-align: right; }
.faq-section { padding: 34px 0 0; }
.links { padding-left: 20px; }
.links li { margin: 10px 0; }

/* ============================================================
   9) 实拍图（产品页 / About / 首页信任条）
   命名空间 shot- / photo-band，避免与既有 class 撞名
   ============================================================ */
.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 0;
}
.shot {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.shot img { display: block; width: 100%; height: auto; }
.shot figcaption {
  padding: 10px 14px 12px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-muted);
}
.shot-wide { grid-column: 1 / -1; }

.photo-band {
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-surface);
}
.photo-band img { display: block; width: 100%; height: auto; }
.photo-band figcaption {
  padding: 11px 16px 13px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--color-muted);
}

@media (max-width: 720px) {
  .shot-grid { grid-template-columns: 1fr; }
}

/* ── RFQ 两层式表单 ──────────────────────────────────────
   第一层常显（门槛最低），第二层折叠在 <details> 里。
   折叠块用原生 details/summary —— 不依赖 JS，符合任务书 #47「核心内容不能依赖 JS」。 */
.form-tier {
  margin: 4px 0 6px;
  font-size: 1rem;
  letter-spacing: 0.2px;
  color: var(--color-text);
}

.rfq-advanced {
  margin: 18px 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px 4px;
  background: var(--color-surface);
}
.rfq-advanced > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 2px 0 8px;
}
.rfq-advanced > summary::marker { color: var(--color-primary); }
.rfq-advanced[open] > summary { border-bottom: 1px solid var(--color-border); margin-bottom: 12px; }
.rfq-advanced > p { margin-top: 0; }
.rfq-advanced input[type='file'] {
  padding: 8px;
  font-size: 0.9rem;
  background: var(--color-bg);
}

/* ── 资源文档（/procurement/ /guides/）正文 ─────────────
   ResourceDoc 渲染的正文段落：可读行距 + 限制行宽。
   用命名空间 class 而不是裸元素选择器，避免影响其他页面。 */
.resource-doc p,
.resource-doc li {
  line-height: 1.72;
}
.resource-doc p { max-width: 74ch; }
.resource-doc .table-wrap { margin: 14px 0 4px; }
