/* 
	更新于2020-9-11 
 */

/** 公共css */
* {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

html {
    font-size: 10px;
    height: 100%;
}

body {
    font-size: 1.4rem;
    height: 100%;
    background-color: #f5f5f5;
    color: #333;
}

body {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", Tahoma, Arial, sans-serif;
}


body .demo-class {
    width: 420px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    font-size: 18px;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
}

body .demo-class .layui-layer-title {
    background: #fff;
    font-size: 18px;
    color: #303133;
    border: none;
}


body .demo-class .layui-layer-btn a {
    color: white;
    background-color: #3095B4;
    font-size: 16px;
}

a {
    text-decoration: none;
}

hr {
    background-color: #ddd;
    height: 1px;
    border: none;
}

input,
select {
    outline: 0;
    height: 25px !important;
    line-height: 25px !important;
}

.el-range-editor--mini.el-input__inner {
    outline: 0;
    height: 25px !important;
    line-height: 25px !important;
}

.el-range-editor--mini.el-input__inner input {
    outline: 0;
    height: 22px !important;
    line-height: 22px !important;
}

/* input type=number时不显示按钮 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* 居中形式的img */
.cover-img {
    object-fit: cover;
    object-position: 50% 30%;
}

/* ajax2加载时的转圈圈样式 */
.ajax-layer-load.layui-layer-dialog {
    min-width: 0px !important;
    background-color: rgba(0, 0, 0, 0.85);
}


.ajax-layer-load.layui-layer-dialog .layui-layer-content {
    padding: 10px 20px 10px 40px;
    color: #FFF;
}

.ajax-layer-load.layui-layer-dialog .layui-layer-content .layui-layer-ico {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    top: 12px;
}


/* layer图片预览时, 左右键永远显示 */
.layui-layer-imgbar,
.layui-layer-imguide {
    display: block !important;
}

.layui-layer-iconext.layui-layer-imgprev {
    position: fixed;
    left: 50;
}

.layui-layer-iconext.layui-layer-imgnext {
    position: fixed;
    right: 50;
}

.layui-layer {
    position: absolute;
    font-size: 14px;
    top: calc(50% - 1.25em);
    left: calc(50% - 1.25em);
}

.layui-layer-hui {
    /* min-width: 100px; */
    background-color: rgba(0, 0, 0, 0) !important;
    /* color: #fff; */
    border: none;
}

*/
/* ===================== 整体面板 ===================== */

.vue-box {
    padding: 14px;
    height: calc(100vh - 28px);
    font-size: 14px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 12px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
    background: #A5A7B2;
    
}

::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2); */
    border-radius: 0;
    background: #f5f5f5;

}

/* 内容-面板 */
.c-panel {
    margin-bottom: 10px;
    padding: 1em 1.5em;
    padding-bottom: 5px;
    overflow: auto;
}

.c-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 2em;
    margin-bottom: 3px;
}

.c-title span {
    font-weight: 400;
    font-size: 0.85em;
    padding-left: 1em;
    color: #888;
}

/* ===================== 表单相关 ===================== */

.c-panel .el-form-item {
    min-width: 100px;
}

.c-panel .el-form .el-input {
    width: 125px;
}

.c-remark {
    color: #888;
    margin-left: 0.5em;
    font-size: 0.9em;
}

/* 标签 */
.c-panel .c-tag {
    padding: 0px 15px;
    height: 22px;
    line-height: 22px;
    border-radius: 0px;
    border: 0px;
}

/* 禁用input的样式 */
.c-panel .el-input.is-disabled .el-input__inner {
    color: #999;
}


/* 调整圆角大小: 输入框、文本域、按钮、 */
/* .vue-box .el-input__inner,
.vue-box .el-textarea__inner,
.vue-box .el-button,
.s-foot .el-button {
    border-radius: 14px;
} */

.vue-box .el-alert {
    padding: 1em 0.5em;
    border-radius: 0px !important;
}

/* 多个按钮并列时的距离 */
.vue-box .el-button+.el-button {
    margin-left: 2px;
}

.vue-box .el-button+.el-button.el-button--text {
    margin-left: 10px;
}

/* 单选button,圆角限制2px */
.el-radio-button:first-child .el-radio-button__inner {
    border-radius: 2px 0 0 2px !important;
}

.el-radio-button:last-child .el-radio-button__inner {
    border-radius: 0 2px 2px 0 !important;
}

.s-radio-text .el-radio__input {
    display: none;
}

.s-radio-text .el-radio__input.is-checked+.el-radio__label {
    font-weight: 700;
}

.s-radio-text .el-radio__label {
    padding-left: 0px;
}

.s-radio-text .el-radio__label:hover {
    text-decoration: underline;
}

.s-radio-text .hover-line:hover {
    text-decoration: underline;
    cursor: pointer;
}

.s-radio-text .el-form-item__content {
    position: relative;
    top: -2px;
}


/* 按钮的样式调整 */
.el-button--primary {
    background-color: #1890ff;
}

.el-button--success {
    background-color: #57C22A;
}

.el-button--danger {
    background-color: #ee4949;
    border-color: #de4949;
}

