* {
    padding: 0;
    margin: 0;
}

body,
html {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
}

.oe-table {
    width: 100%;
    position: relative;
    overflow: hidden;
    color: #333;
    font-size: 14px;
}

.oe-table-header,
.oe-table-body {
    table-layout: fixed;
    border-collapse: separate;
    z-index: 1;
}
/* 隔行变色 */
    .oe-table-body tr:nth-child(even) {
        background-color: #f8f8f8;
    }
    /* 鼠标移上去默认选中行 */
    .oe-table-body  tr:hover {
        background-color: #f3f3f3;
    }
.oe-table-header-wrapper .oe-table-header-placeholder {
    position: absolute;
    background-color: #f4f6f9;
    left: 0px;
    top: 0px;
    height: 36px;
    width: 100%;
    z-index: -1;
    border-bottom: 1px solid #dfe6ec;
}


.oe-table .datatable {
    border-top: 1px solid #dfe6ec;
    border-left: 1px solid #dfe6ec;
    border-right: 1px solid #dfe6ec;
}

.oe-table.resizing {
    cursor: col-resize;
}

    .oe-table.resizing .datatable {
        border-top: 1px dashed #ff8c14;
        border-left: 1px dashed #ff8c14;
    }

    .oe-table.resizing .fa-filter {
        cursor: col-resize;
    }

    .oe-table.resizing .caret-wrapper {
        cursor: col-resize;
    }

    .oe-table.resizing .oe-table-header th {
        background-color: antiquewhite;
        border-bottom: 1px dashed #ff8c14;
        border-right: 1px dashed #ff8c14;
    }

    .oe-table.resizing .oe-table-header-placeholder {
        background-color: antiquewhite;
        border-bottom: 1px dashed #ff8c14;
        border-right: 1px dashed #ff8c14;
    }

    .oe-table.resizing .oe-table-body-wrapper {
        overflow-x: hidden;
        cursor: default;
    }

.oe-table tr {
    background-color: #fff;
}

.oe-table td,
.oe-table th {
    border-bottom: 1px solid #dfe6ec;
    border-right: 1px solid #dfe6ec;
}

    .oe-table td span {
        display: inline-block;
    }

.oe-table .oe-table-cell {
    padding: 5px 0;
    min-width: 0;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    /*line-height: 24px;*/
    text-align: left;
}

    .oe-table .oe-table-cell .cell {
        text-align: center;
        display: inline-block;
        box-sizing: border-box;
        position: relative;
        vertical-align: middle;
        padding-left: 2px;
        padding-right: 2px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-break: break-all;
        font-size: 14px;
    }

.oe-table th.oe-table-cell {
    overflow: hidden;
    user-select: none;
    background-color: #f4f6f9;
    font-weight: bold;
}

.oe-table .oe-table-cell.gutter {
    border-right: 0px none;
    padding: 0;
}

.oe-table-body-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #dfe6ec;
}

    .oe-table-body-wrapper table.oe-table-body tbody tr:last-child td {
        border-bottom: 0px none;
    }

.oe-table-fixed {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, .12);
}

.oe-table-fixed-header-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}

.oe-table-fixed-body-wrapper {
    position: absolute;
    left: 0;
    top: 37px;
    overflow: hidden;
    z-index: 3;
}

.oe-table th.rank {
    cursor: pointer;
}

.oe-table .caret-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    height: 24px;
    width: 24px;
    vertical-align: middle;
    cursor: pointer;
    overflow: initial;
    position: relative;
}

.oe-table .sort-caret {
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-bottom-color: transparent;
    position: absolute;
    left: 7px;
}

    .oe-table .sort-caret.ascending {
        border-bottom-color: #c0c4cc;
    }

    .oe-table .sort-caret.descending {
        top: 12px;
        border-top-color: #c0c4cc;
    }

.oe-table .ascending .sort-caret.ascending {
    border-bottom-color: #409eff;
}

.oe-table .descending .sort-caret.descending {
    border-top-color: #409eff;
}

.oe-table span.split-container {
    float: right;
    cursor: pointer;
    margin-right: -12px;
}

    .oe-table span.split-container span.split-line {
        border-right: 1px solid transparent;
        position: absolute;
        right: 0px;
        top: 0px;
        height: 100%;
        width: 1px;
        cursor: col-resize;
        z-index: 100;
    }

.column-filter {
    display: inline-block;
    float: right;
    cursor: pointer;
}

    .column-filter .fa {
        color: #c0c4cc;
    }

.oe-table-filter {
    border: 1px solid #ebeef5;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-sizing: border-box;
    margin: 2px 0;
    position: absolute;
    z-index: 20000;
    display: none;
}

    .oe-table-filter .filter-arrow {
        position: absolute;
        top: -12px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-bottom-color: #fff;
    }

.oe-table-filter-content {
    width: 125px;
    padding: 10px;
}

    .oe-table-filter-content ul.filter-list {
        list-style: none;
        overflow-y: auto;
        overflow-x: hidden;
    }

        .oe-table-filter-content ul.filter-list li {
            line-height: 26px;
            height: 26px;
            color: #333;
        }

            .oe-table-filter-content ul.filter-list li.active {
                color: #409eff;
            }

            .oe-table-filter-content ul.filter-list li span.icon {
                font-size: 15px;
                cursor: pointer;
                float: left;
                width: 18px;
            }

            .oe-table-filter-content ul.filter-list li span.text {
                padding-left: 0px;
                cursor: pointer;
                float: left;
            }

            .oe-table-filter-content ul.filter-list li a.a-link {
                color: #409eff;
                text-decoration: none;
            }

                .oe-table-filter-content ul.filter-list li a.a-link:hover {
                    color: #067df5;
                    text-decoration: underline;
                }

