body {
    font-family: "Times New Roman", Times, serif;
    line-height: 1.5;
    max-width: 850px;
    margin: 40px auto;
    padding: 0 20px;
    color: #000;
    background-color: #fff;
}

nav {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

nav a {
    text-decoration: none;
    color: #000;
    margin-right: 20px;
    font-weight: bold;
    font-variant: small-caps;
}

nav a:hover { text-decoration: underline; }
nav a.active { border-bottom: 2px solid #000; }

/* 个人头部布局：照片 + 文字 */
.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-photo {
    width: 180px; /* 您可以根据实际照片比例调整 */
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.profile-info { flex: 1; }

h1 { font-size: 2rem; margin: 0 0 5px 0; }
.sub-title { font-style: italic; margin-bottom: 15px; color: #444; }

h2 { font-size: 1.5rem; border-bottom: 1px double #ccc; margin-top: 40px; }

.recruitment {
    background-color: #fcf8e3;
    border: 1px dashed #faebcc;
    padding: 15px;
    margin: 20px 0;
}

footer {
    margin-top: 60px;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 10px;
    color: #666;
}

/* 响应式：手机访问时照片居中 */
@media (max-width: 600px) {
    .profile-header { flex-direction: column; align-items: center; text-align: center; }
}
/* 招募寄语方框优化 */
.recruitment-note {
    background-color: #fdfdfd; /* 换成接近白色的极浅灰，或者干脆用白色 */
    border: 1px solid #e1e4e8; /* 添加细边框增加精致感 */
    border-left: 5px solid #005a9c; /* 保留左侧深蓝色条作为视觉重心 */
    padding: 20px 25px;
    margin: 20px 0 30px 0;
    line-height: 1.8; /* 稍微增加行高，提升阅读体验 */
    
    /* 核心修改：两端对齐 */
    text-align: justify; 
}

.recruitment-note p {
    margin-bottom: 12px;
    color: #222; /* 加深文字颜色，使其更突出 */
}

.recruitment-note b {
    color: #005a9c; /* 给 ChipExpert 加点颜色，突出重点项目 */
}

.recruitment-note a {
    text-decoration: none;
    border-bottom: 1px dashed #005a9c; /* 链接样式更优雅 */
}

/* 学生列表样式 */
.student-list {
    list-style-type: square;
    padding-left: 20px;
}

.student-list li {
    margin-bottom: 18px;
}

/* 论文统计样式 */
.pub-stats {
    margin-top: 4px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* 去向备注样式 */
.dest {
    color: #888;
    font-size: 0.85rem;
    margin-left: 5px;
}
.pub-list-unified {
    padding-left: 25px;
    line-height: 1.7;
}

.pub-list-unified li {
    margin-bottom: 12px;
    text-align: justify;
}

/* 强调你的姓名 */
.pub-list-unified strong {
    color: #000;
}

/* 强调荣誉标注（如 Oral/Spotlight） */
.pub-list-unified i {
    color: #333;
}
p {
    text-align: justify;
    text-justify: inter-character;
    line-height: 1.7;
}