* {
outline: none !important;
box-sizing: border-box;
}
::-webkit-scrollbar {
height: 8px;
width: 6px;
background-color: rgb(245, 245, 245);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(9, 31, 49, 0.2);
}

::-webkit-scrollbar {
    height: 8px;
    width: 6px;
    background-color: rgb(245, 245, 245);
  }
  * {
    box-sizing: border-box;
  }
::-webkit-input-placeholder { /* WebKit browsers */
color: #b4b4b4 !important;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
}
.ellipsis2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.msg-err{
    color: red;
    font-weight: bold;
}
html,body{
  padding: 0;
  margin: 0;
  height: 100%;
  color: #676a6c;
  font: 14px;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
    vertical-align: middle;
}
  
.table > thead > tr > th{
border-bottom: 1px solid #dddddd;
}
  

.btn{
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
}
.hover {
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s;
}
.hover:hover {
    opacity: 0.7;
}

.rt-box{
    float: right;
}


.zf-loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    /* margin-left: -30px; */
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0;
  }
  .zf-loading .layui-layer-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .empty-box {
    width: 100%;
    line-height: 48px;
    color: #333;
  }
  
  
/** 开关样式  */
.switcher-box {
    display: inline-block;
    height: 28px;
    line-height: 26px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    width: 50px;
    margin-right: 40px;
    text-align: center;
    position: relative;
    /* overflow: hidden; */
    background-color: #f7f7f7;
    cursor: pointer;
    vertical-align: top;
    transform: all 0.3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .switcher-box:hover {
    opacity: 0.8;
  }
  
  .switcher-box .switcher-item {
    position: absolute;
    left: 1px;
    top: 0;
    width: 26px;
    height: 26px;
    border-radius: 13px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    transition: left 0.3s;
  }
  
  .switcher-box.active {
    border: 1px solid rgb(7, 193, 96);
    background-color: rgb(7, 193, 96);
  }
  
  .switcher-box.active .switcher-item {
    left: 22px;
    background-color: #fff;
  }
  
  .switcher-box .switcher-msg {
    position: absolute;
    left: 50px;
    width: 40px;
    line-height: 28px;
  }
  .switcher-box.disabled {
    cursor: no-drop;
  }
  


  /** 基础table */
.common-panel{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    height: 100%;
}

/** 基础 结构 */
.common-panel .top-box{
    height: 50px;
    width: 100%;
    position: relative;
}
.common-panel .mid-box{
    flex-grow: 1;
    height: 100px;
}
.common-panel .bottom-box{
    width: 100%;
}

/** 下拉搜索组件 */
.tpl-div{
    display: none;
}

.select-query-box{
    min-width: 120px;
    padding-right: 32px;
    line-height: 30px;
    height: 32px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: inline-block;
    user-select: none;
}

.select-query-box input{
    height: 30px;
    border: none;
    pointer-events: none;
    padding: 0 6px;
}

.select-query-box .icon{
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
}


.select-query-box .icon-play3{
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    transform: rotateZ(90deg);
}

.select-query-box .icon-cross{
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    display: none;
    font-size: 12px;
}

.select-query-box:hover .icon-play3{
    display: none;
}

.select-query-box:hover .icon-cross{
    display: block;
}


.input-util-search-panel{}

.input-util-search-panel .input-util-search-box{
    height: 28px;
    line-height: 26px;
    border: 1px solid #eee;
    border-radius: 3px;
    color: #333;
    overflow: hidden;
    padding: 0 28px 0 6px;
    position: relative;
    margin-bottom: 6px;
}

.input-util-search-panel .input-util-search-box input{
    border: none;
    width: 100%;
    vertical-align: top;
    height: 26px;
    line-height: 26px;
}

.input-util-search-panel .input-util-search-box .btn-clear {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    /* color: #ccc; */
    font-size: 12px;
}
.input-util-search-panel .selector-list{
    height: 130px;
    overflow: auto;
}

.input-util-search-panel .selector-list .selector-item{
    width: 100%;
    height: 26px;
    line-height: 26px;
    margin-top: 6px;
    padding: 0 6px;
    color: #333;
    position: relative;
    cursor: pointer;
}

.input-util-search-panel .selector-list .selector-item:hover{
    background-color: aqua;
}

.input-util-search-panel .selector-list .selector-item.multi{
    padding: 0 6px 0 26px;
}

.input-util-search-panel .selector-list .selector-item.multi .icon-box{
    position: absolute;
    left: 1px;
    top: 1px;
    width: 24px;
    height: 24px;
    line-height: 24px;
}

.input-util-search-panel .selector-list .selector-item.multi .icon-box span{
    width: 24px;
    height: 24px;
    line-height: 24px;
    color: #1f6ff4;
    text-align: center;
    display: block;
}

.input-util-search-panel .selector-list .selector-item.multi .icon-box .icon-checkbox-unchecked{
    display: block;
}

.input-util-search-panel .selector-list .selector-item.multi .icon-box .icon-checkbox-checked{
    display: none;
}

.input-util-search-panel .selector-list .selector-item.multi.active .icon-checkbox-unchecked{
    display: none;
}
.input-util-search-panel .selector-list .selector-item.multi.active .icon-checkbox-checked{
    display: block;
}


/**下拉框*/
.qc-selector {
    line-height: 24px;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 3px 24px 3px 6px;
    background-position: right 5px center;
    background-repeat: no-repeat;
    background-image: url('/v1.0.3/images/QianChuan/LowerRectangle.png');
    background-size: 10px 7px;
    cursor: pointer;
}
.qc-selector.extend {
    background-image: url('/v1.0.3/images/QianChuan/UpperRectang.png');
}
.qc-selector.disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}
.qc-selector .desc {
    font-size: 12px;
    color: #ddd;
}

