/* 确保html和body高度为100% */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
/* 设置背景图片 */
body {
    background-color: rgb(28, 26, 44);
    background-image: url('Desktop 1.png'); /* 替换为你的图片路径 */
    background-size: cover; /* 背景图片覆盖整个页面 */
    background-position: center; /* 背景图片居中 */
    background-repeat: no-repeat; /* 背景图片不重复 */
    background-attachment: fixed; /* 固定背景图片，使其不随页面滚动 */
    overflow-x: hidden; /* 禁止水平滚动 */
}
body {
    padding-top: 60px; /* 根据导航栏的实际高度调整 */
}
/* 响应式设计 */
@media (max-width: 768px) {
    .content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .content {
        width: 95%;
        font-size: 14px;
    }
}