/** 白屏阶段会执行的 CSS 加载动画 */

#app-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff; /* 可选：设置背景色以遮挡内容 */
  z-index: 9999;
}

#app-loading img {
  width: 20vh;
  height: 20vh;
}
