/* ==================== Language页面极简风格 ==================== */

.logo h1 {
    font-size: 22px;
    margin: 0;
}

/* 公告横幅 */
.notice-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.1);
}

[data-theme="dark"] .notice-banner {
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
    border-left-color: #42A5F5;
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: #2196F3;
    flex-shrink: 0;
}

[data-theme="dark"] .notice-icon {
    color: #90CAF9;
}

.notice-text {
    color: #1565C0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

[data-theme="dark"] .notice-text {
    color: #E3F2FD;
}

/* 表格 */
.table-wrapper {
    margin-bottom: 30px;
}

/* 品牌分组 */
.brand-group {
    border: 2px solid #3498db;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 24px;
}

[data-theme="dark"] .brand-group {
    border-color: rgba(52, 152, 219, 0.4);
}

.brand-group:last-child {
    margin-bottom: 0;
}

/* 品牌头部 */
.brand-header {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-align: left;
    letter-spacing: 1px;
    background: #3498db;
}

[data-theme="dark"] .brand-header {
    background: rgba(52, 152, 219, 0.6);
}

/* 品牌表格 */
.brand-table {
    width: 100%;
    border-collapse: collapse;
}

.brand-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.brand-table tbody tr:last-child {
    border-bottom: none;
}

.brand-table tbody tr:hover {
    background: rgba(52, 73, 94, 0.05);
}

[data-theme="dark"] .brand-table tbody tr:hover {
    background: rgba(52, 73, 94, 0.15);
}

.brand-table td {
    padding: 14px 20px;
    font-size: 14px;
    line-height: 1.8;
    border: none;
}

/* 车型列 */
.brand-table td.model-cell {
    width: 45%;
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* 语言列 */
.brand-table td.language-cell {
    width: 45%;
    line-height: 1.8;
    color: var(--text-secondary) !important;
}

/* 备注列（可远程） */
.brand-table td.note-cell {
    width: 100px;
    text-align: center;
    color: var(--text-primary) !important;
    white-space: nowrap;
}

/* 远程标识 - 文字样式 */
.remote-yes {
    display: inline-block;
    padding: 4px 12px;
    background: #41C355;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.remote-no {
    display: inline-block;
    padding: 4px 12px;
    background: #e0e0e0;
    color: #666;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

[data-theme="dark"] .remote-no {
    background: #424242;
    color: #999;
}

/* 底部信息 */
.info-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-section {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--border-color);
}

.info-section h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.info-section p {
    margin: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin-top: 12px;
    border-radius: 6px;
}

/* ==================== 响应式设计 ==================== */

@media (max-width: 768px) {
    .logo h1 {
        font-size: 16px;
    }
    
    .notice-banner {
        padding: 12px 16px;
        margin-bottom: 16px;
    }
    
    .notice-icon {
        width: 20px;
        height: 20px;
    }
    
    .notice-text {
        font-size: 14px;
    }
    
    .brand-group {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
        border-radius: 0;
    }
    
    .table-wrapper {
        overflow-x: auto;
    }
    
    .brand-table td {
        padding: 12px;
        font-size: 13px;
    }
    
    .brand-table td.note-cell {
        width: 70px;
    }
    
    .remote-yes,
    .remote-no {
        padding: 3px 8px;
        font-size: 12px;
    }
    
    .info-footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .info-section h3 {
        font-size: 15px;
    }
    
    .info-section p {
        font-size: 13px;
    }
}

