/* 产品评测页面样式 */
.quality-banner {
    background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.quality-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quality-banner .author {
    font-style: italic;
    margin-top: 1rem;
}

/* 快捷导航 */
.quick-nav {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    position: sticky;
    top: 76px;
    z-index: 100;
}

.quick-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.quick-nav li {
    margin: 0 1rem;
}

.quick-nav a {
    display: block;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}

.quick-nav a:hover {
    color: var(--primary-color);
}

/* 内容部分 */
.content-section {
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* 准确度图表 */
.accuracy-chart {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.chart-bar {
    margin: 1rem 0;
}

.bar-fill {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    text-align: right;
}

/* 数据库统计 */
.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* 用户体验评分 */
.experience-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.rating {
    margin: 1rem 0;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.score {
    font-weight: bold;
    margin-left: 0.5rem;
}

/* 对比表格 */
.comparison-table {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.table th {
    background: var(--primary-color);
    color: white;
}

/* 用户评价 */
.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--light-text);
}

.review-content {
    font-style: italic;
} 