/*滚动条*/
::-webkit-scrollbar{  width: 8px;  height:8px;  background-color: #F5F5F5;}    
::-webkit-scrollbar-thumb{border-radius: 10px;background-color:rgba(0,0,0,0.5);} 
div[wj-part="root"]{outline:none;}
/*全局边框色，文字颜色*/
.wj-content {
    border: 1px solid #ccc;
    border-radius: 0;
    font-size:12px;
    color:#657180;
}

/*标题栏样式修改*/
.wj-header {
    background-color: #FFFFFF;
    color: #657180;
    text-align:center!important;
}

.wj-group:not(.wj-state-selected):not(.wj-state-multi-selected){
  background:#FFFFFF;
}

.wj-flexgrid .wj-group{
    background-color:#ffffff;
}

/*选中单元格颜色*/
.wj-flexgrid .wj-state-selected {
    background-color: #f5f5f7;
    color: #f78803;
}

.wj-flexgrid .wj-state-multi-selected {
    background-color: #f5f5f7;
    color: #f78803;
}


.wj-flexgrid .wj-cell{
    padding:8px 18px;
    border-color:#f0efef;

}
/*树箭头样式修改*/
.wj-glyph-right {
    display: inline-block;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .5em solid;
    opacity: .75;
    cursor: pointer;
    margin-right:4px;
    position:relative;
    z-index:2;
}
.wj-glyph-down-right {
    display: inline-block;
    border-left: .4em solid transparent;
    border-right: .4em solid transparent;
    border-bottom:.4em solid transparent;
    border-top: .5em solid;;
    opacity: .75;
    cursor: pointer;
    position:relative;
    left:-2px;
    top:2px;
    margin-right:4px;
    position:relative;
    z-index:2;
}


/* css for hovering on non-header rows */
[wj-part=cells] {
  overflow: hidden; 

}

.wj-cell:not(.wj-header):after {
  content:'';
  position: absolute;
  top:0;
  left:-10000px;
  width:20000px;
  height:100%;
  z-index: 1;
  pointer-events: none;
  background: transparent;

}
.wj-cell:not(.wj-header):hover:after {
    background: rgba(0,0,0, 0.04);
    transition: all 0.3s;
}



/* vui-dataEmpty */
.vui-dataEmpty > div{min-height:100px;}
.vui-dataEmpty [wj-part="cells"] {position:absolute!important;bottom:0;left:0;height:auto!important;}
.vui-dataEmpty [wj-part="cells"]:after{content:'暂无数据';position:absolute;left:50%;top:50%;-ms-transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}