/*表达式编辑器*/

body {
  background-color: #F0F4F8;
  min-width: 1200px;
  overflow-x: auto;
  overflow-y: hidden;
}

label {
  margin-bottom: 0;
}

.iot-hover-underline:hover {
  text-decoration: underline;
  cursor: pointer;
}

.iot-exp-editor {

}

.iot-exp-editor .card {
  margin-bottom: 0;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  box-shadow: none;
}

.iot-exp-editor .card .card-header {
  padding: 7px 25px 6px 10px;
}

.iot-exp-editor .card .card-header h6 {
  margin-bottom: 0;
}

.iot-exp-editor .iot-list,
.iot-exp-editor .iot-view {
  width: 100%;
  height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}

.iot-exp-editor .iot-view {
  padding: 10px;
  line-height: 38px;
}

.iot-exp-editor .iot-list ul {
  width: 100%;
  height: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.iot-exp-editor .iot-list ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(211, 211, 211, 0.2);
  text-indent: 20px;
}

.iot-exp-editor .iot-list ul li h6 {
  color: #888888;
  font-size: 14px;
  margin-bottom: 5px !important;
  margin-top: 5px !important;
}

.iot-exp-editor .iot-self-point {
  display: inline-block;
  background-color: #DCE2E8;
  margin-left: 4px;
  margin-right: 4px;
  padding: 4px;
  color: black;
  font-weight: bold;
  border-radius: 4px;
  line-height: 20px;
}

.iot-exp-editor .iot-device-point {
  display: inline-block;
  background-color: #a2dde8;
  margin-left: 4px;
  margin-right: 4px;
  color: black;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px;
  line-height: 20px;
}

.iot-main-logo {
  background: linear-gradient(-135deg, #1de9b6 0%, #1dc4e9 100%) !important;
}

.iot-form-row {
  margin-bottom: 5px;
}

.iot-form-field {
  position: relative;
}

.iot-form-field.required::before {
  content: '*';
  position: absolute;
  top: 10px;
  left: -2px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 18px;
  color: rgba(215, 60, 60, 1);
}

.iot-device-extend {
  position: relative;
  width: 100%;
  height: auto;
}

.iot-device-extend-empty {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  line-height: 200px;
  text-align: center;
  font-size: 18px;
  color: #888;
}

.iot-list-box {
  position: relative;
  width: 100%;
  height: 160px;
  border: 1px solid lightgrey;
  border-radius: 4px;
  overflow-x: hidden;
  overflow-y: auto;
}

.iot-list-box .iot-btn-remove {
  display: inline-block;
  float: right;
  cursor: pointer;
  color: red;
  font-size: 16px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.iot-box-card h6 {
  padding: 2px 0;
}

.iot-box-card h6:hover {
  background-color: rgba(86, 180, 191, 0.04);
}

.iot-box-card .el-card__body {
  padding: 4px;
}

.iot-layer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1200;
}

.iot-pull-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  bottom: 0;
}

.iot-device-state {
  color: #909399;
}

.iot-device-state.online {
  color: #67C23A;
}

.iot-device-state.offline {
  color: #F56C6C;
}

.iot-el-form {
}

.iot-el-form .el-form-item .el-form-item__error--inline {
  margin-left: 0;
}

.iot-el-form .el-form-item.el-form-item--small .iot-checkbox {
  margin-top: 8px;
}

.iot-el-form .el-form-item .el-select {
  width: 100%;
}

.iot-el-form .el-form-item--small .el-form-item__content {
  line-height: 12px;
}

.iot-el-form .el-form-item--mini.el-form-item,
.iot-el-form .el-form-item--small.el-form-item {
  margin-bottom: 8px;
}

.iot-el-form .iot-table-cell {
  padding: 0 !important;
}

.iot-el-form .iot-valid-is-ok .el-input__inner {
  border-color: #67C23A;
}

.iot-el-form .iot-valid-is-error .el-input__inner {
  border-color: #F56C6C;
}

