#app, body, html{
    height: 100%;
    overflow: hidden;
}
body{
    background-color: @background-color-base;
    font-size: 14px;
}

// 隐藏滚动条样式
.i-scrollbar-hide{
    &::-webkit-scrollbar{
        width: 0;
    }
    &::-webkit-scrollbar-track{
        background-color: transparent;
    }
    &::-webkit-scrollbar-thumb{
        background: #e8eaec;
    }
}

// 极简滚动条样式
.i-scrollbar{
    &::-webkit-scrollbar{
        width: 12px;
        height: 12px;
    }
    &::-webkit-scrollbar-track{
        background-color: transparent;
    }
    &::-webkit-scrollbar-thumb{
        background: #808695;
        border-radius: 4px;
    }
}

// 去除 Table 的左右边框，更精简
.i-table-no-border{
    .ivu-table th{
        background-color: #fff;
    }
    .ivu-table-wrapper, .ivu-table tr:last-child td{
        border: none;
    }
    .ivu-table:before, .ivu-table:after{
        display: none;
    }
}

//  tab Table 自适应
.tab-table{
    height: 100%;
    .tab-height{
        height: 100%;
    }
    .ivu-tabs-content{
        height: calc(~'100% - 55px');
    }
}
//弹窗表格自适应
.modal-table{
    .ivu-modal-body{
        height: 500px;
    }
}

//
.text-center{
    text-align: center;
}
.text-middle-center{
    display: -webkit-box;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    width: 100%;
    height: 100%;
}
ul,li{
    list-style: none;
}
