@charset "UTF-8";
.table_views{
    position: relative;
    display: flex;
}
.tableLoading{
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 40px;
    text-align: center;
}
.table_views .table_body{
    padding-bottom: 40px;
    box-sizing: border-box;
}
.table_views table{
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0px;
}
.table_leftview{
    overflow: auto;
    flex-shrink: 0;
}
.table_views .table_header::-webkit-scrollbar,.table_leftview .table_body::-webkit-scrollbar{
    display: none;
}
.table_views .table_header,.table_views .table_body{
    /* overflow: auto; */
    overflow: hidden;
    /* -webkit-overflow-scrolling: touch; */
}
.table_views .tableCell{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    box-sizing: border-box;
}

/* 排序图标 start */
.table_views .sort_icon{
    position: relative;
    width: 16px;
    height: 19px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding-left: 5px;
    box-sizing: border-box;
}

.table_views .sort_icon>i{
    position: absolute;
    display: block;
    overflow: hidden;
    transition: color .2s ease-in-out;
    border: 5px solid transparent;
}

.table_views .sort_icon>i:first-child{
    top: -3px;
    border-bottom-color: #a6a6a6;
}

.table_views .sort_icon>i:first-child.checked{
    border-bottom-color: #f24e06;
}

.table_views .sort_icon>i:last-child{
    bottom: 0px;
    border-top-color: #a6a6a6;
}

.table_views .sort_icon>i:last-child.checked{
    border-top-color: #f24e06;
}
/* 排序图标 end */

/* 向右展示更多箭头样式 start*/
.table_views .arrow_more{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    opacity: 1;
    background: url('./images/arrow_more.png') no-repeat center center;
    transition: transform 1s;
}
/* 向右展示更多箭头样式 end*/

.table_views .arrow_more.active{
    transform: rotate(180deg);
}

/* 样式模板 start */
.table_views.style1 .tableCell{
    border-bottom: 1px solid #dedbd8;
}
.table_views.style1 .table_leftview tr{
    background-color: #eee;
}
/* 样式模板 end */

