html,body{
    height:100%;
    margin:0;
}
/***布局****/
.ihh-layout{
    width:100%;
    height:100%;
    display: flex;
}
.ihh-layout-column{
    flex-direction: column;
}
.ihh-layout-row{
    flex-direction: row;
}
.ihh-layout .ihh-layout{
    flex:auto;
}
.ihh-content{
    flex:auto;
    position: relative;
    background: transparent;
}
.ihh-content-s{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
}
.ihh-content-c{
    width:100%;
    height:100%;
    overflow: auto;
    position: relative;
    box-sizing: border-box;
}
.ihh-sider{
    border-radius: 8px;
    width:14rem;
    background:#001529;
    overflow: auto;
    transition: all .3s;
}
::-webkit-scrollbar {
    width : 8px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background   : #c1c1c1;
    cursor: pointer;
}
::-webkit-scrollbar-thumb:hover{
    background: #6a6a6a;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    background   :#f1f1f1;
    cursor: pointer;
}
/***顶部工具条**/
.ihh-topbar{
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow:  0 2px 4px 0 rgba(0,0,0,0.1);
    align-items: center;
}
.ihh-topbar-logo{
    padding: 0 5px;
    border-right: 1px solid #eee;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15rem;
    box-sizing: border-box;
}
.ihh-topbar-logo .logoImg{
    width: 50px;
    display: inline-block;
}
.ihh-topbar-logo .sysName{
    font-size: 14px;
    font-weight: bold;
}
.ihh-topbar-left{
    flex:auto;
    padding:10px;
}

