﻿/* 表格容器样式 */
.table-container {
    position: relative;
}

    /* 表格样式 */
    .table-container table {
        width: 100%;
    }

/* 固定表头样式 */
.fixed-header {
    position: fixed;
    top: 0;
    left: 30px;
    right: 0;
    z-index: 3000;
    background-color: #fff;
    display: none;
}

    /* 固定表头表格样式 */
    .fixed-header table {
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }

    /* 固定表头单元格样式 */
    .fixed-header th {
        background-color: #fff;
        padding: 1.9rem 0.75rem;
        vertical-align: bottom;
        border-bottom: 2px solid #dee2e6;
    }
