/**
 * 引导页样式
 */
.page-guide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}

.page-guide .guide-content {
  text-align: center;
  padding: 20px;
}

.page-guide .guide-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
}

/* 三点加载动画（位于文本上方） */
.page-guide .guide-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.page-guide .guide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #999;
  animation: guide-dot-bounce 1.2s ease-in-out infinite;
}

.page-guide .guide-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.page-guide .guide-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes guide-dot-bounce {
  0%, 60%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* 失败图片 */
.page-guide .guide-error-img {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto;
}
