.zyBox{
    background: #f3f3f3;
    padding: 10px;
    display:flex;
    >div{
        width: 50%;
        background: #fff;
        height: 245px;
    }
    .left{
        margin-right: 10px;
        position: relative;
        .searchBox{
            padding:5px;
        }
        .treeBox{
            top: 40px;
            bottom: 0;
            overflow: auto;
            position: absolute;
            left: 0;
            right: 0;
        }
    }
    .right{
        overflow: auto;
    }
        >ul{
            padding:10px;
            li{
                height: 25px;
                margin-bottom: 5px;
                display: flex;
                font-size: 14px;
                line-height: 25px;
                div:nth-of-type(1){
                    border: 1px solid #efefef;
                    flex: 1;
                    color:#666666;
                    padding-left: 10px;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }
                div:nth-of-type(2){
                    width: 30px;
                    text-align:center;
                    color:#a5becf;
                    cursor: pointer;
                }
            }
        }
}