/**
 * 禁用页面加载动画
 * 让页面直接显示，不需要从下往上滑动的动画效果
 */

/* 禁用主要内容区域的动画 */
main > section,
main > div,
.promotion-shopping-page,
.attr-content {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* 禁用产品卡片的动画 */
.product-card,
.promotion-card,
.ptag-item,
.category-item {
    animation: none !important;
    animation-delay: 0s !important;
    opacity: 1 !important;
    transform: none !important;
}

/* 禁用所有fadeInUp动画 */
[style*="animation: fadeInUp"],
.fadeInUp {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 确保页面内容立即可见 */
body,
main,
.container,
.content {
    animation: none !important;
    opacity: 1 !important;
}

/* 禁用延迟动画 */
*[style*="animation-delay"] {
    animation-delay: 0s !important;
}

/* 覆盖所有可能的动画 */
.products-grid,
.products-grid > *,
.selection-progress,
.promotion-banner {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* 保留悬停和交互动画 */
.product-card:hover,
.action-btn:hover,
button:hover {
    transition: all 0.3s ease !important;
}
