.open-user-body {
  background: linear-gradient(180deg, #e8eef5 0%, #f4f7fb 120px, #f4f7fb 100%);
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", sans-serif;
  color: #1a2332;
}

/* 顶栏 */
.open-user-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.open-user-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.open-user-logo {
  font-size: 20px;
  font-weight: 800;
  color: #0f1830;
  text-decoration: none;
  flex-shrink: 0;
}
.open-user-logo span { color: #108bed; }
.open-user-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; flex-wrap: wrap; }
.open-user-nav-main { margin-left: 0; flex: 1; }
.open-user-nav a, .open-user-nav-link {
  padding: 8px 12px;
  color: #5a6578;
  text-decoration: none;
  font-size: 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.open-user-nav-link .fa { font-size: 13px; opacity: .85; width: 14px; text-align: center; }
.open-user-nav a:hover, .open-user-nav-link:hover { color: #108bed; background: #f0f7ff; }
.open-user-nav-link.is-active {
  color: #108bed; background: #e8f4ff; font-weight: 600;
  box-shadow: inset 0 -2px 0 #108bed;
}
.open-nav-dot {
  display: inline-block; min-width: 16px; height: 16px; line-height: 16px; padding: 0 4px;
  margin-left: 4px; font-style: normal; font-size: 10px; font-weight: 700;
  background: #ef4444; color: #fff; border-radius: 999px; text-align: center;
}
.open-user-menu-btn {
  display: none; width: 40px; height: 40px; padding: 0; border: 1px solid #e2e8f0;
  border-radius: 10px; background: #fff; cursor: pointer; margin-left: auto;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.open-user-menu-btn span { display: block; width: 18px; height: 2px; background: #334155; border-radius: 1px; transition: transform .2s; }
.open-user-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.open-user-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.open-user-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.open-user-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #108bed, #0ea5e9);
  color: #fff; font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.open-user-footer-links { margin: 6px 0 0; font-size: 12px; }
.open-user-footer-links a { color: #94a3b8; text-decoration: none; }
.open-user-footer-links a:hover { color: #108bed; }

.open-user-account {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.open-user-account-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.open-user-account-name { font-size: 14px; font-weight: 600; color: #1a2332; }
.open-user-logout {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.open-user-logout:hover { color: #dc2626; border-color: #fecaca; background: #fef2f2; }

.open-user-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.open-user-badge.ok { background: #dcfce7; color: #166534; }
.open-user-badge.warn { background: #fef3c7; color: #92400e; }

.open-user-main { max-width: 1080px; margin: 0 auto; padding: 28px 20px 56px; }
.open-user-footer { text-align: center; padding: 24px 20px; color: #94a3b8; font-size: 13px; }

/* 页面通用 */
.open-user-page { animation: openFadeIn .35s ease; }
@keyframes openFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.open-user-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.open-user-page-head h1 { margin: 0 0 6px; font-size: 24px; font-weight: 700; }
.open-user-page-head p { margin: 0; color: #64748b; font-size: 14px; }
.open-user-page-stat { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; font-size: 14px; color: #64748b; }
.open-user-page-sub { margin: -4px 0 20px; color: #64748b; font-size: 14px; }

.open-user-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(15,24,48,.06), 0 8px 24px rgba(15,24,48,.04);
  margin-bottom: 16px;
  border: 1px solid rgba(226,232,240,.8);
}
.open-user-card-table { padding: 0; overflow: visible; }
.open-user-card-table .table { margin: 0; }
.open-user-card-table .open-user-card-head {
  padding: 18px 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #f1f5f9;
}
.open-user-card-head-meta { font-size: 13px; color: #94a3b8; font-weight: 500; }

/* 最近订单 — 列表式，避免表格被裁切 */
.open-user-orders-card { overflow: visible; }
.open-user-orders-card .open-user-card-head { border-bottom: 1px solid #eef2f7; }
.open-order-list { list-style: none; margin: 0; padding: 0; }
.open-order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  transition: background .12s;
}
.open-order-item:last-child { border-bottom: none; }
.open-order-item:hover { background: #fafbfc; }
.open-order-icon {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  background: #f1f5f9; color: #64748b;
}
.open-order-status-1 .open-order-icon { background: #f0fdf4; color: #16a34a; }
.open-order-status-0 .open-order-icon { background: #fffbeb; color: #d97706; }
.open-order-status-2 .open-order-icon,
.open-order-status--1 .open-order-icon { background: #f8fafc; color: #94a3b8; }
.open-order-body { flex: 1; min-width: 0; }
.open-order-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.open-order-plan { font-size: 15px; font-weight: 700; color: #0f172a; }
.open-order-money { font-size: 14px; color: #108bed; font-weight: 700; }
.open-order-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.open-order-no {
  font-size: 12px; background: #f8fafc; padding: 3px 8px; border-radius: 6px;
  color: #475569; border: 1px solid #e2e8f0; word-break: break-all;
}
.open-order-time { font-size: 12px; color: #94a3b8; }
.open-order-copy {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid #e2e8f0; background: #fff; color: #64748b; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: .15s;
}
.open-order-copy:hover { color: #108bed; border-color: #108bed; background: #f0f7ff; }

/* 域名页 — 顶部 hero（全站统一） */
.open-user-hero {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 20px; padding: 24px 28px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  border: 1px solid #e2e8f0; border-radius: 16px;
  box-shadow: 0 1px 3px rgba(15,24,48,.04);
}
.open-user-hero-main { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0; }
.open-user-hero-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, #108bed, #0ea5e9);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: 0 6px 16px rgba(16,139,237,.22); overflow: hidden;
}
.open-user-hero-icon.icon-domains { background: linear-gradient(135deg, #108bed, #0ea5e9); box-shadow: 0 6px 16px rgba(16,139,237,.22); }
.open-user-hero-icon.icon-dash { background: linear-gradient(135deg, #1e40af, #108bed); box-shadow: 0 6px 16px rgba(30,64,175,.22); }
.open-user-hero-icon.icon-plans { background: linear-gradient(135deg, #7c3aed, #a855f7); box-shadow: 0 6px 16px rgba(124,58,237,.22); }
.open-user-hero-icon.icon-orders { background: linear-gradient(135deg, #d97706, #f59e0b); box-shadow: 0 6px 16px rgba(217,119,6,.22); }
.open-user-hero-icon.icon-account { background: linear-gradient(135deg, #16a34a, #22c55e); box-shadow: 0 6px 16px rgba(22,163,74,.22); }
.open-user-hero-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.open-user-hero-avatar-img.sm { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #bbf7d0; }
.open-user-hero h1 { margin: 0 0 6px; font-size: 24px; font-weight: 700; color: #0f172a; }
.open-user-hero p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.55; max-width: 480px; }
.open-user-hero-stat { text-align: right; flex-shrink: 0; }
.open-user-hero-stat-num { font-size: 14px; color: #64748b; margin-bottom: 4px; }
.open-user-hero-stat-num strong { font-size: 28px; font-weight: 800; color: #0f172a; }
.open-user-hero-stat-num span { font-size: 16px; color: #94a3b8; }
.open-user-hero-stat-label { font-size: 12px; color: #94a3b8; margin-bottom: 8px; }
.open-user-hero-stat-badge { margin-top: 8px; }
.open-user-hero-stat-link { display: block; margin-top: 8px; }
.open-user-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.open-user-hero-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; background: #f1f5f9; color: #475569;
}
.open-user-hero-tag.ok { background: #dcfce7; color: #166534; }
.open-user-hero-tag.warn { background: #fef3c7; color: #92400e; }
.open-user-hero-tag.muted { background: #f8fafc; color: #94a3b8; }
.open-user-hero-tag.info { background: #e0f2fe; color: #0369a1; }

/* 新增域名表单 */
.open-domain-add-card { border-color: #dbeafe; background: linear-gradient(180deg, #fff 0%, #fafcff 100%); }
.open-domain-add-head { margin-bottom: 18px; }
.open-domain-add-head h3 { margin: 0 0 4px; font-size: 17px; }
.open-domain-add-head p { margin: 0; font-size: 13px; color: #64748b; font-weight: 400; }
.open-field-opt { font-weight: 400; color: #94a3b8; }
.open-domain-add-tip {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; padding: 12px 14px;
  background: #f8fafc; border-radius: 10px; font-size: 12px; color: #64748b; line-height: 1.55;
}
.open-domain-add-tip .fa { color: #108bed; margin-top: 2px; flex-shrink: 0; }

/* 域名列表 — 卡片式 */
.open-domain-list-card .open-user-empty { padding: 56px 24px 48px; }
.open-user-empty-domains .open-empty-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: #f0f7ff; color: #108bed; display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.open-domain-list { padding: 0; }
.open-domain-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 18px 20px; border-bottom: 1px solid #f1f5f9; transition: background .12s;
}
.open-domain-item:last-child { border-bottom: none; }
.open-domain-item:hover { background: #fafbfc; }
.open-domain-item.is-off { opacity: .82; }
.open-domain-item.is-blocked { background: #fffbfb; }
.open-domain-item-main { flex: 1; min-width: 0; }
.open-domain-item-top { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.open-domain-remark { margin-bottom: 8px; }
.open-domain-item-meta {
  display: flex; flex-wrap: wrap; gap: 12px 16px; font-size: 12px; color: #64748b; margin-top: 8px;
}
.open-domain-item-meta .fa { margin-right: 4px; color: #94a3b8; }
.open-domain-platforms-text { max-width: 280px; line-height: 1.5; }
.open-domain-item-side { flex-shrink: 0; text-align: right; min-width: 140px; }
.open-domain-risk { margin-bottom: 10px; }
.open-domain-item-actions { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }

.open-user-card h3 { margin: 0 0 16px; font-size: 16px; font-weight: 700; }

.open-user-alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.open-user-alert-warn { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.open-user-alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.open-user-alert-ok { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.open-user-alert a { font-weight: 600; }

/* 统计卡片 */
.open-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 20px; }
.open-stat-card {
  background: #fff; border-radius: 14px; padding: 18px 20px;
  border: 1px solid #e2e8f0; transition: box-shadow .15s;
}
.open-stat-card:hover { box-shadow: 0 6px 20px rgba(15,24,48,.06); }
.open-stat-label { font-size: 12px; color: #64748b; margin-bottom: 6px; }
.open-stat-value { font-size: 22px; font-weight: 800; color: #0f172a; line-height: 1.2; }
.open-stat-value small { font-size: 14px; font-weight: 600; color: #94a3b8; }
.open-stat-link { display: inline-block; margin-top: 8px; font-size: 12px; color: #108bed; text-decoration: none; font-weight: 600; }
.open-stat-link:hover { text-decoration: underline; }

/* 接入进度 */
.open-stepper { display: flex; gap: 0; margin-bottom: 20px; background: #fff; border-radius: 14px; padding: 20px; border: 1px solid #e2e8f0; }
.open-step {
  flex: 1; text-align: center; position: relative; padding: 0 8px;
}
.open-step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px; right: -50%; width: 100%; height: 2px;
  background: #e2e8f0; z-index: 0;
}
.open-step.done:not(:last-child)::after { background: #86efac; }
.open-step-num {
  width: 32px; height: 32px; line-height: 32px; border-radius: 50%; margin: 0 auto 8px;
  background: #f1f5f9; color: #64748b; font-size: 13px; font-weight: 700; position: relative; z-index: 1;
}
.open-step.done .open-step-num { background: #dcfce7; color: #166534; }
.open-step.active .open-step-num { background: #108bed; color: #fff; box-shadow: 0 0 0 4px rgba(16,139,237,.2); }
.open-step-title { font-size: 13px; font-weight: 600; color: #334155; }
.open-step-desc { font-size: 11px; color: #94a3b8; margin-top: 2px; }
.open-step a.open-step-title { color: #108bed; text-decoration: none; }

/* 快捷入口图标 */
.open-user-action { flex-direction: column; gap: 8px; min-height: 88px; }
.open-user-action-icon { font-size: 22px; line-height: 1; opacity: .85; color: #108bed; }
.open-user-action-icon .fa { font-size: 20px; }
.open-user-action-label { font-size: 13px; }

.open-user-row-actions { white-space: nowrap; }
.open-user-btn-sm {
  display: inline-block; margin: 2px 4px 2px 0; padding: 4px 10px;
  font-size: 12px; border-radius: 6px; border: 1px solid #d1d5db;
  background: #fff; color: #374151; cursor: pointer; transition: .15s;
}
.open-user-btn-sm:hover { border-color: #108bed; color: #108bed; }
.open-user-btn-sm.primary { background: #108bed; border-color: #108bed; color: #fff; }
.open-user-btn-sm.primary:hover { background: #0d7ad4; }
.open-user-btn-sm.danger { color: #dc2626; border-color: #fecaca; }
.open-user-btn-sm.danger:hover { background: #fef2f2; }
.open-user-btn-sm:disabled { opacity: .55; cursor: not-allowed; }

/* 复制按钮 */
.open-copy-btn {
  display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; margin-left: 6px;
  font-size: 11px; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 6px; cursor: pointer; vertical-align: middle; transition: all .15s;
}
.open-copy-btn:hover { color: #108bed; border-color: #108bed; background: #f0f7ff; }

/* 居中卡片（绑定微信 / 扫码结果） */
.open-user-center-card {
  max-width: 420px; margin: 32px auto; text-align: center; padding: 36px 28px;
}
.open-result-icon { font-size: 52px; line-height: 1; margin-bottom: 14px; }
.open-result-icon.ok { color: #07c160; }
.open-result-icon.err { color: #dc2626; }

/* 按钮 loading */
.btn.is-loading { opacity: .75; pointer-events: none; position: relative; }
.btn.is-loading::after {
  content: ''; display: inline-block; width: 14px; height: 14px; margin-left: 8px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%;
  animation: openSpin .6s linear infinite; vertical-align: middle;
}
@keyframes openSpin { to { transform: rotate(360deg); } }

/* 扫码框 */
.open-auth-qr-box {
  position: relative; display: inline-block; padding: 12px; background: #fff;
  border-radius: 14px; border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.open-auth-qr-box::before {
  content: ''; position: absolute; inset: 8px; border: 2px solid rgba(7,193,96,.35);
  border-radius: 10px; pointer-events: none; animation: openQrPulse 2s ease-in-out infinite;
}
@keyframes openQrPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.open-auth-qr-refresh {
  display: inline-block; margin-top: 10px; font-size: 12px; color: #108bed;
  cursor: pointer; border: none; background: none; padding: 0; font-weight: 600;
}
.open-auth-qr-refresh:hover { text-decoration: underline; }

.open-plan-card.is-featured { border-color: #108bed; box-shadow: 0 8px 28px rgba(16,139,237,.12); position: relative; }
.open-plan-badge {
  position: absolute; top: -10px; right: 16px; background: #108bed; color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}

.open-user-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.open-user-card-head h3 { margin: 0; font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.open-user-card-head h3 .fa { color: #108bed; font-size: 14px; }
.open-user-card-desc { margin: 0 0 16px; font-size: 13px; color: #64748b; line-height: 1.6; }
.open-user-card-accent { border-color: #bbf7d0; background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%); }
.open-user-card-inline .fa { color: #16a34a; margin-right: 6px; }
.open-user-card-head a { font-size: 13px; color: #108bed; text-decoration: none; font-weight: 600; }

.open-user-nav-primary { color: #108bed !important; font-weight: 700; }
.open-user-card-inline {
  padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 14px; color: #64748b;
}
.open-auth-wx-btn-sm {
  width: auto !important; max-width: none !important; padding: 10px 22px !important; font-size: 14px !important;
}

.open-user-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  align-items: end;
}
.open-user-field label { display: block; font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 6px; }
.open-user-field-wide { grid-column: 1 / -1; }
.open-user-field-action { grid-column: 1 / -1; max-width: 200px; }
.open-user-field .form-control {
  height: 42px;
  border-radius: 10px;
  border-color: #dde3ea;
  box-shadow: none;
}
.open-user-field .form-control:focus { border-color: #108bed; box-shadow: 0 0 0 3px rgba(16,139,237,.12); }
.open-user-hint { margin: 12px 0 0; font-size: 12px; color: #94a3b8; }

.open-user-table { background: #fff; margin: 0; }
.open-user-table thead th {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0 !important;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: none;
  padding: 12px 16px !important;
}
.open-user-table tbody td { padding: 14px 16px !important; vertical-align: middle !important; border-color: #f1f5f9 !important; }
.open-user-domain { font-size: 13px; background: #f1f5f9; padding: 3px 8px; border-radius: 6px; color: #0f172a; }
.open-user-sub { font-size: 12px; color: #94a3b8; margin-top: 4px; }
.open-user-platforms { font-size: 12px; color: #64748b; max-width: 220px; line-height: 1.5; }

.open-user-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.open-user-tag.ok { background: #dcfce7; color: #166534; }
.open-user-tag.warn { background: #fef3c7; color: #92400e; }
.open-user-tag.danger { background: #fee2e2; color: #991b1b; }
.open-user-tag.muted { background: #f1f5f9; color: #64748b; }

.open-user-empty {
  text-align: center;
  padding: 48px 24px;
  color: #64748b;
}
.open-user-empty p { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: #334155; }
.open-user-empty span { display: block; font-size: 13px; margin-bottom: 16px; max-width: 320px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.open-empty-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: #f0f7ff; color: #108bed; display: flex; align-items: center; justify-content: center; font-size: 26px;
}

/* 商户中心 — 统一门户组件 */
.open-user-page { animation: openFadeIn .35s ease; }

.open-user-stepper, .open-stepper {
  display: flex; gap: 0; margin-bottom: 20px; background: #fff; border-radius: 14px;
  padding: 20px 16px; border: 1px solid #e2e8f0;
}
.open-user-step, .open-step {
  flex: 1; text-align: center; position: relative; padding: 0 8px;
}
.open-user-step:not(:last-child)::after, .open-step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px; right: -50%; width: 100%; height: 2px;
  background: #e2e8f0; z-index: 0;
}
.open-user-step.is-done:not(:last-child)::after, .open-step.done:not(:last-child)::after { background: #86efac; }
.open-user-step-num, .open-step-num {
  width: 32px; height: 32px; line-height: 32px; border-radius: 50%; margin: 0 auto 8px;
  background: #f1f5f9; color: #64748b; font-size: 13px; font-weight: 700; position: relative; z-index: 1;
}
.open-user-step.is-done .open-user-step-num, .open-step.done .open-step-num { background: #dcfce7; color: #166534; }
.open-user-step.is-active .open-user-step-num, .open-step.active .open-step-num {
  background: #108bed; color: #fff; box-shadow: 0 0 0 4px rgba(16,139,237,.2);
}
.open-user-step-title, .open-step-title { font-size: 13px; font-weight: 600; color: #334155; display: block; }
.open-user-step-desc, .open-step-desc { font-size: 11px; color: #94a3b8; margin-top: 2px; }
a.open-user-step-title, a.open-step-title { color: #108bed; text-decoration: none; }

.open-user-kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px;
}
.open-user-kpi {
  display: flex; flex-direction: column; gap: 6px; padding: 16px 18px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  text-decoration: none; color: inherit; transition: box-shadow .15s, transform .15s, border-color .15s;
}
.open-user-kpi:hover {
  box-shadow: 0 8px 24px rgba(15,24,48,.08); transform: translateY(-2px);
  border-color: #bfdbfe; text-decoration: none; color: inherit;
}
.open-user-kpi-icon {
  width: 36px; height: 36px; border-radius: 10px; background: #f0f7ff; color: #108bed;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.open-user-kpi-icon.wx { background: #dcfce7; color: #16a34a; }
.open-user-kpi-label { font-size: 12px; color: #64748b; }
.open-user-kpi-value { font-size: 20px; font-weight: 800; color: #0f172a; line-height: 1.2; }
.open-user-kpi-value small { font-size: 14px; font-weight: 600; color: #94a3b8; }
.open-user-kpi-value.sm { font-size: 14px; font-weight: 700; }

.open-user-wx-strip {
  display: block; text-decoration: none; color: inherit; margin-bottom: 16px;
  border-color: #bbf7d0; background: linear-gradient(90deg, #f0fdf4 0%, #fff 100%);
  transition: box-shadow .15s, transform .15s;
}
.open-user-wx-strip:hover { box-shadow: 0 8px 24px rgba(22,163,74,.1); transform: translateY(-1px); color: inherit; text-decoration: none; }
.open-user-wx-strip-inner { display: flex; align-items: center; gap: 14px; }
.open-user-wx-strip-icon {
  width: 44px; height: 44px; border-radius: 50%; background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.open-user-wx-strip-text { flex: 1; min-width: 0; }
.open-user-wx-strip-text strong { display: block; font-size: 15px; color: #0f172a; }
.open-user-wx-strip-text span { font-size: 13px; color: #64748b; margin-left: 6px; }
.open-user-wx-strip-text p { margin: 4px 0 0; font-size: 12px; color: #64748b; }
.open-user-wx-strip-arrow { color: #94a3b8; flex-shrink: 0; }
.open-user-wx-strip:hover .open-user-wx-strip-arrow { color: #16a34a; }

.open-user-quick-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 4px;
}
.open-user-quick {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 12px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  text-decoration: none; color: #475569; font-size: 13px; font-weight: 600;
  transition: all .15s;
}
.open-user-quick .fa { font-size: 20px; color: #108bed; }
.open-user-quick:hover {
  border-color: #108bed; color: #108bed; background: #f8fbff; text-decoration: none;
  transform: translateY(-2px); box-shadow: 0 6px 16px rgba(16,139,237,.1);
}

.open-user-tip-card {
  display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; margin-top: 16px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
}
.open-user-tip-card > .fa { color: #108bed; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.open-user-tip-card strong { display: block; font-size: 14px; color: #0f172a; margin-bottom: 4px; }
.open-user-tip-card p, .open-user-tip-card span { margin: 0; font-size: 13px; color: #64748b; line-height: 1.65; }

.open-user-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px;
}
.open-user-info-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
}
.open-user-info-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: #f0f7ff; color: #108bed; display: flex; align-items: center; justify-content: center;
}
.open-user-info-item strong { display: block; font-size: 13px; color: #0f172a; margin-bottom: 2px; }
.open-user-info-item span { font-size: 12px; color: #64748b; line-height: 1.5; }

.open-bind-form { grid-template-columns: 1fr 1fr auto; align-items: end; max-width: 100%; }

.open-user-dash { animation: openFadeIn .35s ease; }

.open-user-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.open-user-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  color: #108bed;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.open-user-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,139,237,.12);
  border-color: #108bed;
  color: #108bed;
  text-decoration: none;
}
.open-user-steps { margin: 0; padding-left: 20px; line-height: 1.9; color: #475569; font-size: 14px; }
.open-user-steps + .tip { margin: 12px 0 0; font-size: 13px; color: #94a3b8; }

.open-bind-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.open-bind-box h4 { margin: 0 0 8px; font-size: 15px; }

.open-bind-box { margin-bottom: 16px; }
.open-bind-box h4 { margin: 0 0 8px; font-size: 15px; }

/* 套餐 */
.open-plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.open-plan-card {
  position: relative; background: #fff; border-radius: 16px; padding: 26px 24px 24px;
  border: 1px solid #e2e8f0; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.open-plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(15,24,48,.08); }
.open-plan-card.is-featured { border-color: #c4b5fd; background: linear-gradient(180deg, #faf5ff 0%, #fff 100%); }
.open-plan-card h3 { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.open-plan-price { font-size: 36px; font-weight: 800; color: #108bed; margin: 10px 0 8px; line-height: 1; }
.open-plan-card.is-featured .open-plan-price { color: #7c3aed; }
.open-plan-currency { font-size: 18px; font-weight: 700; vertical-align: top; margin-right: 2px; }
.open-plan-desc { color: #64748b; font-size: 13px; min-height: 40px; margin: 0 0 12px; line-height: 1.55; }
.open-plan-features { list-style: none; padding: 0; margin: 0 0 20px; }
.open-plan-features li {
  font-size: 13px; color: #475569; line-height: 1.85; padding-left: 0;
  display: flex; align-items: center; gap: 8px;
}
.open-plan-features .fa { color: #94a3b8; width: 14px; text-align: center; }
.open-plan-card .btn { border-radius: 10px; height: 44px; font-weight: 600; }
.open-plan-card .price { display: none; }
.open-plan-card ul:not(.open-plan-features) { display: none; }

/* Toast */
.open-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: #1e293b;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 9999;
  max-width: 90vw;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.open-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.open-toast-ok { background: #166534; }
.open-toast-err { background: #991b1b; }

/* 登录注册 */
.open-auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15,24,48,.1);
  border: 1px solid rgba(226,232,240,.9);
}
.open-auth-brand {
  padding: 40px 36px;
  background: linear-gradient(145deg, #0f1830 0%, #1a3a5c 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
}
.open-auth-logo { font-size: 22px; font-weight: 800; color: #fff; text-decoration: none; display: inline-block; margin-bottom: 20px; }
.open-auth-logo span { color: #6ec1ff; }
.open-auth-brand h2 { margin: 0 0 10px; font-size: 26px; font-weight: 700; }
.open-auth-brand > p { margin: 0 0 20px; opacity: .85; font-size: 14px; line-height: 1.65; }
.open-auth-features { margin: 0; padding-left: 18px; font-size: 13px; line-height: 1.85; opacity: .9; flex: 1; }
.open-auth-brand-links {
  display: flex; gap: 16px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.open-auth-brand-links a {
  font-size: 13px; color: #93c5fd; text-decoration: none; font-weight: 600;
}
.open-auth-brand-links a:hover { color: #fff; text-decoration: underline; }

.open-auth-panel { padding: 36px 40px 40px; background: #fff; }
.open-auth-panel-head { margin-bottom: 22px; }
.open-auth-panel-head h3 { margin: 0 0 6px; font-size: 22px; font-weight: 700; color: #0f172a; }
.open-auth-panel-head p { margin: 0; font-size: 13px; color: #64748b; line-height: 1.55; }
.open-auth-alert { margin-bottom: 16px; padding: 10px 14px !important; font-size: 13px; }

.open-auth-wx { text-align: center; margin-bottom: 4px; }
.open-auth-wx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; background: #07c160; color: #fff; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 15px; transition: background .15s;
}
.open-auth-wx-btn:hover { background: #06ad56; color: #fff; }
.wx-icon {
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8.5 4C4.9 4 2 6.4 2 9.3c0 1.5.8 2.9 2.1 3.9L3 17l3.6-1.9c1 .3 2 .4 3 .4.2 0 .4 0 .6-.1-.3-.9-.5-1.9-.5-2.9 0-4.1 3.6-7.4 8-7.4.3 0 .7 0 1 .1C17.1 5.5 13.1 4 8.5 4zm-2.7 5.5c-.6 0-1.1-.5-1.1-1.1s.5-1.1 1.1-1.1 1.1.5 1.1 1.1-.5 1.1-1.1 1.1zm5.4 0c-.6 0-1.1-.5-1.1-1.1s.5-1.1 1.1-1.1 1.1.5 1.1 1.1-.5 1.1-1.1 1.1zM22 14.5c0-2.5-2.6-4.6-5.8-4.6-3.2 0-5.8 2.1-5.8 4.6s2.6 4.6 5.8 4.6c.7 0 1.3-.1 1.9-.3l1.7.9-.5-1.6c1-.8 1.7-1.9 1.7-3.2zm-7.6-1.4c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm3.5 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.open-auth-wx-qr { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.open-auth-mp-scan img { display: block; border-radius: 10px; border: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.open-auth-scan-status { font-size: 13px; color: #07c160; margin: 10px 0 0; font-weight: 600; }
.open-auth-wx-tip { font-size: 12px; color: #94a3b8; margin: 10px 0 0; }
.open-auth-divider { text-align: center; margin: 22px 0; position: relative; }
.open-auth-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: #e8ecf0; }
.open-auth-divider span { position: relative; background: #fff; padding: 0 14px; color: #94a3b8; font-size: 12px; }

/* 表单 — 图标输入框 */
.open-auth-form { margin-top: 4px; }
.open-auth-field { margin-bottom: 16px; }
.open-auth-field label {
  display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 8px;
}
.open-auth-input-wrap {
  display: flex; align-items: center; gap: 0;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.open-auth-input-wrap:focus-within {
  border-color: #108bed;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(16,139,237,.12);
}
.open-auth-input-icon {
  flex-shrink: 0; width: 18px; text-align: center;
  color: #94a3b8; font-size: 15px;
  transition: color .15s;
}
.open-auth-input-wrap:focus-within .open-auth-input-icon { color: #108bed; }
.open-auth-input {
  flex: 1; min-width: 0; height: 46px;
  border: none; background: transparent;
  font-size: 15px; color: #0f172a;
  outline: none; box-shadow: none;
  padding: 0 0 0 10px;
}
.open-auth-input::placeholder { color: #94a3b8; font-size: 14px; }

.open-auth-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 48px; margin-top: 8px;
  border: none; border-radius: 12px;
  background: linear-gradient(135deg, #108bed, #0d7ad4);
  color: #fff; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: transform .12s, box-shadow .15s, opacity .15s;
  box-shadow: 0 4px 14px rgba(16,139,237,.35);
}
.open-auth-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(16,139,237,.4); color: #fff; }
.open-auth-submit:disabled,
.open-auth-submit.is-loading { opacity: .75; cursor: not-allowed; transform: none; }
.open-auth-submit .fa { font-size: 13px; opacity: .9; }

.open-captcha-row { display: flex; gap: 10px; align-items: center; }
.open-captcha-img { height: 42px; border-radius: 8px; cursor: pointer; border: 1px solid #dde3ea; }
.open-auth-wx-hint {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; text-align: left;
}
.wx-icon-lg { flex-shrink: 0; width: 36px; height: 36px; margin-top: 2px; }

@media (max-width: 768px) {
  .open-user-menu-btn { display: flex; }
  .open-user-nav-main {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid #e2e8f0; padding: 12px 16px;
    flex-direction: column; align-items: stretch; box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .open-user-nav-main.is-open { display: flex; }
  .open-user-nav-main .open-user-nav-link { padding: 12px 14px; }
  .open-user-header { position: relative; }
  .open-user-header-inner { flex-direction: row; flex-wrap: wrap; position: relative; }
  .open-user-account { margin-left: 0; width: 100%; order: 3; justify-content: flex-start; padding-top: 8px; border-top: 1px solid #f1f5f9; }
  .open-stat-grid, .open-user-kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .open-user-quick-grid { grid-template-columns: repeat(2, 1fr); }
  .open-user-stepper, .open-stepper { flex-direction: column; gap: 16px; }
  .open-user-step:not(:last-child)::after, .open-step:not(:last-child)::after { display: none; }
  .open-user-form-grid, .open-bind-form { grid-template-columns: 1fr; }
  .open-user-field-action { max-width: none; }
  .open-auth-shell { grid-template-columns: 1fr; }
  .open-auth-brand { padding: 28px 24px; }
  .open-auth-panel { padding: 28px 24px 32px; }
  .open-auth-page-wrap { padding: 20px 15px 40px; }
  .open-domain-item { flex-direction: column; }
  .open-domain-item-side { text-align: left; min-width: 0; width: 100%; }
  .open-domain-item-actions { justify-content: flex-start; }
  .open-user-hero { padding: 20px; }
  .open-user-hero-stat { text-align: left; width: 100%; }
  .open-order-item { padding: 14px 16px; }
  .open-user-info-grid, .open-account-rules { grid-template-columns: 1fr; }
  .open-account-grid { grid-template-columns: 1fr; }
  .open-plan-grid { grid-template-columns: 1fr; }
}

/* 账号设置页 */
.open-account-flash { margin-bottom: 16px; }
.open-account-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 16px; margin-bottom: 16px;
}
.open-account-panel { margin-bottom: 0; height: 100%; }
.open-account-panel .open-user-card-head { margin-bottom: 18px; }

.open-account-methods { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.open-account-method {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 1px solid #e2e8f0; border-radius: 12px; background: #fafbfc; transition: border-color .15s, background .15s;
}
.open-account-method.is-on { border-color: #bbf7d0; background: #f0fdf4; }
.open-account-method-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: #e2e8f0; color: #64748b; display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.open-account-method.is-on .open-account-method-icon { background: #dcfce7; color: #16a34a; }
.open-account-method-icon.wx { background: #dcfce7; color: #16a34a; }
.open-account-method div { flex: 1; min-width: 0; }
.open-account-method strong { display: block; font-size: 14px; color: #0f172a; margin-bottom: 2px; }
.open-account-method span { font-size: 12px; color: #64748b; line-height: 1.45; }
.open-account-method span code { font-size: 11px; }
.open-account-method-badge {
  flex-shrink: 0; font-style: normal; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px;
}
.open-account-method-badge.ok { background: #dcfce7; color: #166534; }
.open-account-method-badge.warn { background: #fef3c7; color: #92400e; }
.open-account-method-badge.muted { background: #f1f5f9; color: #94a3b8; }

.open-account-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; padding-top: 18px; border-top: 1px solid #f1f5f9;
}
.open-account-meta > div { text-align: center; }
.open-account-meta dt { font-size: 11px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.open-account-meta dd { margin: 0; font-size: 13px; color: #0f172a; font-weight: 600; }

.open-account-wx-panel.is-bound { border-color: #bbf7d0; background: linear-gradient(180deg, #fff 0%, #fafffe 100%); }
.open-account-wx-profile {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px; margin-bottom: 16px; border-radius: 12px; background: #f0fdf4; border: 1px solid #bbf7d0;
}
.open-account-wx-profile-main { display: flex; align-items: center; gap: 14px; min-width: 0; }
.open-account-wx-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(22,163,74,.15); }
.open-account-wx-avatar.lg { width: 64px; height: 64px; }
.open-account-wx-avatar.sm { width: 44px; height: 44px; }
.open-account-wx-placeholder {
  width: 64px; height: 64px; border-radius: 50%; background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.open-account-wx-name { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.open-account-wx-sub { font-size: 13px; color: #64748b; }
.open-account-wx-sub code { font-size: 12px; }

.open-account-danger {
  border: 1px solid #fecaca; border-radius: 12px; overflow: hidden; background: #fff;
}
.open-account-danger summary {
  padding: 12px 16px; cursor: pointer; font-size: 13px; font-weight: 600; color: #b91c1c;
  list-style: none; display: flex; align-items: center; gap: 8px; user-select: none;
}
.open-account-danger summary::-webkit-details-marker { display: none; }
.open-account-danger summary:hover { background: #fef2f2; }
.open-account-danger-body { padding: 0 16px 16px; border-top: 1px solid #fecaca; background: #fffafb; }
.open-account-danger-body p { margin: 12px 0; font-size: 13px; color: #64748b; line-height: 1.65; }
.open-account-unbind-form { display: flex; flex-direction: column; gap: 12px; max-width: 360px; }
.open-account-unbind-form .open-user-field { margin: 0; }
.open-account-unbind-form label { font-size: 12px; font-weight: 600; color: #475569; margin-bottom: 4px; display: block; }
.open-account-check {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #475569; cursor: pointer; line-height: 1.5;
}
.open-account-check input { margin-top: 4px; flex-shrink: 0; }

.open-account-wx-empty {
  text-align: center; padding: 32px 20px 28px;
}
.open-account-wx-empty .open-empty-icon.wx {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, #dcfce7, #f0fdf4); color: #16a34a;
  display: flex; align-items: center; justify-content: center; font-size: 32px;
}
.open-account-wx-empty p { margin: 0 0 6px; font-size: 16px; font-weight: 700; color: #0f172a; }
.open-account-wx-empty > span { display: block; font-size: 13px; color: #64748b; line-height: 1.6; max-width: 280px; margin: 0 auto 20px; }

.open-account-pwd-card { border-color: #dbeafe; background: linear-gradient(180deg, #fff 0%, #fafcff 100%); margin-top: 16px; }
.open-account-pwd-form { max-width: 640px; }
.open-account-note { font-size: 13px; color: #64748b; margin: -8px 0 18px; line-height: 1.65; }
.open-account-foot { margin-top: 8px; }
.open-account-foot .open-stat-link { display: inline-flex; align-items: center; gap: 6px; }
.open-account-inline-alert { margin: 16px 0 0; text-align: left; }

/* 绑定微信页 */
.open-user-page-wxbind .open-user-center-card { margin-top: 0; }
.open-wxbind-card { max-width: 440px; margin-left: auto; margin-right: auto; }
.open-wxbind-alert { margin: 0; text-align: center; }
.open-user-page-wxbind .open-user-tip-card { max-width: 440px; margin-left: auto; margin-right: auto; }
.open-user-page-wxbind .open-account-foot { text-align: center; margin-top: 16px; }
.open-stat-link .fa { font-size: 11px; opacity: .85; }

@media (max-width: 900px) {
  .open-account-meta { grid-template-columns: 1fr; gap: 14px; }
  .open-account-meta > div { text-align: left; display: flex; justify-content: space-between; align-items: center; }
  .open-account-meta dt { margin: 0; }
}
