:root {
    --body-bg-color: #fff;
    --content-bg-color: rgba(255, 255, 255, 0.85);
    --card-bg-color: #f5f5f5;
    --text-color: #555;
    --link-color: #007bff; /* 更显眼的超链接颜色 */
    --link-hover-color: #0056b3; /* 超链接悬停颜色 */
    --brand-color: #222;
    --brand-hover-color: #555;
    --btn-default-bg: #222;
    --btn-default-color: #fff;
    --highlight-background: #f3f3f3;
    --highlight-foreground: #444;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url('./image/background.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
    color: var(--text-color);
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.card {
    background-color: var(--content-bg-color);
    padding: 40px; /* 增加内边距 */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 1000px; /* 调整最大宽度 */
    width: 90%; /* 使用90%的屏幕宽度 */
    margin: 20px; /* 增加外边距 */
}

header {
    text-align: center;
    border-bottom: 2px solid var(--brand-color);
    padding-bottom: 10px;
}

.profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}

.profile-img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--brand-color);
}

.profile-info {
    text-align: center;
    max-width: 600px; /* 设置最大宽度以保持良好的布局 */
}

.affiliations {
    text-align: center;
    display: flex;
    flex-direction: column; /* 调整为上下排列 */
    align-items: center;
}

.affiliation-img {
    width: 120px;
    margin: 10px 0; /* 设置上下间距 */
}

section {
    margin-top: 20px;
}

h2 {
    color: var(--brand-color);
}

a {
    color: var(--link-color); /* 更显眼的颜色 */
    text-decoration: none;
    font-weight: bold; /* 加粗 */
}

a:hover {
    color: var(--link-hover-color); /* 悬停时的颜色 */
    text-decoration: underline; /* 悬停时下划线 */
}

footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid var(--brand-color);
}
