/* =============================================
   全局重置 & 基础设置
   ============================================= */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #1e2939;
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

ul {
  list-style: none;
}

/* =============================================
   布局容器工具
   ============================================= */
.page-wrap {
  max-width: 1562px;
  margin: 0 auto;
  padding-left: 165px;
  padding-right: 165px;
}

/* =============================================
   顶部导航 Header
   ============================================= */
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 65px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.header-inner {
  max-width: 1562px;
  margin: 0 auto;
  padding: 0 165px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  padding: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.logo-icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.logo-note-body {
  position: absolute;
  top: 12.5%;
  left: 37.5%;
  right: 12.5%;
  bottom: 25%;
}

.logo-note-body img {
  width: 116.67%;
  height: 116.67%;
  margin: -6.67% -8.33%;
}

.logo-note-dot {
  position: absolute;
}

.logo-note-dot img {
  width: 133.34%;
  height: 133.34%;
  margin: -16.67%;
}

.logo-note-dot-a {
  top: 62.5%;
  left: 12.5%;
  right: 62.5%;
  bottom: 12.5%;
}

.logo-note-dot-b {
  top: 54.17%;
  left: 62.5%;
  right: 12.5%;
  bottom: 20.83%;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* 导航 */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #4a5565;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.nav-link:hover {
  background: #f3f4f6;
}

.nav-active {
  background: #eff6ff;
  color: #155dfc;
}

.nav-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Header 操作按钮 */
.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn-login {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  border: 2px solid #155dfc;
  font-size: 16px;
  font-weight: 500;
  color: #155dfc;
  background: #fff;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn-login:hover {
  opacity: 0.85;
}

.btn-vip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: -webkit-linear-gradient(left, #ffb900, #e17100);
  background: linear-gradient(90deg, #ffb900, #e17100);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.btn-vip:hover {
  opacity: 0.9;
}

.btn-icon-sm {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 汉堡按钮（仅移动端可见） */
.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1e2939;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* 移动端下拉菜单 */
.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 16px;
  color: #4a5565;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link.mobile-active {
  color: #155dfc;
  font-weight: 500;
}

.mobile-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* =============================================
   主内容区
   ============================================= */
.main {
  /* padding-top: 65px; */
}

/* =============================================
   Hero 横幅区
   ============================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: -webkit-linear-gradient(161.04deg, #4f39f6 0%, #9810fa 50%, #f6339a 100%);
  background: linear-gradient(161.04deg, #4f39f6 0%, #9810fa 50%, #f6339a 100%);
  min-height: 537px;
}

/* 背景光晕装饰 */
.hero-glow {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.1;
  -webkit-filter: blur(64px);
  filter: blur(64px);
  pointer-events: none;
}

.hero-glow-right {
  top: 0;
  right: 0;
}

.hero-glow-left {
  top: 152px;
  left: 0;
}

.hero-inner {
  max-width: 1562px;
  margin: 0 auto;
  padding: 80px 165px;
  min-height: 537px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 左侧文字 */
.hero-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffdf20;
}

/* 右侧 Swiper 卡片 */
.hero-slider-wrap {
  width: 592px;
  height: 377px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

/* 幻灯片背景图 */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

/* 幻灯片底部渐变遮罩 */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0%, rgba(0, 0, 0, 0.80)), color-stop(50%, rgba(0, 0, 0, 0.40)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.40) 50%, rgba(0, 0, 0, 0) 100%);
}

/* 幻灯片文字 */
.slide-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
}

.slide-text h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.slide-text p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.5;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

/* Swiper 分页点样式 */
.swiper-pagination {
  bottom: 6px !important;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.50);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

/* =============================================
   功能介绍区 Feature
   ============================================= */
.feature {
  background: #f3f4f6;
  min-height: 300px;
}

.feature-inner {
  max-width: 1562px;
  margin: 0 auto;
  padding: 0 165px;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  justify-content: space-between;
}

