/* 研究成果页面特定样式 */

.achievements-page {
    padding: 30px 0;
    background-color: #fff;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.8rem;
    color: #003366;
    font-weight: bold;
}

/* 研究概述 */
.research-overview {
    margin-bottom: 50px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.research-overview h2 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 2rem;
}

.research-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* 论文列表 */
.representative-papers {
    margin-bottom: 50px;
}

.representative-papers h2 {
    color: #003366;
    margin-bottom: 25px;
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
}

.papers-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.paper-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #003366;
}

.paper-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.paper-item h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.paper-journal {
    color: #666;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.paper-authors {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.paper-abstract {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.paper-link {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.paper-link:hover {
    color: #0055aa;
    text-decoration: underline;
}

/* 论文统计数据样式 */
.publication-stats {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003366;
    text-align: center;
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid #bbdefb;
}

/* 专利成果 */
.patents {
    margin-bottom: 50px;
}

.patents h2 {
    color: #003366;
    margin-bottom: 25px;
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
}

.patents-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.patent-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #003366;
}

.patent-item h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.patent-number {
    color: #666;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.patent-date {
    color: #888;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.patent-inventors {
    color: #666;
    font-size: 0.9rem;
}

/* 获奖情况 */
.awards {
    margin-bottom: 50px;
}

.awards h2 {
    color: #003366;
    margin-bottom: 25px;
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.award-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #003366;
    text-align: center;
}

.award-item h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.award-year {
    color: #666;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1rem;
}

.award-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 研究项目 */
.research-projects {
    margin-bottom: 50px;
}

.research-projects h2 {
    color: #003366;
    margin-bottom: 25px;
    font-size: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.project-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #003366;
}

.project-item h3 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.project-period {
    color: #666;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.project-funding {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.project-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .papers-list {
        gap: 20px;
    }
    
    .patents-list {
        grid-template-columns: 1fr;
    }
    
    .awards-list {
        grid-template-columns: 1fr;
    }
    
    .paper-item h3 {
        font-size: 1.1rem;
    }
    
    .patent-item h3 {
        font-size: 1rem;
    }
    
    .award-item h3 {
        font-size: 1.1rem;
    }
    
    .project-item h3 {
        font-size: 1rem;
    }
}