fix(ui): 修复无动画模式卡片消失(no-anim 显式置为最终态) animation:none 会停住动画但保留 opacity:0 基础样式;改用 no-anim 类显式 opacity:1/transform:none

This commit is contained in:
2026-08-05 07:43:16 +08:00
parent fc52caddfd
commit 4cf31c76bb
2 changed files with 12 additions and 3 deletions
+7
View File
@@ -408,6 +408,13 @@ label { font-size: 12px; font-weight: 500; color: var(--text-2); margin-bottom:
.account-card { opacity: 1; transform: none; }
}
/* 无动画模式:自动刷新静默更新,直接以最终态显示 */
.account-card.no-anim, .platform-row.no-anim {
opacity: 1;
transform: none;
animation: none;
}
/* ===== 账号监控:筛选栏 ===== */
.filter-bar {
display: flex;