.table-scroll-box {
    width: 100%;
    overflow-x: auto;
    margin: 16px 0;
    border-radius: 8px;
    border: 1px solid #eee;
    /* 滚动条美化 */
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}
.table-scroll-box::-webkit-scrollbar {
    height: 6px;
}
.table-scroll-box::-webkit-scrollbar-track {
    background: #f5f5f5;
}
.table-scroll-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.table-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.spec-table {
    min-width: 1200px; 
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.spec-table .spec-row td {
    background: #f7f8fa;
    font-weight: 500;
    color: #333;
    border: 1px solid #eee;
    padding: 14px 12px;
    text-align: center;
    width: 160px;
    box-sizing: border-box;
}

.spec-table .param-row td {
    border: 1px solid #eee;
    padding: 14px 12px;
    line-height: 1.6;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    color: #666;
}

@media (max-width: 768px) {
    .spec-table .spec-row td,
    .spec-table .param-row td {
        padding: 10px 8px;
        font-size: 13px;
    }
}

.spec-table tr:hover td {
    background: #fafbfc;
}
.spec-table .spec-row:hover td {
    background: #f0f2f5;
}