thead {
    background: linear-gradient(90deg, #2c3e50, #34495e);
    color: white;
}

/* 表格样式 */
.table-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
}

        
th {
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    /* font-size: 1.05rem; */
    position: relative;
}

th:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

tbody tr {
    border-bottom: 1px solid #e1e4e8;
    transition: all 0.3s ease;
}

tbody tr:hover {
    background-color: #edf2f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

td {
    padding: 16px 15px;
    color: #2d3748;
    /* font-size: 0.95rem; */
    text-align: center;
}

.model-cell {
    font-weight: 600;
    color: #2c3e50;
}

.highlight {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    /* font-size: 0.85rem; */
    font-weight: 500;
}

.tag-new {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.tag-popular {
    background-color: #fff8e1;
    color: #f57f17;
}

.tag-premium {
    background-color: #f3e5f5;
    color: #6a1b9a;
}

.spec-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #e3f2fd;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 10px;
    color: #2196f3;
}

.compare-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-top: 20px;
}

.compare-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.compare-title i {
    margin-right: 10px;
    color: #3498db;
}

.model-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.model-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.model-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-size: 1.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #dee2e6;
}

.spec-name {
    color: #6c757d;
}

.spec-value {
    font-weight: 500;
    color: #2c3e50;
}



@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
    }
    
    table {
        min-width: 700px;
    }
    
    .model-cards {
        flex-direction: column;
    }
}