/* 支付管理中心 SPA 主题（XTUIDC / TDesign 设计语言）
   品牌蓝 #409eff（与左侧菜单选中色一致）· 白侧栏 · 6px 圆角 · 轻阴影 · PingFang SC */
:root {
  --pc-primary: #409eff;
  --pc-primary-hover: #66b1ff;
  --pc-primary-light: #ecf5ff;
  --pc-accent: #42c2fb;
  --pc-bg: #f3f3f3;
  --pc-card: #fff;
  --pc-border: #dcdcdc;
  --pc-text: #1f2329;
  --pc-text-2: #6b7280;
  --pc-text-3: #999;
  --pc-success: #50cd89;
  --pc-success-bg: #f1fbf6;
  --pc-danger: #f1416c;
  --pc-danger-bg: #fef0f3;
  --pc-radius: 6px;
  --pc-shadow: 0 2px 6px rgba(0, 0, 0, .04);
  --pc-side-bg: #fff;
  --pc-side-bg-2: #fff;
  --pc-side-text: #1f2329;
  --pc-side-active: #409eff;
  /* Element Plus 主色家族（跟随品牌蓝 #409eff，与左侧菜单选中色一致） */
  --el-color-primary: #409eff;
  --el-color-primary-light-3: #79bbff;
  --el-color-primary-light-5: #a0cfff;
  --el-color-primary-light-7: #c6e2ff;
  --el-color-primary-light-8: #d9ecff;
  --el-color-primary-light-9: #ecf5ff;
  --el-color-primary-dark-2: #337ecc;
  --el-color-success: #50cd89;
  --el-color-success-light-9: #f1fbf6;
  --el-color-danger: #f1416c;
  --el-color-danger-light-9: #fef0f3;
  --el-color-warning: #ed7b2f;
  /* Element Plus 组件文字/边框跟随 */
  --el-text-color-primary: #1f2329;
  --el-text-color-regular: #6b7280;
  --el-text-color-secondary: #999;
  --el-border-color: #dcdcdc;
  /* 全局字体放大一档 */
  --el-font-size-base: 15px;
  --el-font-size-small: 14px;
  --el-font-size-extra-small: 13px;
}
html, body { height: 100%; margin: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: var(--pc-bg);
  color: var(--pc-text);
}
html.dark body { background: #10151b; }

#app { height: 100%; }
/* n-config-provider 参与高度链：否则 .mcl-root height:100% 失效 → 整页滚动，左侧菜单与右侧内容无法独立滚动 */
#app > .n-config-provider { height: 100%; }
.pc-root { height: 100%; display: flex; }

/* 主按钮：TDesign 扁平品牌蓝（蓝底必须白字，含 plain 描边态） */
.el-button--primary {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
  color: #fff;
  border-radius: var(--pc-radius);
}
.el-button--primary:hover, .el-button--primary:focus {
  background: var(--pc-primary-hover);
  border-color: var(--pc-primary-hover);
  color: #fff;
}
.el-button--primary.is-plain, .el-button--primary.is-plain:hover, .el-button--primary.is-plain:focus {
  color: #fff;
}

/* 侧边栏（TDesign 白色浅色菜单） */
.pc-sidebar {
  width: 232px;
  flex-shrink: 0;
  background: var(--pc-side-bg);
  border-right: 1px solid var(--pc-border);
  display: flex;
  flex-direction: column;
  transition: width .2s;
  overflow: hidden;
}
.pc-root.collapsed .pc-sidebar { width: 64px; }
.pc-logo {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--pc-text);
  font-size: 16px;
  font-weight: 700;
  background: var(--pc-side-bg-2);
  border-bottom: 1px solid var(--pc-border);
  white-space: nowrap;
  flex-shrink: 0;
}
.pc-root.collapsed .pc-logo { padding: 0; justify-content: center; }
.pc-logo .mark {
  width: 26px; height: 26px;
  border-radius: 3px;
  background: var(--pc-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.pc-menu { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 8px 0; }
.pc-menu::-webkit-scrollbar { width: 4px; }
.pc-menu::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 2px; }

/* element-plus 菜单重绘为 TDesign 白侧栏 */
.pc-menu .el-menu { border-right: none; background: transparent; }
.pc-menu .el-sub-menu .el-menu-item,
.pc-menu .el-menu-item {
  background: transparent !important;
  color: var(--pc-side-text);
  height: 44px;
  line-height: 44px;
}
.pc-menu .el-sub-menu__title {
  background: transparent !important;
  color: var(--pc-side-text);
  height: 44px;
  line-height: 44px;
}
.pc-menu .el-sub-menu__title:hover,
.pc-menu .el-menu-item:hover { background: var(--pc-bg) !important; color: var(--pc-primary) !important; }
.pc-menu .el-menu-item.is-active {
  background: var(--pc-primary-light) !important;
  color: var(--pc-primary) !important;
  border-radius: var(--pc-radius);
}
.pc-menu .el-sub-menu .el-menu { background: transparent; }
.pc-menu .el-sub-menu .el-menu-item { padding-left: 50px !important; }
.pc-root.collapsed .pc-menu .el-menu-item span,
.pc-root.collapsed .pc-menu .el-sub-menu__title span,
.pc-root.collapsed .pc-menu .el-sub-menu__icon-arrow { display: none; }
.pc-root.collapsed .pc-logo span:not(.mark) { display: none; }

/* 主区域 */
.pc-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.pc-topbar {
  height: 48px;
  background: var(--pc-card);
  border-bottom: 1px solid var(--pc-border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  flex-shrink: 0;
}
html.dark .pc-topbar { background: #1a2029; border-color: #2b333f; }
.pc-content { flex: 1; overflow-y: auto; padding: 18px 20px; }

/* 卡片（TDesign：6px 圆角 + 轻阴影） */
.pc-card {
  background: var(--pc-card);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  padding: 18px;
  margin-bottom: 16px;
}
html.dark .pc-card { background: #1a2029; }
.pc-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--pc-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
html.dark .pc-card-title { color: #e6e9ef; }
.pc-card-title::before {
  content: '';
  width: 3px; height: 14px;
  border-radius: 2px;
  background: var(--pc-primary);
}
.pc-card-title .sub { font-size: 14px; font-weight: 400; color: var(--pc-text-3); margin-left: 4px; }

/* 统计卡片（XTUIDC：6px 圆角、26px/700 数字、涨绿跌红徽章） */
.pc-stat-grid { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.pc-stat {
  flex: 1;
  min-width: 190px;
  background: var(--pc-card);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  padding: 18px 20px;
}
html.dark .pc-stat { background: #1a2029; }
.pc-stat .head { display: flex; justify-content: space-between; align-items: center; color: var(--pc-text-2); font-size: 14px; }
.pc-stat .icon {
  width: 34px; height: 34px;
  border-radius: var(--pc-radius);
  background: var(--el-color-primary-light-9);
  color: var(--pc-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.pc-stat .num { margin-top: 10px; font-size: 26px; font-weight: 700; color: #1f2329; line-height: 1.2; }
html.dark .pc-stat .num { color: #e6e9ef; }
.pc-stat .label { margin-top: 6px; font-size: 14px; color: var(--pc-text-2); }
.pc-stat .label b { color: var(--pc-primary); font-weight: 600; }

/* 趋势徽章（涨绿 / 跌红） */
.pc-trend {
  display: inline-block;
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 400;
}
.pc-trend.up { color: var(--pc-success); background: var(--pc-success-bg); }
.pc-trend.down { color: var(--pc-danger); background: var(--pc-danger-bg); }

/* 快捷操作 */
.pc-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pc-quick {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--pc-radius);
  background: var(--pc-bg);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .15s;
}
html.dark .pc-quick { background: #232b36; }
.pc-quick:hover { border-color: var(--pc-primary); background: var(--pc-primary-light); }
.pc-quick .q-icon { width: 40px; height: 40px; border-radius: var(--pc-radius); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; }
.pc-quick .q-num { font-size: 20px; font-weight: 700; }
.pc-quick .q-label { font-size: 14px; color: var(--pc-text-3); }

/* 图表 */
.pc-chart { width: 100%; height: 320px; }

/* 表格工具栏 */
.pc-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; align-items: center; }
.pc-toolbar .el-input { width: 200px; }
.pc-pager { display: flex; justify-content: flex-end; margin-top: 14px; }

/* 登录页（XTUIDC：白底 + 柔光几何背景，表单左上定位） */
.pc-login {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 88% 18%, rgba(54, 110, 244, .14), transparent 34%),
    radial-gradient(circle at 96% 6%, rgba(66, 194, 251, .16), transparent 26%),
    radial-gradient(circle at 82% 42%, rgba(0, 82, 217, .07), transparent 30%),
    radial-gradient(circle at 68% 88%, rgba(66, 194, 251, .08), transparent 28%),
    linear-gradient(160deg, #fff 55%, #f4f7ff 100%);
  background-size: cover;
}
.pc-login-card {
  position: absolute;
  top: 22%;
  left: 5%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: block;
  width: auto;
  max-width: none;
  min-height: 0;
  overflow: visible;
}
.pc-login-brand {
  display: block;
  background: none;
  color: var(--pc-text);
  padding: 0;
}
.pc-login-brand .logo { display: none; }
.pc-login-brand h2 { margin: 0; font-size: 32px; line-height: 40px; font-weight: 700; }
.pc-login-brand p { color: var(--pc-text-2); font-size: 14px; line-height: 1.9; margin: 10px 0 0; }
.pc-login-brand .foot { position: fixed; left: 5%; bottom: 64px; color: var(--pc-text-3); font-size: 14px; }
.pc-login-form { width: 400px; padding: 0; margin-top: 40px; display: block; }
.pc-login-form h1 { display: none; }
.pc-login-form .sub { margin: 0 0 24px; color: var(--pc-text-2); font-size: 14px; }
@media (max-width: 760px) {
  .pc-login-card { left: 6%; right: 6%; top: 12%; }
  .pc-login-form { width: 100%; }
}

/* 占位页 */
.pc-empty { text-align: center; padding: 80px 20px; color: var(--pc-text-3); }
.pc-empty .icon { font-size: 48px; opacity: .5; }
.pc-empty h3 { margin: 14px 0 8px; font-size: 17px; color: var(--pc-text-2); }
.pc-empty p { font-size: 14px; margin: 0; }

/* ============================================================
   2026-08-27 商户中心新版（复刻 pay.xtuzy.cn 用户中心）
   ============================================================ */

/* ---------- 登录页 ---------- */
.mclogin {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4ecff 100%);
  padding: 24px;
  box-sizing: border-box;
}
.mclogin-card {
  width: min(1020px, 100%);
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(47, 84, 235, .14);
}
.mclogin-left {
  width: 40%;
  padding: 40px;
  background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
  color: #fff;
  display: flex; flex-direction: column;
  box-sizing: border-box;
}
.mclogin-brand h1 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.mclogin-brand p { margin: 0; font-size: 17px; color: rgba(255, 255, 255, .8); }
.mclogin-features { margin-top: 42px; display: flex; flex-direction: column; gap: 26px; }
.mclogin-feature { display: flex; align-items: flex-start; }
.mclogin-feature-icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
  margin-right: 16px;
}
.mclogin-feature-icon .am-icon { width: 20px; height: 20px; }
.mclogin-feature h3 { margin: 0 0 5px; font-size: 18px; font-weight: 600; }
.mclogin-feature p { margin: 0; font-size: 14px; color: rgba(255, 255, 255, .8); }
.mclogin-copy { margin-top: auto; padding-top: 48px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.mclogin-right { width: 60%; padding: 48px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
.mclogin-right-full { width: 100%; }
.mclogin-formwrap { width: min(420px, 100%); }
.mclogin-formwrap h2 { margin: 0; font-size: 24px; font-weight: 700; color: #404040; }
.mclogin-sub { margin: 6px 0 0; font-size: 14px; color: #a3a3a3; }
.mclogin-tabs { display: flex; border-bottom: 1px solid #e5e5e5; margin: 24px 0 26px; }
.mclogin-tab {
  padding: 12px 16px;
  font-size: 14.5px; font-weight: 500; color: #737373;
  cursor: pointer; user-select: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s;
}
.mclogin-tab.active { color: #409eff; border-bottom-color: #409eff; }
.mclogin-tip { font-size: 14px; color: #f56c6c; margin-bottom: 12px; }
.mclogin-tip.mclogin-ok { color: #67c23a; }
.mclogin-field { margin-bottom: 16px; }
.mclogin-field label { display: block; font-size: 14px; font-weight: 500; color: #404040; margin-bottom: 7px; }
.mclogin-inputwrap { position: relative; }
.mclogin-inputicon {
  position: absolute; left: 0; top: 0; bottom: 0; width: 40px;
  display: flex; align-items: center; justify-content: center;
  color: #a3a3a3;
}
.mclogin-inputicon .am-icon { width: 17px; height: 17px; }
.mclogin-inputwrap input {
  width: 100%; height: 44px;
  padding: 0 44px 0 40px;
  border: 1px solid #e5e5e5; border-radius: 8px;
  font-size: 14px; color: #262626;
  box-sizing: border-box; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.mclogin-inputwrap input:focus { border-color: #409eff; box-shadow: 0 0 0 3px rgba(64, 158, 255, .12); }
.mclogin-eye {
  position: absolute; right: 0; top: 0; bottom: 0; width: 44px;
  border: 0; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #a3a3a3;
}
.mclogin-eye .am-icon { width: 17px; height: 17px; }
.mclogin-options { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 20px; }
.mclogin-remember { font-size: 13.5px; color: #525252; display: flex; align-items: center; gap: 6px; }
.mclogin-remember input { width: 16px; height: 16px; accent-color: #409eff; }
.mclogin-forgot { font-size: 13.5px; color: #409eff; text-decoration: none; }
.mclogin-btn {
  width: 100%; height: 46px;
  border: 0; border-radius: 8px; cursor: pointer;
  background: #409eff; color: #fff;
  font-size: 15px; font-weight: 600;
  letter-spacing: .3em; text-indent: .3em;
  box-shadow: 0 4px 12px rgba(64, 158, 255, .3);
  transition: background .2s;
}
.mclogin-btn:hover { background: #66b1ff; }
.mclogin-btn:disabled { opacity: .6; cursor: not-allowed; }
.mclogin-reg { margin-top: 18px; text-align: center; font-size: 13.5px; }
.mclogin-reg a { color: #409eff; text-decoration: none; }
.mclogin-reg a:hover { text-decoration: underline; }
.mclogin-card-simple { max-width: 560px; }
@media (max-width: 800px) {
  .mclogin-left { display: none; }
  .mclogin-right { width: 100%; }
}

/* ---------- 外壳布局 ---------- */
.mcl-root { height: 100%; }
.mcl-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.mcl-loader-inner { text-align: center; }
.mcl-loader-text { margin-bottom: 20px; }
.mcl-loader-main { display: block; font-size: 26px; font-weight: 600; color: #303133; }
.mcl-loader-sub { display: block; margin-top: 6px; font-size: 14px; color: #909399; }
.mcl-loader-dots { display: flex; gap: 8px; justify-content: center; }
.mcl-loader-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #409eff;
  animation: mclbounce 1s ease-in-out infinite;
}
.mcl-loader-dots span:nth-child(2) { animation-delay: .15s; }
.mcl-loader-dots span:nth-child(3) { animation-delay: .3s; }
.mcl-loader-dots span:nth-child(4) { animation-delay: .45s; }
.mcl-loader-dots span:nth-child(5) { animation-delay: .6s; }
.mcl-loader-dots span:nth-child(6) { animation-delay: .75s; }
@keyframes mclbounce {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50%      { transform: translateY(-10px); opacity: 1; }
}
.mcl-container { height: 100%; display: flex; }
.mcl-sidebar {
  width: 64px; flex: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-right: 1px solid #e4e7ed;
  padding: 16px 0;
  display: flex; flex-direction: column; align-items: center;
  box-sizing: border-box;
}
.mcl-sidebar-logo { width: 40px; height: 40px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; }
.mcl-sidebar-logo img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.mcl-sidebar-nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mcl-nav-item {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #909399; cursor: pointer;
  transition: all .2s;
}
.mcl-nav-item .am-icon { width: 20px; height: 20px; }
.mcl-nav-item:hover { color: #409eff; background: rgba(64, 158, 255, .08); }
.mcl-nav-item.active {
  background: linear-gradient(135deg, #409eff 0%, #66b1ff 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(64, 158, 255, .4);
}
.mcl-subsidebar {
  width: 200px; flex: none;
  background: #fff;
  border-right: 1px solid #e4e7ed;
  display: flex; flex-direction: column;
}
.mcl-subsidebar-header { padding: 20px; height: 65px; box-sizing: border-box; display: flex; align-items: center; }
.mcl-subsidebar-title { font-size: 16px; font-weight: 600; color: #303133; }
.mcl-subsidebar-menu { flex: 1; overflow-y: auto; padding: 0 12px 12px; }
.mcl-menu-item {
  height: 44px;
  display: flex; align-items: center;
  padding: 0 16px;
  margin-bottom: 2px;
  border-radius: 8px;
  font-size: 14px; font-weight: 400; color: #606266;
  cursor: pointer; user-select: none;
  transition: all .15s;
}
.mcl-menu-item:hover { background: #f5f7fa; color: #409eff; }
.mcl-menu-item.active { color: #409eff; font-weight: 600; background: rgba(64, 158, 255, .08); }
.mcl-area { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mcl-header {
  height: 56px; flex: none;
  background: #fff;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #e4e7ed;
  box-sizing: border-box;
}
.mcl-header-left { display: flex; align-items: center; gap: 12px; }
.mcl-breadcrumb { display: flex; align-items: center; gap: 6px; }
.mcl-breadcrumb-item { font-size: 14px; color: #909399; }
.mcl-breadcrumb-separator { font-size: 14px; color: #c0c4cc; }
.mcl-breadcrumb-item.active { color: #303133; font-weight: 500; }
.mcl-header-actions { display: flex; gap: 4px; }
.mcl-action-btn {
  width: 32px; height: 32px;
  border: 0; border-radius: 8px; cursor: pointer;
  background: #f5f7fa; color: #909399;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.mcl-action-btn .am-icon { width: 16px; height: 16px; }
.mcl-action-btn:hover { color: #409eff; background: rgba(64, 158, 255, .08); }
.mcl-header-right { display: flex; align-items: center; gap: 14px; }
.mcl-global-search { position: relative; }
.mcl-global-search-input {
  width: 220px; height: 36px;
  padding: 0 36px 0 14px;
  border: 1px solid #dcdfe6; border-radius: 18px;
  background: #f5f7fa; font-size: 14px; color: #303133;
  box-sizing: border-box; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.mcl-global-search-input:focus { border-color: #409eff; background: #fff; box-shadow: 0 0 0 3px rgba(64, 158, 255, .1); }
.mcl-global-search-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 14px; }
.mcl-search-dropdown {
  position: absolute; top: 44px; left: 0; right: 0;
  background: #fff; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  padding: 6px; z-index: 300;
}
.mcl-search-result-header { padding: 8px 12px; font-size: 14px; color: #909399; background: #fafafa; border-radius: 4px; margin-bottom: 4px; }
.mcl-search-result { padding: 8px 12px; font-size: 14px; color: #303133; cursor: pointer; border-radius: 6px; }
.mcl-search-result:hover { background: #f0f7ff; }
.mcl-user-balance {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 18px;
  background: rgba(103, 194, 58, .1);
  color: #67c23a; font-size: 14px; font-weight: 500;
}
.mcl-user-balance .am-icon { width: 15px; height: 15px; }
.mcl-lang-switch { position: relative; cursor: pointer; }
.mcl-lang-btn { font-size: 18px; }
.mcl-lang-dropdown {
  position: absolute; top: 40px; right: 0; width: 160px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  padding: 6px; z-index: 300;
  display: none;
}
.mcl-lang-switch:hover .mcl-lang-dropdown { display: block; }
.mcl-lang-header { padding: 10px 14px; font-size: 14px; font-weight: 500; color: #909399; }
.mcl-lang-option { display: flex; align-items: center; gap: 8px; padding: 10px 14px; font-size: 14px; color: #606266; border-radius: 6px; cursor: pointer; }
.mcl-lang-option:hover { background: #f5f7fa; }
.mcl-lang-option.active { color: #409eff; background: rgba(64, 158, 255, .1); }
.mcl-lang-flag { font-size: 15px; }
.mcl-notification-btn {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f5f7fa; color: #909399;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mcl-notification-btn .am-icon { width: 17px; height: 17px; }
.mcl-notification-badge {
  position: absolute; top: -1px; right: -1px;
  min-width: 15px; height: 15px;
  border-radius: 8px;
  background: #f56c6c; color: #fff;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 2px solid #fff;
}
.mcl-user-dropdown {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}
.mcl-user-dropdown:hover { background: #f5f7fa; }
.mcl-user-avatar {
  width: 32px; height: 32px; flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #409eff, #66b1ff);
  color: #fff; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.mcl-user-name { font-size: 14px; font-weight: 500; color: #303133; max-width: 110px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mcl-user-menu {
  position: absolute; top: 44px; right: 0; width: 150px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  padding: 6px; z-index: 300;
  display: none;
}
.mcl-user-dropdown:hover .mcl-user-menu { display: block; }
.mcl-user-menu-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; font-size: 14px; color: #606266; border-radius: 6px; cursor: pointer; }
.mcl-user-menu-item:hover { background: #f5f7fa; }
.mcl-user-menu-item .am-icon { width: 15px; height: 15px; }
.mcl-user-menu-divider { height: 1px; background: #ebeef5; margin: 4px 0; }
.mcl-content {
  flex: 1; overflow-y: auto;
  background: #f5f7fa;
  padding: 20px;
  box-sizing: border-box;
}

/* ---------- 占位页 ---------- */
.mcstub-head { font-size: 18px; font-weight: 600; color: #303133; margin-bottom: 14px; }
.mcstub-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  padding: 70px 20px; text-align: center;
}
.mcstub-ico { font-size: 44px; margin-bottom: 14px; }
.mcstub-title { font-size: 17px; font-weight: 600; color: #303133; margin-bottom: 8px; }
.mcstub-desc { font-size: 13.5px; color: #909399; }

/* ---------- 功能页通用 ---------- */
.mc-page-head { font-size: 18px; font-weight: 600; color: #303133; margin-bottom: 14px; }
.mc-stat-row { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.mc-stat-card { flex: 1; min-width: 180px; background: #fff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, .1); padding: 18px 20px; box-sizing: border-box; }
.mc-stat-label { font-size: 14px; color: #909399; margin-bottom: 8px; }
.mc-stat-num { font-size: 24px; font-weight: 700; color: #303133; }
.mc-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 12px rgba(0, 0, 0, .1); padding: 20px; margin-bottom: 14px; box-sizing: border-box; }
.mc-card-title { font-size: 15px; font-weight: 600; color: #303133; margin-bottom: 16px; }
.mc-form-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.mc-hint { font-size: 13.5px; color: #909399; line-height: 1.7; }
.mc-pager { display: flex; justify-content: flex-end; margin-top: 14px; }
.mc-link { color: #409eff; text-decoration: none; }
.mc-link:hover { text-decoration: underline; }
.mc-recharge-result { margin-top: 16px; }

/* ---------- 大屏/认证 ---------- */
.mc-big-row { display: flex; gap: 14px; }
.mc-big-row > .mc-card { flex: 1; min-width: 0; }
.mc-cert-status { display: flex; align-items: flex-start; gap: 18px; }
.mc-cert-info { font-size: 14px; color: #606266; line-height: 2; }
@media (max-width: 900px) { .mc-big-row { flex-direction: column; } }

/* ---------- 会员升级 ---------- */
.mc-group-row { display: flex; gap: 14px; flex-wrap: wrap; }
.mc-group-card {
  width: 240px; background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  padding: 24px 20px; text-align: center; box-sizing: border-box;
  border: 2px solid transparent;
}
.mc-group-card.current { border-color: #67c23a; }
.mc-group-name { font-size: 16px; font-weight: 600; color: #303133; }
.mc-group-price { font-size: 26px; font-weight: 700; color: #e6a23c; margin: 12px 0 4px; }
.mc-group-price span { font-size: 14px; color: #909399; font-weight: 400; }
.mc-group-remark { font-size: 14px; color: #909399; min-height: 38px; margin-bottom: 14px; }

/* ============ 经营快报（对齐后台） ============ */
.rpt-page {
  margin: -18px -20px;
  padding: 18px 20px 24px;
  min-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #eef4fe 0%, #f7f9fc 100%);
}
.rpt-head { display: flex; align-items: center; justify-content: flex-start; gap: 14px; margin-bottom: 16px; }
.rpt-head h2 { font-size: 20px; font-weight: 700; color: var(--pc-text); }
.rpt-tools { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.rpt-tools .el-button { height: 34px; border-radius: 999px; padding: 0 16px; font-size: 14px; margin-left: 0; }
.rpt-tools .el-button .el-icon { margin-right: 6px; }
.rpt-btn-plain { background: #fff; border: 1px solid #d9d9d9; color: var(--pc-text); }
.rpt-btn-plain:hover { border-color: #547bff; color: #547bff; background: #fff; }
.rpt-btn-primary { background: #547bff; border: 1px solid #547bff; color: #fff; }
.rpt-btn-primary:hover { background: #3d8eff; border-color: #3d8eff; color: #fff; }
.rpt-month { width: 172px; }
.rpt-tools .el-date-editor { height: 34px; border-radius: 999px; }
.rpt-tools .el-date-editor .el-input__wrapper {
  border-radius: 999px;
  box-shadow: 0 0 0 1px #d9d9d9 inset;
  background: #fff;
  padding-left: 14px;
  transition: box-shadow .15s;
}
.rpt-tools .el-date-editor .el-input__wrapper:hover { box-shadow: 0 0 0 1px #547bff inset; }
.rpt-tools .el-date-editor .el-input__inner { color: var(--pc-text); }
.rpt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 16px; }
.rpt-stat {
  background: #fff; border-radius: 12px; padding: 20px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
}
.rpt-stat-icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.rpt-stat-body { min-width: 0; }
.rpt-stat-label { font-size: 14px; color: var(--pc-text-3); }
.rpt-stat-num { font-size: 28px; font-weight: 800; color: var(--pc-text); margin-top: 6px; font-variant-numeric: tabular-nums; }
.rpt-num-line { display: flex; align-items: center; flex-wrap: wrap; }
.rpt-dots-col {
  display: flex; flex-direction: column; gap: 2px;
  margin-left: 14px; font-size: 14px; font-weight: 400;
  color: var(--pc-text-3); line-height: 1.5;
}
.rpt-dot-line { display: flex; align-items: center; }
.rpt-stat-sub { font-size: 14px; color: var(--pc-text-3); margin-top: 4px; line-height: 1.7; }
.rpt-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rpt-card { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 6px rgba(0, 0, 0, .04); margin-bottom: 16px; display: flex; flex-direction: column; }
.rpt-detail { margin-bottom: 0; flex: 1; display: flex; flex-direction: column; }
.rpt-detail .rpt-cols { flex: 1; }
.rpt-card-title { font-size: 16px; font-weight: 700; color: var(--pc-text); margin-bottom: 6px; }
.rpt-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; border-bottom: 1px solid #f0f3f8; font-size: 16px; flex: 1;
}
.rpt-row:last-child { border-bottom: none; }
.rpt-row span { color: var(--pc-text-2); }
.rpt-row b { color: var(--pc-text); font-weight: 700; font-variant-numeric: tabular-nums; }
.rpt-green { color: #10b981 !important; }
.rpt-blue { color: #547bff !important; }
.rpt-dots { font-size: 14px; color: var(--pc-text-3); padding-top: 10px; line-height: 1.7; flex: 1; display: flex; align-items: flex-start; }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 4px; }
.dot:first-of-type { margin-left: 0; }
.dot + .dot { margin-left: 12px; }
.dot-income { background: #10b981; }
.dot-cost { background: #ef4444; }
.rpt-subcard {
  background: #fafbfe; border-radius: 10px; padding: 16px 18px;
  border: 1px solid #eef1f7;
  display: flex; flex-direction: column;
}
.rpt-subcard-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--pc-text);
  padding-bottom: 8px; border-bottom: 1px solid #f0f3f8; margin-bottom: 2px;
}
.rpt-subcard-title .el-icon { color: #547bff; font-size: 16px; }
.rpt-detail .rpt-cols { margin-top: 10px; }
.rpt-detail > .rpt-cols > .rpt-subcard { margin-bottom: 0; }
@media (max-width: 1200px) {
  .rpt-stats { grid-template-columns: repeat(2, 1fr); }
  .rpt-cols { grid-template-columns: 1fr; }
}

/* ============ 数据大屏（对齐后台，深色科技风） ============ */
.bs-page {
  margin: -18px -20px;
  min-height: calc(100vh - 48px);
  padding: 0 16px 16px;
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(0, 120, 255, .18), transparent),
    radial-gradient(ellipse 30% 40% at 0% 60%, rgba(0, 80, 200, .10), transparent),
    radial-gradient(ellipse 30% 40% at 100% 60%, rgba(0, 160, 255, .10), transparent),
    linear-gradient(180deg, #06142b 0%, #050e20 100%);
  color: #cfe6ff;
}
.bs-header { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 14px 8px 12px; }
.bs-time { font-size: 14px; color: #7ea6c8; font-variant-numeric: tabular-nums; }
.bs-title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-size: 24px; font-weight: 700; color: #fff; letter-spacing: 4px;
  display: flex; align-items: center; gap: 16px;
  text-shadow: 0 0 18px rgba(0, 180, 255, .55);
}
.bs-title i {
  display: block; width: 90px; height: 2px;
  background: linear-gradient(90deg, transparent, #00b4ff);
}
.bs-title i:last-child { background: linear-gradient(90deg, #00b4ff, transparent); }
.bs-sub { font-size: 14px; color: #7ea6c8; }
.bs-grid { display: grid; grid-template-columns: 1.05fr 2.3fr 1.05fr; gap: 12px; align-items: start; }
.bs-col { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.bs-panel {
  background: rgba(9, 30, 60, .55);
  border: 1px solid rgba(0, 180, 255, .22);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: inset 0 0 24px rgba(0, 120, 255, .06);
  overflow: hidden;
}
.bs-panel-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: #e8f4ff;
  padding-bottom: 8px; border-bottom: 1px solid rgba(0, 150, 255, .18);
  margin-bottom: 8px;
}
.bs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00b4ff;
  box-shadow: 0 0 8px rgba(0, 180, 255, .9);
  flex: none;
}
.bs-chart { width: 100%; }
.bs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bs-stat {
  background: rgba(9, 30, 60, .55);
  border: 1px solid rgba(0, 180, 255, .22);
  border-radius: 8px;
  padding: 14px 12px;
  display: flex; align-items: center; gap: 10px;
}
.bs-stat-icon {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  box-shadow: 0 0 12px rgba(0, 180, 255, .35);
}
.bs-stat-num { font-size: 20px; font-weight: 800; color: #fff; line-height: 1.15; font-variant-numeric: tabular-nums; }
.bs-stat-label { font-size: 14px; color: #7ea6c8; margin-top: 2px; }
.bs-live { display: flex; flex-direction: column; }
.bs-live-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 2px; font-size: 14px; color: #a8c6e8;
  border-bottom: 1px dashed rgba(0, 150, 255, .15);
}
.bs-live-item:last-child { border-bottom: none; }
.bs-live-item b { color: #00e5ff; font-weight: 700; font-variant-numeric: tabular-nums; }
.bs-live-dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #00e0b0; box-shadow: 0 0 6px rgba(0, 224, 176, .8);
  animation: bs-blink 1.6s ease-in-out infinite;
}
@keyframes bs-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.bs-live-item { justify-content: flex-start; gap: 10px; }
@media (max-width: 1200px) {
  .bs-grid { grid-template-columns: 1fr; }
  .bs-stats { grid-template-columns: repeat(2, 1fr); }
}
.bs-countdown {
  margin-left: 12px;
  padding: 2px 10px;
  border: 1px solid rgba(0, 229, 255, .35);
  border-radius: 999px;
  color: #00e5ff;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.bs-orders { height: 132px; overflow: hidden; position: relative; }
.bs-orders-track {
  position: absolute; left: 0; right: 0; top: 0;
  animation: bs-order-scroll 14s linear infinite;
}
@keyframes bs-order-scroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.bs-order-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  width: 100%;
  padding: 5px 2px 7px;
  font-size: 14px; color: #5f86b3;
  border-bottom: 1px solid rgba(0, 150, 255, .25);
}
.bs-order-head span { text-align: center; }
.bs-order {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.7fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 0;
  width: 100%; align-items: center;
  height: 33px;
  padding: 0 2px;
  border-bottom: 1px dashed rgba(0, 150, 255, .15);
  font-size: 14px; color: #a8c6e8;
}
.bs-order-cell {
  min-width: 0; text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bs-order-cell.money { color: #00e5ff; font-weight: 700; font-variant-numeric: tabular-nums; }
.bs-order-cell.time { color: #7ea6c8; font-variant-numeric: tabular-nums; }
.bs-order-cell.paid { color: #00e0b0; font-weight: 600; }
.bs-order-cell.gray { color: #7ea6c8; }
.bs-order-cell.other { color: #ffb64d; }
.bs-orders-empty { height: 132px; display: flex; align-items: center; justify-content: center; color: #7ea6c8; font-size: 14px; }
.bs-panel-orders { display: flex; flex-direction: column; }
.bs-panel-orders .bs-orders { flex: 1; height: auto; min-height: 132px; }
.bs-grid { align-items: stretch; }
.bs-col > .bs-panel { flex: 1; min-height: 0; }
.bs-fs-btn {
  margin-left: 10px;
  padding: 2px 12px;
  border: 1px solid rgba(0, 229, 255, .35);
  border-radius: 999px;
  color: #00e5ff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  transition: all .15s;
}
.bs-fs-btn:hover { background: rgba(0, 229, 255, .12); }

/* ============ 仪表盘（xjupay 商户端风格） ============ */
.xju-dash { color: var(--pc-text); }
.xju-card { background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(0, 0, 0, .05); box-sizing: border-box; }
.xju-hello { padding: 24px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.xju-hello-left { display: flex; align-items: center; gap: 16px; }
.xju-avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, #5d87ff, #8fb0ff);
  color: #fff; font-size: 24px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.xju-hello h2 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.xju-no { font-size: 14px; font-weight: 400; color: #949eb7; margin-left: 4px; }
.xju-status { font-size: 14px; color: #7987a1; display: flex; align-items: center; gap: 6px; }
.xju-quicks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.xju-quick {
  width: 74px; height: 70px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid #dfe3ee; border-radius: 8px;
  color: #4d5875; font-size: 14px; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.xju-quick:hover { border-color: #5d87ff; color: #5d87ff; }
.xju-quick .am-icon { width: 20px; height: 20px; }
.xju-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.xju-stat { position: relative; height: 140px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.xju-stat-label { font-size: 14px; color: #4d5875; }
.xju-stat-num { font-size: 26px; font-weight: 500; margin-top: 8px; }
.xju-yen { font-size: 16px; color: #949eb7; margin-right: 2px; }
.xju-stat-sub { display: flex; align-items: center; gap: 4px; font-size: 14px; color: #7987a1; margin-top: 4px; }
.xju-stat-sub b { font-weight: 600; }
.xju-stat-ic { position: absolute; top: 0; bottom: 0; right: 20px; margin: auto 0; width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.xju-stat-ic .am-icon { width: 22px; height: 22px; }
.xju-main { display: grid; grid-template-columns: 14fr 10fr; gap: 20px; align-items: start; }
.xju-card-hd { display: flex; align-items: center; justify-content: space-between; padding-bottom: 4px; }
.xju-card-hd h4 { margin: 0; font-size: 16px; font-weight: 500; }
.xju-chart-card { padding: 20px; margin-bottom: 20px; }
.xju-sub-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.xju-sub-col { display: flex; flex-direction: column; }
.xju-ratio-card { padding: 20px; }
.xju-rate-card { padding: 20px; }
.xju-rate-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eef1f7; font-size: 14px; }
.xju-rate-row:last-child { border-bottom: 0; }
.xju-rate-l { display: flex; align-items: center; gap: 8px; }
.xju-rate-l img { width: 18px; height: 18px; }
.xju-rate-v { font-weight: 500; }
.xju-kf-card { padding: 16px; }
.xju-main-right { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.xju-notice-card { padding: 20px; min-height: 406px; }
.xju-notice-list { max-height: 320px; overflow-y: auto; }
.xju-notice-row { padding: 12px 0; border-bottom: 1px solid #eef1f7; }
.xju-notice-row:last-child { border-bottom: 0; }
.xju-notice-content { font-size: 14px; line-height: 1.6; color: var(--pc-text); }
.xju-notice-time { font-size: 14px; color: #949eb7; margin-top: 4px; }
.xju-settle-card { padding: 20px; }
.xju-empty { text-align: center; padding: 32px 0; color: #949eb7; font-size: 14px; }
@media (max-width: 1200px) {
  .xju-stats { grid-template-columns: repeat(2, 1fr); }
  .xju-main { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .xju-hello { flex-direction: column; align-items: flex-start; gap: 16px; }
  .xju-sub-row { grid-template-columns: 1fr; }
}

/* ============ API 信息（xjupay 风格） ============ */
.xju-api-card { padding: 24px; margin-bottom: 20px; }
.xju-api-h3 { margin: 0 0 20px; font-size: 16px; font-weight: 500; }
.xju-api-head { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.xju-info-grid { display: flex; flex-direction: column; gap: 16px; }
.xju-info-row { display: flex; align-items: center; }
.xju-info-label { width: 100px; flex: none; font-size: 14px; color: #7987a1; }
.xju-info-value-group { display: flex; align-items: center; gap: 8px; min-width: 0; }
.xju-info-value { font-size: 14px; color: #383853; }
.break-all { word-break: break-all; }
.xju-api-actions { display: flex; align-items: center; gap: 12px; }
.xju-key-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.xju-key-card { background: #fafbfe; border: 1px solid #eef1f7; border-radius: 10px; padding: 16px; box-sizing: border-box; }
.xju-key-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.xju-key-label { font-size: 14px; font-weight: 500; color: #4d5875; }
.xju-key-textarea {
  font-size: 14px; color: #4d5875; font-family: Consolas, monospace;
  word-break: break-all; line-height: 1.7; max-height: 122px; overflow-y: auto;
  white-space: pre-wrap;
}
.xju-key-textarea.empty { color: #c0c4cc; }
.xju-priv {
  margin-top: 12px; padding: 10px 14px; background: #fef8ec; border: 1px solid #fdeac7;
  border-radius: 8px; font-size: 14px; color: #e6a23c; word-break: break-all;
  font-family: Consolas, monospace; cursor: pointer;
}
@media (max-width: 900px) { .xju-key-row { grid-template-columns: 1fr; } }

/* ---------- 字体放大（整体调大一档） ---------- */
html { font-size: 15px; }
body { font-size: 15px; }
.el-table { font-size: 15px; }
.el-dialog__title { font-size: 17px; }
.el-form-item__label { font-size: 15px; }
.el-tabs__item { font-size: 15px; }
.el-pagination { font-size: 14px; }
.mcl-menu-item { font-size: 15px; }
.mcl-breadcrumb-item { font-size: 15px; }
.mcl-subsidebar-title { font-size: 17px; }
.mcl-user-name { font-size: 15px; }
.mcl-user-balance { font-size: 14px; }
.mc-page-head { font-size: 19px; }
.mc-card-title { font-size: 16px; }
.mc-stat-label { font-size: 14px; }
.mc-hint { font-size: 14px; }
.xju-stat-label { font-size: 15px; }
.xju-stat-num { font-size: 28px; }
.xju-stat-sub { font-size: 14px; }
.xju-no { font-size: 15px; }
.xju-status { font-size: 15px; }
.xju-quick { font-size: 14px; }
.xju-info-label, .xju-info-value { font-size: 15px; }
.xju-key-label { font-size: 15px; }
.xju-key-textarea { font-size: 14px; }
.xju-notice-content { font-size: 15px; }
.xju-notice-time { font-size: 14px; }
.xju-api-h3 { font-size: 17px; }
.rpt-stat-label { font-size: 15px; }
.rpt-stat-num { font-size: 30px; }
.rpt-card-title { font-size: 17px; }
.rpt-subcard-title { font-size: 16px; }

/* EP small 组件字号统一 */
.el-button--small { font-size: 13px; }
.el-button--small .el-icon { font-size: 13px; }
.el-tag--small { font-size: 13px; height: 22px; }
.el-tag--small .el-tag__content { font-size: 13px; }

/* ============================================================
   设计规范换皮层（2026-08-27 定稿）
   字体/颜色/圆角/阴影/间距 —— 只换皮，不动 DOM 与逻辑
   ============================================================ */

/* ---------- 1. 全局字体：微软雅黑优先，其次苹方，无衬线 ---------- */
html { font-size: 14px; }
body {
  font-family: "Microsoft YaHei", "PingFang SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  background: #f5f7fa;
}

/* ---------- 2. 主题令牌：主色 #4080ff，状态色 EP 组件默认 ---------- */
:root {
  --pc-primary: #4080ff;
  --pc-primary-hover: #73a8ff;
  --pc-primary-light: #f0f5ff;
  --pc-accent: #4080ff;
  --pc-bg: #f5f7fa;
  --pc-text: #1f2329;
  --pc-text-2: #4e5969;
  --pc-text-3: #86909c;
  --pc-success: #67c23a;
  --pc-success-bg: #f0f9eb;
  --pc-danger: #f56c6c;
  --pc-danger-bg: #fef0f0;
  --pc-border: #e5e6eb;
  --pc-radius: 8px;
  --pc-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  --pc-side-active: #4080ff;
  /* EP 主色家族 */
  --el-color-primary: #4080ff;
  --el-color-primary-light-3: #73a8ff;
  --el-color-primary-light-5: #a3c4ff;
  --el-color-primary-light-7: #c9dbff;
  --el-color-primary-light-8: #dce8ff;
  --el-color-primary-light-9: #f0f5ff;
  --el-color-primary-dark-2: #3373e6;
  /* EP 状态色恢复组件默认 */
  --el-color-success: #67c23a;
  --el-color-success-light-3: #95d475;
  --el-color-success-light-5: #b3e19d;
  --el-color-success-light-7: #d1edc4;
  --el-color-success-light-8: #e1f3d8;
  --el-color-success-light-9: #f0f9eb;
  --el-color-success-dark-2: #529b2e;
  --el-color-warning: #e6a23c;
  --el-color-warning-light-3: #eebe77;
  --el-color-warning-light-5: #f3d19e;
  --el-color-warning-light-7: #f8e3c5;
  --el-color-warning-light-8: #faecd8;
  --el-color-warning-light-9: #fdf6ec;
  --el-color-warning-dark-2: #b88230;
  --el-color-danger: #f56c6c;
  --el-color-error: #f56c6c;
  --el-color-danger-light-3: #f89898;
  --el-color-danger-light-5: #fab6b6;
  --el-color-danger-light-7: #fcd3d3;
  --el-color-danger-light-8: #fde2e2;
  --el-color-danger-light-9: #fef0f0;
  --el-color-danger-dark-2: #c45656;
  --el-color-info: #909399;
  --el-color-info-light-3: #b1b3b8;
  --el-color-info-light-5: #c8c9cc;
  --el-color-info-light-7: #dedfe0;
  --el-color-info-light-8: #e9e9eb;
  --el-color-info-light-9: #f4f4f5;
  --el-color-info-dark-2: #73767a;
  /* EP 文字/字号 */
  --el-text-color-primary: #1f2329;
  --el-text-color-regular: #4e5969;
  --el-text-color-secondary: #86909c;
  --el-font-size-base: 14px;
  --el-font-size-small: 13px;
  --el-font-size-extra-small: 12px;
  --el-bg-color-page: #f5f7fa;
  --el-border-radius-base: 8px;
}

/* ---------- 3. 布局背景与卡片 ---------- */
.mcl-content { background: #f5f7fa; padding: 16px 20px 20px; }
.mc-card, .xju-card, .mc-stat-card, .el-card {
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  border: none;
}
.mc-card { margin-bottom: 16px; }
.mc-stat-row { margin-bottom: 16px; }
.xju-hello, .xju-chart-card, .xju-stats, .xju-main, .xju-main-right { margin-bottom: 16px; }
.xju-main-right { gap: 16px; }

/* ---------- 4. 标题 ---------- */
.mc-page-head { font-size: 20px; font-weight: 600; color: #1f2329; line-height: 1.3; margin-bottom: 16px; }
.mc-card-title { font-size: 16px; font-weight: 600; color: #1f2329; line-height: 1.3; }
.xju-card-hd h4 { font-size: 16px; font-weight: 600; color: #1f2329; }
.xju-hello h2 { font-size: 20px; font-weight: 600; color: #1f2329; }

/* ---------- 5. 正文与辅助文字 ---------- */
.el-table { font-size: 14px; color: #4e5969; }
.el-table th.el-table__cell { color: #1f2329; font-weight: 600; }
.el-form-item__label { font-size: 14px; color: #4e5969; }
.mc-hint { font-size: 13px; color: #86909c; line-height: 1.6; }
.xju-stat-label { font-size: 14px; color: #4e5969; }
.xju-stat-sub { font-size: 13px; color: #86909c; }
.xju-info-label { font-size: 14px; color: #86909c; }
.xju-info-value { font-size: 14px; color: #4e5969; }
.xju-notice-time { font-size: 13px; color: #86909c; }
.xju-no { color: #86909c; }
.xju-status { color: #4e5969; }

/* ---------- 6. 面包屑 ---------- */
.mcl-breadcrumb-item { font-size: 14px; color: #86909c; }
.mcl-breadcrumb-item.active { color: #1f2329; font-weight: 500; }

/* ---------- 7. 表格 hover 高亮（组件默认） ---------- */
.el-table__body tr:hover > td.el-table__cell { background-color: #f5f7fa; }

/* ---------- 8. 弹窗 ---------- */
.el-dialog { border-radius: 8px; }
.el-message-box { border-radius: 8px; }
.el-drawer { border-radius: 8px 0 0 8px; }

/* ---------- 9. 菜单选中与高亮 ---------- */
.mcl-menu-item { font-size: 14px; color: #4e5969; }
.mcl-menu-item:hover { color: #4080ff; }
.mcl-menu-item.active { color: #4080ff; background: rgba(64, 128, 255, .08); }
.mcl-nav-item.active { background: #4080ff; box-shadow: 0 4px 12px rgba(64, 128, 255, .35); }
.mcl-subsidebar-title { color: #1f2329; }

/* ---------- 10. 登录页主色统一 ---------- */
.mclogin { background: #f5f7fa; }
.mclogin-left { background: linear-gradient(135deg, #4080ff 0%, #73a8ff 100%); }
.mclogin-tab.active { color: #4080ff; border-bottom-color: #4080ff; }
.mclogin-inputwrap input:focus { border-color: #4080ff; box-shadow: 0 0 0 3px rgba(64, 128, 255, .12); }
.mclogin-forgot { color: #4080ff; }
.mclogin-btn { background: #4080ff; box-shadow: 0 4px 12px rgba(64, 128, 255, .3); }
.mclogin-btn:hover { background: #73a8ff; }
.mclogin-reg a { color: #4080ff; }

/* ---------- 11. 链接 ---------- */
.mc-link, .el-link { color: #4080ff; }

/* ---------- 12. 顶部余额胶囊/搜索等微调 ---------- */
.mcl-user-balance { color: #67c23a; }
.mcl-action-btn:hover { color: #4080ff; }

.xju-stats { gap: 16px; }
.xju-quicks { gap: 16px; }
.mc-stat-row { gap: 16px; }
.xju-sub-row { gap: 16px; }

/* ---------- 登录页背景与主后台一致（xtuidc 白底图 + 白纱 + 光束） ---------- */
.mclogin {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, .15), rgba(255, 255, 255, .15)), url('/static/admin-spa/img/login-bg.jpg') center / cover no-repeat;
  overflow: hidden;
}
.mclogin::before, .mclogin::after, .mclogin-card::before {
  content: '';
  position: absolute;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 100%);
}
.mclogin::before { width: 46%; height: 180px; left: -12%; top: 8%; transform: rotate(24deg); animation: mcloginbeam 10s ease-in-out infinite; }
.mclogin::after { width: 38%; height: 220px; right: -10%; top: 34%; transform: rotate(-18deg); animation: mcloginbeam2 13s ease-in-out infinite -3s; }
.mclogin-card::before { width: 42%; height: 160px; left: 6%; bottom: -4%; transform: rotate(-28deg); animation: mcloginbeam3 11s ease-in-out infinite -6s; }
@keyframes mcloginbeam {
  0%, 100% { opacity: .55; transform: translateX(0) rotate(24deg); }
  50%      { opacity: 1; transform: translateX(26px) rotate(24deg); }
}
@keyframes mcloginbeam2 {
  0%, 100% { opacity: .5; transform: translateX(0) rotate(-18deg); }
  50%      { opacity: .95; transform: translateX(-24px) rotate(-18deg); }
}
@keyframes mcloginbeam3 {
  0%, 100% { opacity: .5; transform: translateX(0) rotate(-28deg); }
  50%      { opacity: .95; transform: translateX(22px) rotate(-28deg); }
}
.mclogin-card { position: relative; }

/* ============ 注册页（参考站同款） ============ */
.mclogin-regbox {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  min-height: 600px;
  display: grid;
  grid-template-columns: 500px 1fr;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 26px 64px rgba(23, 78, 151, .16), 0 4px 14px rgba(23, 78, 151, .08);
}
.mclogin-reg-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #e7f1fc 0%, #c9ddff 45%, #4080ff 100%);
  border-right: 1px solid #e5e9f2;
}
.mclogin-reg-brand { text-align: center; color: #fff; }
.mclogin-reg-title { margin: 0 0 8px; font-size: 32px; font-weight: 700; }
.mclogin-reg-desc { margin: 0; font-size: 16px; opacity: .92; }
.mclogin-reg-img {
  width: 220px; height: 220px;
  margin-top: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, .35);
  box-shadow: 0 18px 44px rgba(23, 78, 151, .25);
}
.mclogin-reg-right {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 60px;
  box-sizing: border-box;
}
.mclogin-reg-head { width: 100%; max-width: 380px; margin-bottom: 24px; }
.mclogin-reg-h3 { margin: 0 0 6px; font-size: 28px; font-weight: 600; color: #1f2329; }
.mclogin-reg-sub { margin: 0; font-size: 14px; color: #86909c; }
.mclogin-reg-form { width: 100%; max-width: 380px; }
.mclogin-reg-tip { font-size: 13px; color: #f56c6c; margin-bottom: 12px; }
.mclogin-reg-tip.mclogin-reg-ok { color: #67c23a; }
.mclogin-reg-field { margin-bottom: 16px; }
.mclogin-reg-field .el-input { height: 40px; }
.mclogin-reg-field .el-input__wrapper { border-radius: 8px; }
.mclogin-reg-agree { margin-bottom: 16px; }
.mclogin-reg-agree a { color: #4080ff; text-decoration: none; }
.mclogin-reg-btn {
  width: 100%; height: 40px;
  font-size: 14px; font-weight: 500;
  border-radius: 8px;
  letter-spacing: .3em; text-indent: .3em;
}
.mclogin-reg-go { margin-top: 20px; text-align: center; font-size: 14px; color: #4e5969; }
.mclogin-reg-go a { color: #4080ff; text-decoration: none; }
@media (max-width: 1080px) {
  .mclogin-reg-left { display: none; }
  .mclogin-regbox { grid-template-columns: 1fr; width: min(500px, 100%); }
}

/* ---------- 验证码登录/公告 ---------- */
.mclogin-smswrap input { padding-right: 110px; }
.mclogin-smsbtn {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 100px; border: 0; background: none; cursor: pointer;
  color: #4080ff; font-size: 13px;
}
.mclogin-smsbtn:disabled { color: #c0c4cc; cursor: not-allowed; }
.mclogin-notice-html { font-size: 14px; line-height: 1.7; color: #4e5969; }
.mclogin-notice-html p { margin: 4px 0; }

/* ---------- 登录/注册背景改为清晰图片（去白纱去光束） ---------- */
.mclogin { background: url('/static/admin-spa/img/login-bg.jpg') center / cover no-repeat; }
.mclogin::before, .mclogin::after, .mclogin-card::before { display: none; }

/* ---------- 注册框左侧与登录页左侧同款 ---------- */
.mclogin-reg-left { background: linear-gradient(135deg, #4080ff 0%, #73a8ff 100%); align-items: flex-start; justify-content: flex-start; flex-direction: column; }
.mclogin-reg-brand { text-align: left; padding: 48px 44px; width: 100%; box-sizing: border-box; }
.mclogin-reg-title { font-size: 32px; }
.mclogin-reg-desc { font-size: 16px; }
.mclogin-reg-img { display: none; }
.mclogin-reg-features { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.mclogin-reg-feature { display: flex; align-items: flex-start; gap: 14px; color: #fff; }
.mclogin-reg-feature .mclogin-feature-icon {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex; align-items: center; justify-content: center;
}
.mclogin-reg-feature .mclogin-feature-icon .am-icon { width: 20px; height: 20px; }
.mclogin-reg-feature h3 { margin: 0 0 5px; font-size: 17px; font-weight: 600; }
.mclogin-reg-feature p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .8); }
.mclogin-reg-copy { margin-top: 40px; font-size: 13px; color: rgba(255, 255, 255, .6); }

/* ============ 注册页（xtuidc 风格） ============ */
.mclogin-regbox {
  width: min(632px, 100%);
  min-height: 0;
  display: block;
  background: #fff;
  border: 1px solid #e5e9f2;
  border-radius: 12px;
  box-shadow: 0 26px 64px rgba(23, 78, 151, .16), 0 4px 14px rgba(23, 78, 151, .08);
  padding: 44px 62px 40px;
  box-sizing: border-box;
}
.xreg-text { margin-bottom: 22px; }
.xreg-title { font-size: 28px; font-weight: 500; color: #1e2736; }
.xreg-regist { margin-top: 6px; font-size: 14px; color: #1e2736; }
.xreg-regist a { color: #1a56db; text-decoration: none; margin-left: 4px; }
.xreg-tabs {
  display: inline-flex;
  background: #eee;
  border-radius: 21px;
  padding: 4px;
  margin-bottom: 20px;
}
.xreg-tab {
  width: 74px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14.5px; color: #666b80;
  border-radius: 15px; cursor: pointer;
  transition: all .15s;
}
.xreg-tab.active { background: #fff; color: rgba(0, 0, 0, .9); }
.xreg-form { width: 100%; }
.xreg-tip { font-size: 13px; color: #f56c6c; margin-bottom: 10px; }
.xreg-tip.xreg-ok { color: #67c23a; }
.xreg-tip.xreg-warn { color: #e6a23c; }
.xreg-item { margin-bottom: 14px; }
.xreg-item .el-input__wrapper { background: #f2f3f5; box-shadow: none; border-radius: 4px; height: 42px; }
.xreg-item .el-input__inner { height: 42px; color: #595959; }
.xreg-code { display: flex; gap: 10px; }
.xreg-code .el-input { flex: 1; }
.xreg-code-btn { width: 115px; height: 42px; flex: none; border-radius: 4px; }
.xreg-read { margin: 2px 0 14px; font-size: 13px; color: #606266; }
.xreg-read .el-checkbox { align-items: center; }
.xreg-read a { color: #1a56db; text-decoration: none; }
.xreg-login-btn { width: 100%; height: 46px; font-size: 14.5px; font-weight: 500; border-radius: 4px; }
@media (max-width: 700px) { .mclogin-regbox { padding: 32px 24px; } }

/* ---------- 登录/注册：左表单右标题（xtuidc 布局） ---------- */
/* 登录页：左右交换（表单在左，标题区在右） */
.mclogin-card { flex-direction: row; }
.mclogin-left { order: 2; width: 42%; }
.mclogin-right { order: 1; width: 58%; }
.mclogin-side { text-align: center; margin-bottom: 36px; }
.mclogin-welcome { font-size: 64px; font-weight: 700; color: #fff; letter-spacing: 4px; text-shadow: 0 2px 12px rgba(0, 0, 0, .15); }
.mclogin-wtitle { font-size: 23px; color: #fff; margin-top: 8px; }
.mclogin-wdesc { font-size: 14px; color: rgba(255, 255, 255, .8); margin-top: 10px; }
.mclogin-left .mclogin-features { align-items: flex-start; padding: 0 28px; }
.mclogin-feature p { font-size: 13px; }
.mclogin-left .mclogin-copy { padding-top: 36px; }
/* 注册页：两栏 */
.mclogin-regbox {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  width: min(980px, 100%);
  padding: 0;
  overflow: hidden;
}
.xreg-login { padding: 44px 56px 40px; box-sizing: border-box; }
.xreg-right {
  background: linear-gradient(160deg, #4080ff 0%, #2f6ae0 60%, #1a56db 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
}
.xreg-welcome { font-size: 52px; font-weight: 700; color: #fff; letter-spacing: 4px; text-shadow: 0 2px 12px rgba(0, 0, 0, .15); }
.xreg-wtitle { font-size: 21px; color: #fff; margin-top: 10px; }
.xreg-wdesc { font-size: 13px; color: rgba(255, 255, 255, .8); margin-top: 10px; }
@media (max-width: 900px) {
  .xreg-right { display: none; }
  .mclogin-regbox { grid-template-columns: 1fr; width: min(632px, 100%); }
  .mclogin-left { display: none; }
  .mclogin-right { width: 100%; }
}

/* ---------- 左表单框收窄 + 卡片加高 ---------- */
.mclogin-card { min-height: 660px; }
.mclogin-right { width: 52%; }
.mclogin-left { width: 48%; }
.mclogin-right { padding: 48px 40px; }
.mclogin-formwrap { width: min(400px, 100%); }
.mclogin-regbox { min-height: 680px; grid-template-columns: 0.92fr 1.08fr; }
.xreg-login { padding: 52px 48px 44px; }
.xreg-form { max-width: 400px; }

/* ---------- 登录页参考站化 ---------- */
.mclogin-right { display: flex; align-items: center; justify-content: center; }
.xreg-tabs { margin-bottom: 18px; }
.xreg-pass-btn {
  width: 100%; height: 46px;
  margin-top: 10px; margin-left: 0;
  font-size: 14.5px; font-weight: 500;
  color: #595959; background: #fff;
  border: 1px solid #dcdfe6; border-radius: 4px;
}
.xreg-pass-btn:hover { color: #1a56db; border-color: #1a56db; background: #fff; }
.xreg-read { display: flex; align-items: center; justify-content: space-between; }
.xreg-read .el-checkbox { margin-right: 0; }
.xreg-forgot { color: #1a56db; text-decoration: none; font-size: 13px; }
.xreg-read-text { font-size: 13px; color: #606266; }

/* ---------- 修复登录页表单区纵向布局 ---------- */
.mclogin-right { flex-direction: column; }
.mclogin-right .xreg-text { width: min(400px, 100%); margin-bottom: 22px; }
.mclogin-right .xreg-form { width: min(400px, 100%); }

/* ============ 登录/注册 1:1（xtuidc 蓝块 + 白卡） ============ */
.xlogin, .xreg-wrap {
  position: relative;
  width: min(1100px, 100%);
  height: 640px;
  z-index: 1;
}
.xlogin-blue {
  position: absolute; left: 0; right: 0; top: 0;
  height: 88%;
  background: #1a56db;
  border-radius: 20px;
  overflow: hidden;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.xlogin-backtext { position: relative; z-index: 10; color: #fff; margin: 118px 0 0 56px; font-weight: 400; }
.xlogin-welcome { font-size: 64px; font-family: Bahnschrift, Arial, sans-serif; line-height: 1; }
.xlogin-wtitle { font-size: 24px; margin-top: 5px; }
.xlogin-wdesc { font-size: 12px; margin-top: 68px; }
.xlogin-bline1, .xlogin-bline2, .xlogin-bline3 {
  width: 52px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  z-index: 2;
}
.xlogin-bline1 { height: 430px; transform: rotate(45deg); top: -100px; left: 360px; }
.xlogin-bline2 { height: 610px; transform: rotate(110deg); top: 0; left: 435px; }
.xlogin-bline3 { height: 430px; transform: rotate(45deg); top: 200px; left: 130px; clip-path: polygon(0 26px, 56px 0, 100% 100%, 0 100%); }
.xlogin-card {
  position: absolute; right: 40px; top: 0; bottom: 0;
  width: 620px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 60px;
  box-sizing: border-box;
}
.xlogin-formwrap, .xreg-formwrap { width: 100%; max-width: 400px; }
.xreg-wrap { height: 720px; }
.xreg-card { width: 560px; right: 32px; }
.xreg-blue { height: 90%; }
/* 小屏适配 */
@media (max-width: 1100px) {
  .xlogin-blue .xlogin-backtext { margin-left: 32px; }
  .xlogin-welcome { font-size: 48px; }
}
@media (max-width: 900px) {
  .xlogin, .xreg-wrap { height: auto; }
  .xlogin-blue { display: none; }
  .xlogin-card, .xreg-card { position: static; width: min(620px, 100%); min-height: 560px; border-radius: 8px; }
}

/* ---------- 1:1 修正：白卡左贴 + 蓝块在右（WELCOME 在蓝块右区） ---------- */
.xlogin, .xreg-wrap { position: relative; width: min(1100px, 100%); height: 640px; z-index: 1; }
.xlogin-blue {
  position: absolute; left: 0; right: 0;
  top: 133px; height: 375px;
  background: #1a56db;
  border-radius: 20px;
  overflow: hidden;
}
.xlogin-backtext { position: relative; z-index: 10; color: #fff; margin: 56px 0 0 52%; font-weight: 400; }
.xlogin-welcome { font-size: 52px; font-family: Bahnschrift, Arial, sans-serif; line-height: 1; }
.xlogin-wtitle { font-size: 22px; margin-top: 5px; }
.xlogin-wdesc { font-size: 12px; margin-top: 46px; }
.xlogin-bline1 { height: 300px; transform: rotate(45deg); top: -60px; left: 58%; }
.xlogin-bline2 { height: 400px; transform: rotate(110deg); top: 0; left: 66%; }
.xlogin-bline3 { height: 300px; transform: rotate(45deg); top: 150px; left: 46%; clip-path: polygon(0 26px, 56px 0, 100% 100%, 0 100%); }
.xlogin-card {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 470px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 46px;
  box-sizing: border-box;
}
.xlogin-formwrap, .xreg-formwrap { width: 100%; max-width: 380px; }
.xreg-wrap { width: min(1000px, 100%); height: 720px; }
.xreg-wrap .xlogin-blue { top: 150px; height: 400px; }
.xreg-card { width: 510px; padding: 40px 48px; }
.xreg-card .xlogin-backtext { margin-left: 55%; }
@media (max-width: 900px) {
  .xlogin, .xreg-wrap { height: auto; }
  .xlogin-blue { display: none; }
  .xlogin-card, .xreg-card { position: static; width: min(620px, 100%); min-height: 560px; border-radius: 8px; }
}

/* ---------- 登录/注册完全统一：同尺寸白卡 + 同尺寸蓝块（与白卡左对齐）+ 标题固定 ---------- */
.xlogin, .xreg-wrap { position: relative; width: min(1100px, 100%); height: 740px; z-index: 1; }
.xlogin-blue {
  position: absolute; left: 0; right: 0;
  top: 170px; height: 440px;
  background: #1a56db;
  border-radius: 20px;
  overflow: hidden;
}
.xlogin-backtext { position: relative; z-index: 10; color: #fff; margin: 64px 0 0 52%; font-weight: 400; }
.xlogin-welcome { font-size: 52px; font-family: Bahnschrift, Arial, sans-serif; line-height: 1; }
.xlogin-wtitle { font-size: 22px; margin-top: 5px; }
.xlogin-wdesc { font-size: 12px; margin-top: 46px; }
.xlogin-bline1 { height: 340px; transform: rotate(45deg); top: -60px; left: 58%; }
.xlogin-bline2 { height: 460px; transform: rotate(110deg); top: 0; left: 66%; }
.xlogin-bline3 { height: 340px; transform: rotate(45deg); top: 180px; left: 46%; clip-path: polygon(0 26px, 56px 0, 100% 100%, 0 100%); }
.xlogin-card, .xreg-card {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 470px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 44px 46px;
  box-sizing: border-box;
}
.xlogin-formwrap, .xreg-formwrap { width: 100%; max-width: 378px; }
@media (max-width: 900px) {
  .xlogin, .xreg-wrap { height: auto; }
  .xlogin-blue { display: none; }
  .xlogin-card, .xreg-card { position: static; width: min(620px, 100%); min-height: 560px; border-radius: 8px; }
}

.xreg-wrap .xlogin-blue { top: 170px; height: 440px; }
.xreg-wrap .xlogin-backtext { margin-left: 52%; margin-top: 64px; }

/* ---------- 蓝块与白卡等高对齐 + 登录表单排版微调 ---------- */
.xlogin-blue, .xreg-wrap .xlogin-blue { top: 0; height: 740px; }
.xlogin-backtext { margin-top: 88px; }
.xlogin-bline1 { height: 480px; top: -100px; left: 58%; }
.xlogin-bline2 { height: 660px; top: 0; left: 66%; }
.xlogin-bline3 { height: 480px; top: 220px; left: 46%; clip-path: polygon(0 26px, 56px 0, 100% 100%, 0 100%); }
.xreg-text { margin-bottom: 20px; }
.xreg-tabs { margin-bottom: 16px; }

/* ---------- 蓝色区内容居中（白卡右侧的可见蓝区内水平垂直居中） ---------- */
.xlogin-backtext {
  position: absolute;
  left: 470px; right: 0; top: 0; bottom: 0;
  margin: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 30px;
  box-sizing: border-box;
}
.xlogin-wdesc { margin-top: 18px; }

.xreg-wrap .xlogin-backtext { left: 470px; right: 0; top: 0; bottom: 0; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 30px; box-sizing: border-box; }

/* ---------- 登录/注册页字体整体调大 ---------- */
.xreg-title { font-size: 30px; }
.xreg-regist { font-size: 15px; }
.xreg-tab { font-size: 15.5px; width: 80px; height: 32px; }
.xreg-item .el-input__wrapper { height: 44px; }
.xreg-item .el-input__inner { height: 44px; font-size: 15px; }
.xreg-code-btn { height: 44px; font-size: 15px; }
.xreg-read, .xreg-read-text { font-size: 14px; }
.xreg-forgot { font-size: 14px; }
.xreg-login-btn { height: 48px; font-size: 15.5px; }
.xreg-pass-btn { height: 48px; font-size: 15.5px; }
.xlogin-welcome { font-size: 58px; }
.xlogin-wtitle { font-size: 24px; }
.xlogin-wdesc { font-size: 14px; margin-top: 22px; }

/* ---------- 参考站细节修正：按钮对齐/无圆角/区号选择去框 ---------- */
.xreg-form .xreg-pass-btn { margin-left: 0; }
.xreg-form .el-button { border-radius: 0; }
.xreg-form .xreg-login-btn { border-radius: 0; }
.xreg-item .el-input__wrapper { border-radius: 0 !important; background: #f2f3f5; }
.xreg-item .el-input-group__prepend {
  border-radius: 0;
  background: #fff;
  padding: 0;
  box-shadow: 0 0 0 1px #dcdfe6 inset;
}
.xreg-item .el-input-group__prepend .el-select .el-input__wrapper {
  box-shadow: none;
  background: transparent;
}
.xreg-item .el-input-group__prepend .el-select .el-input__inner { text-align: center; }
.xreg-tabs { border-radius: 0; }
.xreg-tab { border-radius: 0; }
.xreg-code-btn { border-radius: 0; }

.xreg-item .el-input-group__prepend { width: 86px; box-sizing: border-box; }
.xreg-item .el-input-group__prepend .el-select { width: 100%; }

/* ---------- 输入组整体一个方框：区号下拉 + 竖线 + 输入区 ---------- */
.xreg-item .el-input-group__prepend {
  width: 86px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border-right: 1px solid #dcdfe6;
}
.xreg-item .el-input-group__prepend .el-select .el-input__wrapper { box-shadow: none !important; background: transparent; }
.xreg-item .el-input-group__prepend .el-select .el-input__inner { text-align: center; height: 42px; line-height: 42px; }
.xreg-item .el-input-group { display: flex; }
.xreg-item .el-input-group__prepend + .el-input { flex: 1; }
.xreg-item .el-input-group .el-input__wrapper { box-shadow: 0 0 0 1px #dcdfe6 inset; background: #f2f3f5; }

/* ---------- 输入组整体一个方框（prepend 左上下边框 + input 完整描边） ---------- */
.xreg-item .el-input-group__prepend {
  width: 86px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
  padding: 0;
  border: 1px solid #dcdfe6;
  border-right: 0;
}
.xreg-item .el-input-group__prepend .el-select .el-input__wrapper { box-shadow: none !important; background: transparent; }
.xreg-item .el-input-group__prepend .el-select .el-input__inner { text-align: center; height: 42px; line-height: 42px; }
.xreg-item .el-input-group { display: flex; }
.xreg-item .el-input-group__prepend + .el-input { flex: 1; }
.xreg-item .el-input-group .el-input__wrapper { box-shadow: 0 0 0 1px #dcdfe6 inset; background: #f2f3f5; border-radius: 0; }

/* ---------- 登录/注册按钮色对齐参考站 #0056ff ---------- */
.xreg-login-btn, .xreg-code-btn { background: #0056ff; border-color: #0056ff; }
.xreg-login-btn:hover, .xreg-code-btn:hover { background: #0056ff; border-color: #0056ff; opacity: .8; }

/* 手机/邮箱切换放输入框上方 */
.xreg-tabs-top { display: flex; margin-bottom: 14px; }

/* ---------- 区号框与输入框同款：灰底方框 ---------- */
.xreg-item .el-input-group__prepend {
  width: 86px;
  box-sizing: border-box;
  background: #f2f3f5;
  border-radius: 0;
  padding: 0;
  border: 1px solid #dcdfe6;
  border-right: 0;
}
.xreg-item .el-input-group__prepend .el-select .el-input__wrapper { box-shadow: none !important; background: transparent; }
.xreg-item .el-input-group__prepend .el-select .el-input__inner { text-align: center; height: 42px; line-height: 42px; color: #595959; }

/* ---------- 区号固定文字样式 ---------- */
.xreg-item .el-input-group__prepend {
  width: 86px;
  box-sizing: border-box;
  background: #f2f3f5;
  border-radius: 0;
  padding: 0;
  border: 1px solid #dcdfe6;
  border-right: 0;
  display: flex; align-items: center; justify-content: center;
}
.xreg-area { font-size: 14px; color: #595959; }

/* ---------- 区号下拉：灰底同框 + 小箭头，无气泡边框 ---------- */
.xreg-item .el-input-group__prepend .el-select .el-input__wrapper { box-shadow: none !important; background: transparent; }
.xreg-item .el-input-group__prepend .el-select .el-input__inner { text-align: center; height: 42px; line-height: 42px; color: #595959; font-size: 14px; padding-right: 18px; }
.xreg-item .el-input-group__prepend .el-select .el-input__suffix { color: #8c8c8c; }
/* 手机/邮箱切换按钮：灰色背景只包裹两个按钮 */
.xreg-tabs-top { display: inline-flex; margin-bottom: 14px; }

/* ---------- 区号自定义下拉：灰底无框 + 小箭头 ---------- */
.xreg-item .el-input-group__prepend {
  width: 86px;
  box-sizing: border-box;
  background: #f2f3f5;
  border-radius: 0;
  padding: 0;
  border: 1px solid #dcdfe6;
  border-right: 0;
  display: flex; align-items: center; justify-content: center;
}
.xreg-area {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 14px; color: #595959;
  cursor: pointer; user-select: none;
  height: 100%; width: 100%;
  justify-content: center;
}
.xreg-arrow { font-style: normal; font-size: 11px; color: #8c8c8c; transform: translateY(1px); }

/* ---------- 区号下拉菜单：限高滚动 ---------- */
.el-popper .el-dropdown-menu {
  max-height: 280px;
  overflow-y: auto;
}
.el-popper .el-dropdown-menu::-webkit-scrollbar { width: 6px; }
.el-popper .el-dropdown-menu::-webkit-scrollbar-thumb { background: #d8dce3; border-radius: 3px; }
.el-popper .el-dropdown-menu__item { font-size: 14px; line-height: 32px; }

/* ---------- 白卡顶部 logo 居中 ---------- */
.xreg-logo { text-align: center; margin-bottom: 18px; }
.xreg-logo img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }

/* ---------- logo 上移 + 站名 ---------- */
.xreg-logo { text-align: center; margin: -6px 0 14px; }
.xreg-logo img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; }
.xreg-site { margin-top: 8px; font-size: 15px; font-weight: 600; color: #1f2329; }

/* ---------- 白卡内容顶部对齐（logo 贴顶） ---------- */
.xlogin-card, .xreg-card { align-items: flex-start; padding-top: 26px; }
.xreg-logo { margin: 0 0 14px; }



/* ---------- 登录/注册/找回：整体高度调低 ---------- */
.xlogin, .xreg-wrap { height: 600px; }
.xlogin-blue, .xreg-wrap .xlogin-blue { top: 0; height: 600px; }

/* ---------- 交易管理（参考站复刻） ---------- */
.mc-search-bar { margin-bottom: 14px; }
.mc-search-bar .el-form-item { margin-bottom: 8px; margin-right: 14px; }
.mc-table-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.mc-table-left { position: relative; display: flex; align-items: center; gap: 12px; }
.mc-table-right { display: flex; align-items: center; gap: 16px; }
.mc-tool-btn { font-size: 13px; color: #4e5969; cursor: pointer; }
.mc-tool-btn:hover { color: #4080ff; }
.mc-table-set { position: absolute; top: 28px; left: 0; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.12); border-radius: 8px; padding: 10px 14px; z-index: 20; display: flex; gap: 12px; }
.mc-ellipsis { display: inline-block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-money { color: #e6a23c; font-weight: 600; }
.mc-op-more { cursor: pointer; font-weight: 700; letter-spacing: 2px; color: #4e5969; padding: 4px 8px; }
.mc-op-more:hover { color: #4080ff; }
.mc-pager { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.mc-pager-total { font-size: 13px; color: #86909c; }
.mc-daily-total { display: flex; margin-top: 12px; padding: 10px 0; border-top: 1px solid #ebeef5; font-size: 13px; color: #4e5969; }
.mc-daily-total span { flex: 1; text-align: center; }
.mc-daily-total .mc-daily-num { font-weight: 600; color: #1f2329; }
.mc-region-ranges { display: flex; gap: 8px; flex-wrap: wrap; }
.mc-range-item { padding: 5px 14px; border: 1px solid #e4e7ed; border-radius: 999px; font-size: 13px; color: #4e5969; cursor: pointer; transition: all .2s; }
.mc-range-item:hover { border-color: #4080ff; color: #4080ff; }
.mc-range-item.active { background: #4080ff; border-color: #4080ff; color: #fff; }
.mc-region-total { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; }
.mc-region-label { font-size: 13px; color: #86909c; }
.mc-region-money { font-size: 24px; font-weight: 700; color: #1f2329; }
.mc-region-cnt { font-size: 13px; color: #86909c; }
.mc-region-title { font-size: 14px; font-weight: 600; color: #1f2329; margin-bottom: 10px; }
.mc-region-list { border: 1px solid #ebeef5; border-radius: 8px; overflow: hidden; }
.mc-region-row { display: flex; align-items: center; gap: 14px; padding: 10px 16px; border-bottom: 1px solid #f2f5fa; font-size: 13px; color: #4e5969; }
.mc-region-row:last-child { border-bottom: none; }
.mc-region-rank { width: 22px; height: 22px; border-radius: 50%; background: #eef1f6; color: #4e5969; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; flex: none; }
.mc-region-rank.top3 { background: #fdf6ec; color: #e6a23c; }
.mc-region-name { flex: 1; font-weight: 500; color: #1f2329; }
.mc-region-money2 { font-weight: 600; color: #1f2329; }
.mc-region-cnt2 { color: #86909c; }
.mc-empty { text-align: center; color: #86909c; font-size: 13px; padding: 30px 0; }

/* ---------- 左侧图标栏加标题（与后台一致） ---------- */
.mcl-sidebar { width: 80px; }
.mcl-sidebar-nav { gap: 6px; width: 100%; padding: 0 8px; box-sizing: border-box; }
.mcl-nav-item {
  width: 100%; height: auto;
  border-radius: 10px;
  flex-direction: column; gap: 3px;
  padding: 8px 0 7px;
  box-sizing: border-box;
}
.mcl-nav-item .mcl-nav-box { display: flex; align-items: center; justify-content: center; }
.mcl-nav-item .am-icon { width: 20px; height: 20px; }
.mcl-nav-name { font-size: 12px; line-height: 1.2; }
.mcl-nav-item.active { color: #fff; }

/* ---------- 新用户引导横幅（未认证/未设置收款账户） ---------- */
.xju-guide { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.xju-guide-item { display: flex; align-items: center; gap: 10px; background: #fdf6ec; border: 1px solid #f5dab1; border-radius: 10px; padding: 12px 16px; }
.xju-guide-warn { font-size: 18px; color: #e6a23c; }
.xju-guide-text { flex: 1; font-size: 14px; color: #4e5969; }
.xju-guide-text b { color: #e6a23c; }

/* ---------- 内容板块标签导航 ---------- */
.mc-tabs { display: flex; gap: 8px; margin-bottom: 16px; border-bottom: 1px solid #ebeef5; }
.mc-tab { padding: 8px 18px; font-size: 14px; color: #4e5969; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; }
.mc-tab:hover { color: #4080ff; }
.mc-tab.active { color: #4080ff; font-weight: 600; border-bottom-color: #4080ff; }

/* ---------- 实名认证（对标站 user 中心 certificate 页 1:1） ---------- */
.mc-cert-passed-top { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mc-cert-badge { width: 80px; height: 80px; background: #f0fdf4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mc-cert-passed-info { flex: 1; width: 100%; min-width: 0; }
.mc-cert-passed-title { font-size: 18px; font-weight: 500; color: #16a34a; margin: 0 0 16px; text-align: center; }
.mc-cert-descriptions { max-width: 860px; margin: 0 auto; }
.mc-cert-upgrade { margin-top: 16px; text-align: center; }
.mc-cert-steps { margin: 4px 0 20px; }
.mc-cert-fee { background: #f0f5ff; border: 1px solid #c9dbff; color: #4080ff; padding: 8px 12px; font-size: 13px; margin-bottom: 16px; text-align: center; }
.mc-cert-fee b { color: #f56c6c; }
.mc-cert-reject { background: #fef0f0; border: 1px solid #fbc4c4; color: #f56c6c; padding: 8px 12px; font-size: 13px; margin-bottom: 16px; text-align: center; }
.mc-cert-center { text-align: center; }
.mc-cert-types-title { font-size: 16px; font-weight: 500; color: #303133; margin: 0 0 20px; text-align: center; }
.mc-cert-types-cards { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.mc-cert-type-card { width: 220px; padding: 32px 24px; border: 1px solid #dcdfe6; text-align: center; cursor: pointer; transition: all .25s; background: #fff; box-sizing: border-box; }
.mc-cert-type-card:hover { border-color: var(--el-color-primary); box-shadow: 0 4px 16px rgba(0,0,0,.08); transform: translateY(-2px); }
.mc-cert-type-icon { font-size: 30px; margin-bottom: 12px; }
.mc-cert-type-icon-person { color: #3b82f6; }
.mc-cert-type-icon-corp { color: #8b5cf6; }
.mc-cert-type-name { font-weight: 500; color: #303133; margin: 0 0 4px; font-size: 16px; }
.mc-cert-type-desc { font-size: 14px; color: #6b7280; margin: 0 0 12px; }
.mc-cert-type-ok { font-size: 12px; color: #16a34a; margin: 0; display: flex; align-items: center; justify-content: center; gap: 4px; }
.mc-cert-back { text-align: left; margin-bottom: 8px; }
.mc-cert-form { max-width: 560px; margin: 0 auto; text-align: left; }
.mc-cert-method-tag { font-size: 13px; }
.mc-cert-full { width: 100%; }
.mc-cert-actions { display: flex; flex-direction: column; gap: 6px; }
.mc-cert-tip { font-size: 12px; color: #f56c6c; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
.mc-cert-tip3 { font-size: 12px; color: #909399; margin-top: 6px; }
.mc-cert-qrbox { display: flex; flex-direction: column; align-items: center; padding: 24px 0 8px; }
.mc-cert-qrloading { padding: 40px 0; font-size: 14px; color: #909399; }
.mc-cert-qr { display: flex; justify-content: center; padding: 12px; border: 1px solid #e4e7ed; background: #fff; }
.mc-cert-qr img, .mc-cert-qr canvas { display: block; }
.mc-cert-qrhint { margin-top: 16px; font-size: 15px; font-weight: 600; color: #303133; }
.mc-cert-qrhint2 { margin-top: 8px; font-size: 12px; color: #909399; }
.mc-cert-pollmsg { margin-top: 10px; font-size: 13px; color: #e6a23c; }
.mc-cert-btns { margin-top: 18px; display: flex; gap: 12px; justify-content: center; }
.mc-cert-done { display: flex; flex-direction: column; align-items: center; padding: 26px 0 10px; }
.mc-cert-done-icon { font-size: 64px; color: #22c55e; line-height: 1; }
.mc-cert-done-title { margin-top: 16px; font-size: 20px; font-weight: 600; color: #303133; }
.mc-cert-done-sub { margin-top: 8px; font-size: 14px; color: #909399; margin-bottom: 16px; }

.mc-api-card { padding: 24px; margin-bottom: 20px; }
.mc-api-h3 { font-size: 16px; font-weight: 500; color: #303133; margin: 0 0 20px; }
.mc-api-head { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.mc-api-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }
@media (max-width: 860px) { .mc-api-grid { grid-template-columns: 1fr; } }
.mc-api-row { display: flex; align-items: flex-start; }
.mc-api-label { flex: none; width: 70px; font-size: 14px; color: #909399; line-height: 24px; }
.mc-api-valgroup { flex: 1; min-width: 0; display: flex; align-items: center; gap: 4px; }
.mc-api-val { font-size: 14px; color: #303133; line-height: 24px; }
.mc-api-val.break { word-break: break-all; }
.mc-api-btns { display: flex; align-items: center; gap: 12px; }
.mc-api-keycard { border: 1px solid #e4e7ed; border-radius: 6px; padding: 14px 16px; }
.mc-api-keyhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.mc-api-keylabel { font-size: 14px; font-weight: 500; color: #4e5969; }
.mc-api-help { color: #c0c4cc; cursor: help; font-size: 14px; }
.mc-api-textarea { font-size: 12px; font-family: Consolas, Menlo, monospace; color: #606266; background: #f5f7fa; border: 1px solid #e4e7ed; border-radius: 4px; padding: 10px 12px; word-break: break-all; white-space: pre-wrap; line-height: 18px; max-height: 120px; overflow: auto; }
.mc-api-keytype { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.mc-api-keytype .el-radio { margin-right: 0; height: auto; }
.mc-api-radio-t { font-weight: 500; color: #303133; }
.mc-api-radio-s { font-size: 12px; color: #909399; margin-left: 8px; }
.mc-api-ic { font-size: 13px; }

.mc-api-card .el-button .el-icon { margin-right: 4px; }

.mc-rec-bar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.mc-rec-item { display: flex; align-items: center; gap: 8px; }
.mc-rec-label { font-size: 14px; color: #4e5969; white-space: nowrap; }
.mc-rec-actions { display: flex; gap: 10px; margin-left: auto; }
.mc-rec-head { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-bottom: 12px; }
.mc-rec-head .el-button .el-icon { margin-right: 4px; }
.mc-rec-link { color: #409eff; text-decoration: none; cursor: pointer; }
.mc-rec-link:hover { text-decoration: underline; }

.mc-bal-tag { font-size: 13px; color: #4e5969; font-weight: 400; }
.mc-bal-tag b { color: #e05a4e; font-size: 15px; }
.mc-rec-tip { font-size: 13px; color: #909399; margin: 0 0 16px; }
.mc-quick-row { display: flex; gap: 10px; margin-bottom: 4px; }
.mc-amount-btn { padding: 6px 18px; border: 1px solid #dcdcdc; border-radius: 6px; background: #fff; color: #303133; font-size: 14px; cursor: pointer; transition: all .2s; }
.mc-amount-btn:hover { border-color: #409eff; color: #409eff; }
.mc-amount-btn.active { background: #409eff; border-color: #409eff; color: #fff; }
.mc-pay-cards { display: flex; gap: 12px; flex-wrap: wrap; }
.mc-pay-card { cursor: pointer; }
.mc-pay-card-body { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1.5px solid #e4e7ed; border-radius: 8px; background: #fff; transition: all .2s; }
.mc-pay-card.active .mc-pay-card-body { border-color: #409eff; background: #ecf5ff; }
.mc-pay-card-ico, .mc-pay-ico { width: 22px; height: 22px; border-radius: 5px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.mc-pay-card-name { font-size: 14px; color: #303133; }
.mc-pay-card-check { font-style: normal; color: #409eff; font-size: 14px; opacity: 0; }
.mc-pay-card.active .mc-pay-card-check { opacity: 1; }

/* ==================== 官网系统用户中心 1:1 复刻样式（余额充值/余额提现） ==================== */
.uc-gw-zone { --dark: #0b1d30; --ink: #333333; --font: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-family: var(--font); }
/* 内容卡片 */
.uc-gw-zone .user-card {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(11, 29, 48, .05);
  padding: 26px 28px;
  margin-bottom: 18px;
}
.uc-gw-zone .user-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.uc-gw-zone .user-card-head h2 { font-size: 19px; font-weight: 700; color: var(--dark); margin: 0; }
.uc-gw-zone .us-balance { font-size: 14px; color: #5a6b85; }
.uc-gw-zone .us-balance b { font-size: 18px; color: #006eff; }
.uc-gw-zone .user-tip {
  background: #e6f7ff;
  border: 1px solid #bae7ff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: #4a6a90;
  margin-bottom: 18px;
  line-height: 1.7;
}
/* 表单 */
.uc-gw-zone .uaf-item { text-align: left; margin-bottom: 16px; }
.uc-gw-zone .uaf-item label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 600; color: #5a6b85; }
.uc-gw-zone .uaf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e3e6ec;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}
.uc-gw-zone .uaf-input:focus { border-color: #006eff; box-shadow: 0 0 0 3px rgba(0, 110, 255, .1); }
.uc-gw-zone .uaf-submit { width: 100%; padding: 12px; margin-top: 6px; border-radius: 10px; font-size: 15px; letter-spacing: 4px; background: #1677ff; color: #fff; border: none; cursor: pointer; font-family: inherit; }
.uc-gw-zone .uaf-submit:hover { background: #4096ff; }
/* 快捷金额 */
.uc-gw-zone .uc-quick-amounts { display: flex; gap: 10px; margin-bottom: 16px; }
.uc-gw-zone .uc-amount-btn {
  flex: 1;
  padding: 9px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  color: rgba(0, 0, 0, .65);
  font-size: 13.5px;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  font-family: inherit;
}
.uc-gw-zone .uc-amount-btn:hover { border-color: #1677ff; color: #1677ff; }
.uc-gw-zone .uc-amount-btn.active { border-color: #1677ff; background: #1677ff; color: #fff; }
/* 支付通道卡片 */
.uc-gw-zone .uc-pay-row { display: flex; align-items: center; gap: 14px; margin: 2px 0 18px; }
.uc-gw-zone .uc-pay-label { font-size: 14px; color: #666; flex: none; }
.uc-gw-zone .uc-pay-cards { display: flex; flex-wrap: wrap; gap: 14px; flex: 1; }
.uc-gw-zone .uc-pay-card { flex: 0 0 210px; cursor: pointer; }
.uc-gw-zone .uc-pay-card input { display: none; }
.uc-gw-zone .uc-pay-card-body {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.uc-gw-zone .uc-pay-card-body:hover { border-color: #c4d7f7; }
.uc-gw-zone .uc-pay-card input:checked + .uc-pay-card-body { border-color: #3b82f6; }
.uc-gw-zone .uc-pay-card input:checked + .uc-pay-card-body::after {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 26px; height: 26px;
  background: linear-gradient(315deg, #3b82f6 50%, rgba(255, 255, 255, 0) 50%);
}
.uc-gw-zone .uc-pay-card-ico {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.uc-gw-zone .uc-ico-blue { background: linear-gradient(135deg, #3b82f6, #1677ff); }
.uc-gw-zone .uc-ico-green { background: linear-gradient(135deg, #34d399, #10b981); }
.uc-gw-zone .uc-ico-cyan { background: linear-gradient(135deg, #38bdf8, #0284c7); }
.uc-gw-zone .uc-pay-card-name { font-size: 14.5px; color: #111; font-weight: 400; }
.uc-gw-zone .uc-pay-card-check {
  display: none;
  position: absolute; right: 4px; bottom: 3px;
  font-style: normal; font-size: 11px; font-weight: 700; color: #fff;
  z-index: 1;
}
.uc-gw-zone .uc-pay-card input:checked + .uc-pay-card-body .uc-pay-card-check { display: block; }
/* 表格 */
.uc-gw-zone .us-table { width: 100%; border-collapse: collapse; }
.uc-gw-zone .us-table thead th {
  background: #fafbfd;
  font-size: 13px;
  font-weight: 600;
  color: #5a6b85;
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid #eef1f6;
}
.uc-gw-zone .us-table tbody td {
  padding: 12px 14px;
  font-size: 13.5px;
  color: #4a5f80;
  border-bottom: 1px solid #f5f7fa;
  word-break: break-all;
}
.uc-gw-zone .us-table tbody tr:hover td { background: #f8fbff; }
.uc-gw-zone .us-ellipsis { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uc-gw-zone .us-mono { font-family: Consolas, Menlo, monospace; font-size: 12.5px; }
.uc-gw-zone .us-empty { padding: 30px 0; text-align: center; color: #9aa7bd; font-size: 13.5px; }
.uc-gw-zone .us-badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: 12px; }
.uc-gw-zone .us-badge-ok { background: #e8f8ef; color: #0f7b3d; }
.uc-gw-zone .us-badge-no { background: #fdeeee; color: #c0392b; }
.uc-gw-zone .us-badge-warn { background: #fff7e6; color: #d46b08; }

.mc-tf-ico { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 4px; font-size: 11px; font-weight: 700; color: #fff; margin-right: 4px; }
.mc-tf-alipay { background: #1677ff; }
.mc-tf-wxpay { background: #00c6ae; }
.mc-tf-qqpay { background: #12b7f5; }
.mc-tf-bank { background: #16b777; }
.mc-tf-recent { display: flex; justify-content: space-between; padding: 9px 12px; border-bottom: 1px solid #f0f0f0; cursor: pointer; font-size: 14px; }
.mc-tf-recent:hover { background: #f5f7fa; }

.mc-apply-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.mc-apply-card { width: 240px; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; cursor: pointer; transition: all .2s; background: #fff; }
.mc-apply-card:hover { border-color: #1677ff; box-shadow: 0 6px 18px rgba(22,119,255,.12); }
.mc-apply-card-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.mc-apply-card-ico.blue { background: linear-gradient(135deg, #3b82f6, #1677ff); }
.mc-apply-card-ico.green { background: linear-gradient(135deg, #34d399, #10b981); }
.mc-apply-card-name { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 8px; }
.mc-apply-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.mc-apply-tag { font-size: 12px; padding: 1px 8px; border-radius: 4px; background: #eaf2ff; color: #1677ff; }
.mc-apply-meta { font-size: 12px; color: #86909c; }
.mc-apply-meta.free { color: #10b981; }
.mc-apply-card-btn { font-size: 13px; color: #1677ff; font-weight: 600; }

.mc-complain-head { margin-bottom: 12px; }
.mc-complain-title { font-size: 15px; font-weight: 600; color: #303133; }
.mc-complain-meta { font-size: 13px; color: #86909c; margin-top: 6px; }
.mc-complain-body { background: #f5f7fa; border-radius: 6px; padding: 12px 14px; font-size: 13.5px; color: #4e5969; line-height: 1.7; margin-bottom: 16px; }
.mc-complain-timeline { border-top: 1px solid #f0f0f0; padding-top: 12px; }
.mc-complain-tl-title { font-size: 14px; font-weight: 600; color: #303133; margin-bottom: 10px; }
.mc-complain-tl-item { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; font-size: 13.5px; color: #4e5969; }
.mc-complain-tl-tag { flex: none; font-size: 12px; padding: 1px 8px; border-radius: 4px; }
.mc-complain-tl-tag.fb { background: #e8f8ef; color: #0f7b3d; }
.mc-complain-tl-tag.rp { background: #eaf2ff; color: #1677ff; }

/* ==================== 全局正方形风格：用户中心所有输入框/方框/按钮去圆角 ==================== */
#app * { border-radius: 0 !important; }

/* 密码安全页：内容靠左显示 */
.mc-pwd-content { display: flex; flex-direction: column; align-items: flex-start; }
.mc-pwd-content .mc-card-title, .mc-pwd-content .mc-hint { width: 100%; text-align: left; }

.mc-invite-stats { display: flex; flex-direction: column; gap: 12px; }
.mc-invite-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #f0f0f0; }
.mc-invite-row:last-child { border-bottom: none; }
.mc-invite-label { font-size: 14px; color: #86909c; }

/* ---------- 码支付：向用户收款页（对标站 /scanpay 1:1，微信绿主题） ---------- */
.mc-scanpay-page { display: flex; flex-direction: column; height: 100vh; background: #f5f5f5; overflow: hidden; }
.mc-scanpay-header { background: #07c160; color: #fff; text-align: center; padding: 16px; font-size: 18px; font-weight: 700; position: relative; flex: none; }
.mc-scanpay-back { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); cursor: pointer; font-size: 20px; display: flex; align-items: center; }
.mc-scanpay-amount { background: #fff; padding: 30px 20px 20px; text-align: center; flex: none; }
.mc-scanpay-label { color: #999; font-size: 14px; margin-bottom: 16px; }
.mc-scanpay-display { display: flex; align-items: baseline; justify-content: center; min-height: 50px; }
.mc-scanpay-currency { font-size: 24px; color: #333; margin-right: 4px; }
.mc-scanpay-value { font-size: 42px; font-weight: 700; color: #333; letter-spacing: 1px; }
.mc-scanpay-cursor { display: inline-block; width: 2px; height: 40px; background: #07c160; margin-left: 2px; animation: mc-scanpay-blink 1s infinite; }
@keyframes mc-scanpay-blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.mc-scanpay-remark { background: #fff; border-top: 1px solid #eee; padding: 12px 20px; flex: none; }
.mc-scanpay-remark-row { display: flex; justify-content: space-between; align-items: center; color: #666; font-size: 14px; }
.mc-scanpay-remark-action { color: #07c160; cursor: pointer; margin-left: 12px; }
.mc-scanpay-remark-actions { display: flex; }
.mc-scanpay-tip { text-align: center; font-size: 12px; color: #999; padding: 10px 20px; margin-top: 10px; flex: none; }
.mc-scanpay-keyboard { margin-top: auto; flex: none; }
.mc-scanpay-ktable { width: 100%; border-collapse: collapse; table-layout: fixed; background: #d1d5db; }
.mc-scanpay-ktable .key { background: #fff; color: #1a1a1a; text-align: center; font-size: 22px; font-weight: 500; padding: 14px 0; cursor: pointer; user-select: none; border: 1px solid #d1d5db; transition: background .1s; }
.mc-scanpay-ktable .key:active { background: #e5e7eb; }
.mc-scanpay-kdel { background: #e5e7eb !important; color: #1a1a1a !important; }
.mc-scanpay-kconfirm { background: #07c160 !important; color: #fff !important; font-size: 18px !important; font-weight: 700 !important; vertical-align: middle; line-height: 1.4; }
.mc-scanpay-kconfirm:active { background: #06a94f !important; }
.mc-scanpay-modal { position: fixed; inset: 0; background: rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; z-index: 999; }
.mc-scanpay-modal-box { background: #fff; width: 80%; max-width: 320px; overflow: hidden; }
.mc-scanpay-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid #eee; font-weight: 700; }
.mc-scanpay-modal-close { font-size: 22px; cursor: pointer; color: #999; }
.mc-scanpay-modal-body { padding: 16px; }
.mc-scanpay-modal-body .el-textarea { width: 100%; }
.mc-scanpay-modal-btn { width: 100%; margin-top: 12px; }
.mc-scanpay-loading { position: fixed; inset: 0; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.mc-scanpay-loading-content { text-align: center; color: #07c160; }
.mc-scanpay-loading-content p { margin-top: 16px; font-size: 16px; color: #666; }
.mc-scanpay-result-page { justify-content: flex-start; }
.mc-scanpay-result { padding: 60px 20px; text-align: center; }
.mc-scanpay-result-icon { color: #07c160; }
.mc-scanpay-result-icon.fail { color: #f56c6c; }
.mc-scanpay-result-title { font-size: 20px; font-weight: 700; color: #303133; margin: 16px 0 8px; }
.mc-scanpay-result-money { font-size: 24px; font-weight: 700; color: #303133; margin-bottom: 8px; }
.mc-scanpay-result-msg { font-size: 14px; color: #86909c; }
.mc-scanpay-result-btn { margin-top: 28px; padding: 11px 48px; font-size: 16px; }

/* 表格设置：斑马纹 + 表头背景（订单管理表格设置开关） */
.st-head-bg .n-data-table thead th { background: #f5f7fa; }
.st-stripe .n-data-table tbody tr:nth-child(2n) td { background: #fafafa; }

/* ==================== 全站视觉统一（与后台一致） ==================== */
.n-data-table .n-data-table-th {
  background: #f7f8fa !important;
  color: #5a6b85 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-bottom: 1px solid #ebeef2 !important;
}
.n-data-table .n-data-table-td { font-size: 13px; color: #3d4552; }
.n-data-table tbody tr:hover .n-data-table-td { background: #f8fafc !important; }
.mc-page-head { font-size: 17px; }

.mc-qr-upload { display: inline-block; padding: 7px 16px; border: 1px solid #dcdfe6; border-radius: 6px; background: #fff; color: #303133; font-size: 13px; cursor: pointer; transition: all .2s; }
.mc-qr-upload:hover { border-color: #4096ff; color: #4096ff; }
.mc-qr-upload.disabled { opacity: .6; cursor: not-allowed; }

/* 绑定邮箱入口（资料设置：未绑定蓝色链接） */
.mc-bind-email { cursor: pointer; font-weight: 600; }
