.section-toc > #toc-wrapper {
    max-width: 100%;
    width: fit-content;
    border: 1px solid #B3B3B3;
    padding: 9.5px 20px;
    box-sizing: border-box;
    transition: var(--toc-transition-time);
}

.section-toc > #toc-wrapper > #toc-head {
    color: #4A4B54;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    cursor: pointer;
}

.section-toc > #toc-wrapper > #toc-head > svg {
    margin-left: 10px;
    stroke: #4A4B54;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.section-toc > #toc-wrapper > #toc-body {
    max-height: 0;
    margin: 0;
    margin-top: 20px;
    padding-left: 35px;
    overflow: hidden;
    opacity: 1;
    transition: var(--toc-transition-time);
}

.section-toc > #toc-wrapper[data-open="0"] > #toc-body {
    max-height: 0;
    height: 100%;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: var(--toc-transition-time);
}

.section-toc > #toc-wrapper > #toc-body > li {
    margin-bottom: 10px;
}

.section-toc > #toc-wrapper > #toc-body > li::marker {
    color: #DF2C36;
}

.section-toc > #toc-wrapper > #toc-body > li > a {
    color: #4A4B54;
    margin-left: -2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.section-toc > #toc-wrapper > #toc-body > li > a.active {
    font-weight: 600;
}

.section-toc > #toc-wrapper > #toc-body > li > a:hover {
    text-decoration: underline;
}