.ihh-topbar .el-form-item--mini .el-form-item__content{
    line-height: 0;
}
.ihh-topbar-right{
    padding:10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.ihh-topbar-left .el-form-item{
    margin-bottom: 0;
    vertical-align: middle;
}

.ihh-topbar-left .el-form--inline .el-form-item__label{
    font-size:12px;
}

/**用户信息**/
.ihh-userinfo{
    display: flex;
    align-items: center;
    font-size:12px;
    cursor: pointer;
}
.ihh-userinfo>*{
    cursor: pointer;
}
.ihh-userinfo-info{
    padding-left:6px;
    cursor: pointer;
    height: 44px;
    line-height: 44px;
}
.ihh-userinfo-info label{
    cursor: pointer;
}
.ihh-multmenu{
    background:none;
    border:0;
}
.el-menu-item{
    transition: all .3s;
}
.el-menu{
    transition: all .3s;
    padding: 5px 10px;
    box-sizing: border-box;
}
.ihh-multmenu .el-menu-item, .el-submenu__title{
    height: 2.6em;
    line-height: 2.6em;
    padding: 0 10px !important;
}
.ihh-multmenu .el-menu{
    background:none;
}
.ihh-sider .ihh-multmenu .el-submenu__title,
.ihh-sider  .ihh-multmenu .el-menu-item{
    color: #424242;
    transition: all .3s;
}


.ihh-multmenu .el-submenu__title:focus,.ihh-multmenu .el-submenu__title:hover,
.ihh-multmenu .el-menu-item:focus, .ihh-multmenu .el-menu-item:hover  {
    outline: 0;
    background:none;
}
.ihh-multmenu .el-submenu__title i,
.ihh-multmenu .el-menu-item i{
    font-size:1em;
    margin-right:.3em;
}
.ihh-multmenu .el-menu-item.is-active{
    background:#EBF2FF;
    color: #3981F4;
    border-radius: 8px;
}
.ihh-multmenu .is-active.is-opened{
    background: #ffffff;
}
.ihh-multmenu .is-active{
    position: relative;
}
.el-submenu .el-menu-item{
    min-width: 100%;
    border-radius: 8px;
    padding: 0 20px !important;
}


.page-tabs{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
}
.page-tabs .el-tabs__header {
    margin-bottom: 0;
    border-bottom:none;
    padding-bottom: 5px;
    background:#ffffff !important;
}
.page-tabs > .el-tabs__content{
    flex:auto;
    position: relative;
}
.page-tabs > .el-tabs__content >.el-tab-pane{
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
}
.page-tabs > .el-tabs__content >.el-tab-pane iframe{
    width:100%;
    height:100%;
    border:0;
}

.page-tabs> .el-tabs__header{
    padding-top:5px;
    padding-left:8px;
    padding-right:8px;
    background:#f7f7f9;
    border-radius: 8px;
}
.page-tabs> .el-tabs__header .el-tabs__item{
    height: 30px;
    line-height: 30px;
}
.page-tabs> .el-tabs__header .el-tabs__item.is-active{

    background:#fff;
}

.page-tabs> .el-tabs__header .el-tabs__nav-next,.page-tabs> .el-tabs__header  .el-tabs__nav-prev{
    line-height: 32px
}


.ihh-page-layout{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    gap: 10px;
}
.ihh-page-layout> *:first-child{
    margin-top:10px;
}
.ihh-page-layout > *{
    margin:0 10px;
}
.ihh-page-layout-action{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ihh-page-layout-body{
    flex:auto;
    position: relative;
}
.ihh-page-layout-body .el-loading-mask{
    z-index: 10;
}
.search-form .el-form-item{
    margin-bottom: 10px;
}

.ihh-page-layout-title{
    padding-bottom:10px;
    padding-top:10px;
    margin-bottom:10px;
    border-bottom:1px solid #ddd;
}
.ihh-page-layout-search{
    border: 1px solid #B3D8FD;
    background-color: #ECF5FE;
    box-sizing: border-box;
    padding: 10px 10px 0 10px;
}
.linkage-form-item-f{
    line-height: 10px;
}
.ihh-page-layout-pager{
    text-align: right;
    padding-bottom: 10px;
}
.flex-con-s{
    position: absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
}
.flex-con{
    position: relative;
    width:100%;
    height:100%;
    overflow: auto;
}

.flex-table{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.flex-table
.el-table__header-wrapper{
    flex-grow: 0;
    flex-shrink: 0;
    background:#f7f7f9;
}
.flex-table
.el-table__header-wrapper th, .flex-table
.el-table__header-wrapper tr{
    background:#f2f4f7;
}
.flex-table
.el-table__body-wrapper{
    flex:auto;
    overflow: auto;
}

.el-table .caret-wrapper{
    height: 24px;
}
.el-table .sort-caret.ascending{
    top:0;
}
.el-table .sort-caret.descending{
    bottom: 0;
}


.el-dialog__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;

}
.el-dialog{
    margin:auto!important;
    display: flex;
    flex-direction: column;
    max-height: 100%;
}
.el-dialog.bigger{
    width:90%;
    max-height: 90%;
    min-height: 500px;

}
.el-dialog.min{
    width:600px;
    min-height:300px;
    max-height: 80%;
}

.el-dialog.big{
    width:1000px;
    max-height:90%;
    min-height:500px;
}


.el-dialog .el-dialog__body{
    flex:auto;
    overflow: auto;
}
.el-dialog__header{
    padding: 0;
    color: rgba(0, 0, 0, 0.88);
    background: #ffffff;
    border-radius: 4px 4px 0 0;
    margin-bottom: 8px;
}
.el-dialog__title{
    font-weight: 500;
    font-size: 16px;
}
.tab-dialog .el-dialog__body{
    padding:0;
}
.el-dialog__headerbtn{
    position: absolute;
    top: 23.71875px;
    inset-inline-end: 20.71875px;
    z-index: 1010;
    padding: 0;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    background: transparent;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: color 0.2s, background-color 0.2s;
}
.el-dialog__footer{
    text-align: end;
    background: transparent;
    margin-top: 12px;
    padding: 0;
}
.ihh-flex-columns{
    display: flex;
    flex-direction: column;
    width:100%;
}
.ihh-flex-columns-auto{
    flex:auto;
    position: relative;
}

.ihh-flex-columns-auto-s{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    overflow: auto;
}

.flex-dialog{
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    pointer-events: auto;
    padding: 20px 0;
}
.flex-dialog .el-dialog__header{
    padding: 0 24px;
}
.flex-dialog .el-dialog__body{
    display: flex;
    padding: 0 4px;
}
.flex-dialog .el-dialog__footer{
    padding: 0 24px;
}
.flex-dialog .dialog__body_content::-webkit-scrollbar {
    width : 5px;
    height: 5px;
}

.flex-tab{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
}
.flex-tab > .el-tabs__header{
    margin-bottom: 0;
    flex-grow: 0;
    flex-shrink: 0;
}
.flex-tab > .el-tabs__content{
    flex:auto;
    position: relative;
}
.flex-tab > .el-tabs__content >.el-tab-pane{
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    right:0;
    overflow: auto;
    padding: 10px;
}
.page-tabs .el-tabs__nav{
 border-radius: 0 !important;
    border: 1px solid #dcdfe6 !important;
}
.page-tabs .el-tabs__nav-wrap{
    padding:0 10px;
    margin-bottom: 0;
}
.page-tabs  .el-tabs--top.el-tabs--border-card > .el-tabs__header .el-tabs__item:last-child, .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child{
    padding-left: 10px;
}
.page-tabs  .el-tabs--top.el-tabs--card > .el-tabs__header .el-tabs__item:last-child{
    padding-right: 10px;
}
.el-tabs__item{
    padding: 0 10px;
}
.el-tabs__item .el-icon-close:hover{
    background-color:#409eff;
}
.el-tabs--card > .el-tabs__header .el-tabs__item .el-icon-close{
    line-height:14px
}
/*字体皮肤色*/
.ihh-skin-color{
    color:#409eff;
}
/*背景皮肤色*/
.ihh-skin-bg{
    background-color:#409eff;
}
/*边框皮肤色*/
.ihh-skin-border{
    border-color:#409eff;
}
/*hover字体皮肤色*/
.ihh-skin-hover-color:hover{
    color:#409eff;
}
/*hover背景皮肤色*/
.ihh-skin-hover-bg:hover{
    background-color:#409eff;
}
/*hover边框皮肤色*/
.ihh-skin-hover-border:hover{
    border-color:#409eff;
}

.el-input.el-input--suffix {
    cursor: pointer;
    overflow: hidden;
}
.el-input.el-input--suffix.rotate .el-input__suffix {
    transform: rotate(180deg);
}
.select-tree {
    max-height: 300px;
    overflow-y: scroll;
    padding:10px;
}
/* 菜单滚动条 */
.select-tree::-webkit-scrollbar {
    z-index: 11;
    width: 6px;
}
.select-tree::-webkit-scrollbar-track,
.select-tree::-webkit-scrollbar-corner {
    background: #fff;
}
.select-tree::-webkit-scrollbar-thumb {
    border-radius: 5px;
    width: 6px;
    background: #b4bccc;
}
.select-tree::-webkit-scrollbar-track-piece {
    background: #fff;
    width: 6px;
}
.popper-select-tree{
    padding:0;
    margin-top:0!important;
}

.select-tree-node-disabled{
    color: #575757;
}

/***element-ui******/
.el-input__inner{
    padding:0 8px;
}
.el-form-item__error{
    margin-top:-2px !important;
}
.el-menu--collapse>.el-menu-item [class^=iconfont],
.el-menu--collapse>.el-submenu>.el-submenu__title [class^=iconfont]{
    margin: 0;
    vertical-align: middle;
    width: 24px;
    text-align: center;
}

.el-select-tree-hover .el-icon-arrow-down{
    display: none;
}


.linkage-form-item-s{
    margin-right: 5px;
}
.linkage-form-item-s .el-input.is-disabled .el-input__inner{
    background-color: transparent !important;
    border: none;
    color: #606266;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
}
.el-textarea__inner{
    font-family: '思源黑体', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.search-launch{
    display: inline-block;
    font-size: 12px;
    margin-left: 10px;
    cursor: pointer;
    color: #409EFF;
}
.search-form{
    width: calc(100% - 205px);
}

.treeEditor .el-tree-node:focus > .el-tree-node__content{
    background-color: transparent;
}