.oe-table-showrow {
    border: 1px solid #ebeef5;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-sizing: border-box;
    margin: 0px 0;
    position: absolute;
    z-index: 20000;
    display: none;
}

    .oe-table-showrow .showrow-arrow {
        position: absolute;
        top: 0px;
        right: -12px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-bottom-color: #fff;
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

.oe-table-showrow-content {
    width: 125px;
    padding: 10px;
    overflow: auto;
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.1);
    /* 第一个方块颜色，第二个轨道颜色(用于更改火狐浏览器样式) */
    scrollbar-width: thin;
    /* 火狐滚动条无法自定义宽度，只能通过此属性使滚动条宽度变细 */
    -ms-overflow-style: none;
}
    /*滚动条样式*/
    .oe-table-showrow-content::-webkit-scrollbar {
        width: 5px;
    }

    .oe-table-showrow-content::-webkit-scrollbar-track {
        background: rgb(179, 177, 177);
        border-radius: 10px;
    }

    .oe-table-showrow-content::-webkit-scrollbar-thumb {
        background: rgb(136, 136, 136);
        border-radius: 10px;
    }

        .oe-table-showrow-content::-webkit-scrollbar-thumb:hover {
            background: rgb(100, 100, 100);
            border-radius: 10px;
        }

        .oe-table-showrow-content::-webkit-scrollbar-thumb:active {
            background: rgb(68, 68, 68);
            border-radius: 10px;
        }


    .oe-table-showrow-content ul.showrow-list {
        list-style: none;
    }

        .oe-table-showrow-content ul.showrow-list li {
            line-height: 26px;
            height: 26px;
            color: #333;
        }

            .oe-table-showrow-content ul.showrow-list li.active {
                color: #409eff;
            }

            .oe-table-showrow-content ul.showrow-list li span.icon {
                font-size: 15px;
                cursor: pointer;
                float: left;
                width: 18px;
            }

            .oe-table-showrow-content ul.showrow-list li span.text {
                padding-left: 0px;
                float: left;
            }

            .oe-table-showrow-content ul.showrow-list li span.action {
                padding-left: 0px;
                cursor: pointer;
                float: right;
                color: #adaaaa;
                font-weight: 100;
                display: none;
            }

            .oe-table-showrow-content ul.showrow-list li:hover span.action {
                display: inline-block;
            }

            .oe-table-showrow-content ul.showrow-list li span.action i {
                margin-left: 4px;
            }

                .oe-table-showrow-content ul.showrow-list li span.action i:hover {
                    color: #067df5;
                }

.bottom-action {
    line-height: 26px;
    height: 26px;
    padding: 0px 10px;
}

    .bottom-action a.a-link {
        color: #409eff;
        text-decoration: none;
    }

        .bottom-action a.a-link:hover {
            color: #067df5;
            text-decoration: underline;
        }



.vertical-line {
    position: absolute;
    left: 510px;
    top: 0;
    bottom: 17px;
    width: 0;
    z-index: 10;
    position: absolute;
    box-shadow: 0px 0px 10px 1px #067df5;
    background-color: #409EFF;
    width: 1px;
    height: 100%;
    cursor: col-resize;
    display: none;
}

.more-td {
    position: absolute;
    right: 0;
    top: 0;
    width: 18px;
    height: 49px;
    border-left: 1px solid #dfe6ec;
    border-right: 1px solid #dfe6ec;
    border-top: 1px solid #dfe6ec;
    box-sizing: border-box;
    background-color: #fff;
    text-align: center;
    line-height: 49px;
    cursor: pointer;
    display: none;
}

    .more-td .fa {
        color: #c0c4cc;
    }

    .more-td:hover .fa {
        color: #333;
    }

.dataTables_wrapper .dataTables_length {
    float: left;
    padding-bottom: 20px
}

    .dataTables_wrapper .dataTables_length .select {
        width: 50px
    }

.dataTables_wrapper .dataTables_filter {
    float: right;
    text-align: right
}

    .dataTables_wrapper .dataTables_filter .input-text {
        width: auto
    }

.dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: 10px;
    font-size: 14px;
    color: #666
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
    padding-top: 10px;
    text-align: right
}

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        border: 1px solid #dfe6ec;
        cursor: pointer;
        display: inline-block;
        margin-left: 2px;
        text-align: center;
        text-decoration: none;
        color: #666;
        height: 26px;
        line-height: 26px;
        text-decoration: none;
        margin: 0 0px 6px 6px;
        padding: 0 10px;
        font-size: 14px
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button:hover,
        .dataTables_wrapper .dataTables_paginate .paginate_button.current,
        .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            background: #067df5;
            color: #fff
        }

    .dataTables_wrapper .dataTables_paginate .ellipsis-h {
        color: #666;
        cursor: pointer;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        color: #666;
        height: 26px;
        line-height: 26px;
        text-decoration: none;
        padding: 0px 3px 0px 8px;
    }

span.highlight {
    color: red;
}

a.a-link {
    color: #409eff;
    text-decoration: none;
}

    a.a-link:hover {
        color: #1582f8;
        text-decoration: underline;
    }

.nodata {
    text-align: center;
    padding: 10px;
    color: #666;
}
.dataTables_export {
    margin-left:15px;
}

.dataTables_select {
    background-color:#ffffff;
    border:none;
    color:#666;
    font-size:13px;
}

.dataTables_checkbox {
    margin-left: 15px;
}