@charset "UTF-8";
body {
    margin: 0px;
    padding: 0px;
    /*color: rgba(0, 0, 0, 0.85);*/
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

html, body {
    height: 100%;
    padding: 0px;
    margin: 0px;
}

.color-danger {
    color: #f56c6c;
}

.color-danger:focus, .color-danger:hover {
    color: #f89898;
}

.height-p-100 {
    height: 100%;
}

.height-vh-100 {
    height: 100vh;
}

.flex-x {
    display: flex;
}

.flex-center-vertical {
    align-items: center;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.skin-default {
    background-color: #FFFFFF;
}

/*element plus 外层app盒子样式*/
.element-app-box {
    padding: 15px;
    max-height: 100%;
    box-sizing: border-box;
}

/*文字超长显示省略号*/
.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;*/
    background-color: #FAFAFA;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
}

.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;*/
    background-color: #FAFAFA;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 400;
}

/*el表格滚动条样式调整*/
.el-scrollbar__bar.is-horizontal {
    height: 8px;
    border-radius: 4px;
}

.el-scrollbar__bar.is-vertical {
    width: 8px;
    border-radius: 4px;
}

/*.el-scrollbar{*/
/*    --el-scrollbar-opacity: 0.5;*/
/*    --el-scrollbar-bg-color: #333333;*/
/*    --el-scrollbar-hover-opacity: 0.7;*/
/*    --el-scrollbar-hover-bg-color: #333333;*/
/*}*/

/*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;
}


/*jo-el表格栏-分页栏*/
.jo-el-table-page-bar {
    padding: 8px 5px;
    display: flex;
    flex-direction: row-reverse;
}

/*表格高度变化动效*/
.el-table {
    transition: height 200ms, max-height 200ms;
}

/*小型分页栏字体调整*/
.jo-el-table-page-bar .el-pagination--small .el-pagination__total, .jo-el-table-page-bar .el-pagination--small .el-input--small, .jo-el-table-page-bar .el-pagination--small .el-pager .number {
    font-size: 14px;
}


/* ********** 高度铺满的tabs start ********** */
.qy-full-tabs {
}

.qy-full-tabs.el-tabs.el-tabs--top {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.qy-full-tabs > .el-tabs__content {
    flex: 1; /*内容撑满剩余高度*/
}

.qy-full-tabs > .el-tabs__content > .el-tab-pane {
    height: 100%; /*tab页撑满*/
}

/* ********** 高度铺满的tabs end ********** */

/*数字输入框文字居左*/
.el-input-number.is-without-controls input.el-input__inner[type="number"] {
    text-align: left;
}


/* ********** 图标选择下拉框 start ********** */
.qy-icon-selected .el-select-group {
    display: flex;
    flex-wrap: wrap;
    max-width: 270px;
}

.qy-icon-selected .el-select-dropdown__item {
    display: flex;
    padding: 10px;
    line-height: 1.7;
    min-width: 38px;
    height: 34px;
    text-align: center;
    justify-content: center;
}

.qy-icon-selected .el-select-group .el-select-dropdown__item {
    padding-left: 10px;
}

.qy-icon-selected .el-select-group {
    padding: 0px 10px;
}

/* ********** 图标选择下拉框 end ********** */

/*el滚动条高度100%*/
.qy-el-scrollbar-height-p100 {
    min-height: 100%; /*使用min是为了避免滚动条不显示*/
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


/*el间距有点大,稍微缩小点*/
.qy-view-page-app .el-card {
    --el-card-padding: 15px;
}

/*下拉按钮去掉活跃状态外圈难看的黑圈圈*/
.el-dropdown-link:focus-visible {
    outline: none;
}