/*iot-app*/
.iot-app {
  position: absolute;
  left: 0;
  top: 60px;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

.iot-device-container {
  position: relative;
  height: 50%;
  width: 100%;
  background-color: white;
  border-top: 1px solid transparent;
}

.iot-device-container.full {
  height: 100%;
}

.iot-device-container > .iot-header-bar {
  position: relative;
  width: calc(100% - 40px);
  margin-left: 20px;
  padding-top: 19px;
  padding-bottom: 19px;
  font-size: 0;
}

.iot-device-container > .iot-content {
  position: relative;
  width: calc(100% - 40px);
  height: calc(100% - 90px);
  margin-left: 20px;
  background-color: lightgrey;
}

.iot-device-container > .iot-content.no-header {
  height: calc(100% - 40px);
  margin-top: 20px;
}

.iot-device-container .iot-content .iot-table-cell {
  padding: 0 !important;
}

.iot-device-container .iot-content .iot-table-cell > div {
  position: relative;
}

.iot-device-container .iot-content .iot-table-cell .iot-name-btn {
  padding: 0 !important;
  margin: 7px 0 6px !important;
  color: #606266;
}

.iot-device-container .iot-content .iot-table-cell .iot-cell-btn-box {
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 0;
  background-color: white;
  display: none;
  margin-right: 10px;
  font-size: 0;
}

/* .iot-device-container .iot-content .iot-table-cell .iot-cell-btn-box .el-button {
    margin-top: 4px;
} */

.iot-device-container .iot-content .iot-table-cell .iot-state-box {
  display: inline;
  width: 100%;
  cursor: pointer;
}

.iot-device-container .iot-content .iot-table-cell .iot-state-box .iot-full-info {
  display: none;
}

.iot-device-container .iot-content .iot-table-cell .iot-state-box:hover .iot-full-info {
  display: inline;
}

.iot-device-container .iot-content .hover-row .iot-table-cell .iot-cell-btn-box {
  background-color: #f5f7fa !important;
  display: block;
}

.iot-device-container .iot-header-bar .iot-icon-btn {
  padding-left: 12px;
  padding-right: 12px;
  vertical-align: top;
}

/* .iot-device-container .iot-header-bar .iot-icon-btn .iot-icon {
    font-size: 12px;
} */

/*iot-border*/

.iot-border {
  border: 1px solid #F0F0F0;
}

/*iot-panel*/

.iot-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.iot-panel > .iot-header {
  position: relative;
  height: 60px;
  width: 100%;
  line-height: 60px;
  text-indent: 20px;
}

.iot-panel > .iot-header::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  bottom: 0;
  background-color: #F0F0F0;
}

.iot-panel > .iot-content {
  position: relative;
  height: calc(100% - 120px);
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.iot-panel > .iot-content.full {
  height: 100%;
}

.iot-panel > .iot-content.half {
  height: calc(100% - 60px);
}

.iot-panel > .iot-footer {
  position: relative;
  height: 60px;
  width: 100%;
  line-height: 60px;
}

.iot-panel > .iot-footer::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  height: 1px;
  top: 0;
  background-color: #F0F0F0;

}

/*iot-filter-popup*/
.iot-filter-popup {
  padding: 0;
  margin: 0 !important;
}

