/* 配合 toc-fold-toggles.js：当前文档章节折叠时，隐藏其下的「本页目录」。
   主题自带的 `.chapter li:not(.expanded) > ol` 只隐藏 ol，
   而本页目录是 <div class="on-this-page">，需单独隐藏。 */
.chapter li.chapter-item:not(.expanded) > .on-this-page {
    display: none;
}
