
/* Ueeshop Compatible Style */
.position-comparison-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
.position-title {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}
.position-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}
.comparison-table th {
    background: #1976d2;
    color: white;
    padding: 14px;
    text-align: left;
    font-size: 15px;
}
.comparison-table td {
    padding: 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: all 0.3s ease;
}
.acoustic-row {
    background-color: #e3f2fd;
}
.radar-row {
    background-color: #ffebee;
}

/* ========== 鼠标悬停互动效果 ========== */
.comparison-table tr:hover {
    background-color: #fff3e0 !important;
    transform: scale(1.01);
    transition: all 0.25s ease;
}
.visual-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.visual-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}
.visual-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    background: #ffffff;
}
.visual-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #222;
}
.visual-card p {
    font-size: 14px;
    color: #555;
}
.highlight {
    font-weight: bold;
    color: #1976d2;
}
@media (max-width: 768px) {
    .comparison-table th, .comparison-table td {
        padding: 10px;
        font-size: 13px;
    }
}
