/* 基本样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4; /* 你可以修改成你喜欢的背景颜色或使用图片 */
    padding-bottom: 60px; /* 给底部留出足够的空间避免 footer 覆盖内容 */
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* 主内容区 */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 个人简介 */
.profile {
    text-align: center;
}

.profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

/* 出版物和研究 */
ul {
    padding-left: 20px;
}

/* footer */
footer {
    background-color: #f1f1f1; /* 你可以设置一个背景色，突出 footer */
    color: black;
    padding: 10px 0; /* 设置适当的上下内边距 */
    text-align: center; /* 文字居中对齐 */
    position: fixed;
    bottom: 0; /* 固定在页面底部 */
    width: 100%; /* 确保 footer 跨整个页面宽度 */
    z-index: 10; /* 确保 footer 在页面内容之上 */
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 0;
}
