/* ==========================================================================
   knowledge.html 专属:排查手册章节节奏
   只做章节工单的排版密度与锚点偏移,颜色/圆角/线条全部引用 base.css 令牌
   ========================================================================== */

.doc-intro .sec-lead a,
.doc-intro .doc-note a,
.doc-chap a,
.doc-exit .sec-lead a{
  color:var(--flame);
  font-weight:700;
}
.doc-intro .sec-lead a:hover,
.doc-intro .doc-note a:hover,
.doc-chap a:hover,
.doc-exit .sec-lead a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.doc-note{
  max-width:62ch;
  font-size:15px;
  line-height:1.85;
  margin-bottom:22px;
}

.doc-intro .toc-tabs{
  margin-bottom:8px;
}

/* 章节工单:虚线分隔 + sticky 顶栏锚点偏移 */
.doc-chap{
  scroll-margin-top:calc(var(--bar-h) + 24px);
  border-top:1px dashed var(--ink-25);
  margin-top:44px;
  padding-top:40px;
}
.doc-chap:first-of-type{
  border-top:none;
  margin-top:0;
  padding-top:0;
}

.doc-chap h2{
  margin-top:4px;
  margin-bottom:16px;
}
.doc-chap h3{
  margin-top:28px;
  margin-bottom:10px;
}
.doc-chap p{
  max-width:78ch;
  font-size:15px;
  line-height:1.9;
  margin-bottom:14px;
}
.doc-chap ul,
.doc-chap ol{
  max-width:78ch;
  margin-bottom:16px;
  padding-left:4px;
}
.doc-chap li{
  font-size:15px;
  line-height:1.85;
  margin-bottom:8px;
}
.doc-chap li::marker{
  color:var(--flame);
}

/* 章内表格链接同样走品牌色 */
.doc-chap .sheet a{
  color:var(--flame);
  font-weight:700;
}
.doc-chap .sheet a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

/* 尾部出口面板 */
.doc-exit .sec-lead{
  margin-bottom:6px;
}
.doc-exit .cta{
  margin-top:20px;
  margin-bottom:0;
}

@media (max-width:640px){
  .doc-chap{
    margin-top:32px;
    padding-top:28px;
  }
}