.el-button--warning {
    background-color: #FF8a10;
    border-color: #FF8a10;
    color: #FFF;
}

.el-button--primary:hover,
.el-button--primary:focus {
    background-color: #066CF3;
    border-color: #066CF3;
}

.el-button--success:hover,
.el-button--success:focus {
    background-color: #2B9939;
    border-color: #2B9939;
}

.el-button--danger:hover,
.el-button--danger:focus {
    background-color: #d02C2C;
    border-color: #d02C2C;
}

.el-button--warning:hover,
.el-button--warning:focus {
    background-color: #dd6300;
    border-color: #dd6300;
}

.el-button--info:hover,
.el-button--info:focus {
    background-color: #707379;
    border-color: #707379;
}

/* .c-btn 加强 */
.el-table .c-btn {
    padding: 4px 6px;
    font-size: 12px !important;
    border-radius: 1px;
}

.c-btn.el-button--danger {
    background-color: #ca4242;
    border-color: #ca4242;
}

.c-btn.el-button--danger:hover {
    background-color: #A00C0C;
    border-color: #A00C0C;
}

/* 表格上面的按钮 */
.fast-btn {
    padding-top: 15px;
    padding-bottom: 10px;
}

/* 分页盒子调整一下间距 */
.page-box {
    padding: 2em 0 25px 0;
}

/* 流体表单 */
.cj-form.vue-box {
    padding-bottom: 0px;
    background-color: #FFF;
}

.cj-form .c-panel {
    box-shadow: 0 0 0;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 2.5em;
    padding-bottom: 0px;
}

.cj-form .c-panel .el-form .el-input {
    width: 100%;
}


/* 底部按钮式风格 */
.sbot {
    padding: 0px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    display: flex !important;
    flex-direction: column;
}

.s-body {
    flex: 1;
    overflow: auto;
}

.s-foot {
    height: 49px !important;
    line-height: 49px;
    text-align: right;
    background-color: #f5f5f5;
    border-top: 1px #e5e5e5 solid;
}

.sbot .s-foot .el-button {
    margin-left: -10px;
    margin-right: 15px;
    padding: 7px 18px;
}

.sbot .s-body .c-panel {
    margin-bottom: 0px;
    padding-top: 14px;
    padding-bottom: 0px;
}

.s-footcompany {
    height: 49px !important;
    line-height: 49px;
    text-align: right;
    background-color: white;
    border-top: 1px #e5e5e5 solid;
}

.vue-box .s-foot {
    display: none;
}

.sbot .s-ok {
    display: none !important;
}

.sbot .s-foot {
    display: block;
}

.sbot .c-title {
    display: none;
}

/* ===================== 表单相关 ===================== */

/* 内容-item */
.c-item {
    min-width: 100px;
    min-height: 32px;
    line-height: 32px;
    padding-right: 10px;
    display: inline-block;
    margin: 0.5em 0;
}

.c-item.br {
    display: block;
    margin: 14px 0;
}

/* label样式 */
.c-item .c-label {
    width: 6em;
    padding-right: 4px;
    display: inline-block;
    text-align: right;
}

/* 内容-item */
.c-itemll {
    min-height: 32px;
    line-height: 32px;
    display: inline-block;
    border-bottom: 1px solid #ccc;
}

/* input宽度等样式调整 */
.c-itemll .el-input {
    width: 80px;
}

/* label样式 */
.c-itemll .c-labelll {
    width: 7em;
    color: black;
    padding-right: 4px;
    display: inline-block;
    text-align: left;
}


/* label样式 */
.c-item .c-labeld {
    width: 6em;
    color: #333;
    padding-right: 4px;
    display: inline-block;
    text-align: right;
}

.c-item .c-labeld::before {
    content: '*';
    color: red;
}

/* input宽度等样式调整 */
.c-item .el-input {
    width: 178px;
}

/* 禁用input的样式 */
.c-item .el-input.is-disabled .el-input__inner {
    color: #999;
}

/* 链接 行高设置 */
.c-item .el-link {
    line-height: 1.6em;
}


/* 内容-item */
.c-item1 {
    display: flex;
    width: 570px;
    min-height: 32px;
    line-height: 32px;
    padding-right: 10px;
    margin: 0.5em 0;
}

.c-item1 .el-input {
    width: 330px;
}

.c-item1 .c-label1 {
    width: 110px;
    text-align: right;
}


/* 表格动画相关 */
.data-table .el-table__body-wrapper {
    min-height: 0px;
    max-height: 60px;
}

.data-table .el-table__body-wrapper {
    transition: all 0.3s;
}

/* 防止下拉框被富文本覆盖 */
.el-select-dropdown,
.el-picker-panel {
    z-index: 99999 !important;
}



/* ===================== sa-plus新增 ===================== */

/* ==== 图集照片样式 ==== */
.c-item .image-box {
    max-width: 700px;
    padding-left: 0px;
}

.c-item .image-box-2 {
    width: 90px;
    height: 125px;
    cursor: pointer;
    float: left;
}

.c-item .image-box-2 img {
    width: 90px;
    height: 90px;
    border-radius: 2px;
}

