/* 项目素材预加载（唯一开场加载层，样式对齐编辑器「开场加载」） */
.vr-asset-preload {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0c10;
  color: #f2f5f8;
  transition: opacity .28s ease;
}
.vr-asset-preload.is-silent {
  display: none !important;
}
.vr-asset-preload.is-out {
  opacity: 0;
  pointer-events: none;
}
.vr-asset-preload__panel {
  width: min(320px, calc(100vw - 40px));
  text-align: center;
}
.vr-asset-preload__img {
  display: block;
  width: 120px;
  max-height: 120px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.vr-asset-preload__text {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  min-height: 22px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
.vr-asset-preload__bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  margin: 0 auto;
  width: 240px;
  max-width: 100%;
  box-shadow: 0 0 0 4px rgba(110, 200, 232, 0.12);
}
.vr-asset-preload__bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: #8fd6f0;
  transition: width .18s ease;
}
.vr-asset-preload__caption {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  color: #9aa7b2;
}
