/* 简洁学术风格个人主页 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 
                 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 导航栏 */
.navbar {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #0066cc;
    text-decoration: none;
}

/* 主内容 */
.main-content {
    padding: 3rem 40px;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* 教育背景列表 */
.education-list {
    list-style: none;
    line-height: 1.8;
}

.education-list li {
    margin-bottom: 1.5rem;
}

.education-list strong {
    display: block;
    margin-bottom: 0.3rem;
}

.edu-detail {
    color: #666;
    font-size: 0.95rem;
    margin-top: 0.3rem;
}

/* 研究方向列表 */
.research-list {
    list-style-position: inside;
    line-height: 1.8;
}

.research-list li {
    margin-bottom: 1rem;
    text-align: justify;
}

/* 项目列表 */
.project-list {
    list-style: none;
}

.project-list li {
    margin-bottom: 1.5rem;
}

.project-list strong {
    display: block;
    margin-bottom: 0.5rem;
}

.project-list p {
    margin-bottom: 0.5rem;
    color: #555;
    text-align: justify;
}

/* 论文列表 */
.publication-list {
    list-style: decimal;
    list-style-position: inside;
    line-height: 2;
    margin-left: 0;
}

.publication-list li {
    margin-bottom: 1rem;
    text-align: justify;
    padding-left: 0.5rem;
}

.key-highlight {
    color: #7a1f1f;
    font-weight: 700;
}

/* 奖项列表 */
.awards-list {
    list-style-position: inside;
    line-height: 1.8;
}

.awards-list li {
    margin-bottom: 0.5rem;
}

/* 交流列表 */
.experience-list {
    list-style: none;
}

.experience-list li {
    margin-bottom: 1.5rem;
}

.experience-list strong {
    display: block;
    margin-bottom: 0.3rem;
}

.experience-list p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: #999;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

/* 基本响应式 */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .main-content {
        padding: 2rem 20px;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .nav-title {
        font-size: 1.1rem;
    }
}
