/* assets/css/style.css */
body {
    font-family: 'Noto Sans SC', sans-serif;
}

/* 弹窗和菜单动画 */
@keyframes scale-up {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slide-down {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-scale-up {
    animation: scale-up 0.2s ease-out forwards;
}

.animate-slide-down {
    animation: slide-down 0.3s ease-out forwards;
}