body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6dd5ed, #2193b0); /* 现代背景渐变 */
    color: white;
}

.page-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* 轻微透明的白色背景，增强可读性 */
    border-radius: 10px;
}

.page-header {
    font-size: 24px;
    text-align: center; /* 标题居中 */
    color: #0066a1;
}

.page-image-wrapper {
    width: 600px; /* 控制图片容器的宽度为 600px */
    height: 600px; /* 控制图片容器的高度为 600px */
    position: relative; /* 相对定位 */
    margin: 10px auto; /* 水平居中 */
}

.page-image {
    width: 100%; /* 图片宽度填充整个容器 */
    height: 100%; /* 图片高度填充整个容器 */
    object-fit: cover; /* 裁剪图片以填充整个容器，保持图片比例 */
    object-position: center; /* 图片居中显示 */
}

.page-body {
    background-color: #f0f0f0; /* 高亮背景色，与容器底色协调 */
    border-radius: 10px; /* 圆角 */
    padding: 15px;
    margin-top: 10px;
    text-align: left; /* 正文居中center */
    color: #000;
    white-space: pre-wrap; /* 保留换行符并在必要时进行自动换行 */
}

.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
}

.navigation-row {
    display: flex;
    justify-content: center; /* 按钮在行内居中 */
    margin: 12px 0; /* 添加上下间距 */
}

.navigation button, .navigation a {
    background-color: #ffffff; /* 按钮背景色 */
    color: rgb(33, 33, 33);
    border: none;
    padding: 8px 16px;
    text-decoration: none; /* 去掉链接下划线 */
    border-radius: 5px; /* 圆角按钮 */
    cursor: pointer;
    margin: 0 5px; /* 按钮之间的间距 */
}

.navigation button:hover, .navigation a:hover {
    background-color: #e4e4e4;
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    /* 去掉特定背景色，使用页面背景 */
}

footer a {
    color: white;
    text-decoration: none; /* 去掉链接下划线 */
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline; /* 鼠标悬停时添加下划线 */
}

@media (max-width: 600px) {
    .page-content {
        margin: 10px;
    }
    .page-image-wrapper {
        width: 100%; /* 移动设备上图片宽度自适应 */
        height: auto; /* 移动设备上图片高度自适应 */
    }
}
