
/* 样式与之前一致 */
.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: 32px;
}
.table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    border: 2px solid #cbd5e1;
    background: #ffffff;
}
.application-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #555555;
    min-width: 600px;
}
.application-table th,
.application-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}
.application-table th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #0047AB;
    border-bottom: 2px solid #cbd5e1;
}
.application-table tr:last-child td {
    border-bottom: none;
}
.product-link {
    color: #0047AB;
    text-decoration: none;
}
.product-link:hover {
    text-decoration: underline;
}
/* 移动端布局 */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .spec-wrapper {
        padding: 30px 16px;
    }
    .application-table,
    .application-table thead,
    .application-table tbody,
    .application-table tr,
    .application-table th,
    .application-table td {
        display: block;
        width: 100%;
    }
    .application-table thead {
        display: none;
    }
    .application-table tr {
        margin-bottom: 20px;
        border: 2px solid #cbd5e1;
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
    }
    .application-table td {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
    }
    .application-table td:last-child {
        border-bottom: none;
    }
    .application-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0047AB;
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
    }
}
