:root {
  /* 对齐 wd-midplatform-prototype / tokens.md + shell.md */
  --aside-bg: #050a31;
  --aside-text: rgba(255, 255, 255, 0.85);
  --aside-text-muted: rgba(255, 255, 255, 0.65);
  --aside-active: #006eff;
  --aside-hover: #1a1e43;
  --sub-bg: #fafafa;
  --sub-text: #19191b;
  --sub-active: #006eff;
  --workspace-bg: #f3f5f7;
  --header-h: 58px;
  --aside-w: 145px;
  --aside-collapsed-w: 64px;
  --sub-w: 145px;
  --breadcrumb-h: 48px;
  --footer-h: 53px;
  --gutter: 18px;
  --page-bg: #f3f5f7;
  --panel-bg: #fff;
  --text: #323232;
  --muted: #8e9095;
  --border: #e8e8e8;
  --accent: #006eff;
  --accent-hover: #4096ff;
  --danger: #f5212d;
  --success: #53c31b;
  --warning: #faad14;
  --radius: 2px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --density-pad: 16px;
  --viewport-min-width: 1200px;
}

* { box-sizing: border-box; }
html, body, #root { height: 100%; margin: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* 布局：左侧通高一级栏 + 右侧工作区（HostShell） */
.app-shell,
.wd-host-shell {
  display: flex;
  height: 100%;
  min-width: var(--viewport-min-width);
  background: var(--workspace-bg);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
}
.app-shell.collapsed { --aside-w: var(--aside-collapsed-w); }

/* —— 一级深色侧栏（通高） —— */
.aside {
  flex: 0 0 var(--aside-w);
  width: var(--aside-w);
  background: var(--aside-bg);
  color: var(--aside-text);
  display: flex;
  flex-direction: column;
  z-index: 30;
  overflow: hidden;
}
.aside-brand {
  flex: 0 0 var(--header-h);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 15px;
}
.brand-logo {
  height: 20px;
  width: auto;
  display: block;
  max-width: 98px;
}
.collapse-btn {
  flex: 0 0 auto;
  width: 18px;
  height: 20px;
  border: 0;
  padding: 0;
  margin-left: 8px;
  background: transparent;
  color: #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.collapse-btn:hover { color: #fff; }
.app-shell.collapsed .aside-brand { justify-content: center; padding: 0; }
.app-shell.collapsed .collapse-btn { margin-left: 0; }

.aside-menu {
  flex: 1;
  overflow: auto;
  padding: 4px 0 16px;
}
.aside-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  margin: 4px 0;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
  border-radius: 0;
  transition: background .15s ease;
}
.aside-item:hover { background: var(--aside-hover); }
.aside-item.active {
  background: var(--aside-active);
  color: #fff;
}
.aside-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.aside-label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 40px;
  color: inherit;
}
.app-shell.collapsed .aside-item {
  justify-content: center;
  padding: 0;
}
.app-shell.collapsed .aside-label { display: none; }

/* —— 右侧工作区 —— */
.workspace {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--workspace-bg);
}
.topbar {
  flex: 0 0 var(--header-h);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px;
  background: #fff;
  z-index: 20;
}
.topbar-right {
  display: flex;
  align-items: center;
  color: #323232;
  font-size: 14px;
}
.topbar-link {
  color: #323232;
  height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.topbar-link:hover { color: var(--accent); }
.topbar-divider {
  width: 1px;
  height: 20px;
  background: #e8e8e8;
  margin: 0 24px;
  flex-shrink: 0;
}
.topbar-org {
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar-user {
  color: #323232;
  white-space: nowrap;
}

.workspace-body {
  flex: 1;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

/* —— 二级菜单 —— */
.submenu {
  flex: 0 0 var(--sub-w);
  width: var(--sub-w);
  background: var(--sub-bg);
  overflow: auto;
  padding: 15px 0 16px;
}
.submenu-group { margin: 0; }
.submenu-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--sub-text);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
}
.submenu-group-title:hover { color: var(--sub-active); }
.submenu-item {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 16px;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--sub-text);
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  border-radius: 0;
}
.submenu-item.child {
  height: 32px;
  margin: 2px 0;
  padding: 0 16px 0 32px;
  font-size: 13px;
}
.submenu-item:hover { color: var(--sub-active); }
.submenu-item.active {
  color: var(--sub-active);
  background: transparent;
  font-weight: 400;
}
.submenu-children { padding: 0; }
.chev-down {
  width: 12px;
  height: 12px;
  display: inline-flex;
  color: rgba(0, 0, 0, 0.45);
  transition: transform .18s ease;
}
.chev-down.open { transform: rotate(180deg); }

/* —— Main（gutter 18px · 面包屑 / 白盒 / 页脚） —— */
.main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
  background: var(--workspace-bg);
  padding: var(--gutter) var(--gutter) 0;
  box-sizing: border-box;
}

.breadcrumb .crumb-link {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.breadcrumb .crumb-link:hover { color: var(--accent); }

.table-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.table-toolbar:has(> :nth-child(2)) {
  justify-content: space-between;
}

.board-page {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: calc(100vh - 180px);
}
.board-meta-panel {
  margin-bottom: 0;
  padding: 18px 24px 16px;
}
.board-meta-hd {
  margin-bottom: 12px;
}
.board-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.board-title {
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.4;
}
.board-meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.5;
}
.board-meta-inline em {
  font-style: normal;
  color: rgba(0, 0, 0, 0.45);
  margin-right: 8px;
}
.board-metrics-panel {
  margin-bottom: 0;
  padding: 16px 20px 20px;
  flex: 1;
}
.board-metric-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.board-metric-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.board-metric-card {
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  padding: 16px 18px 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  min-width: 0;
}
.board-metric-card-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f5f5;
}
.board-metric-card-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.4;
  flex-shrink: 0;
}
.board-metric-card-desc {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.4;
  text-align: right;
}
.board-metric-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.board-trade-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 14px 0;
}
.board-trade-row + .board-trade-row {
  border-top: 1px dashed #eef0f3;
}
.board-trade-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 64px;
  border-radius: 6px;
  background: rgba(0, 110, 255, 0.06);
  color: #006eff;
  font-size: 13px;
  font-weight: 600;
}
.board-trade-tag.is-refund {
  background: rgba(255, 77, 79, 0.06);
  color: #ff4d4f;
}
.board-metric-pair {
  display: grid;
  gap: 8px 0;
  min-width: 0;
}
.board-metric-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.board-metric-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.board-metric-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.board-metric-block {
  min-width: 0;
  padding: 4px 14px;
  border-left: 1px solid #f0f0f0;
}
.board-metric-pair .board-metric-block:first-child {
  padding-left: 4px;
  border-left: none;
}
.board-metric-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.board-metric-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  line-height: 1.2;
}
.board-metric-num {
  font-size: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  letter-spacing: -0.02em;
  word-break: break-all;
}
.board-metric-unit {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}
.board-page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  position: sticky;
  bottom: 0;
  z-index: 2;
}
.detail-page-body { padding: 0 16px 16px; background: #fff; }
.detail-table-panel .table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
.detail-meta-header {
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 24px;
  justify-content: flex-start !important;
}
.detail-meta-header span {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .board-metric-top { grid-template-columns: 1fr; }
  .board-metric-cols-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .board-metric-cols-3,
  .board-metric-cols-4,
  .board-metric-cols-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .board-trade-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .board-trade-tag {
    width: fit-content;
    min-height: auto;
    padding: 4px 10px;
  }
}
@media (max-width: 720px) {
  .board-metric-cols-3,
  .board-metric-cols-4,
  .board-metric-cols-5 { grid-template-columns: 1fr; }
  .board-metric-block {
    padding-left: 0 !important;
    border-left: none !important;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
  }
  .board-metric-pair .board-metric-block:first-child {
    padding-top: 0;
    border-top: none;
  }
  .board-metric-card-hd {
    flex-direction: column;
    align-items: flex-start;
  }
  .board-metric-card-desc { text-align: left; }
  .board-page-footer { flex-wrap: wrap; }
}

.store-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  font-size: 14px;
  color: rgb(51, 51, 51);
}

.store-detail-summary {
  margin-top: 0;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.store-detail-summary .summary-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}
.store-detail-summary .summary-label {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  color: rgb(50, 50, 50);
  font-size: 14px;
}
.store-detail-summary .summary-value {
  width: 28%;
  min-width: 140px;
  padding: 12px 16px;
  text-align: center;
  color: rgb(50, 50, 50);
  font-size: 14px;
  border-left: 1px solid #f0f0f0;
}

.store-detail-modal .ant-modal-body {
  overflow-x: hidden;
}
.store-detail-modal .ant-table-body,
.store-detail-modal .ant-table-content,
.store-detail-modal .ant-table-container {
  overflow-x: hidden !important;
}
.store-detail-modal .ant-table {
  width: 100% !important;
}
.store-detail-modal .ant-table-thead > tr > th,
.store-detail-modal .ant-table-tbody > tr > td {
  white-space: normal;
  word-break: break-all;
}
.store-detail-modal .ant-table-thead > tr > th:last-child,
.store-detail-modal .ant-table-tbody > tr > td:last-child {
  white-space: nowrap !important;
  word-break: keep-all;
}

.store-detail-footer {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 4px;
}
.store-detail-footer .ant-btn + .ant-btn {
  margin-left: 16px;
}
.store-detail-modal .ant-modal-footer {
  border-top: none;
  padding-top: 8px;
}

.settle-fee-table {
  width: 100%;
  margin-top: 0;
  border-collapse: collapse;
  font-size: 14px;
}
.settle-fee-table td {
  border: 1px solid #f0f0f0;
  padding: 12px 16px;
  text-align: center;
}
.settle-fee-table td:first-child {
  width: 70%;
  color: rgb(50, 50, 50);
}
.settle-fee-table td:last-child {
  width: 30%;
  color: rgb(50, 50, 50);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--breadcrumb-h);
  line-height: var(--breadcrumb-h);
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  flex-shrink: 0;
}
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: #121212; }

