html,body{
    background-color: #f1f1f1;
    margin:0px;
    height: 100%;
    border:0;
    padding:0;
}
.topTool{
    background-color: #ffffff;
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 100;
    box-shadow: 0px 2px 5px #d9d9d9;
    display: flex;
}
.content{
    z-index: 50;
    top: 70px;
    width: 100%;
    position: absolute;
    display: flex;
    height: calc(100% - 80px);
    background-color: #cccccc;
}
.leftWrapper{
    width: 220px;
    background-color: #f9f9f9;
    overflow-y: auto;
    display: flex;
    justify-content: flex-start;
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
}
.rightWrapper{
    flex-grow:1;
    margin-left: 1px;
    background-color: #f9f9f9;
    overflow-y: auto;
}
.divScroll::-webkit-scrollbar {
    width: 5px;
}
.divScroll::-webkit-scrollbar-thumb:vertical {
    background-color: #cccccc;
    -webkit-border-radius: 5px;
}
.logo{
    width: 220px;
    height: 100%;
    background-color: #cccccc;
    cursor:pointer;
}
.topItem{
    width: 100px;
    height: 100%;
    text-align: center;
    line-height:70px;
    font-size: 14px;
    cursor:pointer;
    & > .title::after{
        content: '';
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 8px;
        vertical-align: middle;
        border-top: 4px dashed #333;
        border-right: 4px dashed transparent;
        border-left: 4px dashed transparent;
    }
    &:hover{
        background-color: #f1f1f1;
    }
    &:hover .item{
        display: flex;
    }
    & > .item{
        margin: 0px;
        padding-left: 0px;
        list-style: none;
        background-color: #f1f1f1;
        width: 200px;
        height: 35px;
        line-height: 35px;
        display: none;
        &:hover{
            background-color: #d4d4d4;
        }
    }
    & > .item div{
        border: 1px solid #cccccc;
        border-radius: 3px;
    }
    & > .item div:nth-child(1){
        width: 79%;
        height: 98%;
    }
    & > .item div:nth-child(2){
        width: 19%;
        height: 98%;
        border: 1px solid #cccccc;
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        & img{
            width: 20px;
            height: 20px;
        }
    }
}
.leftItem{
    border:#333 solid 1px;
    margin-top: 10px;
    align-items: center;
    display:flex;
    justify-content: center;
    vertical-align: middle;
    width: 85%;
    height: 30px;
    cursor:pointer;
    &:hover{
        background-color: #d4d4d4;
    }
}
.leftTem{
    display: none;
}
.toolbar{
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    & >.contentTitle{
        font-size: 18px;
        margin-right: 30px;
    }
    & .btns{
        display: flex;
    }
    & .btn{
        font-size: 17px;
        border: #333 solid 1px;
        cursor:pointer;
        margin-left: 20px;
        width: 120px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        &:hover{
            background-color: #d4d4d4;
        }
    }
}
.msgTool{
    height: 56px;
}
.msg{
    display: flex;
    height: 100%;
    padding-left: 10px;
    align-items: center;
}
.backOk{
    background-color: #dff0d8;
    font-size: 14px;
}
.backError{
    background-color: #f2dede;
    font-size: 10px;
}
