/* ================= css/pages/home.css ================= */
/* 状态页 & 功能页的专属补充样式 (布局骨架在 components.css) */

/* --- 入场动画 --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-status {
    animation: fadeInDown 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
