body {
    background-image: url('images/background.jpg');
    background-size: contain; /* 图片完整显示，保持比例 */
    background-position: center; /* 图片居中 */
    background-repeat: no-repeat; /* 不重复 */
    background-color: #f0f0f0; /* 背景颜色（用于填充留白部分） */
    margin: 0; /* 去除默认的 body 边距 */
    height: 0; /* 高度由 padding-top 控制 */
    padding-top: 61%; /* 1250 / 2048 ≈ 61%，保持图片比例 */
    position: relative; /* 相对定位 */
}
/* 如果需要在图片上添加内容 */
.content {
    position: absolute; /* 绝对定位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* 文字颜色 */
    font-size: 24px; /* 文字大小 */
}