/* 左侧按钮区 */
.feature-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.btn-start {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  height: 76px;
  padding: 0 48px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-start:hover {
  opacity: 0.92;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn-start-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-start-arrow {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 右侧文字区 */
.feature-right {
  /* -webkit-box-flex: 1; */
  /* -ms-flex: 1; */
  /* flex: 1; */
  /* min-width: 0; */
  min-width: 430px;
}

.feature-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.25;
  margin-bottom: 4px;
}

.feature-gradient {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.feature-desc {
  margin-bottom: 20px;
}

.feature-desc p {
  font-size: 18px;
  font-weight: 400;
  color: #364153;
  line-height: 1.625;
}

/* 功能标签 */
.feature-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.badge-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.badge-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.badge-circle img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

.badge-item span {
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
}

/* =============================================
   联系我们区 Contact
   ============================================= */
.contact {
  background: #fff;
  padding: 80px 165px;
}

.contact-inner {
  max-width: 1232px;
  margin: 0 auto;
}

/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.5;
}

/* 联系卡片容器 */
.contact-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}

/* 卡片基础样式 */
.contact-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 24px;
  padding: 40px 40px 40px;
  min-height: 544px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-blue {
  background: -webkit-linear-gradient(127.93deg, #eff6ff 0%, #faf5ff 100%);
  background: linear-gradient(127.93deg, #eff6ff 0%, #faf5ff 100%);
}

.card-green {
  background: -webkit-linear-gradient(127.93deg, #f0fdf4 0%, #ecfdf5 100%);
  background: linear-gradient(127.93deg, #f0fdf4 0%, #ecfdf5 100%);
}

/* 卡片图标圆圈 */
.card-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.circle-blue {
  background: -webkit-linear-gradient(135deg, #2b7fff 0%, #9810fa 100%);
  background: linear-gradient(135deg, #2b7fff 0%, #9810fa 100%);
}

.circle-green {
  background: -webkit-linear-gradient(135deg, #00c950 0%, #009966 100%);
  background: linear-gradient(135deg, #00c950 0%, #009966 100%);
}

.card-icon-box {
  width: 40px;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.card-icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* 卡片文字 */
.card-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 8px;
}

.card-time {
  font-size: 16px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 24px;
}

.card-note {
  font-size: 14px;
  font-weight: 400;
  color: #6a7282;
  line-height: 1.43;
  text-align: center;
  margin-top: 16px;
}

/* 电话号码盒子 */
.phone-box {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.10);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.10);
}

.phone-num {
  font-size: 30px;
  font-weight: 700;
  color: #155dfc;
  letter-spacing: 0.02em;
}

/* 微信二维码盒子 */
.qrcode-wrap {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.10);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10), 0 2px 4px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.qrcode-img {
  width: 192px;
  height: 192px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 14px;
}

/* =============================================
   页脚 Footer
   ============================================= */
.footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.footer-inner {
  max-width: 1562px;
  margin: 0 auto;
  padding: 48px 165px 0;
}

/* 四列网格 */
.footer-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  padding-bottom: 32px;
}

/* 品牌列 */
.footer-brand {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 220px;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* Footer Logo 图标（32px） */
.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  padding: 6px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-wrap {
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.footer-note-body {
  position: absolute;
  top: 12.5%;
  left: 37.5%;
  right: 12.5%;
  bottom: 25%;
}

.footer-note-body img {
  width: 116.67%;
  height: 116.67%;
  margin: -6.67% -8.33%;
}

.footer-note-dot {
  position: absolute;
}

.footer-note-dot img {
  width: 133.34%;
  height: 133.34%;
  margin: -16.67%;
}

.footer-dot-a {
  top: 62.5%;
  left: 12.5%;
  right: 62.5%;
  bottom: 12.5%;
}

.footer-dot-b {
  top: 54.17%;
  left: 62.5%;
  right: 12.5%;
  bottom: 20.83%;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: #1e2939;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.43;
}

/* 链接列 */
.footer-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.footer-col-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.43;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #155dfc;
}

/* 版权栏 */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  color: #6a7282;
  line-height: 1.43;
}

/* =============================================
   个人中心 Profile (node 1:222)
   ============================================= */
.page-profile {
  background: #f9fafb;
}

.profile-main {
  padding-bottom: 0;
}

.profile-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile-page-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.2;
  margin-bottom: 24px;
}

.profile-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.profile-card-user {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  min-width: 0;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.profile-user-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.profile-avatar img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}

.profile-user-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.profile-user-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.33;
  margin-bottom: 8px;
}

.profile-user-email {
  font-size: 16px;
  font-weight: 400;
  color: #6a7282;
  line-height: 1.5;
  margin-bottom: 16px;
}

.profile-badge-vip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 9999px;
  background: -webkit-linear-gradient(left, #ffb900, #e17100);
  background: linear-gradient(90deg, #ffb900, #e17100);
  margin-bottom: 16px;
}

.profile-badge-vip span {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.profile-meta {
  margin: 0;
  padding: 0;
}

.profile-meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.43;
  margin-bottom: 8px;
}

.profile-meta-row:last-child {
  margin-bottom: 0;
}

.profile-meta-row dt {
  font-weight: 400;
  color: #4a5565;
  margin: 0;
}

.profile-meta-row dd {
  margin: 0;
  font-weight: 500;
  color: #1e2939;
}

.profile-card-cta {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 280px;
  flex: 1 1 280px;
  min-width: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  background: -webkit-linear-gradient(155.61deg, #155dfc 0%, #9810fa 50%, #1447e6 100%);
  background: linear-gradient(155.61deg, #155dfc 0%, #9810fa 50%, #1447e6 100%);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}

.profile-card-cta:hover {
  opacity: 0.96;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.profile-cta-inner {
  min-height: 208px;
}

.profile-cta-iconbox {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.20);
  padding: 16px;
  margin-bottom: 16px;
}

.profile-cta-icon {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.profile-doc-layer {
  position: absolute;
}

.profile-doc-layer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.profile-doc-a {
  top: 8.33%;
  right: 16.67%;
  bottom: 8.33%;
  left: 16.67%;
}

.profile-doc-b {
  top: 8.33%;
  right: 16.67%;
  bottom: 66.67%;
  left: 58.33%;
}

.profile-doc-c {
  top: 41.67%;
  right: 41.67%;
  bottom: 8.33%;
  left: 8.33%;
}

.profile-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.33;
  margin-bottom: 8px;
}

.profile-cta-desc {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.56;
  margin-bottom: 20px;
}

.profile-cta-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.43;
}

.profile-cta-link img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.profile-records-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.33;
  margin-bottom: 16px;
}

.profile-filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.profile-filter-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-filter-ico {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.profile-filter-label {
  font-size: 16px;
  font-weight: 500;
  color: #364153;
  line-height: 1.5;
}

.profile-filter-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter-tab {
  height: 36px;
  min-width: 60px;
  padding: 0 12px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  background: #f3f4f6;
  color: #4a5565;
  line-height: 20px;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.filter-tab:nth-child(2) {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 88px;
}

.filter-tab-active {
  background: #155dfc;
  color: #fff;
}

.profile-filter-count {
  font-size: 14px;
  font-weight: 400;
  color: #6a7282;
  line-height: 1.43;
  margin: 0;
}

.profile-pagination-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profile-pagination-wrap .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-pagination-wrap .pagination > li {
  margin: 0;
  list-style: none;
}

.profile-pagination-wrap .pagination > li > a,
.profile-pagination-wrap .pagination > li > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #364153;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.profile-pagination-wrap .pagination > li > a:hover {
  border-color: #155dfc;
  color: #155dfc;
}

.profile-pagination-wrap .pagination > li.active > span {
  background: #155dfc;
  border-color: #155dfc;
  color: #fff;
}

.profile-pagination-wrap .pagination > li.disabled > span {
  opacity: 0.45;
  cursor: default;
}

.profile-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.profile-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  border-spacing: 0;
  /* table-layout: fixed; */
}

.profile-table thead th {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  color: #364153;
  text-align: left;
  padding: 16px 12px 16px 24px;
  line-height: 20px;
  vertical-align: middle;
}

.profile-table thead .th-actions {
  text-align: right;
  padding-right: 24px;
}

.profile-table tbody td {
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #4a5565;
  padding: 16px 12px 16px;
  vertical-align: middle;
  line-height: 20px;
}

.profile-table tbody tr:last-child td {
  border-bottom: none;
}

.td-mono {
  font-family: Consolas, "Courier New", monospace;
}

.td-price {
  font-weight: 600;
  color: #1e2939;
}

.td-file,
.td-status,
.td-method,
.td-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.td-status span:last-child {
  font-weight: 500;
  color: #00a63e;
}

.pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 24px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  min-width: 56px;
}

.pill-blue {
  background: #dbeafe;
  color: #1447e6;
}

.pill-gray {
  background: #f3f4f6;
  color: #364153;
}

.pill-purple {
  background: #f3e8ff;
  color: #8200db;
}

.pill-gold {
  background: #fef3c6;
  color: #bb4d00;
}

.profile-table td.td-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
  text-align: right;
  padding-right: 24px;
  vertical-align: middle;
}

.btn-dl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #155dfc;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  line-height: 20px;
  white-space: nowrap;
}

.btn-dl img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

a.btn-dl {
  text-decoration: none;
  color: #fff;
}

.btn-dl--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-trash {
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-trash-inner {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto;
}

.btn-trash-inner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

.profile-mini-footer {
  text-align: center;
  padding: 24px 0 8px;
  margin-top: 8px;
}

.profile-mini-footer p {
  font-size: 14px;
  line-height: 20px;
  color: #99a1af;
  margin: 0 0 4px;
}

.profile-mini-footer p:last-child {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}

.page-profile .footer {
  margin-top: 0;
}

/* =============================================
   音频提取工具 Extract (node 1:851)
   ============================================= */
.page-extract {
  background: #f9fafb;
}

.extract-main {
  padding-bottom: 0;
}

.extract-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#eff6ff), to(#ffffff));
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  padding-top: 48px;
  padding-bottom: 48px;
}

.extract-shell {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.extract-intro {
  text-align: center;
  margin-bottom: 48px;
}

.extract-title {
  font-size: 30px;
  font-weight: 700;
  color: #1e2939;
  line-height: 1.2;
  margin: 0 0 12px;
}

.extract-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.56;
  margin: 0;
}

.extract-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.extract-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.extract-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

/* 单次计费提示 */
.extract-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bedbff;
  border-radius: 16px;
  padding: 25px;
}

.extract-price-ico {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 4px;
}

.extract-price-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.extract-price-line1 {
  font-size: 16px;
  font-weight: 600;
  color: #1c398e;
  line-height: 1.5;
  margin: 0 0 8px;
}

.extract-price-line2 {
  font-size: 14px;
  font-weight: 400;
  color: #1447e6;
  line-height: 1.43;
  margin: 0 0 16px;
}

.extract-price-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  border-radius: 10px;
  background: #155dfc;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 24px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.extract-price-btn:hover {
  opacity: 0.92;
}

