/* 成果报告页面样式 */
.results-section {
    padding: 50px 0;
}

.results-section h1 {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
}

/* 时间线样式 */
.results-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.year-section {
    margin-bottom: 40px;
}

.year-section h2 {
    color: #2F4F6D;
    border-bottom: 2px solid #2F4F6D;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.result-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.result-date {
    flex: 0 0 150px;
    color: #666;
    padding-right: 20px;
    position: relative;
}

.result-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #2F4F6D;
    border-radius: 50%;
    transform: translateY(-50%);
}

.result-content {
    flex: 1;
    padding-left: 30px;
    border-left: 2px solid #eee;
}

.result-content h3 {
    color: #333;
    margin-bottom: 10px;
}

.result-content p {
    color: #666;
    margin-bottom: 15px;
}

.btn-details {
    display: inline-block;
    padding: 8px 20px;
    background: #2F4F6D;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-details:hover {
    background: #1a2f42;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .result-item {
        flex-direction: column;
    }
    
    .result-date {
        margin-bottom: 10px;
    }
    
    .result-content {
        padding-left: 20px;
    }
} 

/* 英雄区域样式 */
.hero-section {
    height: 230px;
    background: linear-gradient(rgba(47, 79, 109, 0.95), rgba(47, 79, 109, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    padding: 100px 0 50px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin: 0;
    padding: 5px 0;
    font-weight: 600;
}

.hero-section p {
    font-size: 2.5rem;
    margin: 0;
    padding: 5px 0;
    font-weight: 300;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section {
        height: 180px;
        padding: 80px 0 40px;
    }
    
    .hero-section h1,
    .hero-section p {
        font-size: 2rem;
    }
} 