.iot-filter-popup > .iot-header {
  border-bottom: 1px solid #E4E7ED;
  padding-left: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.iot-filter-popup > .iot-footer {
  border-top: 1px solid #E4E7ED;
  padding: 5px 10px;
  text-align: right;
}

.iot-filter-popup > .iot-footer .iot-btn-cancel {
  padding: 7px 15px;
}

.iot-filter-popup > .iot-footer .iot-btn-cancel:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.iot-filter-popup .iot-filter-content {
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}

.iot-filter-popup .iot-filter-content .el-input {
  padding: 5px 15px 0;
}

.iconfont {
  font-size: 14px;
}

.iot-filter-icon {
  margin-left: 4px;
  color: #909399;
  font-size: 10px;
}

.iot-filter-icon.active {
  color: #409EFF;
}

/*iot-filter-key*/
.iot-filter-key {

}

.iot-filter-key .iot-icon {
  cursor: pointer;
}

.iot-filter-key .iot-icon:hover {
  color: #409EFF;
}

.iot-filter-key .iot-icon.icon-none {
  display: inline;
  cursor: initial;
}

.iot-filter-key .iot-icon.icon-none:hover {
  color: #909399;
  background-color: transparent;
}

.iot-filter-key .iot-input {
  width: calc(100% - 102px);
  display: inline-block;
  vertical-align: middle;
  line-height: 1 !important;
}

.iot-filter-key .iot-input input {
  border: none;
  padding-left: 0;
}

.iot-filter-key .el-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.iot-filter-key .el-button:active {
  background-color: rgba(0, 0, 0, 0.1);
}

/*iot-label*/
.iot-label {
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 32px;
}

/*iot-font-color*/
.iot-color-main {
  /*主要文字*/
  color: #303133;
}

.iot-color-normal {
  /*常规文字*/
  color: #606266;
}

.iot-color-minor {
  /*次要文字*/
  color: #909399;
}

.iot-color-holder {
  /*占位文字*/
  color: #C0C4CC;
}

/*dlg*/

.iot-dlg-content {
  position: relative;
  width: 100%;
  height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid rgba(211, 211, 211, 0.4);
  background-color: white;
}

/*element*/
.el-table th div {
  line-height: unset;
}

.el-tree-node__content > .el-checkbox {
  margin-top: 2px;
}

.el-loading-mask {
  z-index: 999;
}

.el-checkbox {
  margin-bottom: 0 !important;
}

.el-table__fixed {
  z-index: 0;
}

.el-table .is-scrolling-none {
  overflow-y: auto;
}

/*over write*/

/*bootstrap*/
.modal-open .modal {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1300;
}

/* fix: add second modal after first modal => close second modal => first modal cannot scroll */
.modal {
  overflow: auto !important;
}

[v-cloak] {
  display: none;
}

.breadcrumb {
  background-color: transparent;
  padding: .45rem 1rem;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb > .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb > .breadcrumb-item:last-child a {
  color: white;
}

.card .card-header .card-header-right {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pcoded-header.header-blue .b-bg,
.b-brand .b-bg {
  background: none;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.b-title {
  display: inline-block;
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.pro-head span {
  display: inline-block;
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/*comm*/

button, input, a, select {
  outline: none !important;
}

/* .pcoded-navbar.mob-open ~ .pcoded-header:before, */
/* .pcoded-navbar.mob-open ~ .pcoded-main-container:before, */
.pcoded-navbar.navbar-collapsed:hover ~ .pcoded-header:before,
.pcoded-navbar.navbar-collapsed:hover ~ .pcoded-main-container:before {
  z-index: 5;
}

/*element 表格样式覆盖*/
.el-table .cell {
  line-height: 30px;
}

.el-table th > .cell {
  font-weight: 600;
}

.el-table__header .el-button {
  padding: 7px 0px;
}

.el-table th {
  padding: 0;
}

.iot-device-container .iot-content .iot-table-cell .iot-cell-btn-box .el-button {
  padding-top: 5px !important;
  padding-bottom: 4px !important;
  font-size: 14px;
}

.el-table [class*=el-table__row--level] .el-table__expand-icon {
  margin-right: 10px;
}

.el-table .el-button--medium {
  padding: 4px 20px;
}

.el-table .el-button {
  padding: 3px 10px;
}

.el-table .iot-filter-key .el-button {
  padding: 4px 3px;
}

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

.el-table .el-table__row.new {
  background-color: rgba(255, 254, 236, 1);
}

.el-table .el-table__expand-icon .el-icon-arrow-right {
  font-weight: bold;
}

.el-table .el-table__expand-icon .el-icon-arrow-right:hover {
  color: #111111;
}

.el-table .iot-feather {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
}

.el-table .iot-feather.icon-shaixuan {
  line-height: 25px;
}

.el-table .el-icon-edit, .el-table .el-icon-delete,
.el-table .el-icon-document-copy {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 16px;
}

.el-table .el-icon-edit:hover, .el-table .el-icon-delete:hover,
.el-table .el-icon-document-copy:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.el-table .el-icon-edit:active, .el-table .el-icon-delete:active,
.el-table .el-icon-document-copy:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.el-table .el-table__body .el-button + .el-button.el-tooltip {
  margin-left: 0px;
}

.el-button--text, .el-table .el-button--text.button-act {
  font-size: 14px;
  color: #409EFF;
  padding: 4px 5px;
}

.el-button--text, .el-table .el-button--text.button-act:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.el-button--text, .el-table .el-button--text.button-act:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.el-table__expand-icon > .el-icon {
  margin-top: -7px;
}

/*element 按钮样式覆盖*/
.el-button--medium {
  padding: 8px 20px;
}

.el-button--small, .el-button--mini {
  padding: 8px 15px;
}

.el-button--text, .el-table .el-button--text {
  color: #409EFF;
  background: 0 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
}

.el-button--mini, .el-button--small {
  font-size: 14px;
}

.el-checkbox, .el-checkbox-button__inner {
  font-weight: 400;
}

/*弹窗样式覆盖*/
.modal .modal-dialog {
  height: 100%;
  margin: 0 auto;
}

.modal .btn {
  padding: 7px 20px 6px;
  margin-bottom: 0;
}

.modal .modal-header {
  padding: 20px 24px 18px 20px;
}

.modal .modal-title {
  line-height: 20px;
}

.modal .modal-content {
  max-height: calc(100% - 100px);
}

.modal-body {
  /* max-height: calc(100% - 141px); */
  padding: 20px 10px 20px 20px;
}

.modal .col-form-label {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
}

.modal .btn.btn-set.btn-secondary,
.modal .btn.btn-cancel.btn-secondary,
.el-button.el-cancel {
  background-color: #FFF;
  border: 1px solid #DCDFE6;
  color: #606266;
}

.el-button.el-layer {
  padding: 10px 20px;
}

.modal .btn.btn-set.btn-secondary:hover,
.modal .btn.btn-cancel.btn-secondary:hover,
.el-button.el-cancel:hover {
  background: #fff;
  border-color: #409eff;
  color: #409eff;
}

.modal .btn + .btn {
  margin-right: 10px;
}

.iot-layer .icon-x {
  color: #848587;
  cursor: pointer;
  opacity: 0.5;
}

.iot-layer .icon-x:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.modal .form-group {
  margin-bottom: 8px;
}

.modal .form-group:last-child {
  margin-bottom: 0;
}

.el-table .el-select .el-input .el-select__caret {
  line-height: 24px;
}

.modal-footer {
  padding: 20px;
}

.modal-footer > :not(:last-child) {
  margin-right: 10px;
}

.modal-footer > :not(:first-child) {
  margin-left: 0;
  margin-right: 0;
}

.modal .el-form-item__label, .iot-layer .el-form-item__label {
  position: relative;
  text-align: left;
  margin-bottom: 0;
  line-height: 32px;
}

.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap > .el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before {
  position: absolute;
  left: -12px;
}

.modal .el-form-item__content, .iot-layer .el-form-item__content {
  line-height: 32px;
}

.modal .el-form-item {
  width: 100%;
  margin-bottom: 0;
}

.iot-filter-popup .iot-filter-content .el-checkbox {
  max-width: 360px;
  min-width: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iot-filter-popup .iot-filter-content .el-tree-node__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*element文本框样式覆盖*/
.el-input__inner, .el-input--medium .el-input__inner {
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
}

.el-table .el-input__inner {
  height: 24px;
  line-height: 24px;
}

.el-table .el-input--mini .el-input__icon {
  line-height: 24px;
}

.el-table .el-input__prefix, .el-input__suffix {
  top: -1px
}

.vue-treeselect__control {
  height: 32px !important;
}

.vue-treeselect__placeholder, .vue-treeselect__single-value {
  line-height: 32px !important;
}

.el-select .el-input .el-select__caret {
  line-height: 32px;
}

.el-input__icon {
  line-height: 32px;
}

.pcoded-header .dropdown.show:before {
  top: 65px;
}

.el-cascader {
  line-height: 32px;
}

.iot-filter-key .iot-input input {
  font-size: 14px;
}

.el-table__row.is-new {
  background-color: #FFFEEC;
}

.el-table__row.is-error {
  background-color: rgba(255, 219, 219, 1);
}

.el-table--enable-row-hover .el-table__body tr.el-table__row.is-error:hover > td {
  background-color: rgba(255, 246, 246, 1);
}

.el-input--mini .el-input__inner {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
}

.el-table .el-input--mini .el-input__inner {
  height: 24px;
  line-height: 24px;
}

/*element浮层样式覆盖*/
.el-tooltip__popper {
  max-width: 300px;
}

/*icon修改*/
.feather.icon-chevron-down {
  display: inline-block;
  font-size: 16px;
  border-radius: 100%;
}

.iot-feather:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #409EFF;
}

.iot-feather:active {
  background: rgba(0, 0, 0, 0.1);
  color: #409EFF;
}

.feather.icon-chevron-down.rotated {
  transform: rotate(180deg);
  color: #409EFF;
}


.el-button.is-disabled.el-button--text.iot-remove-btn {
  color: rgba(245, 108, 108, 0.5) !important;
}

/*swal弹窗样式覆盖*/
.swal-modal .swal-footer .swal-button {
  padding: 7px 20px;
  border-radius: 0.25rem;
  transition: all .3s;
}

.swal-modal .swal-footer .swal-button.swal-button--cancel {
  background-color: #FFF;
  border: 1px solid #DCDFE6;
  color: #606266;
  font-weight: normal;
}

.swal-modal .swal-footer .swal-button.swal-button--confirm {
  color: #fff;
  background-color: #409EFF;
  border-color: #409EFF;
  font-weight: normal;
}

.swal-modal .swal-footer .swal-button.swal-button--danger {
  color: #fff;
  background-color: #F56C6C;
  border-color: #F56C6C;
  font-weight: normal;
}

.swal-button--cancel:focus,
.swal-button--confirm:focus,
.swal-button--danger {
  box-shadow: initial;
}

.swal-modal .swal-footer .swal-button.swal-button--cancel:active:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, .5);
}

.swal-modal .swal-footer .swal-button.swal-button--cancel:hover {
  background: #fff;
  border-color: #409eff;
  color: #409eff;
}

.swal-modal .swal-footer .swal-button.swal-button--confirm:hover {
  color: #fff;
  background-color: #038fcf;
  border-color: #0386c3;
}

.swal-modal .swal-footer .swal-button.swal-button--confirm:active {
  color: #fff;
  background-color: #0386c3;
  border-color: #037eb6;
}

.swal-modal .swal-footer .swal-button.swal-button--confirm:active:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .5);
}

.swal-modal .swal-footer .swal-button.swal-button--danger:hover {
  color: #fff;
  background-color: #f78989;
  border-color: #f78989;
}

.swal-modal .swal-footer .swal-button.swal-button--danger:active {
  color: #fff;
  background-color: #dd6161;
  border-color: #dd6161;
}

.swal-modal .swal-footer .swal-button.swal-button--danger:active:focus {
  box-shadow: 0 0 0 0.2rem rgba(191, 29, 1, .5);
}

.el-form-item.is-error .el-form-item__content {
  line-height: 32px;
}

.el-tag {
  font-size: 14px;
}

/*表单验证样式覆盖*/
.el-form-item.is-success .el-input__inner, .el-form-item.is-success .el-textarea__inner {
  border-color: #DCDFE6;
}

.el-form-item.is-success .el-input__inner:focus, .el-form-item.is-success .el-textarea__inner:focus {
  border-color: #409EFF;
}

.el-table .cell, .el-table th div, .el-table--border td:first-child .cell, .el-table--border th:first-child .cell {
  padding-right: 10px;
}

.vue-treeselect--disabled .vue-treeselect__control {
  background-color: #F5F7FA !important;
  border-color: #DCDFE6;
  color: #C0C4CC;
  cursor: not-allowed;
}

.vue-treeselect--disabled .vue-treeselect__control .vue-treeselect__single-value {
  color: #C0C4CC;
}

.iot-layer .el-form-item__content .el-tag--info {
  height: 24px;
  line-height: 24px;
}

.iot-layer .el-form-item__content .el-select .el-tag--info {
  height: 18px;
  line-height: 18px;
}

.vue-treeselect--focused:not(.vue-treeselect--open) .vue-treeselect__control {
  box-shadow: none !important;
  border-color: #409EFF !important;
}

/*统一滚动条样式*/
::-webkit-scrollbar {
  width: 8px;
  /* 纵向滚动条宽度 */
  height: 8px;
  /* 横向滚动条宽度 */
  background: #fafafa;
}

::-webkit-scrollbar-track {
  background: #fafafa;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}

/*顶部导航样式覆盖*/
.breadcrumb .breadcrumb-item:nth-child(2) a {
  cursor: initial;
}

.breadcrumb .breadcrumb-item:nth-child(2) a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/*覆盖样式-弹窗边距统一为20px ，弹窗中modal-body上设置了padding:10px*/
.container {
  padding-right: 10px; /*15px -> 10px*/
  padding-left: 10px; /*15px -> 10px*/
}

/*tab切换active样式覆盖*/
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  box-shadow: none;
  color: #409EFF;
  border-left: 1px solid #F0F0F0;
  border-top: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
}

/*弹窗第二层遮罩隐藏*/
.modal-backdrop.show {
  opacity: 0;
}

/*问号icon颜色弱化处理*/
.el-button--text, .el-table .el-button--text .el-icon-question {
  color: #B4B4B4;
}

/*表格单行鼠标hover样式修改*/
.el-table--striped .el-table__body tr.el-table__row--striped.current-row td, .el-table__body tr.current-row > td, .el-table__body tr.hover-row.current-row > td, .el-table__body tr.hover-row.el-table__row--striped.current-row > td, .el-table__body tr.hover-row.el-table__row--striped > td, .el-table__body tr.hover-row > td {
  background-color: #F5F7FA;
}

/*vue-treeselect 多选样式覆盖*/
.vue-treeselect__checkbox--checked, .vue-treeselect__checkbox--indeterminate, .vue-treeselect__label-container:hover .vue-treeselect__checkbox--checked, .vue-treeselect__label-container:hover .vue-treeselect__checkbox--indeterminate {
  background: #409EFF !important;
  border-color: #409EFF !important;
}

.vue-treeselect__value-remove {
  display: inline-block !important;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  line-height: 10px !important;
  border-left: none !important;
  padding-left: 5px !important;
  margin-right: 6px;
}

.vue-treeselect__multi-value-item:hover .vue-treeselect__value-remove {
  color: #409EFF !important;
}


.vue-treeselect__value-remove:hover {
  background-color: #409EFF;
}

.vue-treeselect__value-remove:hover svg {
  color: #FFF !important;
}

.vue-treeselect:not(.vue-treeselect--disabled) .vue-treeselect__multi-value-item:not(.vue-treeselect__multi-value-item-disabled):hover .vue-treeselect__multi-value-item:not(.vue-treeselect__multi-value-item-new) .vue-treeselect__multi-value-item:not(.vue-treeselect__multi-value-item-new):hover, .vue-treeselect__multi-value-item {
  color: #409EFF !important;
  background-color: #409EFF;
}

/*element tree 高亮节点样式修改*/
.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
  background-color: #F5F7FA;
  color: #409EFF;
}