.extract-price-btn img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* 上传区 */
.extract-dropzone-wrap {
  position: relative;
  width: 100%;
}

.extract-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.extract-dropzone {
  display: block;
  min-height: 304px;
  border: 2px dashed #d1d5dc;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  -webkit-transition: border-color 0.2s, background 0.2s;
  transition: border-color 0.2s, background 0.2s;
}

.extract-dropzone:hover,
.extract-dropzone-active {
  border-color: #155dfc;
  background: #fafbff;
}

.extract-is-uploading {
  pointer-events: none;
  opacity: 0.85;
}

.extract-upload-progress {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #155dfc;
}

.extract-upload-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  min-height: 304px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.extract-upload-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #dbeafe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
}

.extract-upload-icon {
  position: relative;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.extract-up-layer {
  position: absolute;
  display: block;
}

.extract-up-layer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.extract-up-a {
  top: 62.5%;
  right: 12.5%;
  bottom: 12.5%;
  left: 12.5%;
}

.extract-up-b {
  top: 12.5%;
  right: 29.17%;
  bottom: 66.67%;
  left: 29.17%;
}

.extract-up-c {
  top: 12.5%;
  bottom: 37.5%;
  left: 50%;
  width: 25%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.extract-up-c img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.extract-drop-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e2939;
  line-height: 1.4;
  margin-bottom: 8px;
}

.extract-drop-hint {
  font-size: 16px;
  font-weight: 500;
  color: #6a7282;
  line-height: 1.5;
  margin-bottom: 12px;
}

.extract-drop-formats {
  font-size: 14px;
  font-weight: 500;
  color: #99a1af;
  line-height: 1.43;
}

/* 摄像头入口 */
.extract-camera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 128px;
  padding: 32px 24px;
  border: none;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  font-family: inherit;
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
}

