@import url('//at.alicdn.com/t/c/font_5171450_h37kfl5rgrl.css');
.modal-overlay[data-v-39aa0287] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
@supports (backdrop-filter: blur(8px)) {
.modal-overlay[data-v-39aa0287] {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
}
.modal-content[data-v-39aa0287] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2rem;
  padding: 2rem 2rem 1.75rem;
  width: 100%;
  max-width: 24rem;
  position: relative;
  animation: scaleIn-39aa0287 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
@keyframes scaleIn-39aa0287 {
from {
    transform: scale(0.9);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}

/* 头部 */
.modal-header[data-v-39aa0287] {
  text-align: center;
  padding: 8px 0 20px;
}
.header-icon[data-v-39aa0287] {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ceff3f, #b8e636);
  color: #1c1917;
  box-shadow: 0 6px 16px rgba(206, 255, 63, 0.35);
  transition: all 0.3s ease;
}
.header-icon.icon-success[data-v-39aa0287] {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}
.header-icon.icon-error[data-v-39aa0287] {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}
.header-icon.icon-expired[data-v-39aa0287] {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.3);
}
.header-title[data-v-39aa0287] {
  font-size: 20px;
  font-weight: 700;
  color: #1c1917;
  margin: 0 0 6px 0;
  letter-spacing: 1px;
}
.header-subtitle[data-v-39aa0287] {
  font-size: 11px;
  font-weight: 600;
  color: #a8a29e;
  margin: 0;
  letter-spacing: 2px;
}

/* 主体内容 */
.verify-body[data-v-39aa0287] {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.state-block[data-v-39aa0287] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  width: 100%;
}

/* loading 状态 */
.loading-spinner[data-v-39aa0287] {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f4f6;
  border-top-color: #ceff3f;
  border-radius: 50%;
  animation: spin-39aa0287 0.9s linear infinite;
}
@keyframes spin-39aa0287 {
to {
    transform: rotate(360deg);
}
}

/* turnstile 容器 */
.turnstile-wrapper[data-v-39aa0287] {
  display: flex;
  justify-content: center;
  min-height: 65px;
}
.state-text[data-v-39aa0287] {
  font-size: 15px;
  font-weight: 600;
  color: #1c1917;
  margin: 0;
}
.success-text[data-v-39aa0287] {
  color: #16a34a;
}
.error-text[data-v-39aa0287] {
  color: #dc2626;
}
.expired-text[data-v-39aa0287] {
  color: #d97706;
}
.state-subtext[data-v-39aa0287] {
  font-size: 13px;
  color: #78716c;
  margin: 0;
  text-align: center;
}
.state-hint[data-v-39aa0287] {
  font-size: 13px;
  color: #9ca3af;
  margin: 4px 0 0 0;
  text-align: center;
}

/* 成功脉冲动画 */
.success-pulse[data-v-39aa0287] {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: successPop-39aa0287 0.4s ease;
}
.success-pulse[data-v-39aa0287]::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.4);
  animation: pulseRing-39aa0287 1.2s ease-out infinite;
}
.success-pulse[data-v-39aa0287]::after {
  content: '';
  width: 22px;
  height: 11px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg) translateY(-2px);
}
@keyframes successPop-39aa0287 {
0% {
    transform: scale(0.5);
    opacity: 0;
}
60% {
    transform: scale(1.1);
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
@keyframes pulseRing-39aa0287 {
0% {
    transform: scale(0.9);
    opacity: 0.7;
}
100% {
    transform: scale(1.4);
    opacity: 0;
}
}

/* 操作按钮 */
.action-buttons[data-v-39aa0287] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.btn-refresh[data-v-39aa0287] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #1c1917;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-refresh[data-v-39aa0287]:hover {
  background: #292524;
  transform: translateY(-1px);
}

/* 底部提示 */
.footer-hint[data-v-39aa0287] {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.security-text[data-v-39aa0287] {
  font-size: 10px;
  font-weight: 600;
  color: #d6d3d1;
  letter-spacing: 3px;
}

/* 移动端适配 */
@media (max-width: 360px) {
.modal-content[data-v-39aa0287] {
    padding: 1.75rem 1.5rem 1.5rem;
    border-radius: 1.5rem;
}
.header-title[data-v-39aa0287] {
    font-size: 18px;
}
.verify-body[data-v-39aa0287] {
    min-height: 140px;
}
}

/* 全局应用样式 */
#app {
  min-height: 100vh;
  background: #f2f2f7;
}

/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 强制使用亮色主题，防止系统深色模式自动改变页面样式 */
:root {
  color-scheme: light only;
}
/* 全局变量 */
:root {
  /* 颜色变量 */
  --text-primary: #1f2937;
  --text-secondary: #374151;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* 背景颜色 */
  --bg-primary: #f8f8f8;
  --bg-white: #ffffff;

  /* 主色调 - 绿色系 */
  --accent-green: #22c55e;
  --accent-green-light: #4ade80;

  /* 边框颜色 */
  --border-light: #e5e7eb;
  --border-muted: #d1d5db;

  /* 阴影 */
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.06);

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* 弹窗样式变量 */
  --modal-bg: rgba(255, 255, 255, 0.85);
  --modal-blur-content: 20px;
  --modal-blur-overlay: 8px;
  --modal-border: rgba(255, 255, 255, 0.6);
  --modal-overlay: rgba(0, 0, 0, 0.3);
  --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --modal-radius: 2.5rem;
  --modal-padding: 2.5rem;
  --modal-max-width: 28rem;

  /* 间距 */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;

  /* 字体大小 */
  --font-xs: 11px;
  --font-sm: 12px;
  --font-md: 14px;
  --font-lg: 16px;
  --font-xl: 18px;
  --font-2xl: 24px;
}
/* 基础样式 */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}
/* 容器样式 */
.container {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-xl);
  min-height: 100vh;
  position: relative;
}
/* 按钮基础样式 */
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
button:focus {
  outline: none;
}
/* 输入框基础样式 */
input {
  font-family: inherit;
  font-size: inherit;
}
/* 链接样式 */
a {
  text-decoration: none;
  color: inherit;
}
/* 弹窗基础样式 - 可复用 */
.modal-overlay-base {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--modal-overlay);
  backdrop-filter: blur(var(--modal-blur-overlay));
  -webkit-backdrop-filter: blur(var(--modal-blur-overlay));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-content-base {
  background: var(--modal-bg);
  backdrop-filter: blur(var(--modal-blur-content));
  -webkit-backdrop-filter: blur(var(--modal-blur-content));
  border: 1px solid var(--modal-border);
  border-radius: var(--modal-radius);
  padding: var(--modal-padding);
  width: 100%;
  max-width: var(--modal-max-width);
  position: relative;
  box-shadow: var(--modal-shadow);
}
/* 弹窗动画 */
@keyframes modalScaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes modalSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal-animate-scale {
  animation: modalScaleIn 0.3s ease;
}
.modal-animate-slide-up {
  animation: modalSlideUp 0.4s ease;
}
/* 动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.3s ease-out;
}
/* 移动端适配 */
@media (max-width: 480px) {
  .container {
    padding: var(--space-lg);
  }
}
/* 响应式字体 */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }
}
/* loading 加载样式 */
.loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.loading::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.message-container[data-v-9122efe8] {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
  pointer-events: none;
}
.message-item[data-v-9122efe8] {
  padding: 14px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1c1917;
  font-size: 14px;
  font-weight: 500;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}
.message-icon[data-v-9122efe8] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.message-success .message-icon[data-v-9122efe8] {
  background: #22c55e;
  color: white;
}
.message-error .message-icon[data-v-9122efe8] {
  background: #ef4444;
  color: white;
}
.message-info .message-icon[data-v-9122efe8] {
  background: #3b82f6;
  color: white;
}
.message-warning .message-icon[data-v-9122efe8] {
  background: #f59e0b;
  color: white;
}
.message-text[data-v-9122efe8] {
  letter-spacing: 0.5px;
}
.message-slide-enter-active[data-v-9122efe8] {
  transition: all 0.3s ease;
}
.message-slide-leave-active[data-v-9122efe8] {
  transition: all 0.2s ease;
}
.message-slide-enter-from[data-v-9122efe8] {
  opacity: 0;
  transform: translateY(-20px);
}
.message-slide-leave-to[data-v-9122efe8] {
  opacity: 0;
  transform: translateY(-10px);
}
.message-slide-move[data-v-9122efe8] {
  transition: transform 0.3s ease;
}
