body {
    font-family: Arial, sans-serif;
    background-color: #000;
    margin: 0;
    padding: 0;
    /* overflow-x: hidden; 只隐藏水平滚动条 */
}
.header {
    background-color: #2e8b57;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
.header h1 {
    margin: 0;
}
.content {
    max-width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}
.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.profile img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-right: 20px;
}
.profile-info {
    flex: 1;
    min-width: 200px;
}
.profile-info h2 {
    margin: 0;
    color: #333;
}
.profile-info p {
    margin: 5px 0;
    color: #666;
}
.LinkWebsite a img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}
.card {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card h3 {
    margin-top: 0;
    color: #333;
}
.card p {
    line-height: 1.6;
    margin: 10px 0;
}
.card a {
    color: #2e8b57;
    text-decoration: none;
}
.card a:hover {
    text-decoration: underline;
}
.card img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 10px;
}
.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #2e8b57;
    color: #fff;
    width: 100%;
    position: relative; /* 修改为相对定位 */
    bottom:0;
}
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}
.language-switch button {
    background: #2e8b57;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.language-switch button:hover {
    background: #1c5d3a;
}
canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}