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

:root {
  --blue-deep: #1a5fc4;
  --blue-main: #2b7de9;
  --blue-light: #4a9af5;
  --blue-pale: #e8f0fe;
  --blue-gradient: linear-gradient(180deg, #1e6fd4 0%, #3b8ef0 60%, #5aa8f5 100%);
  --text-dark: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(26, 95, 196, 0.12);
  --shadow-lg: 0 8px 32px rgba(26, 95, 196, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background: #f0f5fc;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
}

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

input, button {
  font-family: inherit;
  font-size: inherit;
}

.hidden {
  display: none !important;
}

/* ===== 顶部品牌栏 ===== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 125, 233, 0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--blue-gradient);
  color: var(--white);
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
}

.brand-icon.sm {
  width: 28px;
  height: 28px;
  font-size: 15px;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ===== 主视觉区 ===== */
.hero {
  position: relative;
  background: var(--blue-gradient);
  padding: 28px 20px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80'%3E%3Cpath d='M0 80V50h30v30H0zm40 0V35h25v45H40zm35 0V20h20v60H75zm30 0V40h35v40h-35zm45 0V25h15v55h-15zm25 0V45h30v35h-30zm40 0V15h25v65h-25zm35 0V35h20v45h-20zm30 0V50h35v30h-35z' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 400px 80px;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 23px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.hero-illustration {
  max-width: 280px;
  margin: 0 auto;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

/* ===== 主表单卡片 ===== */
.main-card {
  position: relative;
  margin: -50px 16px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 20px 28px;
  z-index: 10;
}

/* 步骤指示器 */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 0 8px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  transition: all 0.3s;
}

.step.active .step-dot {
  background: var(--blue-main);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(43, 125, 233, 0.4);
}

.step.done .step-dot {
  background: var(--blue-main);
  color: var(--white);
}

.step.done .step-dot span::before {
  content: "✓";
}

.step.done .step-dot span {
  font-size: 0;
}

.step-label {
  font-size: 12px;
  color: var(--text-light);
  white-space: nowrap;
}

.step.active .step-label {
  color: var(--blue-main);
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin: 0 4px;
  margin-bottom: 20px;
  max-width: 60px;
}

.step-line.done {
  background: var(--blue-main);
}

/* 表单样式 */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--blue-main);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43, 125, 233, 0.1);
}

.form-group input::placeholder {
  color: #bbb;
}

/* 业务类型单选 */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.radio-item input {
  display: none;
}

.radio-box {
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.radio-item input:checked ~ .radio-box {
  border-color: var(--blue-main);
  background: var(--blue-main);
}

.radio-item input:checked ~ .radio-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
}

.radio-item:has(input:checked) {
  border-color: var(--blue-main);
  background: var(--blue-pale);
  color: var(--blue-main);
  font-weight: 600;
}

/* 带按钮的输入框 */
.input-with-btn {
  display: flex;
  gap: 8px;
}

.input-with-btn input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
}

.input-with-btn input:focus {
  outline: none;
  border-color: var(--blue-main);
  background: var(--white);
}

.btn-search {
  flex-shrink: 0;
  padding: 0 14px;
  background: var(--blue-main);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-search:hover {
  background: var(--blue-deep);
}

.btn-search:active {
  transform: scale(0.97);
}

/* 下一步按钮 */
.btn-next {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
  color: var(--white);
  border: none;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 2px;
  box-shadow: 0 4px 16px rgba(43, 125, 233, 0.35);
  transition: all 0.2s;
}

.btn-next:hover {
  box-shadow: 0 6px 20px rgba(43, 125, 233, 0.45);
  transform: translateY(-1px);
}

.btn-next:active {
  transform: translateY(0);
}

.btn-prev {
  flex: 1;
  padding: 14px;
  background: #f5f5f5;
  color: var(--text-mid);
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-group {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-group .btn-next {
  flex: 1.5;
  margin-top: 0;
}

/* 确认信息 */
.confirm-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

#step2 {
  padding-bottom: 160px;
}

#step2 .btn-group {
  position: fixed;
  left: 50%;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  margin-top: 0;
  padding: 12px 36px;
  background: var(--white);
  border-top: 1px solid #eef2f8;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 90;
}

#step2 .btn-group .btn-next {
  box-shadow: 0 4px 16px rgba(43, 125, 233, 0.35);
}

