.main-wrapper{
    min-height: 500px;
    display: flex;
    padding-bottom: 10px;
    align-items: flex-start;
    .nav-container{
        border-radius: 4px;
        box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
        flex:0 0 200px;
        >.el-menu{
            background: #fff;
            height: 786px;
        }
        .el-menu{
            .el-menu-item{
                .more-icon{
                    float: right;
                   width: 16px;
                    height: 16px;
                    background: url("../files/images/more.png") no-repeat center center / 100% 100%;
                    margin-top: 20px;
                }
                &.is-active{
                    background: #0f62fe;
                    color: #fff;
                }
            }
        }
    }
    .main-container{
        padding-left: 15px;
        width: 100%;
        .el-form{
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
            padding: 10px 10px 0 10px;
            .el-form-item{
                margin-bottom: 20px;
                width:310px;
                margin-right: 0;
                .el-form-item__label{
                    width: 100px;
                    text-align: right;
                }
                .el-form-item__content{
                    width:calc(100% - 130px);
                }
                .el-input,.el-select,.el-date-editor{
                    width: 200px;
                }
            }
            .btns{
                text-align: right;
                .btn-query{
                    margin-right: 10px;
                }
            }
        }
        .el-table{
            /*height:calc(100vh - 600px);*/
            background: #fff;
            border-radius: 4px;
            box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
            margin-top: 15px;
            .el-table__header-wrapper{
                background: #f5f7fa;
                .el-table__header{
                    .cell{
                        color: #333;
                    }
                }
            }
            .el-table__body-wrapper{
                .el-table__row{
                    .cell{
                        color: #333;
                    }
                }
            }
        }
        .el-button--primary{
            background: #0f62fe;
            border-color: #0f62fe;
            color: #ffffff;
        }
        .el-button--primary:hover{
            background: #0043ce;
            border-color: #0043ce;
        }
        .el-button--primary.is-plain{
            background: #fff;
            border-color: #0f62fe;
            color: #0f62fe;
        }
        .el-button--primary.is-plain:hover{
            background: #f5f7fa;
            border-color: #0043ce;
            color: #0043ce;
        }
        .el-pagination{
            margin: 20px 0 10px;
            text-align: right;
            .el-pager li.active,.el-pager li:hover, button:hover{
                color: #0f62fe;
            }
        }
    }
}
.el-select-dropdown__item.selected{
    color: #0f62fe!important;
}
.el-input.is-active .el-input__inner, .el-input__inner:focus{
    border-color: #0f62fe!important;
}
.el-pagination__sizes .el-input .el-input__inner:hover{
    border-color: #0f62fe!important;
}