/**
关于页面布局
一级路由下vue组件最外面的div是
<div class="layout-row-main">
</div>
二级路由对应的vue组件根据分栏情况的不同两种情况
有分栏，但分栏会切换显示和隐藏，默认只显示一个
<div class="layout-no-flex">
</div>
没有分栏
<div class="layout-no-col">
</div>
*/
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:after,
:before {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-track-piece {
    background-color: rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
    background-color: rgba(0, 0, 0, .4);
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #777;
    background-color: #f6f7f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

article,
aside,
blockquote,
body,
button,
dd,
details,
div,
dl,
dt,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
input,
legend,
li,
menu,
nav,
ol,
p,
section,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    outline: none;
    box-shadow: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

a {
    color: var(--theme);
    background: 0 0;
    text-decoration: none;
    outline: 0;
    cursor: pointer;
    transition: color .2s ease;
    text-decoration-skip: ink;
    -webkit-text-decoration-skip: ink;
}

a:hover {
    color: var(--hover);
}

a:active {
    color: var(--active);
}

a:active,
a:hover {
    outline: 0;
}

a[disabled] {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

em {
    color: var(--theme);
    font-style: normal;
    word-wrap: break-word;
    word-break: break-all;
}

code,
kbd,
pre,
samp {
    font-family: Consolas, Menlo, Courier, monospace;
}

label {
    font-weight: 500;
}

.gray {
    color: #999;
}

.gray a {
    color: #686;
}

.green {
    color: var(--theme) !important;
}

.loading-wrap {
    margin: 40px auto;
}

.select-enable {
    user-select: text;
    -webkit-user-select: text;
}

.select-disable {
    user-select: none;
    -webkit-user-select: none;
}

.no-focus-border:focus {
    outline: none;
}

.layout-row-main {
    /* position: absolute;
  left: 50px;
  bottom: 0;
  top: 100px; */
    display: flex;
    max-width: 1280px;
    margin: 10px auto;
    /* width: calc(100vw - 50px); */
    /* transition: all ease 0.3s; */
    align-items: flex-start;
    min-height: calc(100vh - 130px);
}

.layout-col-menu,
.layout-col-tree,
.layout-col-list {
    /* min-height: calc(100vh - 50px); */
    flex-shrink: 0;
    /* 不缩小 */
    flex-shrink: 0;
    /* 不缩小 */
    position: relative;
    overflow: auto;
}

.layout-col-tree {
    /* background: #f5f6f8 none; */
    flex-basis: 270px;
    max-width: 480px;
    background: #fff;
    margin: 10px 15px 10px 10px;
}

.layout-col-list {
    /* background: #f5f6f8 none; */
    flex-basis: 420px;
    /* max-width: 800px; */
    margin: 10px 10px 10px 15px;
}

.layout-col-menu {
    background: #e3e6ea none;
    flex-basis: 160px;
    max-width: 160px;
    box-shadow: inset -1px 0 3px rgba(0, 0, 0, 0.1);
}

.layout-col-detail {
    /* height: 100%; */
    /* background: #eeeff1 none; */
    /* box-shadow: inset 1px 0px 0px rgba(0, 0, 0, 0.04); */
    flex: 1;
    position: relative;
    /* overflow: auto; */
    /* background: #fff; */
    margin: 10px 10px 10px 15px;
}

.layout-row-inpage,
.layout-row-intab {
    display: flex;
    flex: 1;
    position: relative;
    /* overflow: auto; */
}

.layout-no-flex {
    flex: 1;
    position: relative;
    margin: 10px 10px 10px 15px;
}

.layout-no-flex > .layout-col-list,
.layout-no-flex > .layout-col-detail {
    margin: 0;
}

.layout-col-list > .layout-no-flex,
.layout-col-detail > .layout-no-flex {
    margin: 0;
}

.layout-row-inpage,
.layout-no-cols {
    max-width: 1020px;
}

.layout-row-inpage {
    min-height: calc(100vh - 50px);
}

.el-tab-pane .layout-row-inpage,
.layout-row-intab {
    min-height: calc(100vh - 100px);
}

.layout-no-cols {
    flex: 1;
    /* height: 100%; */
    min-height: calc(100vh - 200px);
    position: relative;
    /* overflow: auto; */
    margin: 10px;
}

.layout-content-padding,
.layout-content-padding-intab {
    position: relative;
    padding: 13px 10px;
}

.layout-content-padding.scroll {
    min-height: calc(100vh - 170px);
}

.el-tab-pane .layout-content-padding.scroll,
.layout-content-padding-intab.scroll {
    min-height: calc(100vh - 220px);
}

.layout-col-list .layout-content-padding,
.layout-col-list .layout-content-padding-intab,
.layout-content-padding.small,
.layout-content-padding-intab.small {
    padding: 10px 12px;
}

.layout-col-tree .layout-content-padding,
.layout-col-tree .layout-content-padding-intab,
.layout-content-padding.mini,
.layout-content-padding-intab.mini {
    padding: 10px;
}

.layout-content-padding .el-tree {
    width: 100%;
}

.layout-content-padding .el-tree .el-tree__empty-block {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100px;
}

.layout-content-padding.scroll li.el-menu-item {
    font-size: 13px;
    height: 26px;
    line-height: 26px;
}

.layout-detail-content-padding {
    padding: 10px 0;
}

@media (max-width: 1366px) {
    .layout-col-menu {
        flex-basis: 150px;
    }

    .layout-col-tree {
        flex-basis: 270px;
    }

    .layout-col-list {
        flex-basis: 360px;
    }
}

.navbar-color-bg {
    color: #cceeff;
}

.navbar-color-bg .el-dropdown {
    color: #cceeff;
}

.navbar-color-bg a {
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: 4px;
}

.navbar-color-bg .el-input__inner {
    color: #eef;
}

.navbar-color-bg a:hover {
    color: #fff7cc;
}

.second-level-navbar {
    flex-basis: 220px;
    max-width: 220px;
    /* border-bottom: 1px solid #ddd; */
    margin: 10px 10px 10px 10px;
    background-color: #fff;
    border: 1px solid #ecedef;
    box-shadow: 0 1px 1px rgba(99, 99, 99, .05);
    border-radius: 4px;
    padding: 0 0 10px 0;
}

.second-level-navbar .el-toolbar {
    border-bottom: 1px solid #f3f3f3;
}

.second-level-navbar .el-menu-item {
    /* display: inline-block; */
    /* padding: 0 14px !important; */
    font-size: 16px;
}

.second-level-navbar .el-menu-item.is-active {
    color: var(--theme);
    font-weight: 600;
}

.second-level-navbar .navbar-title {
    font-weight: 600;
    margin-left: 15px;
    font-size: 18px;
}

.layout-col-menu .menu-wrap {
    position: absolute;
    width: 100%;
    top: 50px;
    bottom: 0;
    overflow: auto;
}
/*begin 对UI框架element的样式的覆盖*/
.v-modal {
    opacity: .4;
    background: #333;
}

.el-table {
    /* margin-top: 5px; */
    border-radius: 2px;
    /* box-shadow: 0px 0px 1px rgba(0, 0, 0, .2), 0px 1px 0px rgba(0, 0, 0, .1); */
}

.el-table--border {
    box-shadow: none;
}

.el-collapse-item .el-table {
    border-radius: 0;
    box-shadow: none;
}

.el-table::before {
    content: none;
}

.el-table--border::before {
    content: '';
}

.el-table .cell {
    padding-left: 12px;
    padding-right: 12px;
}
.el-table th > .cell {
    padding-left: 10px;
    padding-right: 10px;
}


.el-table td,
.el-table th {
    padding: 8px 0;
}

.el-table th > .cell {
    line-height: 20px;
}

.el-table__header th {
    background-color: #fafafa;
}
/** 紧凑树状表格，用在权限管理界面 */
.tree-grid-table .compact.el-table th{
    padding: 4px 0;
}
.tree-grid-table .compact.el-table .el-checkbox__label{
    padding-left: 4px;
}
.tree-grid-table .compact.el-table th > .cell{
    padding-left: 0;
    padding-right: 0;
}
.tree-grid-table .compact.el-table .el-table .cell{
    padding-left: 8px;
    padding-right: 8px;
}
.tree-grid-table .compact.el-table .el-table__header .el-checkbox{
    width: 100%;
}

.tree-grid-table .compact.el-table .el-table__header .el-checkbox__input{
    position: absolute;
    white-space: nowrap;
    background-color: rgba(246,247,249,.9);
    width: 100%;
    height: 100%;
    text-align: left;
}

.tree-grid-table .compact.el-table .el-table__header .el-checkbox .el-checkbox__input {
   visibility: hidden;
}

.tree-grid-table .compact.el-table .el-table__header .el-checkbox:hover .el-checkbox__input {
    visibility: visible;
}
.tree-grid-table .compact.el-table .el-table__header .el-checkbox .el-checkbox__inner {
    margin: 2px 0 0 2px;
}
.tree-grid-table .compact.el-table .el-table__header .el-checkbox__input::after{
    content: '全选';
    position: relative;
    left: 4px;
    top: -2px;
}
.el-upload__input[type=file] {
    display: none;
}

.el-input {
    font-size: 13px;
}

.el-select__input {
  margin-left: 10px;
}

.el-input__inner {
    height: 36px;
    padding-left: 10px;
    padding-right: 10px;
}

/**修复.el-input__inner高度设置为36px后计数器组件显示异常的问题**/
.el-input-number:not(.el-input-number--medium):not(.el-input-number--small):not(.el-input-number--mini) > span[role='button']{
    top: 2px;
    line-height: 34px;
}

.el-textarea__inner {
    padding-left:10px;
}

.el-form-item .el-select .el-input__inner[readonly=readonly],
.el-form-item .el-select .el-input--suffix .el-input__inner {
    height: 36px !important;
    line-height: 28px;
}

.el-input__icon,
.el-date-editor .el-range__icon,
.el-date-editor .el-range-separator,
.el-date-editor .el-range__close-icon {
    line-height: 23px;
}

.el-date-editor .el-range-separator {
    width: 6%;
}

.el-button {
    padding: 10px 11px 11px 11px;
    font-size: 13px;
}

.dashed {
    border-style: dashed;
}

.el-button + .el-dropdown {
    margin-left: 10px;
}

.el-button + .el-button-group {
    margin-left: 10px;
}

.el-dropdown + .el-button {
    margin-left: 10px;
}

.el-dropdown + .el-dropdown {
    margin-left: 10px;
}

.el-button--large {
    padding: 13px 19px;
    font-size: 16px;
}

.el-button--medium {
    padding: 10px 14px;
    font-size: 14px;
}

.el-button--small {
    padding: 7px 9px;
    font-size: 13px;
}

.el-button--mini {
    padding: 5px 7px;
    font-size: 12px;
}

.el-button--text {
    color: inherit;
    padding: 10px 8px 11px;
}

.el-button--text + .el-button--text {
    margin-left: 0px;
}
/* 工具栏上的按钮 */

.el-toolbar .el-button {
    background: transparent;
    border-color: transparent;
    font-size: 14px;
    color: var(--hereof);
    padding: 10px 10px 10px 10px;
}
/* 工具栏触发的弹出层的上的搜索按钮居中 */
.el-toolbar .el-toolbar-body .el-button {
    /* padding: 10px; */
}
.el-toolbar.prominent .el-button {
    /* font-size : 16px; */
}

.el-toolbar .el-button.is-plain:active,
.el-toolbar .el-button.is-active,
.el-toolbar .el-button.is-plain:focus {
    border-color: transparent;
    background: none;
}

.el-toolbar .el-button--medium {
    font-size: 14px;
}

.el-toolbar .el-button--small {
    font-size: 13px;
}

.el-toolbar .el-button--mini {
    font-size: 12px;
}

.el-toolbar .el-button.is-disabled {
    background-color: transparent;
    border-color: transparent;
    color: #bbb;
}

.el-toolbar .el-button--primary {
    color: #fff;
    background-color: var(--theme);
    border-color: var(--theme);
    height: 32px;
    line-height: 32px;
    padding: 0 18px;
    font-size: 14px;
}

.el-toolbar-body > .shadow-primary.is-round {
    margin: 0 !important;
}

.el-toolbar .el-button--medium.is-round {
    padding: 0 20px 10px 20px;
}

.tool-box .el-row {
    margin: 0;
    padding: 0;
}
/* end 工具栏上的按钮 */

.toolbar-buttons-ct {
    margin-left: 10px;
    display: flex;
    justify-content: flex-start;
}

.toolbar-buttons-ct + .el-button {
    margin-left: 10px;
}

.el-table .el-button {
    padding: 0px;
}

.el-table .el-button + .el-button {
    margin-left: 0px;
}
/* 给按钮等加一个大投影 */
.shadow-primary {
    box-shadow: 1px 4px 16px 0px var(--shadow);
}
/* end 给按钮等加一个大投影 */

.el-icon-caret-bottom:before {
    content: "\e603";
}

.el-icon-caret-top:before {
    content: "\e605";
}

.el-icon-arrow-down:before {
    /* font-family: FontAwesome;
  content: "\f078"; */
    font-size: 75%;
}

.el-select .el-input .el-select__caret.el-icon-arrow-up:before,
.select-wrap .select-icon.el-icon-caret-top:before {
    font-family: monospace;
    content: "\25e4";
    /* content: "◤"; */
    font-size: 14px;
    position: relative;
    left: -3px;
    top: -3px;
}

.select-wrap .select-icon.el-icon-caret-bottom:before {
    color: #bbb;
    font-family: monospace;
    content: "\25e4";
    font-size: 14px;
    position: relative;
    left: -3px;
    top: -3px;
}

.el-select .el-input .el-select__caret.is-reverse,
.select-wrap .select-icon {
    transform: rotateZ(180deg);
}

.el-select .el-input.is-focus .el-select__caret.el-icon-arrow-up:before,
.select-wrap .select-icon.el-icon-caret-top:before {
    color: var(--theme);
}

.el-form-item {
    margin-bottom: 8px;
}

.el-tabs__header {
    /* background-color: #fff; */
    /* margin: 10px 0 0 0; */
    margin: 0;
}

.el-tabs__nav-wrap::after {
    height: 1px;
}

.el-tabs--card > .el-tabs__header {
    background-color: transparent;
}

.el-tabs--card > .el-tabs__header .el-tabs__item.is-active {
    background-color: #fff;
}

.el-tabs__nav-wrap {
    padding-left: 20px;
}

.el-dialog .el-tabs__header {
    box-shadow: none;
}

.el-tabs__item {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
}

.el-tabs__active-bar {
    bottom: 1px;
}

.el-tree {
    border: 0 none;
    background: none;
}

.el-menu {
    background: none;
    border-right: 0 none;
}

.layout-menu i {
    width: 25px;
}

.el-menu-item,
.el-submenu__title {
    height: 45px;
    line-height: 45px;
    color: #73767f;
    padding-left: 40px !important;
    font-size: 16px;
}

.el-menu-item:focus,
.el-menu-item:hover {
    background-color: transparent;
    /* box-shadow: inset -1px 0 3px rgba(0, 0, 0, 0.1); */
}

.layout-col-menu .el-menu-item.is-active {
    background-color: #f6f7f9;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

.el-form-item__error {
    background-color: rgba(255, 252, 205, 0.8);
    border: 1px solid #ffc968;
    padding: 3px 5px 2px;
    border-radius: 4px;
    z-index: 2;
    margin-top: -1px;
}

.el-form-item__error::before,
.el-form-item__error::after {
    border-style: solid;
    border-color: transparent;
    border-color: rgba(255, 255, 255, 0);
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    top: 0%;
    left: 10px;
    border-width: 5px;
}

.el-form-item__error::after {
    border-bottom-color: #fffccd;
    margin-top: -10px;
}

.el-form-item__error::before {
    border-bottom-color: #ffc968;
    margin-top: -11px;
}
/*****  弹窗 - 界面修改  *****/

/* 弹窗标题背景色 */
.el-message {
    top: 30px;
    padding: 20px;
    font-size: 16px;
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}

.el-message__content {
    font-size: 16px;
}

.el-dialog__header,
.el-message-box__header {
    background: #f4f4f4;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.el-message-box__title {
    min-height: 1em;
}
/* 弹框内容文字换行*/
.el-message-box .el-message-box__message {
    word-wrap: break-word;
    word-break: break-all;
}
/* 弹窗，底部按钮样式设置 */
.dialog-body-footer {
    padding: 10px 0;
}

.el-dialog__wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.el-dialog {
    border-radius: 5px;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, 0.3);
    margin: 0 auto 0px;
}

.el-dialog.dialog-disguise-page {
    width: 1280px;
    height: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: none;
}

.import_dialog_width {
  width: auto;
  min-width: 500px;
}

.page-bg-color {
    background-color: #f6f7f9;
    opacity: 1;
}

.el-dialog__header {
    background-color: #fff;
}

.el-dialog__headerbtn {
    font-size: 22px;
    line-height: 1;
}

.el-dialog__headerbtn .el-dialog__close {
    transition: transform 0.2s ease;
}

.el-dialog__headerbtn:focus .el-dialog__close,
.el-dialog__headerbtn:hover .el-dialog__close {
    transform: rotate(90deg);
}

.el-dialog__footer .el-button,
.el-message-box__btns .el-button {
    border-radius: 2em;
    box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    min-width: 70px;
}

.el-dialog__footer .el-button:hover {
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.15);
}

.el-dialog__footer .el-button--primary,
.el-message-box__btns .el-button--primary {
    background-color: var(--theme);
    box-shadow: 0 4px 5px 0px var(--shadow);
}

.el-dialog__footer .el-button--primary:hover {
    background-color: var(--hover);
    box-shadow: 0 3px 6px 1px rgba(26, 255, 141, 0.4);
}

.el-dialog__footer .el-button--primary.is-disabled, .el-dialog__footer .el-button--primary.is-disabled:hover {
    color: #fff;
    background-color: var(--hover);
    border-color: var(--hover);
}

.el-dialog__body {
    padding: 10px 20px;
    overflow: hidden;
}
.ditor.el-dialog__body {
    padding: 8px 20px;
    overflow: auto;
}

.el-message-box__content {
    padding: 20px;
}

@media (min-width: 1025px) {
    .el-dialog__body {
        overflow: auto;
        max-height: calc(100vh - 115px);
    }

    .dialog-disguise-page .el-dialog__body {
        overflow: auto;
    }
}

.el-pagination__editor.el-input {
    width: 30px;
}

.el-pagination .el-select .el-input {
    width: 87px;
}
/* end 对UI框架element的样式的覆盖 */

/* 自定义的控件的样式，命名方式同element的规范 */
.el-list-view__body {
    list-style: none;
}

.el-list-view__body::after,
.el-list-view__body::before {
    content: "";
    display: table;
}

.el-list-view__body::after {
    clear: both;
}

.list-card-title {
    color: #444;
    font-size: 17px;
    margin-right: 20px;
    line-height: 1;
    word-break: break-all;
    word-wrap: break-word;
    text-overflow: ellipsis;
}

.list-card-title img {
    margin-bottom: 1px;
}

.list-card-title:hover {
    color: var(--hover);
    text-decoration: none;
}

.list-card-buttons {
    margin-top: 8px;
    padding-top: 8px;
}

.el-list-view__row .panel-card {
    line-height: 2.2;
    padding: 12px 14px;
}

.el-list-view__row .panel-card .card-header {
    background-color: #f9f9f9;
    padding: 10px 15px;
}

.el-list-view__row.selected .panel-card {
    border-color: var(--theme);
    box-shadow: 0px 2px 16px 0px rgba(92, 153, 122, 0.2);
    position: relative;
}

.el-list-view__row.selected .list-card-title {
    color: var(--theme);
}

/* .el-list-view__row.selected .panel-card::before,
.el-list-view__row.selected .panel-card::after {
    position: absolute;
    right: -3px;
    top: -2px;
    color: var(--theme);
    font-size: 27px;
    line-height: 1;
    font-family: monospace;
    content: '◥';
    content: '\25e5';
} */
.el-list-view__row.selected .panel-card::before {
    position: absolute;
    right: 0;
    top: 0;
    color: var(--theme);
    content: '';
    width: 0;
    height: 0;
    border: 12px solid #fff;
    border-top-color: var(--theme);
    border-right-color: var(--theme);
}

.el-list-view__row.selected .panel-card::after {
    /* font-size: 12px;
    font-weight: 600;
    right: 0px;
    top: 0px;
    color: #fff;
    content: '√';
    font-family: cursive; */
    font-size: 12px;
    right: 1px;
    top: -5px;
    color: #fff;
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
}
.el-list-view.grid .el-list-view__body .el-list-view__row .index-card {
    display: none;
}
.el-list-view.grid .el-list-view__body .el-list-view__row .index-card-marker {
    display: none;
}
.index-card {
    position: absolute;
    left: 3px;
    top: 4px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    z-index: 1;
}
.index-card-marker {
    position: absolute;
    left: -6px;
    top: -2px;
    color: #dddddd;
    font-size: 40px;
    line-height: 1;
    font-family: monospace;
    z-index: 1;
}
.el-list-view.list .el-list-view__body .el-list-view__row {
    position: relative;
}
/* 表格模式 */
.el-list-view.grid .el-list-view__body {
    margin: 0 -7px;
}

.el-list-view.grid .el-list-view__row {
    float: left;
    width: 25%;
    padding: 0 7px;
}

.el-list-view.grid .panel-card {
    padding: 0;
    margin: 8px auto;
    min-height: 400px;
}

.el-list-view.grid .el-list-view__row:nth-child(4n+1) {
    clear: left;
}
/* end 自定义的控件的样式，命名方式同element的规范 */


.permission-tree-wrap .el-tree-node__content {
    height: auto;
}

/*****  共用 - 类名样式  *****/

/* 文字颜色统一 */
/* .el-menu-item,.el-menu-item:focus, .el-menu-item:hover,
.el-tabs .el-tabs__nav-wrap .el-tabs__item,
.el-form-item__label {
  color: #a5a5a5;
}
.el-tabs .el-tabs__nav-wrap .el-tabs__item.is-active {
  color:var(--theme);
}
.el-toolbar {
  color: #3a3a3a;
} */

/* 搜索框样式 */
.search-box-r {
    position: absolute;
}

.search-icon {
    position: absolute;
    top: 15px;
    right: 10px;
    color: #c9c9c9;
    cursor: pointer;
}

.search-btn-box {
    width: auto;
}

.tool-search-box-r {
    right: 0;
    top: 0;
    line-height: 50px;
}

.tool-search-box-r .el-input__inner {
    border-radius: 40px;
}

.tool-search-box-r .search-icon {
    right: 10px;
    top: 0px;
}

.relative-r {
    position: relative;
    float: right;
}

.con-search-box-r {
    right: 5px;
}

.con-search-box-r .search-icon {
    right: 20px;
}

.dropdown-search-box-r {
    position: absolute;
    right: 0;
}

.dropdown-search-box-r .el-input-group__append {
    padding: 0 10px;
    background: #fff;
    border-left: none;
    border-radius: 3px;
    border-right: 1px solid #ccc;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.dialog-search-box-l {
    position: relative;
    margin-left: -10px;
    margin-right: -10px;
}

.dialog-search-box-l .el-input__inner {
    border-radius: 40px;
}

.dialog-search-box-l .search-icon {
    right: 20px;
    position: absolute;
}
/* 树形盒子搜索框样式 */
.tree-search-box {
    position: relative;
    float: none;
}

.tree-search-box .el-input__inner {
    height: 36px;
}

.tree-search-box .search-icon {
    top: 8px;
    right: 10px;
}

.tool-select-box-r {
    position: absolute;
    right: 10px;
}

/* 居中设置 */
.layout-center-box {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 49%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.layout-center-box .el-radio-group label,
.layout-center-box .el-form-item__content label,
.layout-center-box .el-checkbox-group label {
    padding: 0;
}
/* 垂直方向边距 */
.padding-vertical-min {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding-vertical-max {
    padding-top: 15px;
    padding-bottom: 15px;
}
/* 水平方向边距 */
.padding-horizontal-min {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-horizontal-max {
    padding-left: 15px;
    padding-right: 15px;
}
/* 卡片样式设置 */
.panel-legend {
    font-size: 17px;
    font-weight: 600;
    display: inline-block;
    line-height: 40px;
    color: #3d4c44;
    padding: 0 15px;
}

.panel-fieldset,
.panel-card {
    padding: 13px 15px 14px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(99, 99, 99, .05);
    margin: 10px auto;
}

.panel-card {
    border: 1px solid #ecedef;
    box-shadow: 0 1px 1px rgba(99, 99, 99, .05);
}

.el-card {
    border: 0 none;
    box-shadow: 0 0px 3px 0 rgba(0, 0, 0, .12);
    margin: 10px 0 20px;
}

.panel-info-well {
    border-radius: 4px;
    border: 1px solid #e6e9ed;
    padding: 15px 20px;
    font-size: 107.7%;
    line-height: 2;
    margin-bottom: 15px;
    /* background-color: rgba(0, 200, 255, .01); */
}

.panel-info-well h3 {
    margin: 10px 0;
}

.panel-card .card-header i {
    padding-right: 6px;
}

.panel-card .el-table__header th {
    background: transparent;
    /* border-top: 1px solid #ebeef5; */
}
/* start 可折叠样式 */
.el-collapse {
    border: 0 none;
}

.el-collapse-item {
    border-radius: 3px;
    box-shadow: 0px 0px 1px rgba(0, 0, 0, .1), 0px 1px 2px rgba(99, 99, 99, .1);
    margin: 10px auto 15px;
    border-bottom: none;
}

.el-collapse-item__wrap {
    border-bottom: none;
    border-radius: 0 0 3px 3px;
}

.el-collapse-item__content {
    border-radius: 0 0 3px 3px;
}

.el-collapse-item__header {
    position: relative;
}
/* .el-collapse-item .el-collapse-item__header::before{
  display: block;
  content: ' ';
  width: 2px;
  height: 25px;
  background-color: var(--theme);
  position: absolute;
  top: 12px;
  left: 0;
} */
/* end 可折叠样式 */
.panel-card > .panel-legend {
    margin: 5px -5px;
}

.panel-card-bottom {
    margin: 0 -20px -15px;
    padding: 5px 20px 5px 15px;
    border-radius: 0 0 4px 4px;
}

/*****  其他  *****/

.template-input .el-textarea {
    margin-top: 10px;
}

/* icon与文字之间的间隙 */
button > span > i.fa,
li > i.fa,
span > i.fa,
h5 > i.fa {
    padding-right: 6px;
}

button > span > i.fa-ellipsis-h,
.el-input-number__decrease > i,
.el-input-number__increase > i {
    padding-right: 0;
}

/* 折叠菜单icon与文字之间的间隙 */
.el-dropdown-menu .table-operate-icon .fa {
  width: 22px;
}

/* start 属性节点样式 */
/* 一级树节点 */
.el-tree-node__content .node-name i,
.el-tree-node__content .node-name span {
    font-size: 16px;
}

.el-tree-node__content .node-name {
    padding: 5px 0;
}
/* 二级树节点 */
.el-tree-node__children .node-name span,
.el-tree-node__children .node-name i {
    color: #3c5d4d;
    font-size: 14px;
}

.el-tree-node__children .node-name {
    padding: 0;
}

/* 三级树节点 */
.el-tree-node__children .node-content span {
    color: #7c7c7c;
    font-size: 14px;
}

.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content,
/* .el-tree-node:focus > .el-tree-node__content, */
.el-tree-node__content:hover {
    background-color: #c4c4c4;
}
/* 异步加载 loading 图标颜色 */
.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content .el-tree-node__loading-icon,
.el-tree-node:focus > .el-tree-node__content .el-tree-node__loading-icon,
.el-tree-node__content:hover .el-tree-node__loading-icon {
    color: #606266
}
.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content .el-tree-node__expand-icon,
.el-tree-node:focus > .el-tree-node__content .el-tree-node__expand-icon,
.el-tree-node__content:hover .el-tree-node__expand-icon {
    color: #606266;
}

.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content .el-tree-node__expand-icon.is-leaf,
.el-tree-node:focus > .el-tree-node__content .el-tree-node__expand-icon.is-leaf,
.el-tree-node__content:hover .el-tree-node__expand-icon.is-leaf {
    color: transparent
}

.el-tree-node .node-name i.fa {
    opacity: 0.8;
}

.catalog-tree {
    padding: 10px 8px 6px 10px;
}

.catalog-tree.roomy {
    font-size: 16px;
}

.catalog-tree ul {
    list-style: none;
    padding-left: 22px;
}

.catalog-tree ul.root-stage {
    padding-left: 0;
}

.catalog-tree .no-data {
    text-align: center;
    color: #ccc;
    font-size: 14px;
    line-height: 40px;
}

.catalog-tree .title {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px;
    color: #424242;
    cursor: pointer;
}

.catalog-tree ul {
    list-style: none;
    padding-left: 22px;
}

.catalog-tree li > .node-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 32px;
    /* line-height: 42px; */
}

.catalog-tree.roomy li > .node-content {
    height: 42px;
}
.catalog-tree li > .node-content > .fa {
    padding: 14px;
    font-size: 11px;
    top: -2px;
    position: absolute;
    right: 0;
}

.catalog-tree li.level1-node:hover {
    background-color: #f9fbfa;
}

.catalog-tree li.level1-node > .node-content {
    padding-left: 6px;
}

.catalog-tree li.level1-node.grandchildren-active > .node-content {
    /* color: #41ce8a; */
}

.catalog-tree li.node-li:not(.level1-node) > .node-content:hover {
    color: var(--hover);
}

.catalog-tree ul.children-list {
    display: none;
}

.catalog-tree li.node-li.is-expanded > ul.children-list {
    display: block;
}

.catalog-tree li.node-li.is-expanded > .node-content > .fa:before {
    content: '\f077';
}

.catalog-tree li.node-li > .node-content > .fa:before {
    content: '\f078';
}
.catalog-tree .node-oprates .btn-oprate.is-disabled {
    display:none;
}

@keyframes rotating {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.catalog-tree li.node-li.lazy > .node-content > .fa {
    animation: rotating 1.2s linear infinite;
}

.catalog-tree li.node-li.lazy > .node-content > .fa:before {
    content: '\f110';
}

.catalog-tree .fa.dot:before {
    content: '·';
    width: 6px;
    display: inline-block;
}

.catalog-tree .node-content.active {
    color: var(--active);
    font-weight: 700;
}
.catalog-tree .node-content.semi-active {
    color: var(--hover);
}
/* end 属性节点样式 */


/*****  菜单 - 筛选功能 - 界面修改  *****/

/* 菜单内容区： select + input + button */
.search-bar {
    padding: 10px 10px 0 10px;
    min-height: 50px;
}

.search-bar::after {
    content: ' ';
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.el-select {
    width: 130px;
    /* max-width: 100%; */
}

.search-bar-table {
    padding: 5px 0;
}

/* 菜单内容区： select + button */
.search-bar-select {
    padding: 5px 0;
}

.search-bar-select .el-select {
    width: calc(100% - 37px);
}

/* 工具栏区： select + input + button */
.search-bar-toolbar {
    padding: 15px 10px 12px 10px;
    border-bottom: 1px solid #e7e9f0;
}

.search-bar-toolbar .el-select {
    width: 90px;
}

/*****  内容区 - 筛选功能 - 界面修改  *****/

/* 在toolbar内 */

.layout-data-search {
    padding-left: 5px;
    display: flex;
}

.layout-data-search > * {
    margin-left: 5px;
}

.layout-data-search > *:first-child {
    margin-left: 0;
}

.layout-data-search .el-input,
.layout-data-search .el-date-picker,
.layout-data-search .el-button {
    /* padding-right: 5px; */
    height: 30px;
}

.layout-data-search > span {
    white-space: nowrap;
    line-height: 30px;
    height: 30px;
    padding: 0 5px;
}

.layout-select {
    width: 100%;
}

.layout-data-picker {
    margin-right: 5px;
}

.layout-data-search-3 .layout-data-picker {
    width: 135% !important;
}

.layout-data-search-4 .layout-data-picker {
    width: 205% !important;
}

.layout-data-search-5 .layout-data-picker {
    width: 205% !important;
}

.layout-data-search-6 .layout-data-picker {
    width: 280% !important;
}

.layout-data-search-7 .layout-data-picker {
    width: 350% !important;
}

/* 在content内 */
.search-bar-left {
    padding: 15px 0;
    width: 400px;
}

.tar + div {
    clear: both;
}

.layout-data-search-con {
    padding: 0 0 10px 0;
    float: right;
}

.layout-data-search-con.form-left {
    float: left;
}

.layout-data-search-con .layout-label {
    white-space: nowrap;
    line-height: 30px;
    padding: 0 0 0 5px;
}

.layout-data-search-con .el-checkbox {
    padding-right: 10px;
}

.layout-data-search-con .el-checkbox__label {
    padding-left: 0;
}

@media (max-width: 1366px) {
}

.search-bar-algin-toolbar {
    padding: 0;
    position: relative;
    text-align: right;
}

.dropdown-search-box-r.search-bar-algin-toolbar .search-icon {
    top: 9px;
}

.list-or-grid {
    /* line-height: 60px; */
    text-align: right;
}

.list-or-grid .el-radio-button {
    padding: 0;
    margin: 0;
}

.list-or-grid .el-radio-button__inner {
    padding: 10px;
}

.list-or-grid .el-radio-button__inner .fa {
    padding: 0;
}

/*****  内容区 - 表格 - 界面修改  *****/
/* start 表格内颜色 */
.table-panel-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ecedef;
    box-shadow: 0 1px 1px rgba(99, 99, 99, .05);
    width: calc(100% - 20px);
    margin-bottom: 20px;
}

.table-panel-card h4 {
    padding-left: 0;
}

.el-table__header tr th {
    color: #706d69;
}

.el-table__body-wrapper tr td {
    color: #777;
}

.el-table__body-wrapper tr a {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color: var(--theme);
    font-size: 14px;
}
.content-list.content-a-table .el-table__body-wrapper tr a {
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color: var(--theme);
    font-size: 14px;
    width: 92%;
    display: inline-block;
    vertical-align: bottom;
}

.el-table__body-wrapper tr a:hover {
    color: var(--hover);
    text-decoration: none;
}

.table-operate-icon {
    color: #8a9991;
    font-size: 14px;
}
/* end 表格内颜色 */

/* 表格内，筛选按钮位置 */
table th .el-input--suffix .el-input__suffix {
    right: 15px;
}
/* 去掉表格水平滚动条 */
.el-table__body {
    margin: 0 -1px 0;
}

.el-table--border .el-table__body {
    margin: 0;
}
/* 图标主题颜色*/
.icon-success {
    color: var(--success);
}

.icon-warning {
    color: var(--warning);
}

.icon-danger {
    color: var(--danger);
}

.icon-blue {
    color: #409eff;
}

.icon-info {
    color: #909399;
}

/*****  内容区 - 内容 - 界面修改  *****/

/* 右侧内容列表添加间距 */
.el-table td.is-left,
.el-table th.is-left {
    padding: 15px 0;
}

/*****  内容区 - 表单 - 界面修改  *****/

/* 单/双选按钮 */
.el-radio-group label:not([role="radio"]),
.el-form-item__content label,
.el-checkbox-group label:not([role="checkbox"]) {
    padding: 0 5px;
    margin-left: 0;
}

.el-radio-group label:first-child,
.el-form-item__content label:first-child,
.el-checkbox-group label:first-child {
    padding-left: 0;
}

.el-radio + .el-radio {
    margin: 0;
}

.el-color-picker__trigger {
    height: 30px !important;
    width: 30px !important;
}


/* 分页条样式重定义 */

.el-pager li.active {
    color: #fff;
    background-color: var(--theme);
}
.el-table__footer-wrapper {
    margin-top: 10px;
  display: flex;
}
.el-table__footer-wrapper .el-pagination {
    padding: 2px 5px;
    flex: 1;
}
.el-table__footer-wrapper .el-pagination .el-input__inner {
    height: 28px;
}
.el-table__footer-wrapper .el-multi-operate {
    padding: 2px 5px;
    font-size: 0;
}
.el-table__footer-wrapper .el-multi-operate .el-input__inner {
    height: 28px;
}

/* end 分页条样式重定义 */

/* 新设计稿详情页面板 */
.detail-panel {
    background-color: #fff;
    border-radius: 4px;
    padding: 20px 50px 30px 40px;
    box-shadow: 0 1px 1px rgba(99, 99, 99, .05);
    border: 1px solid #ecedef;
    margin-bottom: 20px;
}

.detail-panel .panel-header {
    padding-bottom: 15px;
}

.detail-panel .panel-header .title {
    font-size: 18px;
    font-weight: 700;
    color: #444;
}

.detail-panel .is-required,
.detail-panel .is-required {
    position: relative;
    width: auto;
    /* display: inline-block; */
}

.block-line-panel .is-required,
.block-line-panel .is-required {
    position: relative;
    width: auto;
    display: block;
}

.is-required .el-form-item__label:before,
.el-form-item.is-required .el-form-item__label:before {
    display: none;
}

.el-form-item.is-required .el-input:before {
    content: '*';
    color: var(--danger);
}

.el-form-item.is-required .el-textarea:before {
    position: absolute;
    right: 5px;
    top: calc(50%);
    z-index: 0;
    line-height: 1px;
    content: '*';
    color: var(--danger);
    margin-right: 4px;
}

.el-form-item.is-required .el-checkbox-group:before,
 .el-form-item.is-required .textarea-ueditor:before,
  .el-form-item.is-required .control-upload:before,
   .el-form-item.is-required .control-radio:before {
    content: '*';
    color: var(--danger);
}
.el-form-item.is-required .el-checkbox-group:before,
 .el-form-item.is-required .textarea-ueditor:before,
  .el-form-item.is-required .control-upload:before,
   .el-form-item.is-required .control-radio:before {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 10;
    line-height: 36px;
    width: 10px;
    font-size: 14px;
}

/* 校验*在输入框里面 */
.el-form-item.is-required .el-input > .el-input__inner {
    padding-right: 15px;
}

.el-form-item.is-required .el-input:before {
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 0;
    line-height: 36px;
}
/* 校验*在输入框后面 */

.el-form-item.is-success .el-input__inner {
    padding-right: 15px;
}




/* start 图集样式修改 */
/*start 头部工具栏 */
.detail-toobar-box {
    background: #fff;
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ecedef;
    box-shadow: 0 1px 1px rgba(99, 99, 99, .05);
    height: 85px !important;
}

.detail-toobar-back {
    padding-left: 20px;
    line-height: 60px;
}

.detail-toobar-operate {
    padding-right: 5px;
}

.detail-content-box .save-btn {
    text-align: center;
    display: block;
    position: relative;
    display: inline-block;
    width: 100%;
}

.detail-content-box .save-btn .el-button {
    height: 36px;
}

.detail-content-box .save-btn span,
.detail-content-box .save-btn i {
    display: inline-block;
    padding: 0 5px;
    font-size: 16px;
}
/* end 头部工具栏 */
/* start 左侧内容 */
.detail-content-box .panel-fieldset label,
.detail-content-box .panel-card label {
    font-size: 15px;
}

/* .detail-content-box button i {
    padding-right: 6px;
    padding-left: 6px;
} */
.detail-content-box .el-form-item__content {
    position: relative;
}
.el-form-item--small .el-form-item__content, .el-form-item--small .el-form-item__label {
    line-height: 32px;
}
.detail-content-box .add-tag {
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 12px;
    color: var(--theme);
}

.detail-content-box .add-link {
    color: #b5bbc9;
    font-size: 20px;
    position: absolute;
    left: -35px;
    top: 12px;
}

.button-new-tag {
    margin-left: 10px;
    height: 32px;
    line-height: 30px;
    padding: 0 9px;
}

.detail-content-box .rm-label h4 {
    display: none;
}
/* end 左侧内容 */

/*start 右侧边 属性 */

.sidebar-item-box {
    background: #fff;
    padding: 5px 0;
}

.sidebar-item-box .el-form {
    padding: 0 20px;
}

.sidebar-item-box .el-collapse-item__header {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #343434;
    font-size: 17px;
    font-weight: 700;
    padding: 0 20px;
    height: 50px;
    padding-top: 10px;
}

.sidebar-item-box .el-collapse-item__header::before {
    top: 20px;
    display: none;
}

.sidebar-item-box .sidebar-item-box-select {
    width: calc(100% - 68px);
}

.sidebar-item-box-logo {
    padding-top: 10px;
}

.sidebar-item-box-logo .el-form-item__label {
    display: none;
}

.sidebar-item-box-logo .upload-img-box {
    background: #f8f8f8;
    width: 100%;
    height: 178px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
}

.sidebar-item-box-logo .upload-img-box img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sidebar-item-box-logo {
    position: relative;
}

.sidebar .el-collapse-item__content {
    padding: 0;
}

.sidebar-item-box-logo .upload-img-box-con {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ddd;
}

.sidebar-item-box-logo .upload-img-box-con i {
    display: block;
    font-size: 30px;
    font-weight: 100;
}

.sidebar-item-box-logo .upload-img-box-con span {
    display: block;
    font-size: 17px;
    font-weight: 100;
}
/*end 右侧边 属性 */
.sidebar-item-box .el-date-editor.el-input,
.sidebar-item-box .el-date-editor.el-input__inner {
    width: 200px;
}

.sidebar-item-box .el-textarea {
    padding-bottom: 10px;
}
/* end 图集样式修改 */

/* start 详细页 tab切换样式 */
.tabs-wrap .el-tabs__header {
    margin: 0;
}

.el-tabs .el-tabs__nav-wrap {
    padding: 0;
}

.el-tabs .el-tabs__nav-wrap .el-tabs__item {
    padding: 0 15px;
    font-size: 16px;
}

.el-tabs .el-tabs__nav-wrap .el-tabs__item.is-active {
    font-weight: 600;
    border: none;
}
/* .el-tabs__active-bar {left: 10px;} */
/* .el-tabs__nav {padding: 0 15px;} */
.el-tabs__item:focus.is-active.is-focus:not(:active) {
    box-shadow: none;
    border: none;
}

.el-tabs .el-tabs__nav-wrap i {
    padding: 0;
    /* padding-right: 6px; */
}

.el-collapse-item .el-collapse-item__header {
    font-size: 17px;
    font-weight: 600;
    line-height: 47px;
    color: #3d4c44;
    padding: 0 0 0 15px;
}

.tabs-wrap .el-collapse-item__header {
    font-size: 17px;
    font-weight: 600;
    line-height: 50px;
    color: #3d4c44;
    padding: 0 20px;
}

.tabs-wrap .el-collapse-item__wrap {
    width: 100%;
}
/* end 详细页 tab切换样式 */

.page-title {
    color: #444;
    font-size: 24px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
}
/* 供再修正字大小内外间距等 */

.fl {
    float: left;
}

.fr {
    float: right;
}

.bold {
    font-weight: 600;
}

.tac,
.center {
    text-align: center;
}

.tar,
.right {
    text-align: right;
}

.left {
    text-align: left;
}

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f17 {
    font-size: 17px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f24 {
    font-size: 24px;
}

.f30 {
    font-size: 30px;
}

.f36 {
    font-size: 36px;
}

.padding0 {
    padding: 0;
}

.padding-top-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-left-right {
    padding-left: 10px;
    padding-right: 10px;
}

.margin-top-8 {
    margin-top: -8px;
}

.margin0 {
    margin: 0;
}

.margin-top-bottom {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin-left-right {
    margin-left: 10px;
    margin-right: 10px;
}
/* end 供再修正内外间距 */

.el-tooltip__popper {
    max-width: 90vh;
}


/* 返回上级+保存 */
.el-toolbar-body .button-separator {
    padding: 11px 0;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin: 6px 10px;
    vertical-align: middle;
}

.el-toolbar-body .save {
    margin-left: 10px;
}

.el-toolbar-body .save .fa {
    margin-right: 5px;
}

.no-back .save {
    margin-left: 0;
    padding: 0;
}

/* start ueditor弹框样式修改 */

.edui-notadd .edui-dialog-caption {
    font-weight: inherit !important;
    line-height: 24px !important;
    font-size: 18px !important;
    color: #303133 !important;
    padding-left: 0 !important;
}

.edui-notadd .edui-dialog-draghandle {
    padding: 15px 15px 10px;
}

.el-dialog__body {
    background-color: #fff;
}

.edui-notadd .edui-dialog-draghandle {
    background: #f4f4f4;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.edui-notadd .edui-dialog-foot {
    position: inherit;
    padding: 10px 15px 15px;
    text-align: right;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 0 !important;
}

.edui-notadd .edui-dialog-buttons .edui-cancelbutton {
    cursor: pointer;
    color: #606266 !important;
    border: 1px solid #dcdfe6;
    border-radius: 2em !important;
    background-color: #fff !important;
    box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.1);
}

.edui-notadd .edui-dialog-buttons .edui-cancelbutton:hover {
    color: var(--hover) !important;
    border-color: rgb(191, 231, 212);
    background-color: #eaf7f1 !important;
}

.edui-notadd .edui-dialog-buttons .edui-okbutton {
    padding: 1px;
    cursor: pointer;
    border: none;
    border-radius: 2em !important;
    background-color: var(--theme) !important;
    box-shadow: 0 4px 5px 0px var(--shadow);
}

.edui-notadd .edui-dialog-buttons .edui-okbutton:hover {
    background-color: var(--hover) !important;
    border-color:var(--hover);
    box-shadow: 0 3px 6px 1px var(--shadow);
}

.edui-notadd .edui-dialog-buttons .edui-label,
.edui-notadd .edui-dialog-buttons .edui-button .edui-button-body {
    cursor: pointer !important;
}
.edui-notadd .edui-dialog-buttons .edui-button.edui-button-upload-local-image .edui-button-body {
    width: 120px;
}

/* end ueditor弹框样式修改 */

/** 下拉框距离鼠标点击元素距离*/
.el-popper[x-placement^=bottom] {
    margin-top: 6px;
}

/* 表格点击栏按钮样式 */
.table-title-button {
    color: var(--theme);
    font-size: 14px;
    margin-right: 20px;
    cursor: pointer;
}

/* 下拉框最大高度调整 */
@media (min-height: 768px) {
    .el-select-dropdown__wrap {
        max-height: 600px;
    }
}

@media (max-height: 768px) {
    .el-select-dropdown__wrap {
        max-height: 400px;
    }
}

/** 下拉按钮样式调整 */
.button-dropdown .el-dropdown-menu__item {
    padding: 0;
    min-width: 100px;
}

.button-dropdown .el-dropdown-menu__item button.el-button.el-button--text {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
}


.el-multi-operate .el-checkbox {
    margin-bottom: 0;
    height: 28px;
    line-height: 28px;
    border: 1px solid #dcdfe6;
    background: #fff;
    padding: 0 10px;
    border-radius: 4px;
    box-sizing: border-box;
    margin-right: 10px;
    font-size: 13px;
}


.el-multi-operate .el-select {
    margin-left: 10px;
}

.edui-notadd .edui-editor-toolbarboxouter {
    border: none !important;
}

.item-status span {
    position: relative;
    margin-right: 2px;
}

.item-status span.num-circle {
    position: absolute;
    top: -9px;
    left: 5px;
    background: var(--theme);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    min-width: 15px;
    max-height: 15px;
    line-height: 15px;
    padding: 0 2px;
    margin-right: 0;
}

.panel-card .logoFile {
    margin-bottom: 5px;
}

/*****  左边菜单工具栏  *****/
.layout-left-top.left-menu-toolbar .el-toolbar {
    min-height: 60px;
    line-height: 60px;
    padding-left: 15px;
    overflow: hidden;
}

/*****  /左边菜单工具栏  *****/

/*****  右边列表工具栏  *****/
.right-list-toolbar .el-toolbar {
    height: 60px;
    line-height: 60px;
}

.right-list-toolbar .el-toolbar-body {
    padding: 0;
    margin: 0;
}

.right-list-toolbar .tool-search-box-r {
    margin: 0;
}

.right-list-toolbar .tool-search-box-r .search-icon {
    top: 2px;
    right: 10px;
}

.right-list-toolbar .el-toolbar.tool-search-box-r .search-icon {
    top: 0;
    right: 0;
}

.right-list-toolbar .tool-search-square-box-r .search-icon {
    top: 10px;
    right: 6px;
    line-height: 30px;
}

.right-list-toolbar .search-bar-algin-toolbar .el-input-group__append {
    padding: 0 10px;
    min-width: 30px;
    text-align: center;
}

.right-list-toolbar .layout-data-search .el-input,
.layout-data-search .el-date-picker,
.layout-data-search .el-button {
    height: 35px;
}
/*****  /右边列表工具栏  *****/


/*****  右边详细页工具栏  *****/
.right-detail-toolbar .el-toolbar {
    height: 50px;
    line-height: 50px;
}

.right-detail-toolbar .el-toolbar-body {
    height: 50px;
    line-height: 50px;
    padding: 0;
    margin: 0;
}

.right-detail-toolbar .tool-search-box-r .search-icon {
    top: 0px;
    right: 10px;
}
/*****  /右边详细页工具栏  *****/


/*****  右边列表tab切换  *****/
.right-list-tabs .el-tabs__nav {
    min-height: 60px;
    line-height: 60px;
}

.right-list-tabs .el-tabs__header.is-top {
    height: 60px;
}
/*****  /右边列表tab切换  *****/


/*****  右边详细页tab切换  *****/
.right-detail-tabs .el-tabs__nav {
    min-height: 50px;
    line-height: 5px;
}

.right-detail-tabs .el-tabs__header.is-top {
    height: 50px;
}

.right-detail-tabs .el-toolbar .right-detail-tabs .el-toolbar-body {
    padding: 0;
    margin: 0;
}

.right-detail-tabs .el-tabs .el-tabs__nav-wrap i {
    padding: 0;
    padding-right: 6px;
}

/*****  /右边详细页tab切换  *****/


/*****  右边列表卡片  *****/
.right-list-panel-card .panel-card:first-child,
.right-list-panel-card .el-list-view__row:first-child,
.right-list-panel-card .image-card:first-child,
.right-list-panel-fieldset .panel-fieldset:first-child {
    margin-top: 0;
}
/*****  /右边列表卡片  *****/

/** listView最小高度，避免没有数据时（暂无数据！）显示不全 **/
.el-list-view.list {
    position: relative;
    /* min-height: 40px; */
    min-height: calc(100vh - 337px);
}
.el-list-view.list.no-data {
    /* min-height: 40px; */
    /* min-height: calc(100vh - 537px); */
    min-height: calc(100vh - 85vh);
}
.el-list-view.list.no-data .el-table__empty-text {
    display: block;
    text-align: center;
    position: relative;
    transform: none;
    left: 0%;
    top: calc(100vh - 90vh);
}

/** 修复IE11兼容性问题 **/
@media all and (-ms-high-contrast: none) {
    .search-bar-algin-toolbar {
        padding: 0;
    }

    .templatelist-input-search {
        top: 12px;
    }

    .right-list-toolbar .tool-search-box-r .search-icon,
    .right-detail-toolbar .tool-search-box-r .search-icon {
        top: 0;
    }

    .search-box-lockcontent {
        top: 14px;
    }

    .search-box-recyclebin {
        top: 3px;
    }

    .search-bar-vote .search-icon,
    .search-bar-blocklist .search-icon,
    .right-list-toolbar .tool-search-box-r.search-bar-advertise .search-icon {
        top: 9px;
    }

    .search-box-special-template {
        top: 12px;
    }

    .search-box-lockedcontent {
        top: 14px;
    }
}
/* 防止neditor.css没载入前图标特别大 */
.edui-iconfont{
    width: 1em;
    height: 1em;
}
.edui-notadd .edui-icon{
    font-size: 20px;
}
div.edui-box{
    display: inline-block;
}
.edui-notadd .edui-toolbar .edui-button .edui-icon, .edui-notadd .edui-toolbar .edui-menubutton .edui-icon, .edui-notadd .edui-toolbar .edui-splitbutton .edui-icon{
    padding: 5px;
    height: 32px;
    width: 32px;
    line-height: 1;
}
.edui-notadd .edui-toolbar .edui-for-fontsize .edui-combox-body .edui-button-body{
    width: 40px;
}
/**重写被right样式覆盖的样式**/
.el-notification.right .el-notification__title {
    text-align: left
}

/**临时使用更高优先级的zIndex值覆盖日期弹出层的行内样式：用于解决日期弹出层被Dialog遮挡的问题。后续element-ui版本升级后如果该问题已修复则可去掉该样式。**/
.el-picker-panel.el-popper {
    z-index: 5000!important;
}

.bg-add-picture {
    background-image: url(../images/addpicture.png);
}

.second-level-navbar .el-toolbar-body {
  font-size: 18px;
  /* box-shadow: inset -1px 0 3px rgba(0, 0, 0, 0.1); */
}
.el-toolbar-body >.shadow-primary.is-round {
margin-left: 5px;
}
.el-toolbar-body > span,
.el-toolbar-body > .el-button:last-child,
.el-toolbar-body > .el-toolbar-btn:last-child {
margin-right: 10px;
}

/* 自定义表单级联组件：强制层级到最顶端，由于PopupManager对zIndex控制的bug,极有可能出现悬停提示内容被对话框遮住的现象 */
.global-cascader-import-poper {
  z-index: 99999!important
}
/**迁移app.vue中的全局样式**/
.el-select-dropdown.el-popper{
  z-index: 99999 !important
}
/**定义主色，便于工程中其他地方调用，便于后续主题色功能，可考虑引入CSS预编译**/
.corlor-primary {
    color:var(--theme);
}
.bg-color-primary {
    background-color: var(--theme);
}
.el-message-box .el-message-box__content .el-message-box__message p{
    max-height: 800px;
    overflow: auto;
}
.apply-catalog-color {
    color: var(--theme);
}
.catalog-type-color {
    color: var(--theme);
}

/* element-bigdata-table.vue style */
.element-bigdata-table .element-bigdata-table-div > table > tbody > tr > td{
    padding: 0;
}
.el-table_placeholder{
    background: linear-gradient(transparent 31px, rgb(235, 238, 245) 32px) 0% 0% / 32px 32px;
}

/* element-data-table.vue style */
.el-table__pagination-wrapper {
    margin-top: 10px;
    display: flex;
}
.el-table__pagination-wrapper .el-pagination {
    padding: 2px 5px;
    flex: 1;
}
.el-table__pagination-wrapper .el-pagination .el-input__inner {
    height: 28px;
}
.el-table__pagination-wrapper .el-multi-operate {
    padding: 2px 5px;
    font-size: 0;
}
.el-table__pagination-wrapper .el-multi-operate .el-input__inner {
    height: 28px;
}

/* dimContentView.vue style */
.self-table .el-table__header .el-input {
    padding-left: 0;
}

.self-table th > .cell .el-select {
    float: right;
    padding: 0;
}

/* publishPlatform.vue style */
.title-column__content:hover {
    cursor: pointer;
}
.title-column__content {
    color: #444;
    font-weight: 600;
}

/* ContentCopyDialog.vue style */
.copy-catalog-dialog .el-dialog {
    width: 420px;
}
@media (max-width: 480px) {
    .copy-catalog-dialog .el-dialog {
      width: 96%;
    }
}

/* ContentSortDialog.vue style */
.sort-dialog .el-dialog {
    width: 700px;
}

@media (max-width: 480px) {
    .sort-dialog .el-dialog {
      width: 96%;
    }
}

/* ResourceSelectMenu.vue style */
.el-tree-node__label {
    font-size: 14px;
}
.el-tree-node__content:hover {
    background-color: #f5f5f5;
    color: var(--hover);
}

/* SocialMediaPushDialog.vue style */
.media-account-selector .el-checkbox,
.el-checkbox__input {
  white-space: normal;
  text-align: center;
}
.media-account-selector .el-dialog {
  width: 680px;
}
@media (max-width: 480px) {
  .media-account-selector .el-dialog {
    width: 96%;
  }
}

/* WaterAlphaPicker.vue | WaterPercentagePicker style */
.slider-bulb {
    margin-left: 10px;
    margin-top: 10px;
    display: inline-block;
    vertical-align: top;
}

/* extendModelData.vue style */
.el-tooltip__popper {
    word-wrap: break-word;
}

/* TreeGridPermission.vue style */
.ms-tree-space {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    width: 18px;
    height: 14px;
}
.tree-grid-table input[type="checkbox"] {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
}

.tree-grid-table input[type="checkbox"] + label::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 10px;
    background: #fff;
    width: 14px;
    height: 14px;
    border: 1px solid var(--theme);
    border-radius: 2px;
    line-height: 14px;
}

.tree-grid-table input[type="checkbox"] + label.label-header::before {
    top: 9px;
    left: 12px;
}

.tree-grid-table input[type="checkbox"]:checked + label::before {
    content: "\f00c";
    background-color: var(--theme);
    position: absolute;
    top: 13px;
    left: 10px;
    width: 14px;
    height: 14px;
    border: 1px solid var(--theme);
    border-radius:2px;
    color: #fff;
    line-height: 14px;
}

.tree-grid-table input[type="checkbox"]:checked + label.label-header::before {
    top: 9px;
    left: 12px;
}

.tree-grid-table input[type="checkbox"]:disabled + label::before {
    content: "\f00c";
    background-color: #f2f6fc;
    position: absolute;
    top: 13px;
    left: 10px;
    width: 14px;
    height: 14px;
    border: 1px solid #dcdfe6;
    border-radius:2px;
    color: #dcdfe6;
    line-height: 14px;
}

.tree-grid-table input[type="checkbox"]:disabled + label.label-header::before {
    top: 9px;
    left: 12px;
}

.tree-grid-table .el-checkbox__input .el-checkbox__original {
    width: 0;
    height: 0;
    position: absolute;
}
.f-s12 {
    font-size: 12px;
}

/* PDF.vue style */
.annotationLayer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
  }

  .annotationLayer section {
    position: absolute;
  }

  .annotationLayer .linkAnnotation > a {
    position: absolute;
    font-size: 1em;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .annotationLayer .linkAnnotation > a {
    background: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7') 0 0 repeat;
  }

  .annotationLayer .linkAnnotation > a:hover {
    opacity: 0.2;
    background: #ff0;
    box-shadow: 0px 2px 10px #ff0;
  }

  .annotationLayer .textAnnotation img {
    position: absolute;
    cursor: pointer;
  }

  .annotationLayer .textWidgetAnnotation input,
  .annotationLayer .textWidgetAnnotation textarea,
  .annotationLayer .choiceWidgetAnnotation select,
  .annotationLayer .buttonWidgetAnnotation.checkBox input,
  .annotationLayer .buttonWidgetAnnotation.radioButton input {
    background-color: rgba(0, 54, 255, 0.13);
    border: 1px solid transparent;
    box-sizing: border-box;
    font-size: 9px;
    height: 100%;
    padding: 0 3px;
    vertical-align: top;
    width: 100%;
  }

  .annotationLayer .textWidgetAnnotation textarea {
    font: message-box;
    font-size: 9px;
    resize: none;
  }

  .annotationLayer .textWidgetAnnotation input[disabled],
  .annotationLayer .textWidgetAnnotation textarea[disabled],
  .annotationLayer .choiceWidgetAnnotation select[disabled],
  .annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
  .annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
    background: none;
    border: 1px solid transparent;
    cursor: not-allowed;
  }

  .annotationLayer .textWidgetAnnotation input:hover,
  .annotationLayer .textWidgetAnnotation textarea:hover,
  .annotationLayer .choiceWidgetAnnotation select:hover,
  .annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
  .annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
    border: 1px solid #000;
  }

  .annotationLayer .textWidgetAnnotation input:focus,
  .annotationLayer .textWidgetAnnotation textarea:focus,
  .annotationLayer .choiceWidgetAnnotation select:focus {
    background: none;
    border: 1px solid transparent;
  }

  .annotationLayer .textWidgetAnnotation input.comb {
    font-family: monospace;
    padding-left: 2px;
    padding-right: 0;
  }

  .annotationLayer .textWidgetAnnotation input.comb:focus {
    /*
     * Letter spacing is placed on the right side of each character. Hence, the
     * letter spacing of the last character may be placed outside the visible
     * area, causing horizontal scrolling. We avoid this by extending the width
     * when the element has focus and revert this when it loses focus.
     */
    width: 115%;
  }

  .annotationLayer .buttonWidgetAnnotation.checkBox input,
  .annotationLayer .buttonWidgetAnnotation.radioButton input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
  }

  .annotationLayer .popupWrapper {
    position: absolute;
    width: 20em;
  }

  .annotationLayer .popup {
    position: absolute;
    z-index: 200;
    max-width: 20em;
    background-color: #ffff99;
    box-shadow: 0px 2px 5px #333;
    border-radius: 2px;
    padding: 0.6em;
    margin-left: 5px;
    cursor: pointer;
    word-wrap: break-word;
  }

  .annotationLayer .popup h1 {
    font-size: 1em;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.2em;
  }

  .annotationLayer .popup p {
    padding-top: 0.2em;
  }

  .annotationLayer .highlightAnnotation,
  .annotationLayer .underlineAnnotation,
  .annotationLayer .squigglyAnnotation,
  .annotationLayer .strikeoutAnnotation,
  .annotationLayer .lineAnnotation svg line,
  .annotationLayer .fileAttachmentAnnotation {
    cursor: pointer;
  }
/* 对 bootstrap 中表单样式的覆盖 */
.form-group {
    margin-bottom: 0.5rem;
}

/* #30357: elementUi 没有对日期表格进行格式设定，而是使用原生的th的样式，但是bootstrap.css将th
设置了`text-align: left;`属性，这里基于elementUi的原来想法手动稳定一下样式 */
.el-date-table th {
    text-align: center;
}
