/* 全屏背景图设置 */
body {
    background: url("C:\Users\32408\Pictures\微信图片_20250420011132.jpg") no-repeat center center fixed !important;
    background-size: cover !important;
    background-attachment: scroll !important;//视差滚动效果
}

/* 添加半透明遮罩提升文字可读性 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

/* 调整主体内容层级 */
#home {
    position: relative;
    z-index: 2;
    background: transparent !important;
}


#main {
    background: transparent !important;
    backdrop-filter: blur(2px);
}
