:root {
  --primary: #2864ff;
  --primary-dark: #1e52e8;
  --bg: #f4f7fb;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #8a94a6;
  --line: #edf0f6;
  --success: #18b778;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow: none;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.4;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; }
button:disabled { cursor: not-allowed; opacity: .55; }
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: radial-gradient(circle at 15% 20%, rgba(37, 99, 255, .24), transparent 34%), linear-gradient(135deg, #0d3bc2, #3d7bff 48%, #eef5ff 48%);
}
.admin-login-page { background: radial-gradient(circle at 16% 20%, rgba(103,232,249,.18), transparent 30%), linear-gradient(135deg, #101a33, #1f3a8a 50%, #eef2f7 50%); }
.login-hero { padding: 72px 80px; color: #fff; }
.login-hero h1 { margin: 30px 0 14px; font-size: 46px; }
.login-hero p { width: 560px; max-width: 100%; color: rgba(255,255,255,.82); line-height: 1.8; }
.hero-card-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 16px; margin-top: 48px; max-width: 620px; }
.hero-card { border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 22px; background: rgba(255,255,255,.12); backdrop-filter: blur(12px); }
.hero-card b { display: block; font-size: 28px; margin-bottom: 8px; }
.login-panel { display: flex; align-items: center; justify-content: center; padding: 32px; }
.login-box { width: 430px; background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 28px 80px rgba(15, 41, 100, .22); }
.login-box h2 { margin: 0 0 8px; font-size: 28px; }
.login-box .tip { color: var(--muted); margin-bottom: 26px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; color: #667085; margin-bottom: 8px; font-size: 14px; }
.input, .select, textarea {
  width: 100%; height: 42px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; background: #fff; outline: none;
}
textarea { height: auto; min-height: 88px; padding: 10px 12px; resize: vertical; }
.input:focus, .select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,255,.08); }
.primary-btn, .ghost-btn, .danger-btn, .text-btn, .small-btn {
  border-radius: 8px; height: 38px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.primary-btn { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(37,99,255,.22); }
.primary-btn:hover { background: var(--primary-dark); }
.ghost-btn { background: #f5f7fb; color: #415064; border: 1px solid var(--line); }
.danger-btn { background: #fff2f2; color: var(--danger); border: 1px solid #ffd4d4; }
.text-btn { background: transparent; color: var(--primary); padding: 0 6px; height: 28px; }
.small-btn { height: 30px; padding: 0 10px; font-size: 13px; background: #eef3ff; color: var(--primary); }
.full { width: 100%; }
.topbar {
  height: 54px; background: var(--primary); color: #fff; display: flex; align-items: center; padding: 0 20px; gap: 18px; box-shadow: none; position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 168px; font-weight: 700; font-size: 17px; }
.logo { width: 28px; height: 28px; border-radius: 3px; background: linear-gradient(135deg, #eaf8ff, #ffffff); display: grid; place-items: center; color: var(--primary); font-weight: 900; font-size: 14px; }
.logo span { width: 16px; height: 16px; border-radius: 3px; background: linear-gradient(135deg, #34d399, #3b82f6); position: relative; }
.logo span::after { content: ''; position: absolute; left: 4px; top: 4px; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.nav { display: flex; align-items: center; gap: 5px; flex: 1; height: 100%; }
.nav button { height: 34px; padding: 0 15px; border-radius: 4px; background: transparent; color: rgba(255,255,255,.95); font-size: 14px; }
.nav button.active, .nav button:hover { background: rgba(0,0,0,.16); color: #fff; }
.top-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; position: relative; }
.notice-btn span { position: absolute; left: 10px; top: 8px; width: 13px; height: 15px; border: 2px solid #fff; border-radius: 8px 8px 5px 5px; }
.notice-btn span::after { content: ''; position: absolute; left: 3px; bottom: -5px; width: 5px; height: 3px; background: #fff; border-radius: 0 0 5px 5px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #d0b28f, #5082e8); border: 2px solid rgba(255,255,255,.55); }
.down-arrow { background: transparent; color: rgba(255,255,255,.9); font-size: 18px; padding: 0; }
.layout { display: flex; min-height: calc(100vh - 54px); }
.sidebar { width: 160px; background: #fff; border-right: 1px solid #e8edf5; padding: 14px 8px 18px 0; }
.side-title { height: 32px; line-height: 32px; color: #303133; font-weight: 500; margin: 0 8px 8px 0; padding-left: 20px; border-bottom: 1px solid #e8edf5; }
.side-item { position: relative; width: 100%; height: 44px; display: flex; align-items: center; gap: 10px; padding: 0 12px 0 20px; margin-bottom: 2px; border-radius: 0 8px 8px 0; color: #303133; background: transparent; text-align: left; }
.side-item.active, .side-item:hover { background: #eaf1ff; color: var(--primary); }
.side-item.active::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 26px; border-radius: 0 3px 3px 0; background: var(--primary); }
.menu-icon { width: 18px; height: 18px; border: 1.5px solid currentColor; border-radius: 4px; display: inline-grid; place-items: center; font-size: 10px; line-height: 1; opacity: .72; }
.content { flex: 1; padding: 18px 24px 34px; overflow: auto; background: #f4f7fb; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.panel.pad { padding: 20px; }
.page-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.page-title h2 { margin: 0; font-size: 22px; }
.page-title p { margin: 6px 0 0; color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)); gap: 16px; margin-bottom: 18px; }
.stat { padding: 20px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.stat span { color: var(--muted); font-size: 13px; }
.stat b { display: block; margin-top: 10px; font-size: 28px; }
.stat small { color: var(--success); }
.grid-2 { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 16px; }
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.toolbar .input, .toolbar .select { width: 190px; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { border-bottom: 1px solid var(--line); padding: 13px 10px; text-align: left; font-size: 14px; }
.table th { color: #667085; font-weight: 600; background: #fbfcff; }
.tag { display: inline-flex; height: 24px; align-items: center; padding: 0 9px; border-radius: 999px; font-size: 12px; background: #edf4ff; color: var(--primary); }
.tag.green { background: #e9fbf3; color: var(--success); }
.tag.orange { background: #fff6e6; color: var(--warning); }
.tag.red { background: #fff0f0; color: var(--danger); }
.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); padding: 0 16px; background: #fff; }
.tab { height: 48px; background: transparent; color: #4b5563; border-bottom: 2px solid transparent; }
.tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.material-page { background: #fff; border-radius: 2px; border: 1px solid var(--line); }
.material-body { display: grid; grid-template-columns: 210px 1fr; min-height: 520px; }
.group-panel { border-right: 1px solid var(--line); padding: 16px 12px; }
.group-row { height: 34px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; border-radius: 4px; color: #4b5563; }
.group-row span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.group-row.active { background: #f1f5ff; color: var(--primary); }
.folder-icon { width: 14px; height: 10px; display: inline-block; background: currentColor; border-radius: 2px; position: relative; }
.folder-icon::before { content: ''; position: absolute; left: 1px; top: -4px; width: 7px; height: 5px; background: currentColor; border-radius: 2px 2px 0 0; }
.assets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 20px 16px; }
.asset-card { position: relative; text-align: center; }
.asset-thumb { width: 100%; height: 118px; border-radius: 5px; background: linear-gradient(135deg, #e8eefc, #ffffff); overflow: hidden; border: 1px solid #edf0f7; display: grid; place-items: center; color: #667085; font-weight: 700; padding: 0; }
.asset-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.asset-card input[type="checkbox"] { position: absolute; top: 8px; left: 8px; z-index: 2; }
.asset-name { margin-top: 8px; color: #4b5563; font-size: 12px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.asset-hover { display: none; position: absolute; left: 0; right: 0; top: 88px; height: 30px; background: rgba(0,0,0,.48); align-items: center; justify-content: center; gap: 8px; }
.asset-card:hover .asset-hover { display: flex; }
.asset-hover button { background: transparent; color: #fff; font-size: 12px; padding: 0; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.product-img { height: 150px; background: linear-gradient(135deg, #dbeafe, #fff7ed); display: grid; place-items: center; color: #3150a4; font-weight: 800; }
.product-card .body { padding: 14px; }
.product-meta { display: flex; justify-content: space-between; margin-top: 10px; color: #667085; }
.price { color: #e11d48; font-weight: 800; }
.progress { height: 6px; background: #edf1f7; border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--primary); border-radius: inherit; }
.chart { display: flex; gap: 12px; align-items: end; height: 220px; padding: 18px 8px 4px; border-bottom: 1px solid var(--line); }
.bar { flex: 1; min-width: 26px; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, #4f7cff, #9db6ff); position: relative; }
.bar span { position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); color: #667085; font-size: 12px; }
.info-head { margin-bottom: 12px; padding: 18px; background: #f3f6fb; border-radius: 9px; display: flex; align-items: center; justify-content: space-between; }
.store-card { display: flex; align-items: center; gap: 14px; }
.store-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #fbbf24, #60a5fa); }
.plan { color: #f59e0b; background: #fff7ed; padding: 3px 8px; border-radius: 999px; font-size: 12px; }
.info-list { padding: 0 16px; }
.info-line { display: grid; grid-template-columns: 130px 1fr 100px; align-items: center; min-height: 62px; border-bottom: 1px solid var(--line); color: #667085; }
.info-line strong { color: #374151; font-weight: 500; }
.modal-mask { position: fixed; inset: 0; background: rgba(0,0,0,.38); display: grid; place-items: center; z-index: 99; }
.modal { width: min(560px, calc(100vw - 32px)); background: #fff; border-radius: 2px; padding: 0; box-shadow: 0 2px 12px rgba(0,0,0,.18); position: relative; overflow: hidden; }
.modal h3 { margin: 0; height: 52px; line-height: 52px; padding: 0 54px 0 20px; font-size: 16px; font-weight: 500; border-bottom: 1px solid #ebeef5; color: #303133; }
.modal-close { position: absolute; right: 16px; top: 12px; width: 28px; height: 28px; background: transparent; color: #909399; font-size: 22px; }
.modal-body { padding: 20px; color: #606266; max-height: 68vh; overflow: auto; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; padding: 10px 20px 18px; }
.toast { position: fixed; left: 50%; top: 74px; transform: translateX(-50%); z-index: 120; background: #f0f9eb; color: #67c23a; border: 1px solid #e1f3d8; padding: 10px 16px; border-radius: 4px; box-shadow: 0 2px 12px rgba(0,0,0,.08); display: flex; align-items: center; gap: 8px; }
.toast.error { background: #fef0f0; color: #f56c6c; border-color: #fde2e2; }
.message-icon { width: 16px; height: 16px; display: inline-grid; place-items: center; border-radius: 50%; background: currentColor; color: #fff; font-size: 11px; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.log-line { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); color: #667085; }
.overview-page { display: grid; grid-template-columns: minmax(680px, 1fr) 318px; gap: 18px; align-items: start; }
.overview-main, .overview-aside { display: grid; gap: 16px; }
.overview-card { background: #fff; border: 1px solid #eef1f6; border-radius: 2px; padding: 18px 20px; box-shadow: none; }
.overview-card-head { display: flex; align-items: center; justify-content: space-between; min-height: 28px; margin-bottom: 14px; }
.overview-card-head h3, .contact-card h3 { margin: 0; font-size: 16px; color: #1f2d3d; font-weight: 600; }
.range-switch { display: inline-flex; border: 1px solid #dcdfe6; border-radius: 3px; overflow: hidden; }
.range-switch button { width: 54px; height: 30px; background: #fff; color: #606266; border-left: 1px solid #dcdfe6; }
.range-switch button:first-child { border-left: 0; }
.range-switch button.active { color: var(--primary); background: #ecf3ff; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #f0f2f5; border-left: 1px solid #f0f2f5; }
.metric-cell { min-height: 118px; padding: 18px 18px 14px; border-right: 1px solid #f0f2f5; border-bottom: 1px solid #f0f2f5; }
.metric-title { color: #606266; font-size: 14px; margin-bottom: 12px; }
.metric-cell b { display: block; color: #303133; font-size: 28px; line-height: 1.15; font-weight: 500; margin-bottom: 12px; }
.metric-cell p { margin: 3px 0; color: #909399; font-size: 13px; }
.shortcut-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.shortcut-grid button { height: 86px; background: #fff; color: #606266; display: grid; place-items: center; align-content: center; gap: 9px; border-radius: 2px; }
.shortcut-grid button:hover { color: var(--primary); background: #f5f8ff; }
.shortcut-grid i { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #ecf3ff; color: var(--primary); font-style: normal; font-size: 13px; }
.shortcut-grid span { font-size: 13px; }
.plain-link { background: transparent; color: #2864ff; padding: 0; font-size: 13px; }
.live-status-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.live-status-tabs button { height: 28px; padding: 0 13px; background: #fff; border: 1px solid #dcdfe6; color: #606266; border-radius: 3px; }
.live-status-tabs button.active { border-color: #2864ff; color: #2864ff; }
.origin-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.origin-table th { height: 42px; background: #f5f7fa; color: #606266; font-weight: 500; border-bottom: 1px solid #ebeef5; font-size: 13px; text-align: left; padding: 0 12px; }
.origin-table td { height: 92px; border-bottom: 1px solid #ebeef5; color: #909399; text-align: center; }
.origin-empty { color: #909399; text-align: center; padding: 26px 0; font-size: 14px; }
.origin-empty.small { padding: 28px 0 18px; }
.shop-profile { position: relative; padding-bottom: 16px; }
.profile-row { display: flex; align-items: center; gap: 12px; }
.profile-avatar { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(135deg, #d7b48a, #477be8); }
.profile-row h3 { margin: 0 0 6px; font-size: 16px; color: #303133; }
.profile-row span { display: inline-block; color: #fff; background: #f6b041; border-radius: 12px; line-height: 20px; padding: 0 9px; font-size: 12px; }
.profile-row p { margin: 7px 0 0; color: #909399; font-size: 13px; }
.renew-btn { position: absolute; right: 18px; top: 26px; height: 32px; padding: 0 15px; border-radius: 3px; background: #2864ff; color: #fff; }
.resource-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid #f0f2f5; }
.resource-row strong { display: block; color: #606266; font-size: 13px; margin-bottom: 6px; }
.resource-row b { display: block; font-size: 18px; color: #303133; font-weight: 500; margin-bottom: 6px; }
.resource-row p { margin: 0; color: #909399; font-size: 13px; }
.resource-row button { background: transparent; color: #2864ff; font-size: 13px; }
.qr-box { width: 92px; height: 92px; margin: 10px auto 8px; background: repeating-linear-gradient(45deg, #111 0 4px, #fff 4px 8px); border: 8px solid #fff; outline: 1px solid #e5e7eb; }
.contact-card { text-align: center; color: #606266; font-size: 13px; }
.contact-card p { margin: 9px 0; }
.origin-page-card { background: #fff; border: 1px solid #eef1f6; border-radius: 2px; padding: 18px 20px; min-height: calc(100vh - 92px); }
.origin-page-title { margin: 0 0 18px; font-size: 18px; font-weight: 500; color: #303133; }
.origin-filter-grid { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 14px 22px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid #edf0f6; }
.origin-filter-grid label { display: flex; align-items: center; gap: 8px; color: #606266; font-size: 14px; white-space: nowrap; }
.origin-input { width: 190px; height: 34px; border: 1px solid #dcdfe6; border-radius: 3px; padding: 0 10px; color: #606266; background: #fff; outline: none; }
.origin-input:focus { border-color: #2864ff; }
.origin-filter-actions { display: flex; gap: 10px; }
.origin-action-bar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; padding: 18px 0 12px; }
.origin-primary, .origin-default { height: 32px; padding: 0 14px; border-radius: 3px; font-size: 13px; }
.origin-primary { background: #2864ff; color: #fff; }
.origin-default { background: #fff; color: #606266; border: 1px solid #dcdfe6; }
.live-table th:first-child, .live-table td:first-child { width: 44px; text-align: center; }
.live-table th, .live-table td { height: 54px; padding: 8px 12px; text-align: left; }
.live-table td { color: #606266; border-bottom: 1px solid #ebeef5; }
.live-table .tag { height: 22px; border-radius: 2px; background: transparent; color: #606266; padding: 0; }
.table-actions { min-width: 230px; }
.table-actions button { background: transparent; color: #2864ff; margin-right: 8px; padding: 0; font-size: 13px; }
.origin-pagination { display: flex; justify-content: flex-end; align-items: center; gap: 8px; padding-top: 16px; color: #606266; font-size: 13px; }
.origin-pagination button { min-width: 30px; height: 28px; border-radius: 3px; background: #fff; color: #606266; border: 1px solid #dcdfe6; }
.origin-pagination button.active { background: #2864ff; border-color: #2864ff; color: #fff; }
.origin-pagination input { width: 44px; height: 28px; border: 1px solid #dcdfe6; border-radius: 3px; text-align: center; }
.product-status-tabs { display: flex; gap: 0; margin: 4px 0 12px; color: #606266; }
.product-status-tabs button { height: 30px; padding: 0 10px; background: transparent; color: #606266; }
.product-status-tabs button.active { color: #2864ff; }
.product-table { min-width: 1180px; }
.shop-origin-page { overflow-x: auto; }
.product-table th:nth-child(3), .product-table td:nth-child(3) { min-width: 250px; }
.product-table th, .product-table td { font-size: 13px; }
.marketing-hero { min-height: 142px; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 24px 28px; margin-bottom: 18px; background: linear-gradient(135deg, #f5f8ff, #fff); border: 1px solid #eef1f6; }
.marketing-hero h2 { margin: 0 0 12px; font-size: 22px; font-weight: 500; color: #303133; }
.marketing-hero p { max-width: 840px; margin: 0; line-height: 1.8; color: #606266; font-size: 14px; }
.marketing-hero strong { color: #2864ff; font-size: 22px; white-space: nowrap; }
.marketing-tool-grid { display: grid; grid-template-columns: repeat(4, minmax(180px, 1fr)); gap: 16px; }
.marketing-tool-card { min-height: 118px; padding: 20px; display: flex; gap: 14px; text-align: left; background: #fff; border: 1px solid #edf0f6; border-radius: 3px; color: #606266; }
.marketing-tool-card:hover { border-color: #2864ff; box-shadow: 0 2px 10px rgba(40,100,255,.08); }
.marketing-tool-card i { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px; display: grid; place-items: center; background: #ecf3ff; color: #2864ff; font-style: normal; }
.marketing-tool-card h3 { margin: 0 0 8px; color: #303133; font-size: 16px; font-weight: 500; }
.marketing-tool-card p { margin: 0; color: #909399; line-height: 1.55; font-size: 13px; }
.audience-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-bottom: 18px; border: 1px solid #edf0f6; }
.audience-stats div { min-height: 86px; padding: 16px 20px; border-right: 1px solid #edf0f6; }
.audience-stats div:last-child { border-right: 0; }
.audience-stats span { color: #606266; font-size: 14px; }
.audience-stats b { display: block; margin-top: 12px; color: #303133; font-size: 26px; font-weight: 500; }
.audience-table { min-width: 1240px; }
.audience-origin-page { overflow-x: auto; }
.data-origin-page { overflow-x: auto; }
.data-filter-grid { grid-template-columns: 210px 20px 210px 1fr; justify-content: start; }
.data-top-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 18px 0; border: 1px solid #edf0f6; }
.data-top-grid div { min-height: 90px; padding: 18px; border-right: 1px solid #edf0f6; }
.data-top-grid div:last-child { border-right: 0; }
.data-top-grid span, .data-group p span { color: #606266; font-size: 14px; }
.data-top-grid b { display: block; margin-top: 14px; font-size: 24px; color: #303133; font-weight: 500; }
.data-group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.data-group { border: 1px solid #edf0f6; padding: 18px; }
.data-group h3, .section-title { margin: 0 0 14px; font-size: 16px; color: #303133; font-weight: 500; }
.data-group p { display: flex; justify-content: space-between; margin: 12px 0; }
.data-group p b { color: #303133; font-weight: 500; }
.section-title { margin-top: 20px; }
.data-table { min-width: 1480px; }
.subscribe-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 22px; }
.subscribe-card { min-height: 180px; padding: 34px 38px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #edf0f6; background: linear-gradient(135deg, #f7fbff, #ffffff); }
.subscribe-card h3 { margin: 0 0 14px; font-size: 22px; color: #303133; font-weight: 500; }
.subscribe-card p { margin: 0; color: #f59e0b; font-size: 15px; }
.assets-origin-page { overflow-x: auto; }
.account-tabs { display: flex; gap: 0; margin-bottom: 14px; }
.account-tabs button { height: 34px; padding: 0 16px; background: transparent; color: #606266; border-bottom: 2px solid transparent; }
.account-tabs button.active { color: #2864ff; border-bottom-color: #2864ff; }
.account-card { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px; border: 1px solid #edf0f6; margin-bottom: 14px; }
.account-card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 500; }
.account-card p { margin: 0 0 8px; color: #606266; }
.account-card span { color: #909399; }
.account-balance b { display: block; font-size: 30px; color: #303133; font-weight: 500; margin-top: 8px; }
.account-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid #edf0f6; margin-bottom: 18px; }
.account-summary p { margin: 0; padding: 14px 16px; border-right: 1px solid #edf0f6; border-bottom: 1px solid #edf0f6; color: #606266; }
.trade-types { display: flex; flex-wrap: wrap; gap: 10px 16px; padding: 14px 0; color: #606266; font-size: 13px; }
.assets-table { min-width: 1320px; }
.merchant-form { margin-top: 24px; padding: 20px 24px; border-top: 1px solid #edf0f6; }
.merchant-form h3 { margin: 0 0 18px; font-size: 16px; color: #303133; font-weight: 500; }
.merchant-form .form-row { display: grid; grid-template-columns: 100px 260px 60px; align-items: center; gap: 10px; margin-bottom: 14px; color: #606266; }
.merchant-form .origin-input { width: 260px; }
.batch-label { color: #606266; font-size: 13px; }
.material-pagination { justify-content: flex-start; padding: 18px 0 0; }
.dialog-form { display: grid; gap: 14px; }
.dialog-form label { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 12px; color: #606266; }
.dialog-form .origin-input { width: 100%; }
.detail-list p { display: grid; grid-template-columns: 130px 1fr; margin: 0; padding: 12px 0; border-bottom: 1px solid #ebeef5; }
.detail-list span { color: #909399; }
.detail-list b { color: #303133; font-weight: 500; }
.confirm-text { margin: 0; color: #606266; line-height: 1.8; }
.notice-head { display: flex; justify-content: flex-end; margin-bottom: 8px; }
.user-card { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid #ebeef5; }
.user-card h3 { height: auto; line-height: normal; padding: 0; border: 0; margin: 0 0 6px; }
.user-card p { margin: 0; color: #909399; }
.dropdown-list { display: grid; gap: 0; padding-top: 8px; }
.dropdown-list button { height: 36px; text-align: left; background: #fff; color: #606266; padding: 0 10px; border-radius: 3px; }
.dropdown-list button:hover { background: #ecf3ff; color: #2864ff; }
.preview-img { display: block; max-width: 100%; max-height: 440px; margin: 0 auto 12px; object-fit: contain; }
.qr-preview { width: 148px; height: 148px; margin: 0 auto 12px; background: repeating-linear-gradient(45deg, #111 0 5px, #fff 5px 10px); border: 10px solid #fff; outline: 1px solid #e5e7eb; }
.package-buy h3 { margin: 0 0 8px; font-size: 20px; color: #303133; }
.package-buy p { color: #e6a23c; margin: 0 0 18px; }
.setting-origin-page { min-height: calc(100vh - 92px); padding: 0 0 22px; overflow-x: auto; }
.setting-page-head { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #edf0f6; }
.setting-page-head h2 { margin: 0; color: #303133; font-size: 18px; font-weight: 500; }
.setting-page-head p { margin: 6px 0 0; color: #909399; font-size: 13px; }
.setting-store-head { margin: 18px 20px 0; }
.setting-store-head h2 { margin: 0 0 8px; font-size: 18px; font-weight: 500; color: #303133; }
.muted-text { color: #909399; }
.setting-list { padding: 4px 20px 0; }
.setting-list .info-line { grid-template-columns: 150px minmax(360px, 1fr) 180px; }
.cert-status { margin: 18px 20px; padding: 22px 24px; border: 1px solid #edf0f6; background: #f8fbff; display: flex; align-items: center; justify-content: space-between; }
.cert-status span, .cert-status p { color: #909399; }
.cert-status b { display: block; margin: 8px 0; color: #e6a23c; font-size: 28px; font-weight: 500; }
.setting-section { margin: 18px 20px; padding: 18px 20px; border: 1px solid #edf0f6; background: #fff; }
.setting-section h3 { margin: 0 0 16px; font-size: 16px; color: #303133; font-weight: 500; }
.setting-form-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 360px)); gap: 16px 28px; }
.setting-form-grid label, .dialog-form label { color: #606266; }
.setting-form-grid .origin-input { display: block; width: 100%; margin-top: 8px; }
.upload-grid { display: grid; grid-template-columns: repeat(3, 220px); gap: 16px; }
.upload-box { height: 128px; border: 1px dashed #c0c4cc; background: #fafafa; color: #909399; display: grid; place-items: center; align-content: center; gap: 8px; }
.upload-box:hover { border-color: #2864ff; color: #2864ff; }
.upload-box b { font-size: 28px; font-weight: 400; }
.upload-box span { color: #606266; }
.upload-box em { font-style: normal; font-size: 12px; }
.setting-actions { padding: 0 20px 18px; display: flex; justify-content: flex-end; gap: 10px; }
.security-grid { display: grid; gap: 0; border-top: 1px solid #edf0f6; }
.security-item { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf0f6; }
.security-item b { color: #303133; font-weight: 500; }
.security-item p { margin: 8px 0 0; color: #909399; }
.integration-grid { display: grid; grid-template-columns: repeat(3, minmax(260px, 1fr)); gap: 16px; padding: 18px 20px; }
.integration-card { min-height: 132px; border: 1px solid #edf0f6; padding: 18px; display: grid; grid-template-columns: 42px 1fr auto; align-items: start; gap: 14px; }
.integration-card i { width: 42px; height: 42px; border-radius: 50%; background: #ecf3ff; color: #2864ff; display: grid; place-items: center; font-style: normal; }
.integration-card h3 { margin: 0 0 8px; color: #303133; font-size: 16px; font-weight: 500; }
.integration-card p { margin: 0 0 10px; color: #909399; line-height: 1.6; }
.integration-card span { color: #e6a23c; }
.integration-card span.ok { color: #67c23a; }
.permission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.permission-grid span { padding: 12px; background: #f5f8ff; color: #606266; text-align: center; }
.store-filter-grid, .logs-filter-grid { grid-template-columns: repeat(3, minmax(240px, 1fr)) auto; margin: 18px 20px 0; }
.platform-admin-topbar { background: #13203f; }
.platform-admin-topbar .origin-default { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.22); }
.platform-admin-nav button.active, .platform-admin-nav button:hover { background: rgba(40,100,255,.55); }
.platform-admin-layout { min-height: calc(100vh - 54px); }
.platform-admin-content { background: #eef2f7; }
.platform-sidebar { width: 184px; background: #17213a; border-right: 0; color: #cbd5e1; }
.platform-sidebar .side-title { color: #e5edff; border-bottom-color: rgba(255,255,255,.08); }
.platform-sidebar .side-item { color: #cbd5e1; }
.platform-sidebar .side-item.active, .platform-sidebar .side-item:hover { background: #2864ff; color: #fff; }
.platform-sidebar .side-item.active::before { background: #67e8f9; }
.platform-origin-page { min-height: calc(100vh - 92px); overflow-x: auto; }
.platform-metric-grid { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 14px; padding: 18px 20px; }
.platform-metric { min-height: 108px; padding: 18px; border: 1px solid #edf0f6; background: linear-gradient(135deg, #f8fbff, #fff); }
.platform-metric span { color: #606266; }
.platform-metric b { display: block; margin: 10px 0 8px; color: #303133; font-size: 24px; font-weight: 500; }
.platform-metric p { margin: 0; color: #909399; font-size: 12px; }
.platform-section { margin: 18px 20px; padding: 18px 20px; border: 1px solid #edf0f6; background: #fff; }
.platform-section h3 { margin: 0 0 14px; color: #303133; font-size: 16px; font-weight: 500; }
.todo-grid { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)); gap: 12px; }
.todo-grid button { height: 64px; border: 1px solid #edf0f6; background: #f8fbff; color: #2864ff; border-radius: 3px; }
.platform-embedded { margin: 0 20px 18px; }
.platform-embedded > .origin-page-title, .platform-embedded > .origin-filter-grid:first-of-type { display: none; }
.platform-assets { padding: 0 20px 20px; }
.summary-strip { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)); gap: 0; margin: 18px 20px 0; border: 1px solid #edf0f6; background: #fbfcff; }
.summary-strip span { min-height: 58px; padding: 12px 16px; border-right: 1px solid #edf0f6; color: #606266; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.summary-strip span:last-child { border-right: 0; }
.summary-strip b { color: #303133; font-size: 18px; font-weight: 600; text-align: right; }
.platform-board-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; margin: 0 20px; }
.platform-board-grid .platform-section { margin: 18px 0 0; }
.health-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.health-grid div { min-height: 118px; padding: 16px; border: 1px solid #edf0f6; background: #f8fbff; }
.health-grid span, .finance-account-card p, .cell-muted { color: #909399; font-size: 12px; }
.health-grid b { display: block; margin: 10px 0 8px; color: #303133; font-size: 24px; font-weight: 600; }
.health-grid p { margin: 0; color: #606266; line-height: 1.6; }
.task-list { display: grid; grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 12px; }
.task-list button { min-height: 92px; padding: 14px; text-align: left; border: 1px solid #edf0f6; background: #fff; color: #303133; border-radius: 3px; }
.task-list button:hover { border-color: #2864ff; box-shadow: 0 2px 10px rgba(40,100,255,.08); }
.task-list b { display: block; margin: 10px 0 6px; font-size: 15px; }
.task-list p { margin: 0; color: #909399; font-size: 12px; line-height: 1.6; }
.permission-domain-grid { display: grid; grid-template-columns: repeat(4, minmax(180px, 1fr)); gap: 14px; }
.permission-domain-grid div, .open-platform-grid div, .portal-card-grid div { border: 1px solid #edf0f6; background: #fff; padding: 16px; }
.permission-domain-grid h4, .open-platform-grid h4, .portal-card-grid h3 { margin: 0 0 12px; color: #303133; font-size: 15px; font-weight: 600; }
.permission-domain-grid span { display: inline-flex; margin: 0 8px 8px 0; padding: 6px 10px; border-radius: 999px; background: #f1f5ff; color: #2864ff; font-size: 12px; }
.compact-table td { height: 56px; padding: 10px 12px; text-align: left; color: #606266; }
.compact-table th { text-align: left; }
.merchant-table td { height: 72px; padding: 10px 12px; text-align: left; color: #606266; }
.merchant-table b { color: #303133; font-weight: 600; }
.cell-muted { margin: 6px 0 0; line-height: 1.4; }
.mini-progress { width: 100%; height: 7px; background: #edf1f7; border-radius: 999px; overflow: hidden; margin: 8px 0; }
.mini-progress span { display: block; height: 100%; background: linear-gradient(90deg, #2864ff, #67e8f9); border-radius: inherit; }
.finance-account-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 14px; margin: 18px 20px; }
.finance-account-card { min-height: 160px; padding: 18px; border: 1px solid #edf0f6; background: linear-gradient(135deg, #f8fbff, #fff); display: grid; gap: 10px; }
.finance-account-card h3 { margin: 0 0 8px; color: #303133; font-size: 16px; }
.finance-account-card b { color: #303133; font-size: 24px; font-weight: 600; }
.finance-summary { grid-template-columns: repeat(4, 1fr); }
.open-platform-grid { display: grid; grid-template-columns: repeat(4, minmax(210px, 1fr)); gap: 14px; }
.open-platform-grid p, .portal-card-grid p { min-height: 42px; margin: 0 0 12px; color: #909399; line-height: 1.6; }
.open-platform-grid .origin-default, .portal-card-grid .origin-default { margin-top: 12px; }
.setting-open-grid { padding: 18px 20px 0; }
.portal-card-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 14px; padding: 18px 0; }
.resource-package-card { display: block; }
.resource-package-card strong { display: block; margin: 8px 0 10px; color: #e6a23c; font-size: 18px; }
.resource-package-card em { display: block; font-style: normal; color: #909399; font-size: 12px; }
.simulator-grid { display: grid; grid-template-columns: repeat(4, minmax(160px, 1fr)) auto; gap: 12px; align-items: end; }
.simulator-grid label { color: #606266; }
.simulator-grid .origin-input { display: block; width: 100%; margin-top: 8px; }
.reset-guide { margin: 0 0 18px; padding: 16px 20px; border: 1px solid #ffd591; background: #fff7e6; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.reset-guide b { color: #ad6800; font-size: 16px; }
.reset-guide p { margin: 6px 0 0; color: #8c6d1f; }
.reset-guide > div:last-child { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb { width: 54px; height: 54px; object-fit: cover; border-radius: 4px; border: 1px solid #edf0f6; background: #f5f7fb; }
.product-table { min-width: 1520px; }
.plan-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 16px; margin: 18px 0; }
.plan-grid article { padding: 24px; border: 1px solid #edf0f6; background: linear-gradient(135deg,#f8fbff,#fff); }
.plan-grid h3 { margin: 0 0 8px; color: #303133; font-size: 22px; }
.plan-grid p { margin: 0 0 10px; color: #909399; }
.plan-grid b { display: block; margin: 12px 0; color: #e6a23c; font-size: 24px; }
.plan-grid span { display: inline-flex; margin: 0 8px 8px 0; padding: 5px 9px; background: #ecf3ff; color: #2864ff; border-radius: 999px; font-size: 12px; }
.plan-grid button { margin-top: 12px; }
.live-flow { margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.live-flow span { padding: 10px; background: #f5f8ff; color: #2864ff; text-align: center; border: 1px solid #edf0f6; }
.live-goods-list { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 8px; }
.wecom-live-box { text-align: center; }
.wecom-live-box h3 { height: auto; line-height: normal; padding: 0; border: 0; }
.wecom-live-box .origin-input { width: 100%; margin: 12px 0; }
.share-product-card { text-align: center; }
.share-product-card img { width: 180px; height: 180px; object-fit: cover; border: 1px solid #edf0f6; border-radius: 6px; }
.share-product-card h3 { height: auto; line-height: normal; padding: 0; border: 0; margin: 12px 0 6px; }
.share-product-card p { color: #e11d48; font-size: 22px; font-weight: 700; margin: 0 0 12px; }
.share-product-card label { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 8px; text-align: left; }
@media (max-width: 980px) {
  .login-page { grid-template-columns: 1fr; }
  .login-hero { display: none; }
  .topbar { gap: 10px; overflow-x: auto; }
  .brand { min-width: 140px; }
  .nav button { padding: 0 12px; }
  .layout { display: block; }
  .sidebar { width: auto; display: flex; overflow-x: auto; }
  .side-title { display: none; }
  .content { padding: 16px; }
  .stats, .grid-2, .grid-3, .material-body, .overview-page, .metric-grid, .shortcut-grid, .origin-filter-grid, .marketing-tool-grid, .audience-stats, .data-top-grid, .data-group-grid, .subscribe-grid, .account-summary, .summary-strip, .platform-board-grid, .health-grid, .task-list, .permission-domain-grid, .finance-account-grid, .open-platform-grid, .portal-card-grid, .simulator-grid, .plan-grid, .live-flow, .live-goods-list { grid-template-columns: 1fr; }
  .group-panel { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* bf-lives 直播后台精细还原 */
:root { --primary: #2563ff; --bg: #ffffff; --line: #edf0f7; }
body { background: #fff; font-size: 12px; color: #303133; }
.topbar { height: 36px; padding: 0 14px; gap: 12px; background: #2563ff; }
.brand { min-width: 154px; gap: 7px; font-size: 13px; font-weight: 600; }
.logo { width: 18px; height: 18px; border-radius: 2px; font-size: 12px; }
.logo span { width: 11px; height: 11px; border-radius: 2px; }
.logo span::after { left: 3px; top: 3px; width: 5px; height: 5px; }
.nav { gap: 0; }
.nav button { height: 36px; padding: 0 14px; border-radius: 0; font-size: 12px; }
.nav button.active, .nav button:hover { background: rgba(0,0,0,.18); }
.top-actions { gap: 7px; }
.icon-btn { width: 22px; height: 22px; }
.notice-btn span { left: 7px; top: 5px; width: 9px; height: 11px; border-width: 1.5px; }
.notice-btn span::after { left: 2px; bottom: -4px; width: 4px; height: 2px; }
.avatar { width: 24px; height: 24px; border-width: 1px; }
.down-arrow { font-size: 14px; }
.layout { min-height: calc(100vh - 36px); background: #fff; }
.layout::before { content: ''; flex: 0 0 42px; border-right: 1px solid #e8edf5; background: linear-gradient(#fff,#f7faff); }
.sidebar { flex: 0 0 104px; width: 104px; padding: 10px 0 18px; border-right: 1px solid #edf0f6; }
.side-title { height: 28px; line-height: 28px; margin: 0 0 7px; padding-left: 18px; font-size: 12px; font-weight: 400; border-bottom: 0; white-space: nowrap; }
.side-item { height: 29px; padding: 0 8px 0 18px; margin: 0; gap: 6px; border-radius: 0; font-size: 12px; white-space: nowrap; overflow: hidden; }
.side-item.active, .side-item:hover { background: #eef4ff; color: #2563ff; }
.side-item.active::before { left: 0; top: 6px; width: 3px; height: 17px; }
.menu-icon { width: 13px; height: 13px; border-width: 1px; font-size: 8px; }
.content { padding: 0; background: #fff; }
.origin-page-card { border: 0; border-radius: 0; min-height: calc(100vh - 36px); padding: 16px 20px; }
.origin-input { height: 28px; width: 248px; font-size: 12px; border-color: #dcdfe6; border-radius: 2px; padding: 0 9px; }
.origin-primary, .origin-default { height: 28px; padding: 0 13px; font-size: 12px; border-radius: 2px; }
.origin-primary { background: #2563ff; }
.origin-default { border-color: #dcdfe6; }
.live-create-page { padding: 0 0 52px; color: #606266; }
.live-template-strip { height: 132px; background: #eff6ff; display: flex; align-items: flex-start; justify-content: center; gap: 14px; padding-top: 4px; overflow: hidden; }
.template-card { width: 112px; height: 118px; text-align: center; color: #606266; font-size: 12px; }
.template-preview { width: 112px; height: 96px; border: 1px solid transparent; border-radius: 5px; background: #fff; padding: 7px 6px; box-shadow: 0 1px 2px rgba(40,100,255,.08); }
.template-card.active .template-preview { border-color: #2563ff; box-shadow: 0 0 0 1px rgba(37,99,255,.15); }
.template-name { display: block; margin-top: 7px; transform: scale(.9); }
.template-head { height: 12px; display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.template-avatar { width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg,#9a6a35,#ffd28a); }
.template-pill { width: 45px; height: 7px; border-radius: 8px; background: #dbeafe; }
.chat-line { min-height: 12px; display: flex; align-items: flex-start; gap: 3px; margin: 3px 0; }
.chat-line::before { content: ''; width: 12px; height: 12px; flex: 0 0 12px; border-radius: 50%; background: linear-gradient(135deg,#8b5e34,#ffd08a); }
.chat-bubble { flex: 1; height: 9px; border-radius: 2px; background: #f5f7fa; }
.template-blue .chat-bubble, .template-blue .template-pill { background: #99d5ff; }
.template-dots { display: flex; justify-content: flex-end; gap: 5px; margin-top: 5px; }
.template-dots i { width: 6px; height: 6px; border-radius: 50%; background: #ffd666; }
.template-dots i:last-child { background: #ff8f8f; }
.template-next { width: 20px; height: 20px; margin-top: 39px; border-radius: 50%; color: #fff; background: #80bdff; display: grid; place-items: center; }
.live-form-wrap { width: 640px; margin: 17px 0 0 18px; }
.live-form-section { display: grid; grid-template-columns: 72px 1fr; align-items: start; margin-bottom: 10px; }
.live-section-title { color: #606266; font-weight: 500; padding-top: 5px; text-align: right; padding-right: 14px; }
.live-section-body { display: grid; gap: 10px; }
.origin-form-row { display: grid; grid-template-columns: 86px 1fr; align-items: center; min-height: 28px; }
.origin-form-row > label { text-align: right; padding-right: 12px; color: #606266; }
.origin-form-row.required > label::before { content: '*'; color: #f56c6c; margin-right: 4px; }
.form-note { margin: -4px 0 2px 86px; color: #909399; line-height: 1.6; font-size: 12px; }
.cover-upload { width: 108px; height: 80px; border: 0; background: linear-gradient(135deg,#2f6bff,#7669ff); color: #fff; display: grid; place-items: center; font-size: 24px; }
.cover-tip { margin: 7px 0 0 86px; color: #909399; font-size: 12px; transform: scale(.92); transform-origin: left top; }
.segmented { display: inline-flex; vertical-align: middle; }
.segmented button { height: 28px; padding: 0 15px; background: #fff; color: #606266; border: 1px solid #dcdfe6; border-left: 0; }
.segmented button:first-child { border-left: 1px solid #dcdfe6; border-radius: 2px 0 0 2px; }
.segmented button:last-child { border-radius: 0 2px 2px 0; }
.segmented button.active { color: #2563ff; border-color: #2563ff; position: relative; z-index: 1; }
.switch { width: 28px; height: 16px; border-radius: 12px; background: #dcdfe6; display: inline-block; position: relative; vertical-align: middle; margin-right: 6px; }
.switch::after { content: ''; position: absolute; width: 12px; height: 12px; left: 2px; top: 2px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.15); }
.switch.on { background: #2563ff; }
.switch.on::after { left: 14px; }
.live-create-footer { position: fixed; left: 146px; right: 0; bottom: 0; height: 42px; background: #fff; border-top: 1px solid #edf0f6; display: flex; align-items: center; justify-content: center; gap: 10px; z-index: 9; }
.live-create-footer .agree { position: absolute; left: 22px; color: #606266; }
.live-create-footer a { color: #2563ff; text-decoration: none; }
.live-common-page { padding: 18px 20px 48px; }
.live-common-tabs { display: flex; gap: 0; border-bottom: 1px solid #edf0f6; margin-bottom: 20px; }
.live-common-tabs button { height: 34px; padding: 0 18px; background: #fff; color: #606266; border-bottom: 2px solid transparent; }
.live-common-tabs button.active { color: #2563ff; border-bottom-color: #2563ff; }
.live-setting-panel { width: 720px; border: 1px solid #edf0f6; background: #fff; padding: 22px 24px; }
.live-setting-panel h3 { margin: 0 0 18px; font-size: 14px; color: #303133; font-weight: 500; }
.live-setting-panel .origin-form-row { grid-template-columns: 118px 1fr; margin-bottom: 14px; }
.live-setting-panel textarea.origin-input { width: 420px; height: 74px; padding-top: 8px; }
.live-setting-actions { padding-left: 118px; display: flex; gap: 10px; }

