/* 白屏阶段会执行的 CSS 加载动画 */

#app-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* 使用动态视口高度，Safari 会自动适配工具栏 */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

#app-loading img {
  max-width: 200px;
  max-height: 200px;
  /* 确保在任何情况下都居中 */
  position: relative;
  z-index: 1;
}
