/* 全局表格滚动容器 */
.global-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;        /* 基础允许 */
    overscroll-behavior: contain;     /* 阻止滚动链 */
    margin: 8px 0;
}

/* 容器内的表格恢复标准布局 */
.global-table-wrap table {
    display: table;                  /* 避免破坏表格语义 */
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

/* 滚动条美化 */
.global-table-wrap::-webkit-scrollbar {
    height: 8px;
    background: #e9edf2;
}
.global-table-wrap::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}