/* ★ 主应用白盒 — 禁止改 background / radius / padding / 加阴影 */
.content,
.host-content {
  background: #fff;
  border-radius: 2px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  flex: 1 0 auto;
  min-height: calc(100vh - var(--header-h) - var(--footer-h) - var(--breadcrumb-h) - var(--gutter));
}

.panel {
  background: var(--panel-bg);
  border-radius: var(--radius);
  padding: 16px 16px 0;
  margin-bottom: 12px;
}
.search-panel {
  overflow: visible;
  position: relative;
  z-index: 5;
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 16px;
}
.field {
  display: flex;
  align-items: center;
  min-width: 0;
}
.field > label {
  flex: 0 0 100px;
  width: 100px;
  color: rgba(0, 0, 0, 0.88);
  text-align: right;
  white-space: nowrap;
  font-size: 14px;
  line-height: 32px;
}
.field > label::after {
  content: ":";
  margin: 0 8px 0 2px;
}
.field > .ant-input,
.field > .ant-input-affix-wrapper,
.field > .ant-select,
.field > .ant-picker,
.field > .ant-cascader,
.field > .ant-input-number,
.field > .ant-space-compact {
  flex: 1;
  min-width: 0;
}

.filter-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 0 16px;
  grid-column: 1 / -1;
}

.table-panel {
  background: var(--panel-bg);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-panel.detail-table-panel {
  overflow: visible;
}
.table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
}
.ops {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  white-space: nowrap;
}

.reject-banner {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff2f0;
  border: 1px solid #ffccc7;
  color: #cf1322;
  font-size: 13px;
}
.meta-banner {
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 13px;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.meta-k {
  color: var(--muted);
}
.required-inline::before {
  content: "*";
  color: var(--danger);
  margin-right: 4px;
}
.store-pick-filters {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.store-pick-filters .field {
  min-width: 0;
}
.store-pick-filters .field > label {
  flex: 0 0 72px;
  width: 72px;
}
.empty-hint {
  text-align: center;
  color: #bfbfbf;
  padding: 36px 12px;
  font-size: 13px;
}

.footer-note {
  height: var(--footer-h);
  line-height: var(--footer-h);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 0;
  flex-shrink: 0;
}
.footer-note::after { content: none; }

/* —— Placeholder module —— */
.placeholder {
  background: #fff;
  min-height: 420px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
}
.placeholder h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}
.placeholder p { margin: 0; font-size: 13px; }
.tag-lite {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 110, 255, 0.08);
  color: var(--accent);
  font-size: 12px;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100%;
  background: #fff;
  z-index: 1001;
  box-shadow: -8px 0 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  animation: slideIn .2s ease;
}
.drawer-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.drawer-bd { padding: 20px; overflow: auto; flex: 1; }
.kv {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 12px;
  font-size: 13px;
}
.kv dt { color: var(--muted); }
.kv dd { margin: 0; color: var(--text); }

.rules-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: calc(100vh - 160px);
}
.rules-panel {
  background: #fff;
  border-radius: 4px;
  padding: 20px 24px 28px;
}
.rules-panel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.rules-form { display: grid; gap: 28px; }
.rules-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: start;
}
.rules-item > label {
  text-align: right;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.88);
  white-space: nowrap;
  font-size: 14px;
}
.rules-item.required > label::before {
  content: "*";
  color: var(--danger);
  margin-right: 4px;
}
.rules-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  min-width: 0;
}
.rules-item-radio .rules-control {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.rules-input { width: 200px; }
.rules-input-sm { width: 120px; }
.rules-input .control {
  width: 100%;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 6px 0 0 6px;
  padding: 4px 11px;
}
.rules-hint {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1.5;
}
.rules-hint-block { margin-top: 2px; }
.rules-radios {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}
.rules-radios .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}
.rules-radios .radio input { width: 16px; height: 16px; }
.rules-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rules-inline-text {
  color: var(--text);
  font-size: 14px;
  white-space: nowrap;
}
.rules-footer {
  display: flex;
  justify-content: center;
  padding: 8px 0 24px;
}

