.new-tree {
    font-size: 12px;
    min-height: 200px;
}
.new-tree UL.root {
    padding-left: 0px;
}
.new-tree UL {
    padding-left: 20px;
}
.new-tree li {
    list-style-type: none;
    margin-left: -2px;
    padding-top: 5px;
    position: relative
}
.new-tree li::before, .new-tree li::after {
    content: '';
    left: -6px;
    position: absolute;
    right: auto;
}
.new-tree li::before {
    border-left: 1px solid #ccc4c4;
    bottom: 50px;
    height: 100%;
    top: -1px;
    width: 1px
}
.new-tree li::after {
    border-top: 1px solid #ccc4c4;
    height: 15px;
    top: 17px;
    width: 16px
}
.new-tree li > span {
    display: inline-block;
    text-decoration: none;
}
.new-tree li.parent_li > span {
    cursor: pointer;
}
.new-tree li.parent_li > span > span {
    cursor: pointer;
    border: 1px solid #ccc4c4;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin-left: 2px;
    margin-right: 2px;
    height: 25px;
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    z-index: 100;
}
.new-tree li.parent_li > span > span img {
    width: 8px !important;
    height: 8px !important;
}
.new-tree li:last-child::before {
    height: 30px
}
.new-tree li.parent_li span>span:hover,
.new-tree li.parent_li>span:hover+ul li >span>span {
    border: 1px solid #e79a67;
    font-weight: bold;
}
.new-tree li.filter-unmatch,
.new-tree li.filter-lockspot-unmatch {
    display: none !important;
}
.new-tree .node-selected {
    background: #449944 !important;
    color: #FBFBFB !important;
    font-weight: bold !important;
}
