/* 目录 */
.esa-toolbar {
    position: fixed;
    display: grid;
    z-index: 1;
    bottom: 20px;
    right: 100px;
}

.esa-toolbar .esa-toolbar-contents {
    height: 45px;
    width: 45px;
    font-weight: 400;
    position: relative;
    outline: 0;
    cursor: pointer;
    border: 1px solid transparent;
    transition: color .2s linear, background-color .2s linear, border .2s linear, box-shadow .2s linear;
    margin-top: 5px;
    border-color: #eef2f8;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
}

.esa-toolbar .esa-toolbar-contents .tips {
    position: absolute;
    left: -60px;
    top: 15px;
    display: none;
    color: #2D8CF0;
    font-size: 12px;
}

.esa-catalog {
    position: fixed;
    top: 20px;
    right: 1px;
    width: 290px;
    height: auto;
    z-index: 1;
    background: rgba(255, 255, 255, .5);
}

.esa-catalog-contents {
    overflow: hidden;
    display: block;
    color: #314659;
    border: 1px solid #eef2f8;
    min-width: 150px;
    opacity: 1;
    font-size: inherit;
    z-index: 34;
}

.esa-catalog-title {
    cursor: move;
    padding-left: 12px;
    width: 100%;
    height: 35px;
    line-height: 36px;
    border-bottom: 1px solid #eef2f8;
    font-size: 12px;
    font-weight: 600;
    color: #929aa2;
}

.esa-catalog-contents>ul {
    padding: 5px 15px;
    max-height: 400px;
    overflow-y: auto;
    color: #929aa2 !important;
    font-size: 14px;
    font-weight: 600;
}

.esa-catalog-contents>ul ul {
    padding-left: 18px !important;
    font-weight: normal !important;;
}

.esa-catalog-contents li {
    margin: 5px 0;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #929aa2 !important;
}

.esa-catalog-contents li a {
    color: #929aa2 !important;
}


.esa-catalog-contents a:hover,
.esa-catalog-contents li:hover {
    color: #2D87E5 !important;
    text-decoration: none !important;
}

.esa-toolbar .esa-toolbar-contents {
    background-image: url("https://files-cdn.cnblogs.com/files/xzh0717/%E7%9B%AE%E5%BD%95.ico");
    background-size: 65%;
}

/* 滚动条样式 */
.esa-catalog-contents>ul::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.esa-catalog-contents>ul::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: skyblue;
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent);
}

.esa-catalog-contents>ul::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ededed;
    border-radius: 10px;
}