/**menu**/

.menu .menu-item.treeNodeActive+.dis .treeSubNode:first-child {
    box-shadow: 0px 3px 5px #CCCACA inset;
    padding-right: 1px;
    position: relative;
    left: 1px;
}

.menu .menu-item.treeNodeActive .menuCollapse {
    transform: rotate(-180deg);
}

.menu {
    float: left;
    width: 200px;
    height: 800px;
    margin-top: 3px;
    -webkit-box-shadow: 2px 2px 6px #C7C7C7;
    -moz-box-shadow: 2px 2px 6px #C7C7C7;
    box-shadow: 2px 2px 6px #C7C7C7;
    .itemSelected {
        background-color: #D2D2D2;
    }
    .submenuTitle a {
        text-indent: 50px;
        display: inline-block;
        width: 100%;
        height: 100%;
        vertical-align: middle;
          &:hover{
             background-color: #D2D2D2;
        }
    }
    .itemSelected a {
        color: @mian-col;
    }
    .menuLink {
        cursor: pointer;
        font-size: 16px;
        display: inline-block;
        width: 100%;
        height: 100%;
        text-indent: 50px;
    }
    .menu-item.treeNodeActive {
        background-color: #e5e5e5;
        a {
            color: @mian-col;
        }
    }
    .menu-item {
        background-color: #fff;
        color: #898989;
        a {
            font-size: 16px;
        }
    }
    .menuCollapse {
        -webkit-transition: .2s ease all;
        -moz-transition: .2s ease all;
        -o-transition: .2s ease all;
        transition: .2s ease all;
    }
}

.tree {
    width: 100%;
    height: 800px;
    .panel-body {
        height: calc(~"100% - 36px");
        overflow: overlay;
    }
}

.treeNode {
    width: 200px;
    height: 60px;
    background-color: #FFFFFF;
    font-family: Arial,'Times New Roman',SimHei;
    font-size: 14px;
    color: #9F9F9F;
    -webkit-box-shadow: 0 1px 2px #CCCACA;
    -moz-box-shadow: 0 1px 2px #CCCACA;
    box-shadow: 0 1px 2px #CCCACA;
    &:hover {
        background-color: #EEEEEE;
        -webkit-box-shadow: 0 2px 6px #CCCACA;
        -moz-box-shadow: 0 2px 6px #CCCACA;
        box-shadow: 0 2px 6px #CCCACA;
    }
    .menuTitle {
        width: 100%;
        height: 100%;
    }
    .submenuTitle {
        position: absolute;
        margin-left: 55px;
        margin-top: 17px;
        width: 120px;
        height: 30px;
    }
    .menuIcon {
        position: absolute;
        margin-left: 18px;
        margin-top: 15px;
        i{
            width: 22px;
            height: 22px;
            display: block;
        }
    }
    .menuCollapse {
        position: absolute;
        // margin-left: 197px;
        left: 172px;
        margin-top: 25px;
    }
    
}

.treeNodeActive {
    width: 200px;
    height: 60px;
    background-color: #EEEEEE;
    font-family: Arial,'Times New Roman',SimHei;
    font-size: 14px;
    color: @mian-col;
    -webkit-box-shadow: 2px 2px 6px #CCCACA;
    -moz-box-shadow: 2px 2px 6px #CCCACA;
    box-shadow: 2px 2px 6px #CCCACA;
    .menuTitle {
        width: 100%;
        height: 100%;
    }
    .submenuTitle {
        position: absolute;
        margin-left: 55px;
        margin-top: 17px;
        width: 120px;
        height: 30px;
    }
    .menuIcon {
        position: absolute;
        margin-left: 18px;
        margin-top: 15px;
        i{
            width: 22px;
            height: 22px;
            display: block;
        }
    }
    .menuCollapse {
        position: absolute;
        // margin-left: 197px;
        left: 172px;
        margin-top: 25px;
    }
   
}

.treeSubNode {
    width: 200px;
    height: 60px;
    background-color: #EEEEEE;
    font-family: Arial,'Times New Roman',SimHei;   
    font-size: 14px;
    color: @mian-col;
    .menuTitle {
        position: absolute;
        margin-left: 70px;
        margin-top: 17px;
        width: 120px;
        height: 30px;
    }
    .submenuTitle {
        width: 100%;
        height: 100%;
    }
    .menuIcon {
        position: absolute;
        margin-left: 30px;
        margin-top: 15px;
    }
    .menuCollapse {
        position: absolute;
        // margin-left: 197px;
        left: 172px;
        margin-top: 25px;
    }
}

// 当页面显示英文时使用字体
:lang(en) {
    font-family: arial, SimHei, Helvetica, sans-serif;
}

.menu, .menu .tree {
    height: auto;
}

* {
    -webkit-font-smoothing: none;
    -ms-font-smoothing: none;
    font-smoothing: none;
}


/**menu**/