body.confirm-step .hero {
  display: none;
}

body.confirm-step .main-card {
  margin-top: 16px;
}

.confirm-list {
  background: #f8fafd;
  border-radius: var(--radius);
  padding: 4px 0;
  margin-bottom: 20px;
}

.confirm-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eef2f8;
  font-size: 14px;
}

.confirm-item:last-child {
  border-bottom: none;
}

.confirm-item .label {
  color: var(--text-light);
  flex-shrink: 0;
}

.confirm-item .value {
  color: var(--text-dark);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
  margin-left: 16px;
}

/* 成功页 */
.success-box {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  margin-bottom: 16px;
}

.success-box h3 {
  font-size: 21px;
  color: var(--blue-main);
  margin-bottom: 12px;
}

.success-box p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.success-info {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
}

.success-info p {
  font-size: 14px;
  margin-bottom: 4px;
}

.success-info a {
  color: var(--blue-main);
  font-weight: 700;
}

.payment-box {
  margin: 0 0 16px;
}

.btn-pay-link {
  display: block;
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-light));
  color: var(--white);
  text-align: center;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(43, 125, 233, 0.35);
}

.btn-copy-link {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--white);
  color: var(--blue-main);
  border: 1px solid var(--blue-pale);
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.payment-box.hidden {
  display: none;
}

/* 提示弹窗 */
.tip-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tip-modal.hidden {
  display: none;
}

.tip-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.tip-modal-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px 16px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.tip-modal-card p {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tip-modal-card .btn-pay-link {
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 12px;
}

/* 支付弹窗 */
.pay-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pay-modal.hidden {
  display: none;
}

.pay-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.pay-modal-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 20px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pay-modal-icon {
  margin-bottom: 12px;
}

.pay-modal-card h3 {
  font-size: 21px;
  color: var(--blue-main);
  margin-bottom: 8px;
}

.pay-modal-tip {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pay-modal-info {
  background: var(--blue-pale);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.pay-modal-info p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.5;
}

.pay-modal-info p:last-child {
  margin-bottom: 0;
}

.pay-modal-card .btn-pay-link {
  margin-bottom: 10px;
}

.pay-modal-card .btn-copy-link.hidden,
.pay-modal-card .btn-pay-link.hidden {
  display: none;
}

.pay-modal-hotline {
  font-size: 14px;
  color: var(--text-mid);
  margin: 14px 0 10px;
}

.pay-modal-hotline a {
  color: var(--blue-main);
  font-weight: 700;
  text-decoration: none;
}

.pay-modal-close {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-light);
  border: none;
  font-size: 15px;
  cursor: pointer;
}

.pay-modal-close:hover {
  color: var(--text-mid);
}

.pay-modal-state.hidden {
  display: none;
}

.pay-modal-spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  border: 3px solid var(--blue-pale);
  border-top-color: var(--blue-main);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pay-modal-icon-warn {
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff3e0;
  color: #e65100;
  font-size: 29px;
  font-weight: 700;
}

.pay-modal-card .btn-pay-link {
  border: none;
  cursor: pointer;
}

/* ===== 四大理由 ===== */
.reasons {
  margin: 0 16px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reasons-header {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-main));
  padding: 14px 20px;
  text-align: center;
  position: relative;
}

.reasons-header span {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
}

.reasons-header::before,
.reasons-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.reasons-header::before {
  left: 30%;
  border-top: 8px solid var(--blue-deep);
}

.reasons-header::after {
  right: 30%;
  border-top: 8px solid var(--blue-main);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 20px 12px;
}

.reason-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
}

.reason-icon {
  margin-bottom: 10px;
}

.reason-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 500;
}

