/* 整体布局 */
.commPageContentBlock {
    margin: 0 auto;
    padding: 20px;
}

/* 成果概览部分 */
.overview-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.overview-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 28px;
    color: #98161f;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-number:hover {
    cursor: pointer;
    color: #f90;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

/* 图表部分新样式 */
.charts-section {
    margin-top: 30px;
    width: 100%;
}

.chart-tabs {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

/* 图表部分新样式 */
.data-visualization-section {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    width: 100%;
}

.tab-buttons {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
}

.tab-btn:hover {
    color: #98161f;
}

.tab-btn.active {
    color: #98161f;
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #98161f;
}

.chart-container {
    width: 100%;
    position: relative;
}

.chart-box {
    display: none;
    width: 100%;
}

.chart-box.active {
    display: block;
}

.chart {
    height: 500px;
    width: 100%;
}

/* 科学家列表样式修复 */
.scientists-section {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 30px;
    padding: 20px;
    width: 100%;
}

.scientists-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    padding: 10px;
}

.scientist-card {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scientist-card:hover {
    background: #98161f;
    color: #fff;
    transform: translateY(-2px);
}

.scientist-name {
    font-size: 14px;
    line-height: 1.4;
}

/* 标题样式 */
.section-title {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}