.qc-selector-list {
    max-height: 230px;
    padding-right: 10px;
    overflow: auto;
}

.qc-selector-item {
    /* height: 34px; */
    box-sizing: border-box;
    line-height: 24px;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 5px 10px;
    box-sizing: border-box;
    width: 220px;
    margin: 5px 0;
    cursor: pointer;
    position: relative;
}
.qc-selector-item:hover {
    opacity: 0.7;
    background-color: rgba(68, 137, 249, 0.1);
}
.qc-selector-item .name {
    font-size: 14px;
}
.qc-selector-item .desc {
    font-size: 12px;
    color: #ddd;
}

.qc-selector-item .btn-del {
    position: absolute;
    width: 30px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    top: 0;
    right: 0;
    font-size: 22px;
    cursor: pointer;
}

.qc-selector-item .mould-item {
    height: 34px;
}


.target-panel .target-item.active .check-box .icon,
.mobile-panel .target-item.active .check-box .icon,
.app-panel .target-item.active .check-box .icon,
.filter-app-panel .target-item.active .check-box .icon,
.crowd-form-box .target-item.active .check-box .icon,
.licenses-form-box .target-item.active .check-box .icon {
    background-image: url("../images/QianChuan/duig.png");
    border: none;
}


.dlg-common-box .label-input-line, .dlg-common-box .label-select-line{
    padding-left: 80px;
    width: 100%;
    height: 32px;
    line-height: 32px;
    position: relative;
    margin-bottom: 12px;
}

.dlg-common-box .label-input-line .label, .dlg-common-box .label-select-line .label{
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 32px;
    line-height: 32px;
    color: #000;
    font-size: 14px;
    text-align: right;
    padding: 0 12px 0 0;
}

.dlg-common-box .label-input-line input{
    width: 100%;
    height: 32px;
    line-height: 30px;
    border-radius: 3px;
    padding: 0 6px;
    border: 1px solid #eee;
}

.dlg-common-box .label-select-line select{
    width: 100%;
    height: 32px;
    line-height: 30px;
    border-radius: 3px;
    padding: 0 6px;
    border: 1px solid #eee;
}

.dlg-common-box .label i {
    position: absolute;
    right: 6px;
    height: 32px;
    line-height: 32px;
    top: 0;
    color: red;
}

.dlg-common-box .warn{
    padding-left: 80px;
    margin-top: -6px;
    padding-bottom: 12px;
    color: red;
}

.ui-dialog.skin-error-toast{
    background-color: rgba(0,0,0,0.6);
    color: #fff;
}

.ui-dialog.skin-error-toast .box{
    padding-left: 30px;
    position: relative;
}

.ui-dialog.skin-error-toast .box .icon-error{
    color: red;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 24px;
}

.ui-dialog.skin-error-toast .box .msg{
    word-break: break-all;
    text-align: left;
    max-width: 360px;
    line-height: 24px;
    max-height: 240px;
    overflow: auto;
    padding: 0;
    margin: 0;
    width: auto;
    color: #fff;
}

.ui-dialog-content {
    overflow: hidden;
    overflow-y: auto;
}


.icon-stats-bars21:before {
    content: "\e9a0";
}

.layui-layer-msg {
    z-index: 99999999!important;
}
[class*=el-col-] {
    float: none!important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
  }