/* 最简化的BG.png背景修复方案 */

/* 🎯 直接强制设置首屏容器背景 */
#lvFuYhxX {
    background: url('../images/BG.png') center center / cover no-repeat scroll !important;
    /* 初始状态为透明，等待JavaScript动画触发 */
    opacity: 0;
    /* 使用与文字相同的transition效果 */
    transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(20vh);
}

/* 动画激活状态 */
#lvFuYhxX.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 🧹 清理所有可能干扰的背景层 */
#lvFuYhxX .bg-layer--inner-cad90 {
    background: none !important;
}

#lvFuYhxX .bg-layer-b9970 {
    background: none !important;
}

#lvFuYhxX .image-bg-bb349 {
    background: none !important;
}

/* 📱 移动端适配 */
@media (max-width: 768px) {
    #lvFuYhxX {
        background-attachment: scroll !important;
    }
}
