/* Web启动页样式 - 全屏图片 */

/* 启动页容器 */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  background: #000000;
}

/* 隐藏启动页 */
.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

/* 全屏图片容器 */
.splash-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 全屏图片 */
.splash-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* 隐藏其他元素 */
.splash-title,
.splash-subtitle,
.splash-loader {
  display: none;
}
