body {
    font-family: Open Sans;
	font-size: 10pt;
	color: #887644;
    text-shadow: 1px 1px 0px #FFFFFF;
    font-size  : 1rem;
    line-height: 1.5;
}

.toc,
.toc * {
    box-sizing: border-box;
}

.toc {
    /* box-shadow: 0 0 .2rem .2rem #eee; */
    width        : 100%;
    max-width    : 500px;
    position     : relative;
}

.toc.shadow {
    box-shadow: 0 0 0.5rem #F5F5F5;
}

.toc.toc-fixed {
    position: fixed;
    top     : 24px;
    z-index : 10;
}

.toc-hightlight {
    width      : 100%;
    background : #545454;
    position   : absolute;
    left       : 0;
    top        : 0;
    border-left: 3px solid #6495ED;
    transition : all .2s ease;
}



.toc-brand {
    padding      : 0 1.25rem;
    font-weight  : bold;
    font-size    : 1rem;
    line-height  : inherit;
    white-space  : nowrap;
    display      : block;
    width        : 100%;
    overflow     : hidden;
    text-overflow: ellipsis;
}

.toc,
.toc .search-box:hover>.search-txt{
    width: 240px;
    padding: 0 6px;
  }
  
.toc .toc-brand {
    transition: all 0.3s ease-in-out;
}

.toc.toc-hidden {
    width: 0;
}

.toc.toc-hidden .toc-brand {
    padding: initial;
}

.toc-navbar {
    position       : relative;
    display        : block;
    /* max-height  : 500px;
    overflow-y     : auto; */
    scroll-behavior: smooth;
}

/* 滚动条 */
.toc-navbar::-webkit-scrollbar-thumb:horizontal {
    /*水平滚动条的样式*/
    width           : 5px;
    background-color: #CCCCCC;
    border-radius   : 3px;
}

.toc-navbar::-webkit-scrollbar-track-piece {
    background-color: #fff;
    /*滚动条的背景颜色*/
    border-radius: 0;
    /*滚动条的圆角宽度*/
}

.toc-navbar::-webkit-scrollbar {
    width: 10px;
    /*滚动条的宽度*/
    height: 8px;
    /*滚动条的高度*/
}

.toc-navbar::-webkit-scrollbar-thumb:vertical {
    /*垂直滚动条的样式*/
    height          : 50px;
    background-color: #999;
    border-radius   : 4px;
    outline         : 2px solid #fff;
    outline-offset  : -2px;
    border          : 2px solid #fff;
}

.toc-navbar::-webkit-scrollbar-thumb:hover {
    /*滚动条的hover样式*/
    height          : 50px;
    background-color: #9f9f9f;
    border-radius   : 4px;
}

.toc-nav {
    display      : block;
    padding-left : 0;
    margin-bottom: 0;
    margin-right: 0;
    transition   : all .3s ease;
}

.toc-link {
    color: #887644;
    text-shadow: 1px 1px 0px #FFFFFF;
    display        : block;
    padding        : 0.2rem 1rem;
    font-size      : 1.1rem;
    text-decoration: none;
    position       : relative;
}

.toc-link::before {
    content   : ' ';
    height    : .25rem;
    width     : 0.25rem;
    position  : absolute;
    top       : .8rem;
    left      : 0.25rem;
}

.toc-link.active::before,
.toc-link:hover::before {
    background: #F0E68C;
}

.toc-link.active,
.toc-link:hover {
    color: #6495ED;
}


.toc-link.ml-1 {
    margin-left: 0.5rem !important;
}

.toc-link.ml-2 {
    margin-left: 1rem !important;
}

.toc-link.ml-3 {
    margin-left: 1.5rem !important;
}

.toc-link.ml-4 {
    margin-left: 2rem !important;
}

.toc-link.ml-5 {
    margin-left: 2.5rem !important;
}

.toc-link.ml-6 {
    margin-left: 3rem !important;
}