/**
 * CSP修复：加载页样式
 * 从index.html中移出内联样式，符合CSP安全策略
 */

/* 加载页主容器 */
.avue-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f7fa;
  z-index: 9999;
}

.avue-home__main {
  text-align: center;
}

.avue-home__loading {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.avue-home__title {
  font-size: 18px;
  color: #303133;
  margin-bottom: 10px;
  font-weight: 500;
}

.avue-home__sub-title {
  font-size: 14px;
  color: #909399;
}
