@charset "UTF-8";
body {
    margin: 0px;
    padding: 0px;
}
.skin-default {
    background-color: #FFFFFF;
}
/*element plus 外层app盒子样式*/
.element-app-box{
    padding: 15px;
}

/*文字超长显示省略号*/
.text-overflow-ellipsis{
    overflow:hidden;white-space:nowrap;text-overflow:ellipsis;
}

/*row之间的上下间距*/
.el-row {
    margin-bottom: 15px;
}

.el-row:last-child {
    margin-bottom: 0;
}

.el-col {

}

/*栅格内容容器*/
.grid-content {
    /*padding: 10px;*/
    border-radius: 2px;
    /*min-height: 32px;*/
    background-color: #FFFFFF;
}

/*行内表单项上下边距*/
.el-form--inline .el-form-item {
    margin-top: 5px;
    margin-bottom: 5px;
}

/*全屏弹窗body区的高度, 用来保证内容铺满弹层(默认是根据内容自适应高度)*/
.el-dialog.is-fullscreen > .el-dialog__body {
    height: calc(100% - 84px);
    padding-top: 15px;
    padding-bottom: 15px;
}

/*弹窗iframe的容器*/
.dialog-iframe-box {
    width: 100%;
    height: 100%;
}

.image-box {
    width: 100%;
    height: 150px;

}

.image-box img {
    width: 100%;
    height: 100%;
    display: block;
}

/*el表格头样式*/
.el-table th.jo-el-table-header {
    background-color: #F5F7FA;
}
.el-table th.jo-el-table-header,.el-table th.jo-el-table-header.el-table-fixed-column--left,.el-table th.jo-el-table-header.el-table-fixed-column--right {
    background-color: #F5F7FA;
}
/*el表格支持垂直缝隙距离*/
.jo-el-row-vertical-gutter{
    margin-top: -7.5px;
    margin-bottom: -7.5px;
}
.jo-el-row-vertical-gutter>.el-col{
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

