/* 表格整体样式 */
.fixed-table {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* 表头样式 */
.fixed-table thead tr {
    background-color: #bcc0d69a;
}

.fixed-table th {
    padding: 10px 8px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #c0c0c0;
    position: relative;
}

/* 表格单元格样式 */
.fixed-table td {
    padding: 8px;
    border: 1px solid #e0e0e0;
    /* background-color: #ffffff; */
}

/* 表格单元格内容容器 */
.table-cell-div {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 滚动文本样式（如果需要） */
.scroll-text {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 表头固定时的背景色增强 */
.fixed-table thead {
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}