
.container[data-v-737af91f] {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
.image-wrapper[data-v-737af91f] {
  position: relative;
  width: 200px;
  height: 200px;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  transition: transform 0.2s;
}
.image-wrapper[data-v-737af91f]:hover {
  transform: scale(1.05);
}
.preview-image[data-v-737af91f] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.overlay[data-v-737af91f] {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.image-wrapper:hover .overlay[data-v-737af91f] {
  opacity: 1;
}

/* 覆盖 Vant Popup 的默认样式 */
[data-v-737af91f] .fullscreen-popup {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* 覆盖 Vant Overlay 的背景样式 */
[data-v-737af91f] .van-overlay {
  background: rgba(0, 0, 0, 0.6) !important;
  transition: background 0.3s ease;
}
.popup-content[data-v-737af91f] {
  position: relative;
  width: 100%;
  height: 100%;
  /* 移除居中布局，让canvas占满整个容器 */
}
.close-btn[data-v-737af91f] {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.close-btn[data-v-737af91f]:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.5);
}
.svga-canvas-fullscreen[data-v-737af91f] {
  width: 100vw;
  height: 100vh;
  background: transparent;
  cursor: pointer;
  /* 确保canvas占满整个视口 */
  position: absolute;
  top: 0;
  left: 0;
}
.gift-info[data-v-737af91f] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90vw;
  z-index: 5;
}
.result-image[data-v-737af91f] {
  width: 80%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  background: transparent;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  border-radius: 12px;
}
.gift-info-tip[data-v-737af91f] {
  color: gold;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.result-image.fade-in[data-v-737af91f] {
  opacity: 1;
}
.gift-info-text[data-v-737af91f] {
  margin-top: 20px;
  color: gold;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.gift-info-text-container[data-v-737af91f] {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  gap: 20px;
}
.loading-text[data-v-737af91f] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  z-index: 5;
}