.extract-camera:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.extract-camera-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3e8ff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}

.extract-cam-layer {
  position: absolute;
}

.extract-cam-layer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.extract-cam-a {
  top: 16.67%;
  right: 8.33%;
  bottom: 16.67%;
  left: 8.33%;
}

.extract-cam-b {
  top: 41.67%;
  right: 37.5%;
  bottom: 33.33%;
  left: 37.5%;
}

.extract-camera-text {
  text-align: left;
}

.extract-camera-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
  line-height: 1.5;
  margin-bottom: 4px;
}

.extract-camera-desc {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6a7282;
  line-height: 1.43;
}

/* 摄像头拍摄弹层 */
.extract-cam-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.extract-cam-modal[hidden] {
  display: none !important;
}

.extract-cam-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.extract-cam-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 20px 20px 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.extract-cam-modal__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.extract-cam-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
}

.extract-cam-modal__close {
  border: none;
  background: #f1f5f9;
  color: #64748b;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.extract-cam-modal__close:hover {
  background: #e2e8f0;
  color: #1e2939;
}

.extract-cam-modal__video {
  display: block;
  width: 100%;
  max-height: 42vh;
  border-radius: 12px;
  background: #0f172a;
  -o-object-fit: cover;
  object-fit: cover;
}

.extract-cam-modal__hint {
  margin: 12px 0 16px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.extract-cam-modal__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.extract-cam-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  -webkit-transition: background 0.15s, color 0.15s;
  transition: background 0.15s, color 0.15s;
}

.extract-cam-btn--primary {
  background: #7c3aed;
  color: #fff;
}

.extract-cam-btn--primary:hover {
  background: #6d28d9;
}

.extract-cam-btn--danger {
  background: #ef4444;
  color: #fff;
}

.extract-cam-btn--danger:hover {
  background: #dc2626;
}

.extract-cam-btn--ghost {
  background: #f1f5f9;
  color: #475569;
}

.extract-cam-btn--ghost:hover {
  background: #e2e8f0;
}

/* 右侧说明栏 */
.extract-sidebar {
  width: 304px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.extract-side-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
  line-height: 1.5;
  margin: 0 0 16px;
}

.extract-side-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.extract-side-block {
  margin: 0;
}

.extract-side-h {
  font-size: 14px;
  font-weight: 500;
  color: #1e2939;
  line-height: 1.43;
  margin: 0 0 8px;
}

.extract-side-list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: none;
}

.extract-side-list li {
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.43;
  margin-bottom: 4px;
  position: relative;
  padding-left: 0;
}

.extract-side-list li::before {
  content: "• ";
}

.extract-side-p {
  margin: 0;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #4a5565;
  line-height: 1.43;
}

.extract-side-vip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px;
  border-radius: 14px;
  background: #faf5ff;
}

.extract-side-vip img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.extract-side-vip-title {
  font-size: 14px;
  font-weight: 500;
  color: #59168b;
  line-height: 1.43;
  margin: 0 0 4px;
}

.extract-side-vip-desc {
  font-size: 12px;
  font-weight: 400;
  color: #8200db;
  line-height: 1.33;
  margin: 0;
}

.page-extract .footer {
  margin-top: 0;
}

.extract-next-link {
  text-align: center;
  margin: 8px 0 0;
  font-size: 14px;
}

.extract-next-link a {
  color: #155dfc;
  font-weight: 500;
  text-decoration: underline;
}

.extract-next-link a:hover {
  opacity: 0.85;
}

/* --- 音频提取：确认支付步骤（Figma 1:1543） --- */
.page-extract-pay .extract-pay-left {
  gap: 24px;
}

.extract-pay-flow {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.extract-file-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.extract-file-ico-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: #dbeafe;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.extract-pay-doc-icon {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.ep-doc {
  position: absolute;
}

.ep-doc img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ep-doc-a {
  top: 8.33%;
  right: 16.67%;
  bottom: 8.33%;
  left: 16.67%;
}

.ep-doc-b {
  top: 8.33%;
  right: 16.67%;
  bottom: 66.67%;
  left: 58.33%;
}

.ep-doc-c {
  top: 45.83%;
  right: 37.5%;
  bottom: 29.17%;
  left: 41.67%;
}

.extract-file-meta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.extract-file-name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.extract-file-name {
  font-size: 20px;
  font-weight: 600;
  color: #1e2939;
  line-height: 28px;
}

