/*----- 通用布局式样 -----*/
/*----- 左侧栏 -----*/
.layout-aside-header {
    border-bottom: 1px solid #cccccc;
    padding: 2px 10px;
    line-height: 25px;

    /*flex*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    /*两端对齐*/
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.layout-aside-header-title {
    font-weight: bold;
    font-size: 14px;
}

.layout-aside-header-icon i {
    color: #cccccc;
    margin-left: 5px;
}

.layout-aside-header-icon i:hover {
    color: #1890FF;
    cursor: pointer;
}

.layout-aside-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
}

/*----- 顶部栏 -----*/
.layout-header-form {
    float: left;
}

.layout-header-form-item {
    margin-bottom: 0px !important;
}

