/* 添加 body 的模糊背景层 */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 100, 129, 1) url('https://images.cnblogs.com/cnblogs_com/blogs/841467/galleries/2450639/o_250323120833_4bce80b5084065a23ba869ae51f146dccb5df1df.jpg') fixed no-repeat;
    background-position: 50% 5%;
    background-size: cover;
    filter: blur(1.5px); /* 控制模糊强度 */
    z-index: -1; /* 确保背景在内容下方 */
}

/* 移除原 body 的背景设置 */
body {
    background: transparent; /* 改为透明 */
    min-height: 100vh;
}

/* 确保内容容器在模糊层之上 */
#home {
    position: relative; /* 创建层叠上下文 */
    z-index: 1; /* 确保内容显示在模糊背景之上 */
    /* 原有其他样式保持不变 */
    margin: 0 auto;
    width: 80%;
    min-width: 980px;
    background-color: rgba(245, 245, 245, 0.7);
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}