.extract-file-audio-ico {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dbeafe;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

button.extract-file-audio-btn {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button.extract-file-audio-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

button.extract-file-audio-btn:hover {
  background: #bfdbfe;
}

button.extract-file-audio-btn.is-playing {
  /* background: #bfdbfe; */
}

button.extract-file-audio-btn .extract-file-audio-btn__ico {
  display: block;
  max-width: 22px;
  max-height: 22px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

button.extract-file-audio-btn .extract-file-audio-btn__ico--pause {
  display: none;
}

button.extract-file-audio-btn.is-playing .extract-file-audio-btn__ico--play {
  display: none;
}

button.extract-file-audio-btn.is-playing .extract-file-audio-btn__ico--pause {
  display: block;
}

.ep-spk {
  position: absolute;
}

.ep-spk img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ep-spk-a {
  top: 16.66%;
  right: 54.17%;
  bottom: 16.65%;
  left: 8.33%;
}

.ep-spk-b {
  top: 37.5%;
  right: 29.17%;
  bottom: 37.5%;
  left: 66.67%;
}

.ep-spk-c {
  top: 23.48%;
  right: 8.33%;
  bottom: 23.48%;
  left: 80.68%;
}

.extract-file-meta-row {
  font-size: 14px;
  color: #6a7282;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.extract-file-dot {
  font-size: 16px;
  line-height: 24px;
}

.extract-status-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  background: #f0fdf4;
}

.extract-status-bar span {
  font-size: 16px;
  font-weight: 500;
  color: #00a63e;
  line-height: 24px;
}

.extract-method-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 100%;
}

.extract-method-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  min-width: 0;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 34px 34px 24px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s, background 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.extract-method-card--vocal {
  padding-top: 50px;
}

.extract-method-card--bgm.is-active {
  border-color: #2b7fff;
  background: -webkit-linear-gradient(135deg, #dbeafe 0%, #f3e8ff 100%);
  background: linear-gradient(135deg, #dbeafe 0%, #f3e8ff 100%);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
}

.extract-method-card--bgm:not(.is-active) {
  border-color: #e5e7eb;
  background: #f9fafb;
}

.extract-method-card--vocal.is-active {
  border-color: #00a63e;
  background: -webkit-linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
}

.extract-method-card--vocal:not(.is-active) {
  border-color: #b9f8cf;
  background: -webkit-linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.extract-method-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
}

.extract-method-circle--bgm {
  width: 97px;
  height: 97px;
  background: -webkit-linear-gradient(135deg, #2b7fff 0%, #9810fa 100%);
  background: linear-gradient(135deg, #2b7fff 0%, #9810fa 100%);
}

.extract-method-circle--vocal {
  width: 88px;
  height: 88px;
  background: -webkit-linear-gradient(135deg, #00c950 0%, #009966 100%);
  background: linear-gradient(135deg, #00c950 0%, #009966 100%);
}

.extract-method-note,
.extract-method-mic {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
}

.extract-method-mic {
  width: 40px;
  height: 40px;
}

.ep-note,
.ep-mic {
  position: absolute;
}

.ep-note img,
.ep-mic img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ep-note-a {
  top: 12.5%;
  right: 12.5%;
  bottom: 25%;
  left: 37.5%;
}

.ep-note-b {
  top: 62.5%;
  left: 12.5%;
  right: 62.5%;
  bottom: 12.5%;
}

.ep-note-c {
  top: 54.17%;
  left: 62.5%;
  right: 12.5%;
  bottom: 20.83%;
}

.ep-mic-a {
  top: 8.33%;
  right: 37.5%;
  bottom: 37.5%;
  left: 37.5%;
}

.ep-mic-b {
  top: 41.67%;
  right: 20.83%;
  bottom: 20.83%;
  left: 20.83%;
}

.ep-mic-c {
  top: 79.17%;
  bottom: 8.33%;
  left: 50%;
  width: 20%;
  margin-left: -10%;
}

.extract-method-name {
  font-size: 20px;
  font-weight: 700;
  color: #1e2939;
  line-height: 28px;
  margin-bottom: 8px;
}

.extract-method-desc {
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
  line-height: 20px;
  margin-bottom: 16px;
}

.extract-method-picked {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #155dfc;
  line-height: 20px;
  opacity: 0;
  visibility: hidden;
}

.extract-method-card--vocal.is-active .extract-method-picked {
  color: #00a63e;
  opacity: 1;
  visibility: visible;
}


.extract-method-card--bgm.is-active .extract-method-picked {
  color: #2b7fff;
  opacity: 1;
  visibility: visible;
}

.extract-ai-tip {
  font-size: 14px;
  line-height: 20px;
  color: #973c00;
  text-align: center;
  padding: 17px;
  border-radius: 14px;
  border: 1px solid #fee685;
  background: #fffbeb;
}

.extract-ai-tip-strong {
  font-weight: 600;
}

.extract-payment {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  background: -webkit-linear-gradient(145.56deg, #f9fafb 0%, #ffffff 100%);
  background: linear-gradient(145.56deg, #f9fafb 0%, #ffffff 100%);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
}

.extract-payment-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.extract-payment-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e2939;
  line-height: 32px;
  margin: 0;
}

.extract-payment-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: #eff6ff;
  font-size: 14px;
  font-weight: 500;
  color: #1447e6;
  line-height: 20px;
}

.extract-payment-box {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.extract-payment-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.extract-payment-row--border {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.extract-payment-fee {
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
  line-height: 28px;
}

.extract-payment-pay-label {
  font-size: 18px;
  font-weight: 600;
  color: #1e2939;
  line-height: 28px;
}

.extract-payment-amount {
  font-size: 30px;
  font-weight: 700;
  color: #155dfc;
  line-height: 36px;
}

.extract-pay-submit {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 28px;
  background: -webkit-linear-gradient(left, #00c950, #00a63e);
  background: linear-gradient(90deg, #00c950, #00a63e);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  margin-bottom: 16px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.extract-pay-submit:hover {
  opacity: 0.94;
}

.extract-pay-submit__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.extract-pay-submit__spinner {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.extract-pay-submit.is-loading {
  cursor: wait;
  opacity: 0.92;
}

.extract-pay-submit.is-loading .extract-pay-submit__spinner {
  opacity: 1;
  visibility: visible;
  -webkit-animation: extract-pay-spin 0.7s linear infinite;
  animation: extract-pay-spin 0.7s linear infinite;
}

.extract-pay-submit.is-loading:disabled {
  cursor: wait;
}

@-webkit-keyframes extract-pay-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes extract-pay-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.extract-method-grid.extract-flow-locked .extract-method-card {
  opacity: 0.55;
  cursor: not-allowed;
  -webkit-filter: grayscale(0.15);
  filter: grayscale(0.15);
}

button.extract-method-card:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  -webkit-filter: grayscale(0.15);
  filter: grayscale(0.15);
}

.extract-payment-hint {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #99a1af;
  text-align: center;
}

@media (max-width: 1100px) {
  .extract-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .extract-left {
    width: 100%;
    max-width: 100%;
  }

  .extract-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .extract-method-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .extract-pay-flow {
    padding: 24px 15px;
  }

  .extract-file-inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .extract-file-name-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .extract-file-meta-row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .vip-plan-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .vip-plan-card--popular {
    margin-top: 24px;
  }

  .vip-checkout-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .vip-checkout-right {
    text-align: left;
  }
}

/* --- 会员套餐页（Figma 1:1175） --- */
.page-vip .main {
  padding-top: 0;
}

.vip-main {
  background: #f9fafb;
}

.vip-hero {
  width: 100%;
  padding: 64px 24px 48px;
  background: -webkit-linear-gradient(left, #9810fa 0%, #e60076 50%, #9810fa 100%);
  background: linear-gradient(90deg, #9810fa 0%, #e60076 50%, #9810fa 100%);
  text-align: center;
}

.vip-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vip-hero-crown {
  margin-bottom: 24px;
}

.vip-hero-crown-ring {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.vip-hero-crown-ring img {
  display: block;
  width: 48px;
  height: 48px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.vip-hero-title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
}

.vip-hero-sub {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.9);
}

.vip-body {
  /* margin-top: -24px; */
  padding: 80px 0;
  background: -webkit-linear-gradient(top, #faf5ff 0%, #fff 280px);
  background: linear-gradient(180deg, #faf5ff 0%, #fff 280px);
}

.vip-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.vip-section {
  margin-bottom: 64px;
}

.vip-section:last-of-type {
  margin-bottom: 0;
}

.vip-section-title {
  margin: 0 0 48px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1e2939;
  text-align: center;
}

.vip-priv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.vip-priv-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.vip-priv-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: -webkit-linear-gradient(135deg, #ad46ff 0%, #e60076 100%);
  background: linear-gradient(135deg, #ad46ff 0%, #e60076 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vip-priv-icon img {
  width: 24px;
  height: 24px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.vip-priv-name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #1e2939;
}

.vip-priv-desc {
  margin: 0;
  font-size: 14px;
  line-height: 23px;
  color: #4a5565;
}

.vip-plan-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  /* align-items: flex-start; */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.vip-plan-card {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  max-width: 410px;
  margin: 0 auto;
  padding: 32px;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  -webkit-transition: border-color 0.2s, -webkit-box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* .vip-plan-card:focus {
  outline: 2px solid #ad46ff;
  outline-offset: 2px;
} */

.vip-plan-card.is-selected {
  border-color: #ad46ff;
  -webkit-box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.vip-plan-card--popular {
  margin-top: -16px;
  padding-top: 40px;
}

.vip-plan-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: -webkit-linear-gradient(left, #fb2c36, #f6339a);
  background: linear-gradient(90deg, #fb2c36, #f6339a);
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}

.vip-plan-selected-mark {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ad46ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vip-plan-selected-mark img {
  width: 17px;
  height: 17px;
  display: block;
}

.vip-plan-card:not(.is-selected) .vip-plan-selected-mark {
  display: none;
}

.vip-plan-save {
  position: absolute;
  top: -12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #fb2c36;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.10);
}

.vip-plan-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.vip-plan-icon--month {
  background: -webkit-linear-gradient(135deg, #51a2ff 0%, #155dfc 100%);
  background: linear-gradient(135deg, #51a2ff 0%, #155dfc 100%);
}

.vip-plan-icon--month img {
  width: 32px;
  height: 32px;
  display: block;
}

.vip-plan-icon--quarter,
.vip-plan-icon--year {
  background: -webkit-linear-gradient(135deg, #c27aff 0%, #9810fa 100%);
  background: linear-gradient(135deg, #c27aff 0%, #9810fa 100%);
}

.vip-plan-icon--year {
  background: -webkit-linear-gradient(135deg, #ffb900 0%, #e17100 100%);
  background: linear-gradient(135deg, #ffb900 0%, #e17100 100%);
}

.vip-plan-crown-layer {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vip-plan-crown-layer img {
  width: 34px;
  height: 34px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.vip-plan-crown-layer--b img {
  width: 32px;
  height: 32px;
}

.vip-plan-name {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1e2939;
}

.vip-plan-price {
  margin: 0 0 8px;
  line-height: 40px;
}

.vip-plan-num {
  font-size: 36px;
  font-weight: 700;
  color: #1e2939;
}

.vip-plan-unit {
  margin-left: 2px;
  font-size: 18px;
  font-weight: 400;
  color: #6a7282;
}

.vip-plan-was {
  margin: 0 0 16px;
  font-size: 14px;
  color: #99a1af;
  text-decoration: line-through;
}

.vip-plan-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #8200db;
  background: #faf5ff;
}

.vip-plan-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.vip-plan-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 23px;
  color: #4a5565;
}

.vip-plan-list li:last-child {
  margin-bottom: 0;
}

.vip-plan-check {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #dcfce7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.vip-plan-check img {
  width: 14px;
  height: 14px;
  display: block;
}

.vip-checkout {
  max-width: 672px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
}

.vip-checkout-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.vip-checkout-label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #4a5565;
  margin-bottom: 4px;
}

.vip-checkout-plan {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #1e2939;
}

.vip-checkout-right {
  text-align: right;
}

.vip-checkout-right .vip-checkout-label {
  text-align: right;
}

.vip-checkout-amount {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #9810fa;
}

.vip-pay-btn {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: -webkit-linear-gradient(left, #9810fa, #e60076);
  background: linear-gradient(90deg, #9810fa, #e60076);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.10), 0 4px 6px rgba(0, 0, 0, 0.10);
  margin-bottom: 16px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.vip-pay-btn:hover {
  opacity: 0.94;
}

.vip-pay-legal {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  color: #99a1af;
  text-align: center;
}

@media (max-width: 1100px) {
  .vip-priv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .vip-priv-grid {
    grid-template-columns: 1fr;
  }

  .vip-hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .vip-hero-sub {
    font-size: 16px;
    line-height: 24px;
  }
}

/* --- 登录/注册页（Figma 1:1036） --- */
.page-login .main {
  padding-top: 0;
}

.login-bg {
  min-height: calc(100vh - 65px - 301px);
  padding: 48px 24px 64px;
  background: -webkit-linear-gradient(148.61deg, #eff6ff 0%, #faf5ff 50%, #fdf2f8 100%);
  background: linear-gradient(148.61deg, #eff6ff 0%, #faf5ff 50%, #fdf2f8 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-wrap {
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
}

.login-brand {
  text-align: center;
}

.login-brand-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-brand-icon img {
  display: block;
  width: 48px;
  height: 48px;
}

.login-brand-title {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.login-brand-sub {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #4a5565;
}

.login-card {
  margin-top: 32px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 20px 25px rgba(0, 0, 0, 0.10), 0 8px 10px rgba(0, 0, 0, 0.10);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.10), 0 8px 10px rgba(0, 0, 0, 0.10);
}

.login-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  padding: 4px;
  border-radius: 14px;
  background: #f3f4f6;
}

.login-tab {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  height: 44px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #4a5565;
  background: transparent;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.login-tab.is-active {
  background: #fff;
  color: #155dfc;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.10);
}

.login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.login-form[hidden] {
  display: none !important;
}

.login-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.login-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #364153;
}

.login-input-wrap {
  position: relative;
}

.login-input-ico {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.login-input-ico img {
  display: block;
  width: 20px;
  height: 20px;
}

.login-input {
  width: 100%;
  height: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 16px 12px 48px;
  border: 1px solid #d1d5dc;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: normal;
  color: #0a0a0a;
}

.login-input::-webkit-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.login-input::-moz-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.login-input:-ms-input-placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.login-input::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.login-input:focus {
  outline: none;
  border-color: #155dfc;
}

.login-input--has-toggle {
  padding-right: 48px;
}

.login-toggle-pw {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.login-toggle-pw img {
  width: 20px;
  height: 20px;
  display: block;
}

.login-row-forgot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  min-height: 20px;
  margin-top: -8px;
}

.login-row-forgot--empty {
  visibility: hidden;
}

.login-link-forgot {
  font-size: 14px;
  font-weight: 500;
  color: #155dfc;
  text-decoration: none;
}

.login-link-forgot:hover {
  text-decoration: underline;
}

.login-submit {
  width: 100%;
  height: 48px;
  margin-top: 0;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: -webkit-linear-gradient(left, #155dfc, #9810fa);
  background: linear-gradient(90deg, #155dfc, #9810fa);
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.login-submit:hover {
  opacity: 0.94;
}

.login-back-wrap {
  margin: 20px 0 0;
  text-align: center;
}

.login-back {
  font-size: 14px;
  font-weight: 500;
  color: #4a5565;
  text-decoration: none;
}

.login-back:hover {
  color: #155dfc;
}

.login-legal {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 16px;
  color: #6a7282;
  text-align: center;
}

.login-legal a {
  color: #155dfc;
  text-decoration: none;
}

.login-legal a:hover {
  text-decoration: underline;
}

.login-field--captcha .login-captcha-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.login-input-wrap--grow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.login-captcha-btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 14px;
  height: 50px;
  border: 1px solid #d1d5dc;
  border-radius: 14px;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  color: #155dfc;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.login-captcha-btn:hover:not(:disabled) {
  background: #eff6ff;
}

.login-captcha-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  color: #6a7282;
}

.login-back-dot {
  margin: 0 8px;
  color: #94a3b8;
  font-weight: 500;
}

.login-legal--muted {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* 注册测试验证码弹窗 */
.login-reg-captcha-modal {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.login-reg-captcha-modal[hidden] {
  display: none !important;
}

.login-reg-captcha-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
}

.login-reg-captcha-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 24px 22px 20px;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.login-reg-captcha-modal__title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  color: #1e2939;
}

.login-reg-captcha-modal__code {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #155dfc;
  font-variant-numeric: tabular-nums;
}

.login-reg-captcha-modal__hint {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.login-reg-captcha-modal__btn {
  width: 100%;
  margin-top: 0;
}

.page-login .footer {
  margin-top: 0;
}

/* =============================================
   响应式适配 Media Queries
   ============================================= */

/* 大屏 1200px 以下 */
@media (max-width: 1200px) {
  .header-inner,
  .hero-inner,
  .feature-inner {
    padding-left: 80px;
    padding-right: 80px;
  }

  .contact {
    padding-left: 80px;
    padding-right: 80px;
  }

  .footer-inner {
    padding-left: 80px;
    padding-right: 80px;
  }

  .hero-slider-wrap {
    width: 480px;
    height: 310px;
  }
}

/* 平板 1024px 以下 */
@media (max-width: 1024px) {
  .header-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-inner {
    padding: 60px 40px;
    gap: 32px;
    min-height: 440px;
  }

  .hero-title,
  .hero-sub {
    font-size: 38px;
  }

  .hero-slider-wrap {
    width: 420px;
    height: 280px;
  }

  .feature-inner {
    padding: 0 40px;
    gap: 32px;
  }

  .feature-heading,
  .feature-gradient {
    font-size: 28px;
  }

  .btn-start {
    height: 60px;
    padding: 0 32px;
    font-size: 17px;
  }

  .contact {
    padding: 60px 40px;
  }

  .footer-inner {
    padding: 40px 40px 0;
  }
}

/* 平板竖屏 768px 以下 */
@media (max-width: 768px) {

  .login-bg,.login-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .extract-shell {
    padding: 0 15px;
  }
  .extract-payment-amount {
    font-size: 20px;
  }
  .extract-payment {
    padding: 15px;
  }
  .profile-user-row {
    display: flex;
    flex-direction: column;
  }
  /* 显示汉堡菜单，隐藏桌面导航 */
  .nav,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* Header */
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Hero */
  .hero-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 48px 20px 40px;
    min-height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 32px;
  }

  .hero {
    min-height: auto;
  }

  .hero-title,
  .hero-sub {
    font-size: 32px;
  }

  .hero-slider-wrap {
    width: 100%;
    height: 260px;
  }

  /* Feature */
  .feature-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 48px 20px;
    gap: 32px;
    min-height: auto;
  }

  .feature {
    min-height: auto;
  }

  .btn-start {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
    gap: 12px;
  }

  .btn-start-icon,
  .btn-start-arrow {
    width: 22px;
    height: 22px;
  }

  .feature-heading,
  .feature-gradient {
    font-size: 26px;
  }

  .feature-desc p {
    font-size: 16px;
  }

  /* Contact */
  .contact {
    padding: 48px 15px;
  }

  .contact-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .contact-card {
    min-height: auto;
    padding: 32px 24px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Footer */
  .footer-inner {
    padding: 40px 20px 0;
  }

  .footer-grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .footer-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
  }
}

/* 手机小屏 480px 以下 */
@media (max-width: 480px) {
  .hero-title,
  .hero-sub {
    font-size: 26px;
  }

  .hero-slider-wrap {
    height: 220px;
  }

  .slide-text h3 {
    font-size: 22px;
  }

  .slide-text p {
    font-size: 14px;
  }

  .feature-heading,
  .feature-gradient {
    font-size: 22px;
  }

  .feature-badges {
    gap: 16px;
  }

  .phone-num {
    font-size: 24px;
  }

  .footer-col {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .btn-start {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* 个人中心响应式 */
@media (max-width: 1024px) {
  .profile-wrap {
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .profile-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .profile-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .profile-filter-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .profile-filter-count {
    width: 100%;
    text-align: left;
  }
}


/* --- 隐私政策页 --- */
.page-privacy .main {
  padding-top: 65px;
}

.privacy-main {
  background: #f9fafb;
  padding: 40px 0 80px;
}

.privacy-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 1200px) {
  .privacy-inner {
    padding: 0 40px;
  }
}

.legal-doc {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 48px;
  border: 1px solid #e5e7eb;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.legal-doc-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-doc-title {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #1e2939;
}

.legal-doc-meta {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #6a7282;
}

.legal-doc-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 28px;
  color: #364153;
}

.legal-doc h2 {
  margin: 32px 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #1e2939;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 28px;
  color: #364153;
}

.legal-doc ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
}

.legal-doc li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 28px;
  color: #364153;
}

.legal-doc strong {
  font-weight: 600;
  color: #1e2939;
}

@media (max-width: 768px) {
  .privacy-main {
    padding: 24px 0 56px;
  }

  .legal-doc {
    padding: 28px 20px 36px;
  }

  .legal-doc-title {
    font-size: 24px;
    line-height: 32px;
  }
}
