/**
 * @name bootstrap-extend.css
 * @version 1.1 beta
 * @data 2020-10-13 ~ 2020-10-30
 * @author 小李
 */

/* tree控件样式 */
.tree {
    min-height: 20px;
    padding: 5px 0 5px 0;
    margin-bottom: 20px;
}

.tree>ul {
    padding: 0;
}

.tree>ul ul {
    padding-left: 15px;
}

.tree li {
    list-style-type: none;
    margin: 0;
    padding: 8px 0 0 0;
    position: relative;
}

.tree li.auxiliary-line::before,
.tree li.auxiliary-line::after {
    content: '';
    left: -10px;
    position: absolute;
    right: auto;
}

.tree li::before {
    border-left: 1px solid #999;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: px;
}

.tree li::after {
    border-top: 1px solid #999;
    height: 20px;
    top: 12px;
    width: 10px;
}

.tree li span {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #999;
    border-radius: 5px;
    display: inline-block;
    padding: 3px 8px;
    text-decoration: none;
    color: #EFEFEF;
}

.tree>ul>li::before,
.tree>ul>li::after {
    border: 0;
}

.tree li:last-child::before {
    height: 23px;
}

.tree li span.hasCheckbox:hover,
.tree li span.hasClick:hover {
    background: #797979;
    border: 1px solid #94a0b4;
    color: #EFEFEF;
    cursor: pointer;
}

.tree li span.active {
    background: #929292;
}

.tree li input[type=checkbox] {
    cursor: pointer;
    margin-top: -2px;
    margin-bottom: 1px;
    vertical-align: middle;
}

.tree li.tree-hidden {
    display: none;
}

/* 定义滚动条的宽度 */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* 定义滚动条轨道的样式 */
::-webkit-scrollbar-track {
    background-color: #6C6C6C;
}

/* 定义滑块的样式 */
::-webkit-scrollbar-thumb {
    background-color: #f1f1f1;
}

/* 鼠标悬浮在滑块上时的样式 */
::-webkit-scrollbar-thumb:hover {
    background-color: rgb(155, 155, 155);
}