.background {
    position: fixed; /* 使背景固定在页面底部 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8; /* 设置背景透明度 */
    background-image: url('/images/fd5.jpg'); /* 初始为空，稍后用 JavaScript 设置 */
    background-size: cover; /* 填充形式 */
    z-index: -1; /* 确保在其他内容下面 */
}

/* 水平居中, 文本左对齐*/
body {
    display: flex;
    flex-direction: column;
    align-items: center;   
    justify-content: center; 
}

.content {
    text-align: left;      
    max-width: 700px;     
    width: 100%;           
}

/* 内容包装器样式 */
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.5); /* 半透明白色 */
    border-radius: 20px;     /* 圆角效果 */
    padding: 20px;           /* 内边距 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    max-width: 700px;        /* 最大宽度 */
    width: 100%;             /* 宽度自适应 */
    text-align: left;        /* 内容左对齐 */
}