/* ===== 页脚 ===== */
.footer {
  margin: 0 16px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-contact {
  background: #f8fafd;
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
}

.footer-contact p {
  font-size: 13px;
  color: var(--text-mid);
  padding: 3px 0;
}

.footer-bottom {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--text-light);
}

/* ===== 全站备案信息 ===== */
.site-beian {
  margin: 0 16px 8px;
  padding: 10px 12px 4px;
  text-align: center;
}

.site-beian-row {
  margin: 0;
  line-height: 1.8;
}

.site-beian-row + .site-beian-row {
  margin-top: 2px;
}

.site-beian a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
}

.site-beian-mps img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== 底部导航 ===== */
body {
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 95;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 6px 24px calc(6px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid #eef2f8;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.04);
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  border: none;
  background: transparent;
  color: #8a8f99;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #8a8f99;
}

.bottom-nav-icon .home-dot {
  display: none;
}

.bottom-nav-label {
  font-size: 12px;
  line-height: 1.2;
  color: #8a8f99;
}

.bottom-nav-item.active .bottom-nav-icon .home-dot {
  display: block;
}

.bottom-nav-item.active .bottom-nav-label {
  color: var(--blue-main);
  font-weight: 600;
}

/* ===== 我的：订单查询 ===== */
.page-mine {
  min-height: calc(100vh - 64px);
  padding: 20px 16px 24px;
  background: #f0f5fc;
}

.mine-header {
  margin-bottom: 16px;
}

.mine-header h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.mine-header p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.mine-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.mine-card .btn-next {
  width: 100%;
  margin-top: 8px;
}

.mine-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-light);
  min-height: 1.2em;
}

.mine-hint.is-error {
  color: #e05454;
}

.mine-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mine-order {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  box-shadow: var(--shadow);
}

.mine-order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f3f8;
}

.mine-order-no {
  font-size: 13px;
  color: var(--text-mid);
  word-break: break-all;
}

.mine-order-biz {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2px;
}

.mine-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.mine-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
  white-space: nowrap;
}

.mine-badge-pay-unpaid {
  background: #fff4e8;
  color: #d97706;
}

.mine-badge-pay-paid {
  background: #e8f7ef;
  color: #16a34a;
}

.mine-badge-pay-refunded {
  background: #f3f4f6;
  color: #6b7280;
}

.mine-badge-status-pending {
  background: #eef4ff;
  color: #3b82f6;
}

.mine-badge-status-processing {
  background: #eef4ff;
  color: #2563eb;
}

.mine-badge-status-completed {
  background: #e8f7ef;
  color: #15803d;
}

.mine-badge-status-cancelled {
  background: #f3f4f6;
  color: #6b7280;
}

.mine-order-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mine-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.mine-row .k {
  color: var(--text-light);
  flex-shrink: 0;
}

.mine-row .v {
  color: var(--text-dark);
  text-align: right;
  word-break: break-all;
}

.mine-order-actions {
  margin-top: 12px;
}

.mine-order-actions .btn-pay-link {
  width: 100%;
}

.mine-empty {
  text-align: center;
  padding: 36px 16px;
  color: var(--text-light);
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius);
}

/* ===== 桌面端适配 ===== */
@media (min-width: 481px) {
  body {
    border-left: 1px solid #e0e8f5;
    border-right: 1px solid #e0e8f5;
    box-shadow: 0 0 40px rgba(26, 95, 196, 0.08);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 27px;
  }

  .main-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 448px;
  }

  .reasons,
  .footer {
    max-width: 448px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== 微信内打开限制 ===== */
html.wechat-only-locked body {
  overflow: hidden;
}

.wechat-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(180deg, #1e6fd4 0%, #3b8ef0 100%);
}

.wechat-gate-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.wechat-gate-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: #07c160;
  color: #fff;
  font-size: 37px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wechat-gate-card h1 {
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.wechat-gate-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.wechat-gate-tip {
  margin-top: 16px;
  padding: 12px;
  background: var(--blue-pale);
  border-radius: 8px;
  font-size: 13px !important;
  color: var(--blue-deep) !important;
}
