/* 骨架屏动画：App 挂载前展示，避免 index.html 内联 <style> 触发 vite html-inline-proxy 构建问题 */
@keyframes splash-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes splash-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
