/* 整个目录文字颜色 */
.toc a {
    color: #4b6956;   /* 默认颜色 */
    text-decoration: none;  /* 去掉下划线 */
  }
  
  /* 鼠标悬停时 */
  .toc a:hover {
    color: #ff6600;
  }
  
  /* 当前激活目录项（滚动到对应标题时） */
  .toc .active {
    color: #7f8966;
    font-weight: bold;
  }
  
/* ===== 修复 Fluid 脚注 tooltip 被截断问题 ===== */
.tooltip,
.bs-tooltip-top,
.bs-tooltip-bottom,
.bs-tooltip-left,
.bs-tooltip-right {
  white-space: normal !important;
}

.tooltip .tooltip-inner,
.bs-tooltip-top .tooltip-inner,
.bs-tooltip-bottom .tooltip-inner,
.bs-tooltip-left .tooltip-inner,
.bs-tooltip-right .tooltip-inner {
  white-space: normal !important;    /* 允许换行 */
  max-width: 600px !important;       /* 扩大宽度限制 */
  word-break: break-word !important; /* 超长单词断行 */
  text-align: left !important;
  line-height: 1.6;
  font-size: 0.95em;
  background-color: #122633 !important; /* 可选美化 */
  color: #fff !important;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
