/* 容器样式 */
.data-container {
    width: 100%;

    background: rgba(3,21,24,0.8);
    border: 1px solid rgba(255,255,255,0.3);
    overflow: hidden; /* 关键：隐藏溢出内容 */
}
/* 表头样式 */
.data-header {
    display: flex;
    background: rgba(0, 65, 112, 0.7);
    padding: 12px 0;
    border-bottom: 2px solid #00ffff;
}
.data-header > div {
    flex: 0 0 12.5%;
    box-sizing: border-box;
    color: rgb(218, 202, 247);
    text-align: center;
    font-size: 12px;
    padding: 0 5px;
}
/* 滚动容器 */
.scroll-wrapper {
    width: 100%; /* 抵消滚动条占位 */
    height: calc(100% - 46px);
    overflow-y: auto;
    overflow-x: hidden; /* 禁用水平滚动 */
}
/* 数据行 */
.data-row {
    display: flex;
    margin: 2px -0.5px; /* 负边距消除间隔 */
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s;
    background-color: rgba(3,21,24,0.6);
}
.data-row > div {
    flex: 0 0 12.5%;
    box-sizing: border-box;
    color: white;
    text-align: center;
    font-size: 12px;
    padding: 8px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 0.5px solid transparent; /* 维持视觉间隔 */
}
/* 交互效果 */
.data-row:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(5px);
}
.data-row:active {
    background: rgba(0, 255, 255, 0.2);
}
/* 滚动条美化 */
.scroll-wrapper::-webkit-scrollbar {
    width: 6px;
    background: rgba(0,0,0,0.2);
}
.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #00ffff;
    border-radius: 3px;
}
