
/* 强制应用样式，避免被主题覆盖 */
.spec-table-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff; /* 确保背景是白色的 */
}

/* 标题样式 */
.spec-table-container h2.spec-title {
    text-align: center;
    color: #003366;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.spec-table-container h2.spec-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0056b3;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 表格样式 */
.hertz-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hertz-specs-table thead {
    background-color: #003366;
    color: #ffffff;
}

.hertz-specs-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #002244;
}

.hertz-specs-table td {
    padding: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    line-height: 1.5;
}

.hertz-specs-table .model-name {
    font-weight: 700;
    color: #0056b3;
}

/* 斑马纹 */
.hertz-specs-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* 移动端样式 (屏幕小于 768px) */
@media screen and (max-width: 768px) {
    .hertz-specs-table thead { display: none; }
    .hertz-specs-table, .hertz-specs-table tbody, .hertz-specs-table tr, .hertz-specs-table td { display: block; width: 100%; }
    
    .hertz-specs-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .hertz-specs-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid #eee;
    }
    
    .hertz-specs-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        text-align: left;
        font-weight: 700;
        color: #555;
    }

    .hertz-specs-table td.model-name {
        background-color: #003366;
        color: #fff;
        text-align: center;
        padding: 10px;
    }
    .hertz-specs-table td.model-name::before { display: none; }
}