.c-item .image-box-2 {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}

.c-item .image-box-2 p {
    text-align: center;
    color: #999;
    margin-top: -10px;
}

.c-item .up_img {
    text-align: center;
    background-color: #f8f8f8;
    height: 90px;
}

.c-item .up_img img {
    width: 40px;
    height: 40px;
    margin-top: 25px;
}

.c-item .up_img {
    border: 1px #eee solid;
}

/* ==== wang富文本编辑器 ==== */
.editor-item {
    width: 100%;
    height: auto;
}

.editor-item .c-label {
    float: left;
}

.editor-item .editor-box {
    float: left;
    width: 80%;
    margin-top: 0px;
    margin-left: 5px;
    transition: all 0.2s;
}

.editor-item #editor {
    min-height: 300px;
    background-color: #FFF;
}

.editor-item .w-e-toolbar {
    padding-top: 5px !important;
}

/* 尽量小点 */
.editor-item .editor-box {
    float: left;
    width: 700px;
}

.editor-item .editor-box img {
    max-width: 200px !important;
}

.c-item .fold {
    height: 100px !important;
    overflow: hidden;
}

.c-item .el-select-dropdown {
    z-index: 9999999 !important;
}

/* 多行内容的样式 */
.c-item-mline {
    display: inline-block;
    width: calc(100% - 10em);
}

.del-rr {
    color: red !important;
    cursor: pointer;
    margin-left: 0.5em;
    vertical-align: middle;
}

.el-button--primary {
    background-color: #009ece !important;
}

.el-button--primary:hover {
    color: #ffffff !important;
    background-color: #0088b1 !important;
}


.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: #3095b4 !important;
}
.el-pagination.is-background .el-pager li:not(.disabled).number {
   border: 1px solid #e1e1e1;
}

.el-button--success {
    background-color: #0088b1 !important;
    border-color: #0088b1;
}

.el-button--success:hover {
    color: #ffffff !important;
    background-color: #0088b1 !important;
}

.el-button--warning {
    background-color: #cf3154;
    border-color: #cf3154;
    color: #FFF;
}

.el-table__header tr th{
    background-color: #ecf5f8;
    color: #3095b4;
}

.el-table--striped .el-table__body tr.el-table__row--striped td {
    background-color: #f1f6f8;
}

/* .el-table--border th,
.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
    border: 1px solid rgba(255, 255, 255, 0.04);
} */

.el-form-item {
    margin-bottom: 0px;
}

/* 提示框 */
.el-message.el-message--success {
    top: 50% !important;
}

.el-message.el-message--warning {
    top: 50% !important;
}

.el-form-item__error {
    line-height: 0 !important;
    padding-top: 0 !important;
}

.el-step__title.is-finish {
    color: #00d2c7;
}

.el-step__head.is-finish {
    color: #00d2c7;
    border-color: #00d2c7;
}

.page-box {
    padding: 1em 0 1em 0 !important;
}

.el-card__header {
    padding: 5px 20px;
}

.el-card__body {
    padding: 5px 20px;
}

.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
    background-color: rgba(0, 0, 0, 0);
}

.el-pagination.is-background .btn-next {
    border: 1px solid #C0C4CC !important;
}

.el-pagination.is-background .btn-prev {
    border: 1px solid #C0C4CC !important;
}

.el-table {
    border-top: 2px solid #3095b4;
}

.el-select-dropdown__wrap.el-scrollbar__wrap {
    margin-bottom: -17px !important;
}

.layui-layer-shade {
    opacity: 0.5 !important;
}

.el-textarea textarea.el-textarea__inner {
    font-family: auto;
}

.el-tabs--border-card {
    box-shadow: none;
}

.el-tabs--border-card>.el-tabs__header {
    background-color: #D7E0E4;
}

.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active {
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.el-tabs--border-card>.el-tabs__header .el-tabs__item {
    border: 1px solid #E4E7ED;
    background-color: #F5F7FA;
    color: #000;
}

.el-button--text {
    color: rgb(0, 158, 206);
}
.el-checkbox__input.is-checked .el-checkbox__inner {
    background-color: #009ece;
    border-color: #009ece;
}

.el-table thead.is-group th {
    background-color: #ecf5f8 !important;
}
.el-table .el-table__body tr:hover>td{
    background-color: #ecf5f8;
}

.el-icon-my-export {
    background: url('./img/logo-loading.gif') center no-repeat;
}

.el-icon-my-export:before {
    content: "替";
    font-size: 60px;
}


.el-icon-my-export {
    font-size: 60px;
}

.el-icon-my-export:before {
    content: "\e611";
}

.el-radio__input.is-checked .el-radio__inner {
    background-color: #009ece;
    border-color: #009ece;
}

.el-radio__input.is-checked+.el-radio__label {
    color: #009ece;
}

.el-select-dropdown__item {
    font-size: 12px !important;
    height: 29px !important;
    line-height: 29px !important;
}
.el-range-editor--mini .el-range-separator{
    line-height: 16px;
}
/* .el-table--small td{
    padding: 6px 0;
} */