/* 全局样式 */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background-container {
    width: 100%;
    min-height: 2109px; /* 让背景容器至少占满整个视口高度 */
    background-image: url('img/bg1.png'); 
    background-size: cover; /* 让背景图覆盖整个容器 */
    background-position: center; /* 背景图居中 */
    background-repeat: no-repeat; /* 禁止背景图重复 */
}

.content {
    text-align: center;
    padding-top: 100px; /* 根据需要调整内容距离顶部的距离 */
    color: #333; /* 文字颜色 */
}