/* —— 内容中心 · 视频管理：对齐 mp-sub-video WdTable —— */
.wd-video-list.wd-table {
  background: #fff;
}
.wd-video-list .search-form {
  background: #fff;
  padding-top: 16px;
  margin-bottom: 16px;
  padding-right: 10px;
}
.wd-video-list .search-form .filters {
  row-gap: 0;
  column-gap: 24px;
}
.wd-video-list .search-form .field {
  margin-bottom: 15px;
}
.wd-video-list .search-btns {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 0;
}
.wd-video-list .wd-table-space {
  height: 16px;
  margin: 0 -20px 16px;
  background: #f3f5f7;
}
.wd-video-list .wd-table-space::before {
  display: none;
}
.wd-video-list .wd-table-topslot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 0 0 16px;
  margin: 0;
}
.wd-video-list .ant-btn {
  min-width: 90px;
  border-radius: 4px;
  padding: 0 16px;
}
.wd-video-list .ant-btn-link {
  min-width: auto;
  padding: 0 8px 0 0;
}
.wd-video-list .wd-pro-table .ant-table-content {
  min-height: 500px;
}
.wd-video-list .wd-pro-table .ant-table-thead > tr > th {
  font-weight: 500;
  color: #252525 !important;
  padding: 16px 20px;
  background: #fff !important;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.wd-video-list .wd-pro-table .ant-table-thead > tr > th::before {
  background-color: transparent !important;
}
.wd-video-list .wd-pro-table .ant-table-tbody > tr > td {
  line-height: 44px;
  color: #595959;
  padding: 8px 20px;
  background: #fff;
  white-space: nowrap;
}
.wd-video-list .ant-picker-range {
  flex-wrap: nowrap;
}
.wd-video-list .wd-pro-table .ant-table-tbody > tr:hover > td {
  background: #fafafa;
}
.wd-video-list .pager-bar {
  display: flex;
  justify-content: flex-end;
  padding: 16px 0 0;
  background: #fff;
  border-top: 0;
}
.wd-video-list .ant-pagination-item {
  border-radius: 4px;
  font-weight: 400;
}
.wd-video-list .ant-pagination-options .ant-select-selector,
.wd-video-list .ant-pagination-options-quick-jumper > input {
  border-radius: 4px;
}
.wd-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
}
.wd-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  flex: 0 0 auto;
}
.wd-video-list .table-ops {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.micropage-list .table-ops {
  gap: 0;
}
.micropage-list .table-ops a {
  margin-right: 10px;
}
.wd-video-list .table-ops a {
  color: #006eff;
  cursor: pointer;
}

.wd-video-form {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.wd-video-form .ant-form-item {
  margin-bottom: 30px;
}
.wd-video-form .ant-form-item-label > label {
  color: #333;
}
.wd-video-form .field-spec {
  display: block;
  margin-top: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  max-width: 420px;
}
.wd-video-form .wd-form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto -20px -20px;
  padding: 24px 20px 16px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.section-title {
  position: relative;
  margin: 8px 0 20px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #252525;
  line-height: 22px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 16px;
  background: #006EFF;
  border-radius: 1px;
}
.wd-empty-block {
  padding: 48px 20px;
  text-align: center;
  color: var(--muted);
}
.wd-empty-block p {
  margin: 0 0 16px;
}

.wd-upload .ant-btn-default {
  color: #006eff;
  border-color: #006eff;
  border-radius: 2px;
  min-width: auto;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wd-upload .ant-btn-default:hover {
  color: #4096ff;
  border-color: #4096ff;
}
.wd-upload-dragger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
  min-height: 140px;
  padding: 16px;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  background: #fafafa;
  cursor: pointer;
  box-sizing: border-box;
}
.wd-upload-dragger:hover {
  border-color: #006eff;
}
.wd-upload-dragger.is-disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.wd-upload-cloud {
  font-size: 28px;
  color: #c0c4cc;
  line-height: 1;
  margin-bottom: 8px;
}
.wd-upload-text {
  margin: 0;
  font-size: 14px;
  color: #606266;
}
.wd-upload-text .wd-click-text {
  color: #006eff;
}
.wd-upload-dragger-file {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}
.wd-upload-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  max-width: 420px;
}
.video-file-name {
  display: inline-block;
  max-width: 280px;
  color: #323232;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mp-sim-modal .ant-modal-body {
  padding: 8px 16px 16px;
}
.mp-sim.mp-sim-modal-body {
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.mp-sim { background: transparent; }
.mp-phone {
  width: 292px;
  margin: 0 auto;
  border: 10px solid #111;
  border-radius: 36px;
  background: #111;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.mp-phone-screen {
  background: #f7f2ea;
  height: 580px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
}
.mp-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 0;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  background: #fff;
}
.mp-status-icons { display: inline-flex; align-items: center; gap: 4px; }
.mp-sig, .mp-wifi, .mp-bat {
  display: inline-block;
  background: #111;
}
.mp-sig { width: 12px; height: 8px; clip-path: polygon(0 100%, 25% 60%, 25% 100%, 50% 35%, 50% 100%, 75% 15%, 75% 100%, 100% 0, 100% 100%); }
.mp-wifi { width: 12px; height: 9px; border: 2px solid #111; border-bottom: 0; border-radius: 10px 10px 0 0; background: transparent; }
.mp-bat { width: 16px; height: 8px; border: 1.5px solid #111; border-radius: 2px; position: relative; background: linear-gradient(90deg, #111 70%, transparent 70%); }
.mp-bat::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 1px;
  width: 2px;
  height: 4px;
  background: #111;
  border-radius: 0 1px 1px 0;
}
.mp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 10px;
  background: #fff;
}
.mp-nav-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mp-pin {
  width: 8px;
  height: 8px;
  border-radius: 50% 50% 50% 0;
  background: #111;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}
.mp-capsule {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  gap: 8px;
}
.mp-capsule-dots {
  width: 16px;
  height: 4px;
  background:
    radial-gradient(circle, #333 1.4px, transparent 1.5px) 0 50%/5px 4px repeat-x;
}
.mp-capsule-split {
  width: 1px;
  height: 12px;
  background: rgba(0, 0, 0, 0.12);
}
.mp-capsule-close {
  width: 12px;
  height: 12px;
  border: 1.5px solid #333;
  border-radius: 50%;
  position: relative;
}
.mp-capsule-close::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1.5px solid #333;
}
.mp-scroll {
  flex: 1;
  overflow: auto;
  background: #f7f2ea;
}
.mp-banner-wrap {
  position: relative;
  margin: 0 10px;
}
.mp-banner {
  height: 152px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.mp-banner-video { background: #000; }
.mp-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mp-mute-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}
.mp-tap-tip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 11px;
  white-space: nowrap;
  transition: opacity .3s ease;
}
.mp-tap-tip.hide { opacity: 0; }
.mp-banner-static.theme-warm {
  background: linear-gradient(135deg, #f6e2c8 0%, #e8b48a 48%, #c98a6a 100%);
}
.mp-banner-static.theme-dark {
  background: linear-gradient(135deg, #2b2b2b 0%, #4a3f35 55%, #8a6a4a 100%);
}
.mp-banner-static.theme-green {
  background: linear-gradient(135deg, #d9efe4 0%, #8fc9ad 50%, #4e8f75 100%);
}
.mp-banner-cover {
  background:
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #c9a27a 0%, #8d5b3d 48%, #4a2f22 100%);
}
.mp-banner-copy {
  padding: 20px 14px;
  color: #3a2a1a;
}
.mp-banner-copy.dark { color: #fff7ec; }
.mp-banner-kicker { font-size: 11px; opacity: 0.8; margin-bottom: 6px; }
.mp-banner-h { font-size: 16px; font-weight: 700; line-height: 1.3; }
.mp-banner-s { margin-top: 8px; font-size: 12px; opacity: 0.9; }
.mp-banner-cover-mask {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.55));
  color: #fff;
}
.mp-banner-cover-title { font-size: 14px; font-weight: 600; }
.mp-banner-cover-sub { font-size: 11px; opacity: 0.85; margin-top: 4px; }
.mp-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}
.mp-dot {
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.mp-dot.active {
  background: #fff;
  width: 12px;
  border-radius: 4px;
}
.mp-member {
  margin: 10px 10px 0;
  background: #efe4d6;
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d0d0d0, #f5f5f5);
  border: 2px solid #fff;
  flex: 0 0 auto;
}
.mp-member-text { flex: 1; min-width: 0; }
.mp-member-main { font-size: 12px; color: #333; font-weight: 500; }
.mp-member-sub { font-size: 11px; color: #8a6a4a; margin-top: 2px; }
.mp-member-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #b59a7c;
  border-top: 1.5px solid #b59a7c;
  transform: rotate(45deg);
}
.mp-quick {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 14px 8px 6px;
  background: transparent;
}
.mp-quick-item { text-align: center; }
.mp-quick-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 0 auto 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.mp-quick-label { font-size: 10px; color: #444; }
.mp-cate-bar, .mp-floors {
  display: flex;
  gap: 14px;
  padding: 8px 12px 0;
  overflow: auto;
  white-space: nowrap;
  font-size: 13px;
  color: #888;
}
.mp-cate-bar .active {
  color: #111;
  font-weight: 700;
  position: relative;
}
.mp-cate-bar .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 14px;
  height: 2px;
  margin-left: -7px;
  background: #111;
  border-radius: 1px;
}
.mp-floors { gap: 8px; padding-top: 10px; }
.mp-floors span {
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #eadfce;
  font-size: 11px;
  color: #666;
}
.mp-floors .active {
  background: #f3e7d8;
  color: #7a5a3a;
  border-color: #e2cfb6;
}
.mp-stores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 10px 18px;
}
.mp-store {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.mp-store-img { height: 78px; }
.mp-store-body { padding: 8px; position: relative; min-height: 56px; }
.mp-store-name { font-size: 12px; font-weight: 700; color: #222; }
.mp-store-desc { font-size: 10px; color: #999; margin-top: 2px; }
.mp-store-floor {
  position: absolute;
  right: 8px;
  bottom: 8px;
  font-size: 10px;
  color: #bbb;
}
.mp-tabbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #efe6da;
  padding: 6px 0 10px;
}
.mp-tab {
  text-align: center;
  font-size: 10px;
  color: #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mp-tab.active { color: #111; font-weight: 600; }
.mp-tab-ico {
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
  display: block;
  opacity: 0.85;
}
.mp-tab-ico.home { border-radius: 3px 3px 2px 2px; clip-path: polygon(50% 0, 100% 40%, 100% 100%, 0 100%, 0 40%); border: 0; background: currentColor; }
.mp-tab-ico.park { border-radius: 50%; }
.mp-tab-ico.coupon { border-radius: 3px; }
.mp-tab-ico.me { border-radius: 50%; width: 14px; height: 14px; margin-top: 2px; box-shadow: 0 8px 0 -3px currentColor; }
.mp-sim-foot {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.cell-ellipsis {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-form { display: grid; gap: 12px; padding-bottom: 104px; }
.activity-form-panel {
  background: #fff;
  border-radius: 2px;
  padding: 20px;
}
.form-section-title {
  margin: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.activity-form-panel > .form-section-title:first-child {
  margin-top: 0;
}
.activity-form-panel .form-section + .form-section {
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}
.form-section-desc {
  margin: 0;
  color: #8c8c8c;
  font-size: 13px;
  line-height: 1.6;
}
.form-section-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 20px;
}
.activity-form-panel .form-section-hd .form-section-title {
  margin: 0 0 4px;
}
.activity-form-panel .form-section:first-child .form-section-hd {
  margin-top: 0;
}
.store-manage-title {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.store-manage-name { flex: 0 0 auto; }
.store-manage-desc {
  flex: 1 1 0%;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
}
.store-manage-title .btn-ghost {
  flex: 0 0 auto;
  margin-left: 12px;
  align-self: center;
}
.form-grid-2 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  row-gap: 0;
  margin-bottom: 8px;
}
.form-grid-2 > .form-item {
  width: 520px;
  max-width: 100%;
}
.form-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  gap: 0 10px;
  margin-bottom: 30px;
}
.form-item-full { width: 100%; }
.form-item > label {
  text-align: right;
  color: rgba(0, 0, 0, 0.88);
  line-height: 32px;
  white-space: nowrap;
  font-size: 14px;
}
.form-item.required > label::before {
  content: "*";
  color: var(--danger);
  margin-right: 4px;
}
.form-control-wrap { min-width: 0; position: relative; }
.control-w { width: 360px; max-width: 100%; }
.form-control-wrap > .control,
.form-control-wrap .affix-input .control,
.activity-form-panel .control {
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 4px 11px;
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
  width: 100%;
}
.form-control-wrap > .control:hover,
.form-control-wrap .affix-input .control:hover,
.activity-form-panel .control:hover {
  border-color: var(--accent);
}
.form-control-wrap > .control:focus,
.form-control-wrap .affix-input .control:focus,
.activity-form-panel .control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 110, 255, 0.12);
}
.form-control-wrap .control-w.range-picker,
.form-control-wrap .control-w.select-wrap,
.form-control-wrap .control-w.affix-input {
  width: 360px;
  max-width: 100%;
}
.form-readonly {
  min-height: 32px;
  line-height: 32px;
  color: var(--text);
  word-break: break-all;
}
.char-count {
  position: absolute;
  right: 10px;
  top: 8px;
  color: #bfbfbf;
  font-size: 12px;
  pointer-events: none;
}
.field-error { color: var(--danger); font-size: 12px; margin-top: 4px; }
.field-hint { color: #8c8c8c; font-size: 12px; margin-top: 4px; line-height: 1.5; }
.field-hint-order-amount {
  margin-top: 8px;
  max-width: 360px;
}
.field-hint-order-amount .field-hint-main {
  color: rgba(0, 0, 0, 0.65);
  line-height: 20px;
}
.field-hint-order-amount .field-hint-value {
  color: rgba(0, 0, 0, 0.88);
  font-variant-numeric: tabular-nums;
}
.field-hint-order-amount .field-hint-sub {
  margin-top: 2px;
  color: #8c8c8c;
  line-height: 18px;
}
.affix-input {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.affix-input .control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex: 1;
}
.affix-input .affix {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  background: #fafafa;
  border: 1px solid #d9d9d9;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  color: #595959;
  font-size: 13px;
}
.check-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; min-height: 32px; }
.radio-row.ant-radio-group,
.activity-form-panel .radio-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 32px;
  line-height: 32px;
}
.radio-row .ant-radio-wrapper {
  display: inline-flex;
  align-items: center;
  line-height: 32px;
  margin-inline-end: 16px;
}
.check { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.check.disabled { opacity: 0.45; cursor: not-allowed; }
.check input { width: 14px; height: 14px; }

.ratio-group {
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  padding: 0 0 20px;
  margin-bottom: 20px;
  background: transparent;
  overflow: visible;
}
.ratio-group-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  margin: 0;
  background: #f9f9f9;
  border-bottom: 1px solid #d7d7d7;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.ratio-group-hd .btn-link {
  margin-left: 10px;
  color: var(--accent);
  padding: 0;
  height: auto;
  border: 0;
  background: transparent;
}
.ratio-group-hd .btn-link:disabled,
.ratio-group-hd .btn-link[disabled] {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.ratio-group-body { padding-top: 10px; }
.ratio-title-item {
  margin: 10px 0 6px;
  padding: 0;
}
.ratio-title-item > label { width: 150px; }
.ratio-fields-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
}
.ratio-fields-row > .ratio-field-item {
  width: auto;
  max-width: none;
  margin-bottom: 20px;
  flex: 0 0 auto;
  grid-template-columns: 150px 160px;
}
.ratio-fields-row > .ratio-field-item > label {
  width: 150px;
}
.ratio-input { width: 160px; max-width: 100%; }
.ratio-input .control {
  width: 100%;
  -moz-appearance: textfield;
  appearance: textfield;
}
.ratio-input .control::-webkit-outer-spin-button,
.ratio-input .control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.store-block { margin-top: 0; }
.store-block-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 20px 0 34px;
  gap: 8px 12px;
  min-height: 32px;
}
.store-block-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
}
.store-block-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.88);
  line-height: 32px;
}
.store-block-label.required::before {
  content: "*";
  color: var(--danger);
  margin-right: 4px;
}
.store-block-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.store-block-table {
  margin: 8px 20px 0 34px;
}
.store-count {
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 400;
  line-height: 32px;
}
.store-label-item {
  width: auto;
  margin-bottom: 16px;
  display: block;
  grid-template-columns: none;
}
.store-label-item > label {
  display: inline-block;
  width: auto;
  text-align: left;
  line-height: 32px;
}
.store-block-hd .btn-ghost {
  margin: 0;
  height: 32px;
}
.activity-form .ratio-group:last-of-type {
  margin-bottom: 12px;
}
.activity-form .ratio-group-add {
  height: 40px;
  margin-top: 0;
  margin-bottom: 8px;
  border-style: dashed;
  color: rgba(0, 0, 0, 0.65);
}
.activity-form .ratio-group-add:hover:not(:disabled) {
  color: #006eff;
  border-color: #006eff;
}
.store-table-wrap {
  margin: 0 20px 0 30px;
  overflow-x: auto;
  max-width: calc(100% - 50px);
}
.store-table-wrap .data {
  width: 100%;
  min-width: 720px;
  table-layout: fixed;
}
.store-table-wrap .data th:nth-child(1),
.store-table-wrap .data td:nth-child(1) { width: 140px; }
.store-table-wrap .data th:nth-child(2),
.store-table-wrap .data td:nth-child(2) { width: 22%; }
.store-table-wrap .data th:nth-child(3),
.store-table-wrap .data td:nth-child(3) { width: 200px; }
.store-table-wrap .data th:nth-child(4),
.store-table-wrap .data td:nth-child(4) { width: 200px; }
.store-table-wrap .data th:nth-child(5),
.store-table-wrap .data td:nth-child(5) { width: 80px; }
.store-table-wrap .data td {
  white-space: normal;
  word-break: break-all;
}
.store-cap-input { width: 140px; }
.store-rate-input { width: 120px; }
.store-table-wrap .affix-input .control {
  height: 32px;
  border-radius: 6px 0 0 6px;
}

.store-picker-modal {
  width: min(960px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}
.store-picker-modal .modal-bd {
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.store-picker-bd { gap: 16px; padding: 16px 24px; }
.store-pick-search {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px 16px;
}
.store-pick-search .field {
  flex: 0 1 280px;
  max-width: 300px;
  min-width: 220px;
}
.store-pick-search .field > label {
  flex: 0 0 72px;
  width: 72px;
  text-align: right;
}
.store-pick-search .btn-primary { flex: 0 0 auto; }
.store-pick-table {
  max-height: min(420px, 48vh);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.store-pick-table table.data {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}
.store-pick-table table.data th,
.store-pick-table table.data td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-pick-table table.data tbody tr { cursor: pointer; }
.store-pick-table table.data tbody tr:hover { background: #fafafa; }
.store-pick-table table.data tbody tr.is-selected { background: #e6f4ff; }
.store-pick-table table.data tbody tr.is-selected:hover { background: #e6f4ff; }
.store-pick-table table.data th:nth-child(1),
.store-pick-table table.data td:nth-child(1) { width: 48px; text-align: center; }
.store-pick-table table.data th:nth-child(2),
.store-pick-table table.data td:nth-child(2) { width: 28%; }
.store-pick-table table.data th:nth-child(3),
.store-pick-table table.data td:nth-child(3) { width: 32%; }
.store-pick-table table.data th:nth-child(4),
.store-pick-table table.data td:nth-child(4) { width: 18%; }
.store-pick-table table.data th:nth-child(5),
.store-pick-table table.data td:nth-child(5) { width: 14%; }
.store-picker-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.store-picker-modal .pager {
  margin: 0;
  padding: 0;
  border-top: 0;
  justify-content: flex-start;
  flex: 1;
  background: transparent;
}
.store-picker-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.modal-close {
  border: 0;
  background: transparent;
  color: #8c8c8c;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}
.modal-close:hover { color: #595959; }

.form-footer {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 16px 14px;
  background: #fff;
  border-top: 1px solid var(--border);
  margin: 0 -20px -28px;
  z-index: 5;
}
.form-footer .btn + .btn { margin-left: 0; }
.form-footer-save { margin-left: 20px !important; margin-right: 20px !important; }
.btn-ghost {
  background: #fff;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-ghost:hover { background: rgba(0, 110, 255, 0.04); color: var(--accent); }
.btn-ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.activity-form-panel .control:disabled,
.activity-form-panel .control[readonly]:disabled,
.affix-input .control:disabled {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
  border-color: #d9d9d9;
  box-shadow: none;
}
.select-wrap.disabled .control {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.datetime-range {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  height: 32px;
}
.datetime-range input[type="datetime-local"] {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  height: 28px;
}
.ratio-input { width: 160px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes slideIn { from { transform: translateX(16px); opacity: 0; } to { transform: none; opacity: 1; } }

@media (max-width: 1200px) {
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rules-item { grid-template-columns: 140px minmax(0, 1fr); }
}

/* —— 商户中心 · 商户入驻检索：按钮居中对齐 SP 营销 WdTable —— */
.merchant-settle-in.wd-video-list .search-form .filters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 0;
}
.merchant-settle-in.wd-video-list .search-form .field > label {
  flex: 0 0 110px;
  width: 110px;
}
.settle-in-entry .ant-input,
.settle-in-entry .ant-select,
.settle-in-edit-account .ant-input,
.settle-in-edit-account .ant-select {
  border-radius: 2px;
}
.settle-in-entry.wd-video-form,
.settle-in-edit-account.wd-video-form {
  display: block;
  background: transparent;
  padding-top: 8px;
  min-height: 100%;
  height: auto;
}
.settle-section {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 0;
}
.settle-section + .settle-section {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.settle-form-stack .form-item {
  width: 100%;
  max-width: none;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: start;
  margin-bottom: 30px;
}
.settle-form-stack .form-item > label {
  white-space: nowrap;
  line-height: 32px;
  padding-top: 0;
}
.settle-in-entry.ant-form .ant-form-item {
  margin-bottom: 30px;
}
.settle-in-entry.ant-form .ant-form-item-label {
  flex: 0 0 200px !important;
  width: 200px !important;
  max-width: 200px;
}
.settle-in-entry.ant-form .ant-form-item-label > label {
  height: auto;
  min-height: 32px;
  white-space: nowrap;
  padding-right: 12px;
}
.settle-in-entry.ant-form .ant-form-item-control {
  padding-left: 8px;
}
.settle-in-entry.ant-form .ant-form-item-extra,
.settle-in-entry.ant-form .ant-form-item-explain {
  min-height: 0;
  font-size: 12px;
  line-height: 20px;
  color: #8c8c8c;
}
.settle-in-entry.ant-form .ant-col-24 .control-w,
.settle-in-entry.ant-form .ant-col-24 .ant-input,
.settle-in-entry.ant-form .ant-col-24 .ant-select,
.settle-in-entry.ant-form .ant-col-24 .ant-cascader {
  width: 360px;
  max-width: 100%;
}
.settle-portrait {
  margin: -4px 0 20px 0;
  font-size: 13px;
  color: #595959;
  line-height: 22px;
}
.settle-portrait em {
  font-style: normal;
  color: #006EFF;
  font-weight: 600;
  margin-right: 8px;
}
.settle-subhead {
  position: relative;
  margin: 4px 0 16px;
  padding-left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #252525;
  line-height: 22px;
}
.settle-subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 12px;
  background: #91caff;
  border-radius: 1px;
}
.settle-in-entry.wd-video-form .wd-form-footer,
.settle-in-entry .wd-form-footer {
  margin: 24px 0 0;
  padding: 24px 0 0 208px;
  justify-content: flex-start;
  background: transparent;
  border-top: 1px solid #f0f0f0;
}
.store-manage-form .wd-form-footer {
  margin: 32px -20px 0;
  justify-content: flex-start;
  padding-left: 220px;
}
.store-manage-list.wd-video-list .search-form .filters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
}
.store-manage-list.wd-video-list .search-form .field > label {
  flex: 0 0 110px;
  width: 110px;
}
.store-manage-list.wd-video-list .wd-table-topslot {
  justify-content: space-between;
}
.store-manage-list.wd-video-list .wd-table-topslot .ant-input-search .ant-btn {
  min-width: 32px;
  padding: 0 8px;
}
.settle-in-edit-account .wd-form-footer,
.settle-in-detail .wd-form-footer {
  margin: 32px -20px 0;
  justify-content: flex-start;
  padding-left: 220px;
}
.settle-drag-upload-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.settle-drag-upload.ant-upload-picture-card-wrapper .ant-upload-select,
.settle-drag-upload.ant-upload-picture-card-wrapper .ant-upload-list-item-container {
  width: 168px !important;
  height: 104px !important;
  margin: 0 !important;
}
.settle-drag-upload .ant-upload-select {
  border-radius: 2px;
  background: #fafafa;
}
.settle-drag-upload .ant-upload-select .ant-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.settle-upload-text {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 20px;
  padding: 0;
  white-space: nowrap;
}
.settle-upload-hint {
  font-size: 12px;
  line-height: 20px;
  color: #8c8c8c;
  white-space: nowrap;
}
.settle-upload-text em {
  color: #006EFF;
  font-style: normal;
}
.settle-in-detail {
  padding-bottom: 8px;
}
.settle-in-detail .ant-tabs-nav {
  margin-bottom: 8px;
}
.settle-in-detail .section-title {
  margin-top: 16px;
}
.settle-in-detail .ant-descriptions {
  margin-bottom: 8px;
}
.settle-photo-card {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: #006eff;
  cursor: pointer;
}
.settle-photo-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border: 1px dashed #d9d9d9;
  border-radius: 2px;
  color: #8c8c8c;
  background: #fafafa;
}
.settle-photo-preview {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #8c8c8c;
  border-radius: 2px;
}
.settle-edit-sub {
  margin: -8px 0 24px 0;
  color: #8c8c8c;
  font-size: 13px;
}
.settle-in-detail.wd-table {
  background: #fff;
  padding: 16px 20px 24px;
}

/* —— antd helpers —— */
.pager-bar {
  display: flex;
  justify-content: flex-end;
  padding: 14px 16px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.table-panel .ant-table-wrapper { background: #fff; }
.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0 0 12px;
}
.toolbar-hint {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
}
.nowrap-table .ant-table-thead > tr > th,
.nowrap-table .ant-table-tbody > tr > td {
  white-space: nowrap;
}
.metric-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.metric-card {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fafafa;
}
.metric-card.accent { background: #e6f4ff; border-color: #91caff; }
.metric-card .k { font-size: 12px; color: rgba(0, 0, 0, 0.45); margin-bottom: 6px; }
.metric-card .v { font-size: 22px; font-weight: 600; color: rgba(0, 0, 0, 0.88); line-height: 1.3; }
.metric-card .v.sm { font-size: 16px; }
.metric-card .s { margin-top: 6px; font-size: 12px; color: rgba(0, 0, 0, 0.45); }
.table-panel .ant-table,
.activity-list-table .ant-table {
  white-space: nowrap;
}
.table-panel .ant-table-thead > tr > th,
.table-panel .ant-table-tbody > tr > td,
.activity-list-table .ant-table-thead > tr > th,
.activity-list-table .ant-table-tbody > tr > td {
  white-space: nowrap;
  word-break: keep-all;
}
.rate-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.rate-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--accent, #006eff);
  cursor: pointer;
  border-radius: 50%;
  line-height: 1;
}
.rate-info-icon:hover {
  background: rgba(0, 110, 255, 0.08);
}
.table-ops {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0;
}
.table-ops .ant-btn-link {
  padding: 0 4px;
  height: auto;
  line-height: 1.4;
  font-size: 13px;
}
.activity-list-table .ant-table-cell-fix-right {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.control-w { width: 360px; max-width: 100%; }
.approval-form {
  position: relative;
  min-height: 300px;
  padding-right: 0;
}
.approval-tips-float {
  position: absolute;
  top: 40px;
  left: 410px;
  width: 280px;
  z-index: 2;
  font-size: 12px;
  line-height: 1.7;
  color: #bababa;
  pointer-events: none;
}
.approval-tip-main { color: #1677ff; margin-bottom: 10px; font-size: 13px; }
.approval-tip-sub,
.approval-tip-note { color: #bababa; }
.approval-node-name {
  display: inline-block;
  max-width: 180px;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.88);
  white-space: nowrap;
}
.approval-error { margin: 0 0 8px 98px; }
.cc-picker {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.approval-modal .ant-modal-body { min-height: 320px; }
.form-footer .ant-btn + .ant-btn { margin-left: 0; }
.form-footer { gap: 12px; }
.store-manage-title .ant-btn { margin-left: auto; }

.hp-template-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 50px 16px;
  gap: 24px;
}
.hp-template {
  width: 220px;
  text-align: center;
}
.hp-template-card {
  position: relative;
  height: 280px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-template-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hp-template-card .ant-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 32px;
  border-radius: 4px;
  letter-spacing: 2px;
}
.hp-template-card.is-blank {
  background: #fff;
}
.hp-template-name {
  margin-top: 12px;
  font-size: 14px;
  color: #333;
}

.hp-building {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 158px);
  margin: -20px;
  background: #fff;
}
.hp-building-main {
  display: flex;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.hp-sider {
  width: 220px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 12px 10px 16px 5px;
  background: #fff;
  border-right: 1px solid #f3f5f7;
  overflow-y: auto;
}
.hp-sider-tips {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hp-sider-tips i {
  width: 12px;
  height: 12px;
  border: 1px dashed #bfbfbf;
  border-radius: 2px;
}
.hp-comp-list {
  display: flex;
  flex-wrap: wrap;
}
.hp-comp-item {
  width: 90px;
  height: 90px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: rgba(247, 247, 247, 0.97);
  cursor: pointer;
  font-size: 12px;
  color: #636363;
  text-align: center;
  line-height: 1.3;
  padding: 6px 4px;
}
.hp-comp-item:hover:not(:disabled) {
  background: #e5e5e5;
}
.hp-comp-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hp-comp-item.is-used {
  opacity: 0.3;
  cursor: not-allowed;
}
.hp-comp-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
  object-fit: contain;
}
.hp-comp-item em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: #8c8c8c;
}
.hp-preview {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  min-width: 0;
}
.hp-preview-card {
  max-width: 400px;
  min-width: 400px;
  min-height: 600px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  margin: 35px 0;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0 12px;
}
.hp-preview-inner {
  width: 375px;
  min-height: 72px;
  position: relative;
}
.hp-preview-empty {
  padding: 80px 0;
  text-align: center;
  color: #bfbfbf;
  font-size: 13px;
}
.hp-el {
  width: 100%;
  position: relative;
  cursor: pointer;
  user-select: none;
  z-index: 1;
}
.hp-el:after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  top: 1px;
  left: 1px;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px dashed transparent;
  z-index: 2;
  border-radius: 5px;
}
.hp-el:hover:after,
.hp-el.is-active:after {
  border-color: #333;
}
.hp-el-del {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  background: #333;
  color: #fff;
  border: 0;
  line-height: 16px;
  font-size: 12px;
  padding: 0;
  border-radius: 0 5px 0 5px;
}
.hp-el:hover .hp-el-del,
.hp-el.is-active .hp-el-del {
  display: flex;
}
.hp-el-chrome {
  position: relative;
  min-height: 280px;
  background: linear-gradient(180deg, #f6e8d5 0%, #fdfaf7 80px, #f7f7f7 100%);
  padding-bottom: 56px;
}
.hp-el-chrome-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 14px 0;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}
.hp-el-banner-cap {
  font-size: 12px;
  font-weight: 400;
  color: #8c8c8c;
}
.hp-el-chrome-hero {
  padding: 48px 20px 36px;
  color: #3d2a18;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hp-el-chrome-hero em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.hp-el-chrome-hero b {
  font-size: 22px;
  line-height: 1.2;
}
.hp-el-chrome-hero span {
  font-size: 12px;
  opacity: 0.75;
}
.hp-el-member {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 8px;
  background: #f5f6fa;
  border-radius: 13px;
  padding: 12px 14px 10px 90px;
  min-height: 57px;
  box-sizing: border-box;
}
.hp-el-member:before {
  content: "";
  position: absolute;
  left: 21px;
  top: -8px;
  width: 61px;
  height: 61px;
  border-radius: 50%;
  background: #a693ff;
  border: 2px solid #fff;
}
.hp-el-member-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #333;
}
.hp-el-member-bar {
  height: 4px;
  border-radius: 4px;
  background: #f0f0f0;
  margin: 8px 0;
  overflow: hidden;
}
.hp-el-member-bar i {
  display: block;
  width: 66%;
  height: 100%;
  background: #c9a36a;
}
.hp-el-member-tip {
  font-size: 12px;
  color: #8c8c8c;
}
.hp-el-diamond {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 15px 10px;
}
.hp-el-diamond-item {
  width: 172px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: 13px;
  color: #333;
}
.hp-el-fun {
  width: 345px;
  margin: 8px auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 14px 6px 10px;
  display: flex;
  flex-wrap: wrap;
}
.hp-el-fun-item {
  width: 25%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #333;
  margin-bottom: 10px;
}
.hp-el-fun-item i,
.hp-el-fun-item img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #eef3ff;
  object-fit: cover;
}
.hp-el-brand {
  width: 345px;
  margin: 8px auto 0;
  padding: 10px 0 8px;
}
.hp-el-brand-cats {
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
}
.hp-el-brand-cats span {
  margin-right: 14px;
}
.hp-el-brand-floors {
  display: flex;
  align-items: center;
  margin-top: 10px;
  overflow: hidden;
  white-space: nowrap;
}
.hp-el-brand-floors span {
  font-size: 12px;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 4px;
}
.hp-el-brand-img {
  width: 345px;
  height: 232px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #ece6f8 0%, #f6f3fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9254de;
  font-size: 13px;
}
.hp-el-brand-more {
  margin-top: 10px;
  height: 30px;
  border-radius: 16px;
  font-size: 12px;
  text-align: center;
  line-height: 28px;
  background: #f7f7f7;
  color: #7f7f7f;
}
.hp-el-points-wrap {
  width: 345px;
  margin: 8px auto 0;
  padding: 10px 0 8px;
}
.hp-el-points {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hp-el-points span {
  font-size: 15px;
  line-height: 20px;
  margin-right: 10px;
  color: #636363;
}
.hp-el-points span.is-on {
  color: #000;
  font-weight: 600;
}
.hp-el-points-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.hp-el-points-tools em {
  width: 80px;
  border-radius: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  line-height: 26px;
  box-sizing: border-box;
}
.hp-el-points-types {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}
.hp-el-points-types i {
  font-style: normal;
  color: #a1a19d;
}
.hp-el-points-types i.is-on {
  color: #000;
}
.hp-el-points-types i.is-on:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--actline-color, #000);
  margin: 4px auto 0;
}
.hp-el-memberbrand {
  width: 345px;
  margin: 8px auto 0;
  display: flex;
  gap: 9px;
}
.hp-el-memberbrand-item {
  flex: 1;
  min-width: 0;
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.hp-el-memberbrand-item img,
.hp-el-memberbrand-item i {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(180deg, #f6e8d5 0%, #fdfaf7 100%);
  font-style: normal;
  color: #8c8c8c;
  font-size: 13px;
  text-align: center;
  line-height: 160px;
}
.hp-el-memberbrand.is-1 .hp-el-memberbrand-item img,
.hp-el-memberbrand.is-1 .hp-el-memberbrand-item i {
  height: 180px;
  line-height: 180px;
}
.hp-el-memberbrand.is-1 .hp-el-memberbrand-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 12px 10px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
}
.hp-el-memberbrand-item span {
  display: block;
  padding: 8px 10px 10px;
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hp-el-welfare {
  padding: 10px 15px 12px;
}
.hp-el-welfare-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.hp-el-welfare-cards {
  display: flex;
  gap: 8px;
}
.hp-el-welfare-cards i {
  flex: 1;
  height: 120px;
  border-radius: 8px;
  background: #fff;
}
.hp-el-media {
  margin: 8px 15px;
  height: 120px;
  border-radius: 12px;
  background: #e8eef8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c8c8c;
  font-size: 13px;
}
.hp-el-media.is-ad690,
.hp-el-media.is-mkt720 {
  height: 180px;
}
.hp-el-tabbar {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  margin-top: 42px;
  background: linear-gradient(180deg, #fff 0%, #fef2e2 100%);
  box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08);
}
.hp-el-tabbar span {
  flex: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #b6b6b8;
}
.hp-el-tabbar span img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.hp-el-tabbar span.is-on {
  color: #000;
}
.hp-setting {
  width: 408px;
  flex-shrink: 0;
  padding: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid #f3f5f7;
}
.hp-setting .ant-tabs-nav {
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
  margin-bottom: 0;
}
.hp-setting .ant-tabs-nav::before {
  opacity: 0;
}
.hp-setting .ant-tabs-tab {
  margin-left: 28px;
}
.hp-setting-form {
  padding: 15px 10px 15px 12px;
}
.hp-page-card.ant-card {
  box-shadow: none;
}
.hp-page-card .ant-card-head {
  min-height: 0;
  border-bottom: 0;
  padding: 0 0 0 18px;
}
.hp-page-card .ant-card-body {
  padding: 30px 10px 0 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 20px;
}
.hp-fun-item-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 12px 12px 0;
  margin-bottom: 12px;
}
.hp-fun-item-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 500;
}
.hp-fun-item-head a {
  color: #006eff;
  cursor: pointer;
  font-weight: 400;
}
.hp-icon-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hp-icon-preview {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #f0f0f0;
}
.hp-form-extra {
  font-size: 12px;
  color: #bababa;
  margin-top: 10px;
  display: block;
}
.hp-setting-form.is-fun .ant-form-item-label > label {
  white-space: nowrap;
}
.hp-alloc-item .ant-form-item-control-input-content {
  line-height: 1.5;
}
.hp-alloc .ant-btn-link {
  height: auto;
}
.wd-allocation-echo {
  position: relative;
  overflow-wrap: break-word;
  word-break: break-all;
  line-height: 22px;
}
.hp-bind-people {
  margin-bottom: 8px;
}
.hp-bind-people .ant-form-item-label > label {
  height: 32px;
  line-height: 32px;
  white-space: nowrap;
}
.hp-bind-people .ant-form-item-control-input {
  min-height: 32px;
}
.hp-bind-people .ant-radio-group {
  display: flex;
  align-items: center;
  height: 32px;
  flex-wrap: nowrap;
}
.hp-bind-people .ant-radio-wrapper {
  margin-inline-end: 24px;
  white-space: nowrap;
}
.hp-alloc-tabs {
  margin-top: 10px;
}
.hp-alloc-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-height: 400px;
  overflow-y: auto;
  padding: 8px 0 4px;
}
.hp-alloc-page {
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.hp-alloc-page-img {
  width: 110px;
  height: 212px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f5f5f5;
}
.hp-alloc-page.is-on .hp-alloc-page-img {
  border-color: #1677ff;
}
.hp-alloc-page-img img {
  width: 112px;
  height: 216px;
  object-fit: cover;
  border-radius: 10px;
}
.hp-alloc-page span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: #000;
  font-size: 12px;
}
.hp-alloc-row-on td {
  background: #e6f4ff !important;
}
.hp-alloc-form {
  max-width: 600px;
  margin-top: 20px;
}
.hp-alloc-poster-box {
  margin-top: 20px;
}
.hp-alloc-poster {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}
.wd-select-jumpLiker-modal .ant-modal-footer {
  display: flex;
  justify-content: center;
}
.hp-setting-empty {
  padding: 48px 0;
  text-align: center;
  color: #bfbfbf;
}
.hp-plaza-extra {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 13px;
}
.hp-plaza-extra a {
  color: #006eff;
  cursor: pointer;
}
.hp-plaza-extra span {
  color: #bababa;
  font-size: 12px;
}
.hp-building-buttons {
  padding: 30px 408px 20px 220px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-shrink: 0;
}

/* 会员通管理 */
.mpass-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 158px);
  margin: -20px;
  background: #fff;
  overflow: hidden;
}
.mpass-main {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.mpass-preview-col {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 24px;
  border-right: 1px solid #f3f5f7;
  background: #fafafa;
  overflow: hidden;
  min-height: 0;
}
.mpass-form-col {
  flex: 1;
  min-width: 0;
  overflow: auto;
  padding: 16px 24px 40px;
}
.mpass-form-col .form-section-title {
  margin: 20px 0 16px;
  padding-left: 10px;
  border-left: 3px solid #006eff;
  line-height: 1;
}
.mpass-brand-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mpass-footer {
  flex-shrink: 0;
  padding: 16px 0 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.mpass-phone {
  width: 375px;
  height: 100%;
  max-height: 720px;
  min-height: 560px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mpass-phone-status {
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  background: #070707;
  flex-shrink: 0;
}
.mpass-phone-body {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
.mpass-phone-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #070707;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  overscroll-behavior: contain;
}
.mpass-brand-pin {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
}
.mpass-brand-placeholder {
  height: 56px;
}
.mpass-hero {
  padding: 0 16px 16px;
  color: #fff;
  background: transparent;
}
.mpass-nav {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mpass-nav-title {
  font-size: 16px;
  font-weight: 600;
}
.mpass-bell {
  position: absolute;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #f5222d;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.mpass-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 14px;
  font-size: 15px;
}
.mpass-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c9a36a;
  color: #1a120c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.mpass-card {
  border: 1px solid;
  border-radius: 10px;
  padding: 16px 18px;
  min-height: 118px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.mpass-card-level {
  font-size: 16px;
  font-weight: 600;
}
.mpass-card-points {
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}
.mpass-card-sub {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.8;
}
.mpass-card-w {
  align-self: center;
  font-size: 52px;
  font-weight: 700;
  opacity: 0.28;
  line-height: 1;
}
.mpass-brand-bar {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 10px;
  gap: 6px;
}
.mpass-brands {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}
.mpass-brands::-webkit-scrollbar {
  display: none;
}
.mpass-brand {
  flex: 0 0 auto;
  width: 52px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mpass-brand-logo,
.mpass-brand-fallback {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.mpass-brand-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.mpass-brand em {
  font-style: normal;
  font-size: 10px;
  line-height: 1.2;
  max-width: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mpass-pass-btn {
  flex-shrink: 0;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.mpass-white {
  background: #fff;
  padding: 14px 16px 80px;
  min-height: 760px;
  border-radius: 16px 16px 0 0;
  position: relative;
  z-index: 1;
}
.mpass-banner {
  background: #fff7e8;
  border: 1px solid #f3e2b8;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: #8a5a12;
  margin-bottom: 16px;
}
.mpass-block-title {
  font-size: 15px;
  font-weight: 600;
  color: #252525;
  margin: 8px 0 12px;
}
.mpass-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  color: #595959;
  font-size: 12px;
  text-align: center;
}
.mpass-coupon {
  background: #fafafa;
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  color: #323232;
  margin-bottom: 18px;
}
.mpass-tabbar {
  height: 50px;
  border-top: 1px solid #f0f0f0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  font-size: 11px;
  color: #8e9095;
  background: #fff;
  flex-shrink: 0;
}
.mpass-tabbar .is-on {
  color: #006eff;
  font-weight: 600;
}
.mpass-landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: #fff;
}
.mpass-landing-back {
  position: absolute;
  top: 36px;
  left: 16px;
  border: 0;
  background: transparent;
  color: #006eff;
  cursor: pointer;
  font-size: 14px;
}
.mpass-landing h3 {
  margin: 12px 0 4px;
  font-size: 20px;
}
.mpass-landing p {
  margin: 0 0 12px;
  color: #8e9095;
}
.mpass-landing-link {
  max-width: 280px;
  font-size: 12px;
  color: #595959;
  word-break: break-all;
  margin-top: 6px;
}
.mpass-landing .mpass-brand-logo,
.mpass-landing .mpass-brand-fallback {
  width: 64px;
  height: 64px;
  font-size: 22px;
}

/* 内容中心 · 批量创建优惠券 */
.coupon-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.coupon-price-plus {
  color: #323232;
  font-size: 16px;
  line-height: 32px;
  padding: 0 2px;
}
.coupon-field-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.coupon-inline-hint {
  color: #8c8c8c;
  font-size: 13px;
  line-height: 22px;
}
.coupon-batch-hint {
  margin: 0 0 16px;
  color: #8c8c8c;
  font-size: 13px;
  line-height: 22px;
}
.coupon-intro {
  margin: 0;
  font-family: inherit;
  white-space: pre-wrap;
  color: inherit;
}
.coupon-batch-form .wd-form-footer,
.coupon-batch-detail .wd-form-footer {
  margin: 24px 0 0;
  padding: 24px 0 0 150px;
  justify-content: flex-start;
  background: transparent;
  border-top: 1px solid #f0f0f0;
}
.coupon-batch-list.wd-video-list .search-form .field > label {
  flex: 0 0 110px;
  width: 110px;
}
.coupon-batch-list.wd-video-list .search-form .field > .ant-picker {
  flex: 1;
  min-width: 0;
}
.coupon-stock-hint {
  margin: 0 0 4px 130px;
  color: #8c8c8c;
  font-size: 13px;
  line-height: 22px;
}
.coupon-stock-modal-wrap .ant-modal-close {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.coupon-stock-modal-wrap .ant-modal-footer .ant-btn {
  min-width: 90px;
  border-radius: 4px;
}
.coupon-batch-form .settle-subhead {
  margin: 8px 0 20px;
}
.coupon-batch-form .ant-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}
.coupon-batch-form .control-w.ant-select,
.coupon-batch-form .ant-picker.control-w {
  width: 360px;
  max-width: 100%;
}
.coupon-batch-form .coupon-field-inline .ant-select {
  flex: 0 0 360px;
  width: 360px;
}

.mp-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mp-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  background: currentColor;
}
.mp-template-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 16px 40px;
}
.template {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.template:hover .template_name { font-weight: 600; }
.template_item {
  background: #ccc;
  border: 3px solid #fff;
  border-radius: 10px;
  width: 112px;
  height: 216px;
  margin: 10px;
  position: relative;
  overflow: hidden;
}
.template_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  left: 0;
  top: 0;
}
.template_item:hover { border: 3px solid #006eff; }
.template_item:hover:after {
  content: "";
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.template_item:hover .template_btn { display: block; }
.template_btn {
  z-index: 2;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wd-video-list .template_btn.ant-btn,
.template_btn.ant-btn {
  min-width: 65px;
  width: 65px;
  height: 32px;
  padding: 0;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 2px;
}
.mp-preview-qrcol {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 392px;
  row-gap: 0;
}
.point-exception-list.wd-video-list .search-form .filters {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.point-exception-list.wd-video-list .search-form.is-expanded .search-btns {
  grid-column: auto;
  justify-content: flex-end;
  margin-top: 0;
  margin-bottom: 15px;
}
.point-exception-list.wd-video-list .search-form .field > label {
  flex: 0 0 88px;
  width: 88px;
}
.point-exception-list .field {
  overflow: visible;
}
.point-exception-list .field > .ant-picker,
.point-exception-list .field > .ant-select,
.point-exception-list .field > .ant-input,
.point-exception-list .field > .ant-input-affix-wrapper,
.point-exception-list .field > .ant-select-auto-complete,
.point-exception-list .field > .exception-store-select,
.point-exception-list .field > .plaza-subject {
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
}
.point-exception-list .field > .ant-picker {
  width: 100% !important;
  min-width: 0 !important;
}
.point-exception-list .field > .ant-picker .ant-picker-input {
  min-width: 0;
}
.point-exception-list .field > .ant-picker .ant-picker-input > input {
  min-width: 0;
  font-size: 13px;
}
.point-exception-list .exception-store-select {
  width: 100%;
  min-width: 0;
}
.point-exception-list .exception-store-select .ant-input-affix-wrapper {
  width: 100%;
}
.point-exception-list .exception-store-select.ant-select-disabled .ant-input-affix-wrapper,
.point-exception-list .exception-store-select .ant-input-disabled,
.point-exception-list .exception-store-select .ant-input-affix-wrapper-disabled {
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.point-exception-list .plaza-subject {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.point-exception-list .plaza-subject-type {
  width: 80px !important;
  flex: 0 0 80px;
}
.point-exception-list .plaza-subject-type .ant-select-selector {
  border-radius: 2px 0 0 2px;
}
.point-exception-list .plaza-subject-type .ant-select-selection-item {
  text-align: left;
  padding-inline-end: 0;
}
.point-exception-list .plaza-subject-picker {
  flex: 1;
  min-width: 0;
  position: relative;
}
.point-exception-list .plaza-subject-picker .ant-input-affix-wrapper {
  width: 100%;
  border-radius: 0 2px 2px 0;
  margin-left: -1px;
}
.point-exception-list .plaza-subject-picker .ant-input {
  overflow: hidden;
  text-overflow: ellipsis;
}
.plaza-subject-search-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1.5px solid #bfbfbf;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}
.plaza-subject-search-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1.5px;
  background: #bfbfbf;
  right: -4px;
  bottom: -1px;
  transform: rotate(45deg);
}
.plaza-subject-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 30;
  min-width: 320px;
  max-width: 420px;
  max-height: 360px;
  overflow: auto;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 4px;
}
@media (max-width: 1200px) {
  .point-exception-list.wd-video-list .search-form .filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.micropage-list.wd-video-list .search-form .field > label {
  flex: 0 0 88px;
  width: 88px;
}
.template_name { text-align: center; }
.create__modal .ant-modal-content,
.preview-modal .ant-modal-content { border-radius: 10px; }
.qr-code-box {
  border-radius: 13px;
  width: 127px;
  height: 127px;
  margin: 11px auto 0;
}
.qr-code-box svg { width: 100%; height: 100%; }
.preview-tips {
  color: #fff;
  background-color: #006eff;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  width: 92px;
  height: 26px;
  margin: 11px auto 34px;
  font-size: 14px;
  display: flex;
}
.mp-preview-body { text-align: center; width: 100%; }
.mp-preview-scan { font-size: 18px; margin: 28px 0 0; }
.mp-preview-hint { font-size: 14px; line-height: 20px; text-align: left; }
.mp-preview-sub { color: #8c8c8c; font-size: 14px; text-align: left; }
.mp-dist-bar {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.mp-form-preview { margin: 0; }
.mp-blank-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mp-editor {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 158px);
  margin: -20px;
  background: #fff;
}
.mp-editor-main {
  display: flex;
  justify-content: space-between;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.mp-sider {
  width: 220px;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 12px 5px 16px;
  background: #fff;
  border-right: 1px solid #f3f5f7;
  overflow-y: auto;
}
.mp-sider-tips {
  color: #bababa;
  font-size: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mp-sider-tips i {
  width: 12px;
  height: 12px;
  border: 1px dashed #bfbfbf;
  border-radius: 2px;
}
.mp-sider-name {
  margin-bottom: 10px;
  color: #333;
}
.mp-sider-group { width: 235px; margin-bottom: 4px; }
.mp-comp-list { display: flex; flex-wrap: wrap; }
.mp-comp-item {
  width: 90px;
  height: 90px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: rgba(247, 247, 247, 0.97);
  cursor: pointer;
  font-size: 12px;
  color: #636363;
}
.mp-comp-item:hover { background: #e5e5e5; }
.mp-comp-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
  border-radius: 4px;
  background: #006eff;
}
.mp-comp-icon.is-biz-freeCoupon,
.mp-comp-icon.is-biz-payCoupon { background: #f24724; }
.mp-comp-icon.is-biz-red { background: #ff4d4f; }
.mp-comp-icon.is-biz-lottery { background: #faad14; }
.mp-comp-icon.is-bas-img,
.mp-comp-icon.is-bas-hot,
.mp-comp-icon.is-biz-pic { background: #69c0ff; }
.mp-comp-icon.is-bas-title { background: #333; }
.mp-comp-icon.is-bas-margin { background: #d9d9d9; }
.mp-comp-icon.is-bas-floatBtn { background: #722ed1; }
.mp-preview {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  min-width: 0;
  padding: 20px 0 12px;
}
.wd-micro-page-border {
  width: 375px;
  min-height: 667px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}
.mp-phone-nav {
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background: rgba(255,255,255,0.92);
}
.mp-preview-empty {
  padding: 80px 0;
  text-align: center;
  color: #bfbfbf;
  font-size: 13px;
}
.mp-el { position: relative; cursor: pointer; }
.mp-el.is-active,
.mp-el:hover { outline: 2px dashed #333; outline-offset: -2px; }
.mp-el-del {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 3;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-style: normal;
  font-size: 12px;
}
.mp-hero {
  width: 100%;
  background: #458eff center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 16px 20px;
  box-sizing: border-box;
}
.mp-hero b { font-size: 22px; line-height: 1.3; }
.mp-hero span { font-size: 13px; opacity: 0.9; margin-top: 4px; }
.mp-title-block { padding: 16px; }
.mp-block-img { display: block; width: 100%; }
.mp-img-ph,
.mp-red-ph {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  color: #999;
}
.mp-red-ph { background: linear-gradient(180deg, #ff7875, #ff4d4f); color: #fff; height: 120px; }
.mp-margin { width: 100%; }
.mp-coupon-row {
  display: flex;
  gap: 8px;
  padding: 12px 10px;
}
.mp-coupon-row.is-three .mp-coupon-card { flex: 1; }
.mp-coupon-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mp-coupon-card em { color: #f24724; font-size: 20px; font-style: normal; }
.mp-coupon-card p { margin: 4px 0 8px; color: #666; font-size: 12px; }
.mp-coupon-card button {
  border: 0;
  color: #fff;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 12px;
}
.mp-float-dot {
  position: absolute;
  right: 12px;
  top: 345px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #722ed1;
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mp-float-dot img { width: 100%; height: 100%; object-fit: cover; }
.mp-setting {
  width: 408px;
  flex-shrink: 0;
  padding: 10px 10px 10px 0;
  overflow-y: auto;
  box-sizing: border-box;
}
.mp-setting .ant-tabs { padding-left: 8px; }
.mp-landing-set-nav {
  height: 46px;
  line-height: 46px;
  margin: 0 0 4px 8px;
  padding: 0 0 0 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #006eff;
  font-weight: 500;
  position: relative;
}
.mp-landing-set-nav::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: #006eff;
}
.mp-landing-page-form {
  padding: 16px 8px 0;
}
.mp-landing-page-form .ant-form-item { margin-bottom: 20px; }
.mp-landing-comp-form { padding: 0 8px 8px; }
.mp-landing-comp-form .mp-set-title {
  margin-top: 4px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.mp-landing-comp-form .mp-set-hint { padding: 16px 20px; }
.mp-landing-tip {
  color: #8c8c8c;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}
.mp-landing-login-row {
  display: flex;
  align-items: center;
  min-height: 32px;
}
.mp-landing-preview-link.ant-btn {
  padding: 0 0 0 12px;
  height: auto;
}
.mp-hot-privacy-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  min-height: 32px;
}
.mp-hot-privacy-row .mp-landing-tip { margin-top: 0; }
.mp-cend-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 375px;
  height: 667px;
  z-index: 8;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-cend-dialog {
  width: 280px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px 16px;
  text-align: center;
}
.mp-cend-title {
  font-size: 16px;
  font-weight: 600;
  color: #323232;
  line-height: 22px;
}
.mp-cend-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 12px 0 20px;
}
.mp-cend-text.is-privacy {
  white-space: pre-wrap;
  text-align: left;
  max-height: 180px;
  overflow: auto;
}
.mp-cend-link { color: #006eff; }
.mp-cend-btns { display: flex; gap: 10px; }
.mp-cend-btns button {
  flex: 1;
  height: 36px;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}
.mp-cend-btns .is-ghost { background: #f5f5f5; color: #323232; }
.mp-cend-btns .is-primary { background: #006eff; color: #fff; }
.mp-cend-modal .ant-modal-content {
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.mp-cend-modal .ant-modal-body { padding: 0; }
.mp-set-hint { color: #8c8c8c; padding: 24px 28px; }
.mp-editor-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px 10px;
}
.mp-btn-left { width: 220px; flex-shrink: 0; }
.mp-btn-right { width: 408px; flex-shrink: 0; }
.mp-btn-mid { flex: 1; display: flex; justify-content: center; }
.mp-editor .mp-act-btn.ant-btn,
.mp-act-btn.ant-btn {
  width: 90px;
  min-width: 90px;
  height: 32px;
  font-size: 13px;
  border-radius: 4px;
  margin: 0 10px;
}
.mp-upload-box {
  width: 104px;
  height: 104px;
  border: 1px dashed #d9d9d9;
  border-radius: 4px;
  color: #8c8c8c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mp-upload-preview {
  width: 104px;
  position: relative;
  cursor: pointer;
}
.mp-upload-preview img { width: 104px; height: 104px; object-fit: cover; border-radius: 4px; display: block; }
.mp-upload-preview span {
  display: block;
  text-align: center;
  color: #006eff;
  font-size: 12px;
  margin-top: 4px;
}
.mp-upload-extra { color: #8c8c8c; font-size: 12px; line-height: 1.5; margin-top: 6px; max-width: 260px; }
.mp-editor.is-check .mp-preview { padding-top: 8px; }
.mp-set-title {
  font-size: 14px;
  color: #636363;
  line-height: 22px;
  text-align: left;
  margin-top: 28px;
  margin-bottom: 30px;
}
.mp-hot-config-btn.ant-btn {
  margin-left: 0;
  border-radius: 2px;
}
.mp-img-tpl {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 2px 2px;
  line-height: 1.2;
  min-width: 56px;
}
.mp-img-tpl i {
  width: 28px;
  height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  margin-bottom: 4px;
  position: relative;
  display: block;
}
.mp-img-tpl i.is-swiper::after,
.mp-img-tpl i.is-full::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 2px;
  background: currentColor;
  opacity: .45;
}
.mp-img-tpl i.is-full { border-width: 2px; }
.mp-img-slot { position: relative; }
.mp-img-slot-del.ant-btn {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  color: #8c8c8c;
}
.mp-img-add-carousel.ant-btn {
  width: 100%;
  height: 40px;
  margin-top: 8px;
  margin-bottom: 20px;
  border-radius: 2px;
}
.mp-img-canvas { position: relative; }
.mp-img-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.mp-img-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  display: block;
}
.mp-img-dots i.is-on { background: #fff; }
.mp-material-extra {
  font-size: 12px;
  color: #bababa;
  margin-top: 10px;
  display: block;
  line-height: 1.5;
  max-width: 260px;
}
.mp-image-preview.wd-image-main {
  height: auto;
  width: 200px;
  margin-top: 15px;
}
.mp-image-preview .wd-images-container {
  box-sizing: content-box;
  border: none;
  padding: 0;
  overflow: visible;
}
.mp-image-preview .wd-image-preview {
  position: relative;
  width: 200px;
  height: 224px;
  display: block;
}
.mp-image-preview .wa-image-container {
  width: 200px;
  height: 200px;
  position: relative;
  user-select: none;
}
.mp-image-preview .wd-move-container {
  display: block;
  width: 200px;
  height: 200px;
  position: relative;
}
.mp-image-preview .wd-img {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: block;
  background: #f5f5f5;
}
.mp-image-preview .wd-view-del-container {
  color: #bababa;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  display: flex;
}
.mp-image-preview .wd-operation-common:hover {
  cursor: pointer;
  color: #4096ff;
}
.mp-material-modal .ant-modal-body { padding-top: 12px; }
.wd-material { flex-direction: row; width: 100%; height: 100%; display: flex; }
.wd-material .options { border-right: 1px solid #d9d9d9; width: 200px; height: 540px; overflow-y: auto; margin: 0; padding: 0; list-style: none; }
.wd-material .options .item { cursor: pointer; justify-content: space-between; align-items: center; height: 40px; padding: 0 10px; display: flex; }
.wd-material .options .item .title { text-align: left; flex: 1; width: 100%; height: 100%; line-height: 40px; }
.wd-material .options .item .badge { text-align: right; width: 60px; }
.wd-material .options .all:hover { background: inherit; }
.wd-material .image-container { flex: 1; min-width: 0; }
.wd-material .image-container .btns { text-align: right; width: 100%; height: 40px; line-height: 40px; padding-right: 10px; }
.wd-material .image-container .image-list { flex-wrap: wrap; align-content: flex-start; width: calc(100% - 20px); height: calc(100% - 92px); max-height: 480px; padding: 10px; display: flex; overflow-y: auto; margin: 0; list-style: none; }
.wd-material .image-container .image-list .img-item { cursor: pointer; width: 120px; height: 140px; margin-bottom: 12px; margin-left: 20px; position: relative; }
.wd-material .image-container .image-list .img-item .img-container { background: #d5d5d5; border-radius: 7px; height: 120px; position: relative; overflow: hidden; }
.wd-material .image-container .image-list .img-item .img-container .img { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wd-material .image-container .image-list .img-item .img-container .select-border { box-sizing: border-box; z-index: 3; border: 4px solid #006eff; border-radius: 7px; width: 100%; height: 100%; display: none; position: absolute; top: 0; left: 0; }
.wd-material .image-container .image-list .img-item .img-container .trigon { color: #fff; z-index: 3; border: 20px solid #006eff; border-color: transparent #006eff #006eff transparent; border-radius: 7px; width: 0; height: 0; display: none; position: absolute; bottom: 0; right: 0; }
.wd-material .image-container .image-list .img-item .img-container:hover .select-border,
.wd-material .image-container .image-list .img-item .img-container:hover .trigon,
.wd-material .image-container .image-list .img-item .selected .select-border,
.wd-material .image-container .image-list .img-item .selected .trigon { display: block; }
.wd-material .image-container .image-list .img-item .img-name { text-align: center; width: 100%; height: 25px; line-height: 25px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wd-material .ellipsis { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.mp-hot-canvas {
  position: relative;
  width: 100%;
}
.mp-hot-modal .ant-modal-footer {
  display: flex;
  justify-content: center;
}
.mp-hot-modal-body {
  display: flex;
  gap: 20px;
  height: 600px;
  overflow-x: auto;
}
.mp-hot-stage-wrap {
  height: 600px;
  overflow: auto;
  flex-shrink: 0;
}
.mp-hot-stage {
  position: relative;
  width: 375px;
  height: fit-content;
}
.mp-hot-stage .hot-image {
  display: block;
  width: 375px;
  user-select: none;
  pointer-events: none;
}
.mp-hot-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.mp-hot-box {
  position: absolute;
  box-sizing: border-box;
  background: #155bd499;
  border: 1px solid transparent;
  cursor: move;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  user-select: none;
}
.mp-hot-box:hover,
.mp-hot-box:active {
  border-color: #155bd4;
}
.mp-hot-box:active {
  background: #155bd4e6;
}
.mp-hot-box.is-static {
  cursor: default;
  pointer-events: none;
}
.mp-hot-handle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border: 1px solid #155bd4;
  box-sizing: border-box;
  z-index: 2;
}
.mp-hot-handle.is-n { top: -4px; left: 50%; margin-left: -4px; cursor: ns-resize; }
.mp-hot-handle.is-s { bottom: -4px; left: 50%; margin-left: -4px; cursor: ns-resize; }
.mp-hot-handle.is-e { right: -4px; top: 50%; margin-top: -4px; cursor: ew-resize; }
.mp-hot-handle.is-w { left: -4px; top: 50%; margin-top: -4px; cursor: ew-resize; }
.mp-hot-handle.is-ne { top: -4px; right: -4px; cursor: nesw-resize; }
.mp-hot-handle.is-nw { top: -4px; left: -4px; cursor: nwse-resize; }
.mp-hot-handle.is-se { bottom: -4px; right: -4px; cursor: nwse-resize; }
.mp-hot-handle.is-sw { bottom: -4px; left: -4px; cursor: nesw-resize; }
.mp-hot-list {
  position: relative;
  flex: 1;
  min-width: 438px;
  height: 100%;
  overflow: auto;
}
.mp-hot-add.ant-btn {
  width: 184px;
  height: 32px;
  border-radius: 2px;
  position: absolute;
  right: 23px;
  z-index: 1;
  background: #fff !important;
  margin-right: 10px;
}
.mp-hot-add-spacer { height: 32px; }
.mp-hot-card {
  width: 438px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  padding: 12px 12px 4px;
  margin-top: 16px;
  position: relative;
}
.mp-hot-card .mp-hot-item.ant-form-item {
  margin-bottom: 16px;
}
.mp-hot-card .mp-hot-item .ant-form-item-label {
  padding-bottom: 0;
}
.mp-hot-levels {
  padding-top: 2px;
}
.mp-hot-level-block {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px dashed #f0f0f0;
}
.mp-hot-level-block:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.mp-hot-level-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mp-hot-level-name-row .ant-input-affix-wrapper,
.mp-hot-level-name-row .ant-input {
  flex: 1;
  min-width: 0;
}
.mp-hot-level-del.ant-btn {
  padding: 0 0 0 4px;
  height: auto;
  flex-shrink: 0;
}
.mp-hot-level-add.ant-btn {
  padding: 0;
  height: 32px;
  margin: 0 0 12px 92px;
}
.mp-hot-card .mp-hot-levels .mp-hot-item.ant-form-item,
.mp-landing-comp-form .mp-hot-levels .mp-hot-item.ant-form-item {
  margin-bottom: 12px;
}
.mp-hot-card .mp-hot-item .hp-alloc {
  min-width: 0;
}
.mp-hot-del.ant-btn {
  position: absolute;
  top: 0;
  right: 0;
}
