
/* 统一样式，与规格表模块一致 */
.spec-wrapper {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px 20px;
    margin: 40px 0;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 16px;
}
.section-sub {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #555555;
    text-align: center;
    margin-bottom: 32px;
}
.choice-note {
    background-color: #ffffff;
    border-left: 4px solid #0047AB;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.choice-note p {
    margin: 0;
}
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    border: 2px solid #cbd5e1;
    background: #ffffff;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555555;
    min-width: 800px;
}
.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}
.comparison-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0047AB;
    border-bottom: 2px solid #cbd5e1;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .spec-wrapper {
        padding: 30px 16px;
    }
    .comparison-table,
    .comparison-table thead,
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table th,
    .comparison-table td {
        display: block;
        width: 100%;
    }
    .comparison-table thead {
        display: none;
    }
    .comparison-table tr {
        margin-bottom: 20px;
        border: 2px solid #cbd5e1;
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
    }
    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px 16px;
        border-bottom: 1px solid #e2e8f0;
        gap: 12px;
        flex-wrap: wrap;
        word-break: break-word;
    }
    .comparison-table td:last-child {
        border-bottom: none;
    }
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0047AB;
        width: 35%;
        flex-shrink: 0;
    }
    .choice-note {
        margin-bottom: 24px;
        padding: 12px 16px;
        font-size: 13px;
    }
}
