:root {
  --bg: #f8f9fd;
  --panel: #fff;
  --text: #1d2129;
  --sub: #5d6675;
  --muted: #86909c;
  --line: #edf1f7;
  --blue: #2f83e8;
  --blue-soft: #eaf4ff;
  --orange: #f59a23;
  --red: #e5484d;
  --green: #28a745;
  --shadow: 0 6px 22px rgba(35, 56, 92, 0.05);
  --header-h: 56px;
  --sidebar-w: 240px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  font-size: 12px;
  color: var(--text);
  font-family: -apple-system, "system-ui", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  background: var(--bg);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.ui-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  color: currentColor;
  vertical-align: -0.16em;
}

.ui-icon--chev {
  width: 14px;
  height: 14px;
}

.watermark {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 84px 28px;
  padding: 104px 18px;
  pointer-events: none;
  color: rgba(155, 166, 184, 0.075);
  font-size: 14px;
  transform: rotate(-23deg) scale(1.15);
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 11;
  width: var(--sidebar-w);
  padding: 6px 20px 48px;
  overflow: hidden auto;
  background: #fcfdff;
  border-right: 0;
}

.brand {
  display: block;
  width: 145px;
  height: 44px;
  margin-left: 0;
}

.brand img {
  width: 145px;
  height: 44px;
  object-fit: contain;
}

.side-menu {
  margin-top: 10px;
  padding-bottom: 30px;
}

body[data-route="order-trade"] .sidebar {
  overflow: hidden;
}

body[data-route="order-trade"] .side-menu {
  transform: translateY(-310px);
}

.menu-row {
  width: 200px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px 0 0;
  color: #1f2329;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  text-align: left;
  background: transparent;
}

.menu-row:hover {
  background: rgba(235, 243, 255, 0.75);
}

.menu-row.is-open,
.menu-row.is-active {
  background: transparent;
}

.menu-row--plain {
  height: 40px;
  margin: 0 0 7px;
  font-size: 16px;
}

.menu-row .chev { display: none; }

.menu-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #1d2129;
  font-size: 17px;
  text-align: center;
}

.menu-icon .ui-icon {
  width: 18px;
  height: 18px;
}

.chev {
  margin-left: auto;
  color: #a8abb2;
  font-size: 14px;
}

.menu-group {
  margin-bottom: 2px;
}

.menu-group:not(.is-open) .submenu {
  display: none;
}

.submenu {
  padding: 0 0 8px 0;
}

.submenu-section {
  margin: 0;
}

.submenu-title {
  position: relative;
  width: max-content;
  margin: 2px auto 4px;
  color: rgba(5, 12, 35, 0.32);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
}

.submenu-title::before,
.submenu-title::after {
  display: none;
}

.submenu-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 0 10px;
}

.submenu-grid a {
  min-width: 0;
  height: 38px;
  display: flex;
  align-items: center;
  border-radius: 7px;
  padding: 0;
  color: rgb(108, 115, 122);
  font-size: 14px;
  font-weight: 400;
  line-height: 38px;
  white-space: nowrap;
}

.submenu-grid a:hover {
  color: var(--blue);
  background: #edf5ff;
}

.submenu-grid a.is-active {
  color: var(--blue);
  background: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: var(--sidebar-w);
  right: 0;
  z-index: 10;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 18px 0 10px;
  border-bottom: 0;
  background: #fcfdff;
}

.search {
  position: relative;
  width: 320px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  color: #9aa3b3;
  background: #fff;
}

.search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 131, 232, 0.1);
}

.search__icon {
  display: grid;
  place-items: center;
  font-size: 18px;
}

.search__input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0;
  outline: none;
  color: #1f2329;
  background: transparent;
}

.search__input::placeholder {
  color: #9aa3b3;
}

.search-panel {
  position: absolute;
  top: 43px;
  left: 0;
  z-index: 40;
  width: 420px;
  border: 1px solid #e4ebf5;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(29, 45, 75, 0.16);
}

.search-panel[hidden],
.user-popover[hidden] {
  display: none !important;
}

.search-panel.is-open,
.user-popover.is-open {
  animation: popover-in 0.16s ease-out;
}

@keyframes popover-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-panel__head,
.search-panel__quick {
  display: flex;
  align-items: center;
}

.search-panel__head {
  justify-content: space-between;
  margin-bottom: 12px;
}

.search-panel__head button {
  border: 0;
  color: #9aa3b3;
  background: transparent;
  font-size: 18px;
}

.search-panel__quick {
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1f7;
}

.search-panel__quick span {
  color: #8a93a3;
  font-size: 12px;
}

.search-panel__quick button {
  height: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  color: #4e5969;
  background: #f3f7fc;
}

.search-panel__list {
  display: grid;
  gap: 6px;
  padding-top: 10px;
}

.search-panel__list button {
  display: grid;
  gap: 4px;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  color: #1f2329;
  text-align: left;
  background: transparent;
}

.search-panel__list button:hover {
  background: #fcfdff;
}

.search-panel__list span,
.search-panel__list em,
.search-empty span {
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.search-empty {
  display: grid;
  gap: 5px;
  padding: 14px 12px;
}

.search__placeholder {
  flex: 1;
  white-space: nowrap;
}

.search__ai {
  color: #4d94ee;
  font-weight: 800;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 650;
}

.top-nav a {
  position: relative;
  height: 56px;
  display: inline-flex;
  align-items: center;
}

.top-nav a.is-active {
  color: var(--blue);
}

.top-nav a.is-active::after {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
  content: "";
  transform: translateX(-50%);
}

.header-actions {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #4e5969;
  font-size: 13px;
}

.header-actions a {
  display: grid;
  place-items: center;
  gap: 1px;
  line-height: 1.1;
}

.header-actions span {
  font-size: 12px;
  line-height: 1;
}

.divider {
  width: 1px;
  height: 28px;
  background: #edf1f7;
}

.user {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 650;
}

.user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.user-popover {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 39;
  width: 260px;
  border: 1px solid #e4ebf5;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(29, 45, 75, 0.16);
}

.user-popover__head {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf1f7;
  margin-bottom: 8px;
}

.user-popover__head img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.user-popover__head strong,
.user-popover__head span {
  display: block;
}

.user-popover__head span {
  margin-top: 4px;
  color: #8a93a3;
  font-size: 12px;
}

.user-popover > button {
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  color: #1f2329;
  text-align: left;
  background: transparent;
}

.user-popover > button:hover {
  background: #fcfdff;
}

.content-shell {
  position: fixed;
  left: var(--sidebar-w);
  top: var(--header-h);
  right: 0;
  bottom: 0;
  min-width: 0;
  overflow: auto;
  padding: 0 64px 24px 0;
  border-radius: 20px 0 0 0;
  background: var(--bg);
}

.card,
.announcement {
  width: 100%;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: none;
}

.announcement {
  height: 43px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  margin-bottom: 16px;
}

.announcement strong {
  font-size: 15px;
}

.announcement .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: #1683ff;
}

.announcement time {
  color: var(--muted);
}

.announcement [data-announcement-text] {
  min-width: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement__pager {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1f2329;
}

.announcement__pager button {
  display: none;
}

.overview {
  min-height: 326px;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) 348px;
  gap: 26px;
  padding: 16px 20px 0;
}

.overview__main {
  position: relative;
  min-width: 0;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.section-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
}

.section-tabs button {
  position: relative;
  border: 0;
  padding: 0 0 11px;
  color: #6b7280;
  background: transparent;
  font-size: 16px;
  font-weight: 650;
}

.section-tabs button.is-active {
  color: #1f2329;
}

.section-tabs button.is-active::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  content: "";
}

.section-tabs button span {
  position: absolute;
  right: -54px;
  top: -10px;
  width: 48px;
  height: 20px;
  border-radius: 10px 10px 10px 0;
  color: #fff;
  line-height: 20px;
  font-size: 11px;
  background: #ff8d31;
}

.refresh {
  color: #86909c;
  font-size: 13px;
}

.period-tabs {
  position: absolute;
  left: 292px;
  top: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.period-tabs button {
  min-width: 50px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  color: #6b7280;
  background: #f5f7fb;
  white-space: nowrap;
}

.period-tabs button.is-active {
  color: #1f2329;
  background: #fff;
  box-shadow: inset 0 0 0 1px #edf1f7;
}

.period-tabs .period-tabs__all {
  min-width: 58px;
  margin-left: 12px;
  background: transparent;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 24px 56px;
  padding: 18px 0 20px;
}

.metric-grid article span,
.account-stats span,
.account-status span,
.ad-data__grid span {
  display: block;
  color: #5f6878;
  font-size: 14px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.metric-grid em,
.ad-data__grid em {
  display: block;
  margin-top: 8px;
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.up {
  color: var(--green);
}

.down {
  color: #e85b67;
}

.interpretation {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 2px -20px 0 0;
  padding: 0 20px;
  border-radius: 0 0 16px 16px;
  background: #fafcff;
}

.interpretation span {
  flex: none;
  font-weight: 500;
}

.interpretation p {
  min-width: 0;
  flex: 1;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.interpretation button {
  border: 0;
  color: var(--blue);
  background: transparent;
}

.account-card {
  padding: 8px 8px 0 4px;
}

.account-card__top {
  display: grid;
  grid-template-columns: 54px 1fr 78px;
  gap: 12px;
  align-items: start;
}

.merchant-logo {
  width: 50px;
  height: 15px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  color: #f7ca6e;
  font-size: 9px;
  line-height: 15px;
  background: #1c1712;
}

.account-card h2 {
  margin: 7px 0 4px;
  font-size: 20px;
}

.account-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.account-card a {
  color: #5f6878;
  font-size: 13px;
}

.account-card a strong {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 19px;
}

.account-stats,
.account-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.account-stats strong,
.account-status strong {
  display: block;
  margin-top: 10px;
  color: #111827;
  font-size: 20px;
}

.account-status strong {
  font-size: 12px;
}

.account-status .warn {
  color: #d98c15;
}

.score {
  height: 220px;
  margin-top: 16px;
  padding: 18px 20px 22px;
  overflow: hidden;
}

.score__head,
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-tabs--small button {
  font-size: 16px;
}

.score__head a,
.card-title-row a {
  color: #8a93a3;
  font-size: 14px;
}

.score__body {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
}

.score-ring {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 18px 0 0 96px;
  text-align: center;
}

.score-ring img {
  position: absolute;
  inset: 0;
  width: 150px;
  height: 150px;
}

.score-ring span,
.score-ring strong,
.score-ring em {
  position: relative;
  display: block;
}

.score-ring span {
  padding-top: 42px;
  color: #6b7280;
}

.score-ring strong {
  font-size: 36px;
  line-height: 1.08;
}

.score-ring em {
  color: #9aa3b3;
  font-style: normal;
  font-size: 13px;
}

.medals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.medals div span {
  color: #5d6675;
}

.medals img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.medals strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.medals p {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  padding: 10px 18px;
  color: #697386;
  background: #fbfcff;
}

.medals a {
  color: var(--blue);
}

.marketing,
.ad-data,
.courses {
  margin-top: 16px;
  padding: 18px 20px 22px;
}

.marketing__grid {
  display: grid;
  grid-template-columns: 2fr 0.86fr 0.86fr;
  gap: 16px;
  margin-top: 16px;
}

.recommend,
.tool-card {
  min-height: 172px;
  border: 1px solid #f0efe7;
  border-radius: 12px;
  background: #fff;
}

.recommend {
  padding: 22px;
  background: linear-gradient(180deg, #fff9eb 0%, #fffef9 100%);
}

.recommend p {
  margin: 0 0 22px;
  font-size: 16px;
}

.recommend p span {
  color: #c67a18;
}

.recommend__inner {
  height: 76px;
  display: grid;
  grid-template-columns: 58px 1fr 90px;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
}

.bag {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  background: #5dcc64;
}

.recommend__inner strong,
.tool-card strong {
  display: block;
  font-size: 16px;
}

.recommend__inner span,
.tool-card span {
  display: block;
  margin-top: 7px;
  color: #8a93a3;
  font-size: 13px;
}

.recommend button,
.tool-card button {
  height: 36px;
  border: 1px solid #d8a85a;
  border-radius: 6px;
  color: #bc7b1b;
  background: #fff;
}

.tool-card {
  padding: 22px 16px 16px;
}

.tool-card img {
  width: 44px;
  height: 44px;
  float: left;
  margin-right: 14px;
}

.tool-card div {
  clear: both;
  display: flex;
  gap: 8px;
  padding-top: 14px;
}

.tool-card em {
  padding: 3px 7px;
  color: #dc8a20;
  font-style: normal;
  font-size: 12px;
  background: #fff6e8;
}

.tool-card button {
  width: 100%;
  margin-top: 18px;
  border-color: #edf1f7;
  color: #1f2329;
}

.card-title-row h2 {
  margin: 0;
  font-size: 17px;
}

.card-title-row h2 span {
  margin-left: 10px;
  padding: 5px 9px;
  border-radius: 16px;
  color: #7a8494;
  font-size: 13px;
  font-weight: 400;
  background: #f7f8fb;
}

.ad-data__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 240px;
  gap: 28px;
  margin-top: 22px;
}

.ad-data__grid article {
  min-height: 68px;
}

.ad-data__grid strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.ad-data__grid aside {
  grid-column: 5;
  grid-row: 1 / span 2;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.ad-data__grid aside strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 20px;
}

.ad-data__grid aside i {
  margin-left: 6px;
  padding: 3px 6px;
  border-radius: 4px;
  color: var(--red);
  font-style: normal;
  font-size: 12px;
  background: #fff0f0;
}

.ad-data__grid aside a {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 13px;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.course-list article {
  min-width: 0;
}

.course-list img {
  width: 100%;
  aspect-ratio: 1.77;
  border-radius: 8px;
  object-fit: cover;
}

.course-list strong {
  display: block;
  margin-top: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
}

.course-list span {
  display: block;
  margin-top: 7px;
  color: #6f7785;
  font-size: 13px;
}

.float-bar {
  position: fixed;
  right: 18px;
  top: 310px;
  z-index: 30;
  display: grid;
  gap: 14px;
}

.float-bar > button {
  position: relative;
  width: 58px;
  min-height: 72px;
  border: 0;
  border-radius: 12px;
  color: #1f2329;
  background: #fff;
  box-shadow: 0 10px 24px rgba(34, 56, 92, 0.11);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.float-bar > button:hover,
.float-bar > button.is-active {
  transform: translateX(-3px);
  box-shadow: 0 16px 32px rgba(34, 56, 92, 0.16);
  background: #edf5ff;
}

.float-bar > button:focus-visible,
.filter-card input:focus,
.select-like:focus-visible,
.date-range input:focus {
  outline: 2px solid rgba(47, 131, 232, 0.18);
  border-color: var(--blue);
}

.float-bar b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin: 0 auto 2px;
  font-size: 28px;
  line-height: 1.1;
}

.float-bar b .ui-icon {
  width: 29px;
  height: 29px;
}

.badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 24px;
  height: 20px;
  border-radius: 12px;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  background: #ff8f1f;
}

.badge--dot::after {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.float-edit {
  margin-top: 198px;
  min-height: 52px !important;
}

.float-panel {
  position: absolute;
  right: 72px;
  top: 0;
  width: 292px;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(26, 43, 74, 0.18);
}

.float-panel[hidden] {
  display: none !important;
}

.float-panel.is-open {
  animation: float-panel-in 0.18s ease-out;
}

@keyframes float-panel-in {
  from {
    opacity: 0;
    transform: translateX(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.float-panel__close {
  position: absolute !important;
  top: 8px;
  right: 8px;
  width: 28px !important;
  min-height: 28px !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  color: #8a93a3 !important;
}

.service-online {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #15915b;
  font-size: 12px;
}

.service-online i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.12);
}

.float-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.float-panel p {
  margin: 0 0 12px;
  color: #5f6878;
  line-height: 1.6;
  font-size: 13px;
}

.float-panel__list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.float-panel__list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 8px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 10px;
  background: #fbfdff;
}

.float-panel__list span,
.float-panel__list em {
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.float-panel__list b {
  color: #1f2329;
  font-size: 13px;
}

.float-panel > .primary {
  width: 100%;
  min-height: 36px;
  box-shadow: none;
}

.page[hidden],
.drawer[hidden],
.drawer-backdrop[hidden],
.modal[hidden],
.modal-backdrop[hidden] {
  display: none !important;
}

.page {
  width: 1380px;
  max-width: none;
  padding: 24px 16px 24px 24px;
}

.page-dynamic {
  display: grid;
  gap: 16px;
}

.page-dynamic > *,
.list-card {
  min-width: 0;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 6;
  min-height: 112px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 24px;
}

.page-header p {
  margin: 0 0 8px;
  color: #8a93a3;
  font-size: 13px;
}

.page-header h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.page-header span {
  display: block;
  margin-top: 10px;
  color: #5f6878;
  font-size: 14px;
}

.page-actions,
.modal-actions,
.list-toolbar,
.chip-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-actions button,
.filter-card button,
.list-toolbar button,
.modal-actions button,
.drawer button,
.profile-card button,
.tool-card--large button,
.mini-tool button,
.course-list--page button,
.balance-card button,
.risk-banner button,
.chat-board button,
.reply-box button,
.audit-card button,
.audit-overview button,
.bind-card button,
.module-list button,
.material-card button,
.opportunity-card button,
.creative-panel button,
.run-card button,
.qr-card button,
.ledger-summary button,
.tax-checklist button,
.loan-hero button,
.experience-task button,
.sla-panel button,
.insight-hero button,
.insight-card button,
.notice-card a,
.link-button {
  height: 36px;
  border: 1px solid #e2e8f2;
  border-radius: 8px;
  padding: 0 14px;
  color: #1f2329;
  background: #fff;
  font-size: 14px;
}

button.primary,
.primary {
  border-color: var(--blue) !important;
  color: #fff !important;
  background: var(--blue) !important;
}

.sub-tabs {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.sub-tabs button,
.chip-row button {
  position: relative;
  border: 0;
  color: #5f6878;
  background: transparent;
  font-weight: 650;
}

.sub-tabs button.is-active,
.chip-row button.is-active {
  color: var(--blue);
}

.sub-tabs button.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
}

.filter-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) minmax(220px, 1.1fr) auto auto auto;
  gap: 14px 16px;
  align-items: end;
  padding: 18px 20px;
}

.filter-card label,
.modal-field {
  display: grid;
  gap: 8px;
  color: #5f6878;
  font-size: 13px;
}

.filter-card input,
.select-like,
.modal-field input,
.modal-field textarea,
.reply-box input {
  height: 36px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  padding: 0 12px;
  color: #1f2329;
  background: #fff;
}

.filter-field {
  min-width: 0;
}

.filter-extra {
  display: none !important;
}

.filter-card--expanded .filter-extra {
  display: grid !important;
}

.select-like {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8a93a3;
}

.select-like i {
  color: #b8c0ce;
  font-style: normal;
}

.date-range {
  height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  padding: 0 8px;
  background: #fff;
}

.date-range input {
  height: 30px;
  min-width: 0;
  border: 0;
  padding: 0 4px;
}

.date-range em {
  color: #b8c0ce;
  font-style: normal;
}

.filter-chips {
  min-height: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chips span {
  color: #8a93a3;
  font-size: 12px;
}

.filter-chips button {
  height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: #4e5969;
  background: #f6f8fc;
}

.filter-result {
  grid-column: 1 / -1;
  border-top: 1px dashed #e1e7f0;
  padding-top: 10px;
  color: #5f6878;
  font-size: 13px;
}

.filter-result::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  content: "✓";
  font-size: 12px;
}

.filter-card.is-loading {
  position: relative;
  pointer-events: none;
}

.filter-card.is-loading::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  content: "查询中...";
}

.modal-field textarea {
  min-height: 88px;
  padding-top: 10px;
  resize: vertical;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.stat-card {
  min-height: 112px;
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
  box-shadow: none;
}

.stat-card span {
  color: #5f6878;
  font-size: 14px;
}

.stat-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 27px;
}

.stat-card em {
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.list-card {
  padding: 18px 20px 20px;
}

.list-toolbar {
  justify-content: space-between;
  margin-bottom: 14px;
}

.list-toolbar > span {
  color: #8a93a3;
  font-size: 13px;
}

.table-wrap {
  max-width: 100%;
  overflow: auto;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  background:
    linear-gradient(90deg, #fff 30%, rgba(255,255,255,0)),
    linear-gradient(90deg, rgba(255,255,255,0), #fff 70%) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(31,35,41,0.12), rgba(31,35,41,0)),
    radial-gradient(farthest-side at 100% 50%, rgba(31,35,41,0.12), rgba(31,35,41,0)) 100% 0;
  background-attachment: local, local, scroll, scroll;
  background-repeat: no-repeat;
  background-size: 28px 100%, 28px 100%, 12px 100%, 12px 100%;
}

.data-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: #fff;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid #edf1f7;
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.data-table th {
  color: #5f6878;
  font-weight: 650;
  background: #f8faff;
}

.data-table th:last-child,
.data-table td:last-child {
  position: sticky;
  right: 0;
  z-index: 1;
  background: inherit;
  box-shadow: -10px 0 16px rgba(255, 255, 255, 0.92);
}

.data-table th:last-child {
  z-index: 2;
  background: #f8faff;
}

.data-table td:last-child {
  background: #fff;
}

.data-table tbody tr {
  transition: background 0.16s ease;
}

.data-table tbody tr:hover {
  background: #fbfdff;
}

.data-table td {
  color: #1f2329;
}

.data-table a {
  color: var(--blue);
}

.source-decoration-page {
  min-height: calc(100vh - var(--header-h));
  padding: 28px 16px 24px 8px;
  background: #fff;
}

.source-page-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.source-page-title h1 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 650;
}

.source-page-title p {
  margin: 0;
  color: #4e5969;
  font-size: 14px;
}

.source-page-title a,
.source-table-wrap a {
  color: #1683ff;
  text-decoration: none;
}

.info-dot {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1f9bff;
  font-weight: 700;
  font-size: 13px;
}

.source-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 62px;
}

.source-filter-row button,
.source-decoration-toolbar button {
  height: 36px;
  min-width: 86px;
  border: 1px solid #dfe6f0;
  border-radius: 6px;
  padding: 0 16px;
  color: #1f2329;
  background: #fff;
  font-size: 14px;
}

.source-filter-row button:nth-child(2) {
  width: 300px;
  text-align: left;
}

.source-filter-row button:nth-child(2) i {
  float: right;
  color: #9aa3b3;
  font-style: normal;
}

.source-filter-row .source-btn--query {
  color: #8fbfe8;
  border-color: #8bd4ff;
}

.source-decoration-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.source-decoration-toolbar > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.source-decoration-toolbar span {
  color: #1f2329;
  font-size: 14px;
}

.source-decoration-toolbar .source-outline {
  color: #1683ff;
  border-color: #1683ff;
}

.source-table-wrap {
  margin-top: 20px;
  overflow: auto;
  background: #fff;
}

.source-table-wrap table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  background: #fff;
}

.source-table-wrap th,
.source-table-wrap td {
  height: 88px;
  border-bottom: 1px solid #edf1f7;
  padding: 18px 14px;
  color: #1f2329;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 22px;
}

.source-table-wrap th {
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f7f9fc;
  color: #1f2329;
  font-weight: 650;
  white-space: nowrap;
}

.source-table-wrap td:first-child,
.source-table-wrap th:first-child {
  width: 44px;
  text-align: center;
}

.source-decoration-table th:nth-child(2),
.source-decoration-table td:nth-child(2) {
  width: 132px;
  padding-left: 8px;
}

.source-decoration-table td:nth-child(13),
.source-decoration-table th:nth-child(13) {
  position: sticky;
  right: 0;
  width: 170px;
  background: #fff;
  box-shadow: -14px 0 18px rgba(255, 255, 255, 0.92);
}

.source-decoration-table th:nth-child(13) {
  background: #f7f9fc;
}

.source-decoration-table td:nth-child(13) a {
  display: inline-block;
  margin-right: 14px;
  white-space: nowrap;
}

.source-pass {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border-radius: 4px;
  padding: 0 9px;
  color: #20a75a;
  background: #e9fbec;
  font-size: 13px;
}

.source-order-page {
  position: relative;
  width: 1464px;
  min-height: calc(100vh - var(--header-h));
  margin: -24px -16px -24px -24px;
  padding: 26px 16px 24px 32px;
  background: #fff;
}

.source-order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.source-order-head h1 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 650;
}

.source-order-head > div {
  display: flex;
  gap: 12px;
}

.source-order-head button,
.source-order-tabs button,
.source-order-filters button,
.source-order-filters input,
.source-order-pop button {
  height: 36px;
  border: 1px solid #dfe6f0;
  border-radius: 6px;
  padding: 0 16px;
  color: #1f2329;
  background: #fff;
  font-size: 14px;
}

.source-order-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 50px;
  margin-top: 12px;
  border-bottom: 1px solid #edf1f7;
}

.source-order-tabs button {
  position: relative;
  border: 0;
  padding: 0;
  color: #1f2329;
  font-weight: 650;
}

.source-order-tabs button.is-active {
  color: #1683ff;
}

.source-order-tabs button.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  background: #1683ff;
  content: "";
}

.source-order-tip {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  margin-top: 14px;
  background: #f1f9ff;
  color: #4e5969;
  font-size: 14px;
}

.source-order-tip strong {
  color: #1f2329;
}

.source-order-tip a {
  color: #1683ff;
}

.source-order-pop {
  position: absolute;
  left: -240px;
  top: auto;
  bottom: -170px;
  z-index: 4;
  width: 330px;
  min-height: 146px;
  border-radius: 8px;
  padding: 18px 20px 14px;
  color: #fff;
  background: #1287f4;
  box-shadow: 0 10px 28px rgba(18, 135, 244, 0.22);
}

.source-order-pop::before {
  position: absolute;
  right: 42px;
  top: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #1287f4;
  content: "";
}

.source-order-pop b,
.source-order-pop span {
  display: block;
}

.source-order-pop b {
  margin-bottom: 10px;
  font-size: 16px;
}

.source-order-pop span {
  line-height: 22px;
  font-size: 14px;
}

.source-order-pop button {
  float: right;
  height: 32px;
  margin-top: 12px;
  color: #1683ff;
  background: #fff;
}

.source-order-filters {
  display: grid;
  grid-template-columns: 310px 310px 310px 310px 88px;
  gap: 16px 20px;
  margin-top: 16px;
  padding-right: 0;
}

.source-order-filters input,
.source-order-filters button {
  text-align: left;
}

.source-order-filters input {
  grid-column: 1 / 3;
}

.source-order-filters button:nth-of-type(1) {
  grid-column: 3 / 5;
}

.source-order-filters .source-query {
  width: 88px;
  grid-column: 5;
  grid-row: 1;
  color: #fff;
  border-color: #1683ff;
  background: #1683ff;
  text-align: center;
}

.source-order-filters button:last-child {
  grid-column: 5;
}

.source-order-count {
  margin-top: 20px;
  color: #1f2329;
  font-size: 14px;
}

.source-order-table {
  margin-top: 20px;
}

.source-order-table th,
.source-order-table td {
  height: 102px;
}

.source-order-table th {
  height: 42px;
}

.source-order-table th:last-child,
.source-order-table td:last-child {
  position: sticky;
  right: 0;
  width: 110px;
  background: #fff;
  box-shadow: -14px 0 18px rgba(255, 255, 255, 0.92);
}

.source-order-table th:last-child {
  background: #f7f9fc;
}

.source-order-product {
  display: grid;
  grid-template-columns: 64px minmax(190px, 1fr);
  gap: 12px;
  align-items: start;
}

.source-order-product .product-thumb,
.source-order-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(155deg, rgba(255,255,255,.25), rgba(255,255,255,0) 28%),
    linear-gradient(135deg, #153a45 0 28%, #32c86b 29% 48%, #101418 49% 66%, #d9be41 67% 77%, #083f2b 78%);
}

.source-order-product .product-thumb--1 {
  background:
    linear-gradient(155deg, rgba(255,255,255,.32), rgba(255,255,255,0) 26%),
    linear-gradient(135deg, #7d1d53 0 18%, #1a7e56 19% 46%, #2b2c35 47% 68%, #5ad25e 69% 100%);
}

.source-order-product .product-thumb--2,
.source-order-product .product-thumb--3,
.source-order-product .product-thumb--4 {
  background:
    linear-gradient(90deg, #20d06b 0 28%, #173c2e 29% 54%, #0b0f13 55% 73%, #b7a232 74% 100%);
}

.source-order-product strong,
.source-order-product span {
  display: block;
}

.source-order-product strong {
  max-width: 260px;
  line-height: 22px;
  font-size: 14px;
}

.source-order-product span {
  width: max-content;
  margin-top: 8px;
  border: 1px solid #dfe6f0;
  border-radius: 3px;
  padding: 0 6px;
  color: #6b7280;
  font-size: 12px;
  line-height: 20px;
}

.check-cell {
  width: 44px;
  text-align: center !important;
}

.check-cell input {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  color: #4e5969;
  font-size: 12px;
  background: #f2f4f8;
}

.status-badge--success {
  color: #15915b;
  background: #e9f8f1;
}

.status-badge--warning {
  color: #c66a00;
  background: #fff3df;
}

.status-badge--processing {
  color: var(--blue);
  background: #edf5ff;
}

.subline,
.muted {
  display: block;
  margin-top: 5px;
  color: #8a93a3;
  font-size: 12px;
}

.warning-link {
  color: #d16a00;
  font-weight: 650;
}

.product-cell {
  display: grid;
  grid-template-columns: 46px minmax(180px, 1fr);
  gap: 12px;
  align-items: center;
}

.product-cell strong {
  display: block;
  margin-bottom: 4px;
}

.product-cell span,
.product-cell em {
  display: block;
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.product-thumb {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e6f2ff, #2f83e8);
}

.product-thumb--2 {
  background: linear-gradient(135deg, #fff0d4, #f59a23);
}

.product-thumb--3 {
  background: linear-gradient(135deg, #eaf8ee, #28a745);
}

.product-thumb--4 {
  background: linear-gradient(135deg, #f2edff, #7e5bef);
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.channel-tags i {
  border-radius: 6px;
  padding: 3px 6px;
  color: #5f6878;
  font-style: normal;
  font-size: 12px;
  background: #f3f6fb;
}

.bulk-bar,
.table-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: #fbfdff;
}

.bulk-bar {
  justify-content: space-between;
}

.bulk-bar label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

.bulk-bar > span {
  color: #8a93a3;
  font-size: 12px;
}

.bulk-bar button,
.table-pagination button,
.table-pagination select,
.quick-replies button {
  height: 30px;
  border: 1px solid #e1e7f0;
  border-radius: 7px;
  padding: 0 10px;
  color: #4e5969;
  background: #fff;
  font-size: 12px;
}

.table-pagination {
  justify-content: flex-end;
  margin: 12px 0 0;
}

.table-pagination span {
  margin-right: auto;
  color: #8a93a3;
  font-size: 13px;
}

.table-pagination button.is-active {
  border-color: var(--blue);
  color: var(--blue);
  background: #edf5ff;
}

.table-pagination button:disabled {
  color: #b8c0ce;
  cursor: not-allowed;
  background: #f6f8fc;
}

.stars {
  color: #f59a23;
  letter-spacing: 1px;
}

.stars--mid {
  color: #d16a00;
}

.profile-grid,
.tool-grid,
.payment-grid,
.deposit-grid,
.plan-grid,
.talent-profile-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.profile-card {
  min-height: 164px;
  padding: 22px;
}

.profile-card span,
.profile-card p,
.notice-card span,
.risk-banner span,
.drawer-list span,
.mini-tool span {
  color: #5f6878;
  font-size: 14px;
}

.profile-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 22px;
}

.profile-card button {
  margin-top: 18px;
}

.certificate-panel {
  padding: 20px 24px;
}

.certificate-panel h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.certificate-row {
  display: grid;
  grid-template-columns: 160px 160px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #edf1f7;
}

.certificate-row strong,
.risk-banner strong {
  color: #e28a16;
}

.certificate-row em {
  color: #8a93a3;
  font-style: normal;
}

.notice-card,
.risk-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(90deg, #fff8eb 0%, #fff 100%);
}

.notice-card a,
.link-button {
  margin-left: auto;
  color: var(--blue);
}

.activity-strip,
.marketing-board,
.chart-card,
.split-panel,
.score-deep,
.review-summary,
.empty-state {
  padding: 20px;
}

.activity-strip h2,
.marketing-board h2,
.chart-card h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.activity-strip article {
  display: inline-grid;
  min-width: 260px;
  gap: 7px;
  margin-right: 16px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 16px;
  background: #fbfdff;
}

.tool-card--large {
  min-height: 214px;
  padding: 20px;
}

.tool-card--large p {
  min-height: 56px;
  margin: 10px 0;
  color: #5f6878;
  font-size: 13px;
  line-height: 1.6;
}

.mini-tool {
  display: grid;
  gap: 10px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 18px;
  background: #fbfdff;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}

.balance-card {
  border-left: 1px solid #edf1f7;
  padding-left: 22px;
}

.balance-card strong {
  display: block;
  margin: 10px 0;
  font-size: 28px;
}

.balance-card em {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--red);
  font-style: normal;
  background: #fff1f1;
}

.fake-chart {
  height: 180px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.fake-chart i {
  flex: 1;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, #7db8ff 0%, #2f83e8 100%);
}

.review-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
}

.review-summary strong {
  display: block;
  font-size: 52px;
}

.score-deep {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

.score-ring--large {
  transform: scale(1.08);
}

.chat-board {
  height: 620px;
  display: grid;
  grid-template-columns: 320px 1fr;
  padding: 0;
  overflow: hidden;
}

.chat-board aside {
  padding: 16px;
  border-right: 1px solid #edf1f7;
  background: #fbfdff;
}

.chat-board aside button {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 10px;
  text-align: left;
}

.chat-board aside button.is-active {
  color: var(--blue);
  background: #edf5ff;
}

.chat-board main {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.chat-board h2 {
  margin: 0 0 20px;
}

.bubble {
  max-width: 56%;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.5;
}

.user-bubble {
  align-self: flex-start;
  background: #f3f6fb;
}

.service-bubble {
  align-self: flex-end;
  color: #fff;
  background: var(--blue);
}

.reply-box {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.reply-box input {
  flex: 1;
}

.course-list--page {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  padding: 20px;
}

.course-list--page article {
  min-height: 260px;
}

.course-list--page button {
  width: 100%;
  margin-top: 14px;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #5f6878;
  text-align: center;
}

.empty-state div {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #a8b3c7;
  font-size: 40px;
  background: #f3f6fb;
}

.audit-layout,
.permission-layout,
.decoration-layout,
.ops-layout,
.content-studio,
.aigc-layout,
.lead-card-layout,
.live-layout,
.offline-layout,
.finance-ledger,
.tax-layout,
.service-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
}

.audit-stack,
.account-bind-grid,
.material-grid,
.opportunity-grid,
.talent-board,
.experience-grid,
.insight-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audit-overview,
.ledger-summary,
.qr-card,
.experience-score,
.loan-hero,
.insight-hero,
.deposit-hero,
.marketing-wallet,
.account-verify,
.lead-preview {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
}

.audit-overview strong,
.ledger-summary strong,
.experience-score strong,
.loan-hero strong,
.insight-hero strong,
.deposit-hero strong,
.marketing-wallet strong,
.account-verify strong,
.lead-preview strong {
  display: block;
  margin: 10px 0;
  font-size: 34px;
}

.audit-card,
.bind-card,
.material-card,
.opportunity-card,
.talent-card,
.experience-task,
.insight-card,
.payment-card,
.deposit-card,
.plan-card,
.talent-profile,
.setting-card {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 18px;
}

.audit-card b,
.creative-panel b,
.workflow b,
.member-flow b,
.module-list b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.audit-card span,
.bind-card span,
.module-list span,
.creative-panel span,
.run-card span,
.experience-task span,
.opportunity-card span,
.insight-card span,
.member-flow span,
.tax-checklist span {
  color: #5f6878;
  font-size: 13px;
}

.permission-matrix,
.creative-panel,
.sla-panel,
.tax-checklist,
.run-card,
.module-list,
.calendar-panel,
.rule-panel,
.aigc-console,
.generation-board {
  padding: 20px;
}

.permission-matrix h2,
.creative-panel h2,
.sla-panel h2,
.tax-checklist h2,
.run-card h2,
.module-list h2,
.calendar-panel h2,
.rule-panel h2,
.aigc-console h2,
.generation-board h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.permission-matrix div,
.sla-panel div,
.tax-checklist article,
.creative-panel article,
.module-list article,
.run-card article,
.member-flow article,
.workflow article,
.rule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #edf1f7;
  padding: 14px 0;
}

.permission-matrix b,
.experience-task b,
.opportunity-card em {
  margin-left: auto;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  background: #edf5ff;
}

.avatar-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #2f83e8, #7e5bef);
}

.phone-preview {
  min-height: 560px;
  border-radius: 30px;
  padding: 14px;
  background: #111827;
}

.phone-preview .phone-top {
  color: #cfd7e6;
  text-align: center;
  font-size: 12px;
}

.phone-preview .shop-hero,
.phone-preview section {
  margin-top: 14px;
  border-radius: 18px;
  padding: 18px;
  color: #1f2329;
  background: #fff;
}

.shop-hero {
  min-height: 108px;
  display: flex;
  align-items: end;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #dff0ff, #fff) !important;
}

.module-list article {
  justify-content: space-between;
}

.workflow,
.member-flow,
.settings-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
}

.workflow article,
.member-flow article,
.setting-card {
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 16px;
  background: #fbfdff;
}

.workflow article.is-done b {
  background: var(--green);
}

.settings-grid {
  padding: 0;
}

.settings-grid--wide {
  grid-template-columns: repeat(4, 1fr);
}

.setting-card__top,
.account-verify,
.marketing-wallet,
.deposit-hero,
.generation-board article,
.aigc-console label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.setting-card__top,
.generation-board article,
.aigc-console label {
  align-items: center;
}

.setting-card span,
.payment-card span,
.deposit-card span,
.plan-card span,
.talent-profile span,
.account-verify span,
.marketing-wallet span,
.deposit-hero span,
.lead-preview span {
  color: #8a93a3;
  font-size: 13px;
}

.setting-card p,
.plan-card p,
.talent-profile p,
.marketing-wallet p,
.deposit-hero p,
.lead-preview p {
  margin: 0;
  color: #5f6878;
  line-height: 1.6;
}

.switch {
  width: 42px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  padding: 2px;
  background: #ccd4e2;
}

.switch i {
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(29, 45, 75, 0.18);
  transition: transform 0.16s ease;
}

.switch.is-on {
  background: var(--blue);
}

.switch.is-on i {
  transform: translateX(18px);
}

.rule-row {
  justify-content: space-between;
}

.rule-row span,
.generation-board span,
.aigc-console span {
  color: #8a93a3;
  font-size: 13px;
}

.rule-row strong {
  flex: 1;
}

.account-verify,
.marketing-wallet,
.deposit-hero {
  align-items: center;
}

.account-verify em,
.payment-card em,
.deposit-card em,
.deposit-amount em,
.talent-profile em {
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.deposit-amount {
  min-width: 220px;
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.aigc-console {
  display: grid;
  gap: 14px;
}

.aigc-console label {
  display: grid;
}

.aigc-console textarea {
  min-height: 110px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  padding: 10px 12px;
  resize: vertical;
}

.generation-board {
  display: grid;
  gap: 14px;
}

.generation-board article {
  display: grid;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 14px;
  background: #fbfdff;
}

.generation-board i {
  height: 8px;
  display: block;
  border-radius: 999px;
  overflow: hidden;
  background: #edf2f8;
}

.generation-board b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #73c0ff);
}

.lead-preview {
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 78% 18%, rgba(47, 131, 232, 0.18), transparent 32%),
    linear-gradient(135deg, #fff 0%, #eef7ff 100%);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-grid button {
  min-height: 62px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  color: #1f2329;
  background: #fff;
}

.calendar-grid button span {
  display: block;
  color: #8a93a3;
  font-size: 12px;
}

.calendar-grid .is-active {
  border-color: var(--blue);
  background: #edf5ff;
}

.calendar-grid .is-warning {
  border-color: #ffd39a;
  background: #fff7e8;
}

.material-card div {
  height: 118px;
  border-radius: 12px;
}

.opportunity-card em {
  width: max-content;
  margin-left: 0;
  color: #d16a00;
  background: #fff4df;
}

.talent-card strong {
  display: block;
  font-size: 28px;
}

.talent-card em {
  color: #5f6878;
  font-style: normal;
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  text-align: center;
}

.qr-fake {
  width: 152px;
  height: 152px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  border: 10px solid #fff;
  border-radius: 18px;
  background: #eef3fb;
  box-shadow: inset 0 0 0 1px #dbe4f0;
}

.qr-fake i {
  border-radius: 4px;
  background: #fff;
}

.qr-fake i.is-dark {
  background: #1f2329;
}

.loan-hero,
.insight-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.experience-grid {
  grid-template-columns: 1.3fr repeat(4, 1fr);
}

.service-layout {
  grid-template-columns: 260px 1fr;
}

.sla-panel div {
  justify-content: space-between;
}

.sla-panel strong {
  font-size: 22px;
}

.mini-line {
  height: 72px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.mini-line i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #91c4ff, #2f83e8);
}

.finance-status-strip,
.compliance-timeline,
.chat-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 20px;
}

.chat-kpis {
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.finance-status-strip article,
.compliance-timeline article,
.chat-kpis article {
  min-height: 96px;
  border-radius: 12px;
  padding: 16px;
  background: #fbfdff;
}

.chat-kpis article {
  background: #fff;
  box-shadow: none;
}

.finance-status-strip span,
.chat-kpis span {
  color: #8a93a3;
  font-size: 13px;
}

.finance-status-strip strong,
.chat-kpis strong {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.finance-status-strip em,
.chat-kpis em {
  color: #5f6878;
  font-style: normal;
  font-size: 12px;
}

.compliance-timeline {
  grid-template-columns: repeat(4, 1fr);
}

.compliance-timeline article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compliance-timeline b,
.drawer-timeline b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.compliance-timeline span {
  display: block;
  margin-top: 4px;
  color: #8a93a3;
  font-size: 12px;
}

.chat-board {
  grid-template-columns: 320px minmax(420px, 1fr) 260px;
}

.chat-board aside button {
  height: auto;
  min-height: 56px;
  display: grid;
  gap: 5px;
}

.chat-board aside button span {
  color: #8a93a3;
  font-size: 12px;
}

.chat-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.chat-head span {
  color: #8a93a3;
  font-size: 13px;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 14px;
}

.chat-side {
  border-left: 1px solid #edf1f7;
  padding: 20px;
  background: #fbfdff;
}

.chat-side h3 {
  margin: 0 0 14px;
  font-size: 12px;
}

.chat-side article {
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
}

.chat-side span,
.chat-side em {
  display: block;
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.chat-side strong {
  display: block;
  margin: 6px 0;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 25, 40, 0.28);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: 420px;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #fff;
  box-shadow: -14px 0 34px rgba(26, 43, 74, 0.16);
}

.drawer--wide {
  width: min(560px, 92vw);
}

.modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 91;
  width: 480px;
  max-height: min(720px, calc(100vh - 48px));
  display: grid;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(26, 43, 74, 0.22);
  transform: translate(-50%, -50%);
}

.panel-enter {
  animation: panel-enter 0.18s ease-out;
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.drawer.panel-enter {
  animation: drawer-enter 0.18s ease-out;
}

@keyframes drawer-enter {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.modal h2,
.drawer h2 {
  margin: 0;
}

.modal p,
.drawer p {
  margin: 0;
  color: #5f6878;
  line-height: 1.6;
}

.panel-body {
  display: grid;
  gap: 16px;
  padding: 28px;
  overflow: auto;
}

.drawer .panel-body {
  flex: 1;
  padding-right: 24px;
}

.panel-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid #edf1f7;
  padding: 14px 20px;
  background: #fff;
}

.panel-footer button {
  height: 36px;
  border: 1px solid #e1e7f0;
  border-radius: 8px;
  padding: 0 16px;
  background: #fff;
}

.panel-alert {
  border-radius: 12px;
  padding: 10px 12px;
  color: #815400;
  font-size: 13px;
  background: #fff7e8;
}

.modal--danger {
  box-shadow: 0 24px 70px rgba(184, 47, 47, 0.24);
}

.modal--danger h2 {
  color: var(--red);
}

.modal-qr {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid #edf1f7;
  border-radius: 14px;
  padding: 18px;
  background: #fbfdff;
}

.modal-update-list,
.modal-choice-grid {
  display: grid;
  gap: 10px;
}

.modal-update-list article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.modal-update-list span,
.modal-choice-grid span,
.modal-amount em,
.upload-card span {
  color: #8a93a3;
  font-style: normal;
  font-size: 12px;
}

.modal-choice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.modal-choice-grid button {
  display: grid;
  gap: 6px;
  border: 1px solid #e1e7f0;
  border-radius: 12px;
  padding: 12px;
  color: #1f2329;
  text-align: left;
  background: #fff;
}

.modal-choice-grid button.is-active {
  border-color: var(--blue);
  background: #f0f7ff;
}

.modal-amount {
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #f2f8ff, #fff);
}

.modal-amount span,
.modal-switch-row span {
  color: #8a93a3;
  font-size: 13px;
}

.modal-amount strong {
  display: block;
  margin: 8px 0;
  font-size: 30px;
}

.modal-switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.upload-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 1px dashed #b7c9e4;
  border-radius: 14px;
  padding: 22px;
  color: #4e5969;
  background: #f7fbff;
}

.upload-card b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf4ff;
  font-size: 24px;
}

.drawer-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.drawer-meta span {
  color: #5f6878;
  font-size: 13px;
}

.drawer-meta b {
  color: #15915b;
}

.drawer-kvs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.drawer-kvs div {
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  background: #fbfdff;
}

.drawer-kvs span {
  display: block;
  margin-bottom: 8px;
  color: #8a93a3;
  font-size: 12px;
}

.drawer-kvs strong {
  font-size: 18px;
}

.panel-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  color: #8a93a3;
  background: transparent;
  font-size: 26px;
}

.drawer-list {
  display: grid;
  gap: 12px;
}

.drawer-list article {
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 14px;
  background: #fbfdff;
}

.drawer-list strong {
  display: block;
  margin-bottom: 7px;
}

.drawer-timeline {
  display: grid;
  gap: 10px;
}

.drawer-timeline article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #edf1f7;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.drawer-timeline article.is-done b {
  background: var(--green);
}

.drawer-timeline span {
  color: #8a93a3;
  font-size: 12px;
}

.toast {
  position: fixed;
  left: 50%;
  top: 76px;
  z-index: 120;
  border-radius: 999px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(21, 31, 51, 0.88);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  :root {
    --sidebar-w: 76px;
  }

  .sidebar {
    padding: 8px;
  }

  .brand {
    width: 48px;
    overflow: hidden;
  }

  .brand img {
    width: 145px;
    max-width: none;
  }

  .menu-row {
    width: 58px;
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .menu-icon {
    font-size: 18px;
  }

  .chev {
    display: none;
  }

  .submenu {
    display: none !important;
  }

  .content-shell {
    min-width: 0;
    padding-right: 28px;
  }

  .overview {
    grid-template-columns: minmax(500px, 1fr) minmax(300px, 320px);
    gap: 16px;
  }

  .overview__main {
    padding-right: 16px;
  }

  .account-card__top {
    grid-template-columns: 48px 1fr 70px;
    gap: 10px;
  }

  .account-stats,
  .account-status {
    gap: 12px;
  }
}

@media (max-width: 760px) {
  html,
  body {
    height: auto;
    overflow: auto;
  }

  .sidebar,
  .header,
  .float-bar {
    display: none;
  }

  .content-shell {
    position: static;
    min-width: 0;
    padding: 12px;
    overflow: visible;
  }

  .announcement {
    gap: 8px;
    padding: 0 12px;
  }

  .announcement .tag {
    padding: 0 10px;
  }

  .announcement time {
    display: none;
  }

  .announcement__pager {
    gap: 8px;
  }

  .announcement__pager button {
    width: 16px;
  }

  .overview,
  .score__body,
  .marketing__grid,
  .ad-data__grid,
  .course-list,
  .page-header,
  .filter-card,
  .stat-grid,
  .profile-grid,
  .tool-grid,
  .split-panel,
  .review-layout,
  .score-deep,
  .chat-board,
  .finance-status-strip,
  .compliance-timeline,
  .chat-kpis,
  .audit-layout,
  .permission-layout,
  .decoration-layout,
  .ops-layout,
  .content-studio,
  .aigc-layout,
  .lead-card-layout,
  .live-layout,
  .offline-layout,
  .finance-ledger,
  .tax-layout,
  .service-layout,
  .audit-stack,
  .account-bind-grid,
  .material-grid,
  .opportunity-grid,
  .talent-board,
  .talent-profile-grid,
  .payment-grid,
  .deposit-grid,
  .plan-grid,
  .experience-grid,
  .insight-grid,
  .workflow,
  .member-flow,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .account-verify,
  .marketing-wallet,
  .deposit-hero,
  .rule-row {
    display: grid;
  }

  .page-dynamic {
    gap: 12px;
  }

  .page-dynamic > *,
  .page-header,
  .filter-card,
  .list-card,
  .card {
    min-width: 0;
  }

  .page-header,
  .notice-card,
  .risk-banner {
    display: grid;
  }

  .page-actions,
  .list-toolbar,
  .sub-tabs,
  .chip-row {
    flex-wrap: wrap;
  }

  .filter-card {
    align-items: stretch;
  }

  .table-wrap {
    max-width: 100%;
  }

  .data-table {
    min-width: 760px;
  }

  .certificate-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .phone-preview {
    min-height: 460px;
    border-radius: 22px;
  }

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .loan-hero,
  .insight-hero {
    display: grid;
    gap: 14px;
  }

  .chat-board {
    height: auto;
  }

  .chat-board aside {
    border-right: 0;
    border-bottom: 1px solid #edf1f7;
  }

  .chat-side {
    border-left: 0;
    border-top: 1px solid #edf1f7;
  }

  .bulk-bar,
  .table-pagination {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .drawer {
    width: min(92vw, 420px);
  }

  .modal {
    width: calc(100vw - 32px);
  }

  .period-tabs {
    position: static;
    margin-top: 12px;
    overflow-x: auto;
  }

  .period-tabs button {
    min-width: 64px;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .overview__main {
    border-right: 0;
    padding-right: 0;
  }

  .score-ring {
    margin-left: auto;
    margin-right: auto;
  }

  .medals {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Source-evidence refinements for goods list page */
.goods-source-shell {
  margin: -4px 8px 0;
}
.goods-source-head {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(1,2,4,.94);
}
.goods-source-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.goods-source-head h1 {
  margin: 0 12px 0 0;
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}
.goods-source-head button {
  height: 32px;
  border: 0;
  padding: 0 8px;
  color: #4e5969;
  background: transparent;
}
.goods-source-head b {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  color: #fff;
  background: #ff7d00;
  font-size: 11px;
}
.goods-potential {
  min-height: 158px;
  display: grid;
  grid-template-columns: 380px 1fr;
  margin-top: 20px;
  border-radius: 32px 12px 12px 12px;
  background: linear-gradient(104deg,#eaf6ff 0%,#f4fbff 34%,#f7fbff 100%);
  overflow: hidden;
}
.goods-potential__left {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding-left: 6px;
  color: #1f2329;
}
.goods-potential__left span {
  width: 112px;
  height: 112px;
  border-radius: 56px;
  background: radial-gradient(circle at 42% 32%, #fff 0 17%, #bfe9ff 18% 36%, #71c8ff 37% 62%, #e8f7ff 63% 100%);
  box-shadow: 0 12px 34px rgba(37, 126, 220, 0.16);
}
.goods-potential__left strong {font-size:18px;line-height:28px;}
.goods-potential__cards {
  display:grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap:0;
  margin:12px;
  padding:16px 0;
  border-radius:16px;
  background:#fff;
}
.goods-potential__cards article {
  min-width:0;
  padding:0 24px;
  border-right:1px solid #f0f2f5;
}
.goods-potential__cards article:last-child{border-right:0;}
.goods-potential__cards em{display:inline-block;margin-bottom:8px;padding:2px 6px;border-radius:5px;color:#ff7d00;background:#fff3e5;font-style:normal;font-size:12px;}
.goods-potential__cards strong{display:block;margin-bottom:6px;font-size:14px;}
.goods-potential__cards span{display:block;height:36px;color:#86909c;font-size:12px;line-height:18px;overflow:hidden;}
.goods-potential__cards button{height:28px;margin-top:8px;border:0;color:#1664ff;background:transparent;padding:0;}
.goods-list-card .list-toolbar{justify-content:space-between;}
.list-toolbar__right{display:flex;align-items:center;gap:10px;}
.goods-list-card .data-table th:nth-child(1){min-width:300px;}
.goods-list-card .data-table td:last-child a{margin-right:10px;color:#1664ff;}

.goods-potential {
  height: 158px;
  min-height: 158px;
}
.goods-potential__cards { padding: 12px 0; }
.goods-potential__cards article { padding: 0 14px; }
.goods-potential__cards span { height: 32px; }
.goods-source-shell + .notice-card {
  width: auto;
  height: 49px;
  min-height: 49px;
  margin: -4px 8px 0;
  border-radius: 12px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff8ed;
  color: #1f2329;
}
.goods-source-shell + .notice-card strong { font-size: 14px; font-weight: 400; }
.goods-source-shell + .notice-card a { border:0; color:#1664ff; padding:0; background:transparent; }
.goods-source-shell + .notice-card + .filter-card {
  width: auto;
  min-height: 88px;
  margin: 0 8px;
  padding: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  grid-template-columns: 448px repeat(6, minmax(90px, 1fr)) auto auto auto;
  align-items: start;
}
.goods-source-shell + .notice-card + .filter-card label { gap:6px; }
.goods-source-shell + .notice-card + .filter-card + .sub-tabs {
  width: auto;
  height: 42px;
  margin: 0 8px -16px;
  border-radius: 0;
  box-shadow: none;
}
.goods-list-card {
  width: auto;
  margin: 0 8px;
  border-radius: 0;
}
.goods-source-shell + .notice-card { margin-top: 4px; }
.goods-source-shell + .notice-card + .filter-card {
  margin-top: 8px;
  height: 88px;
  min-height: 88px;
  grid-template-columns: 448px repeat(6,70px) 56px 56px 80px;
  gap: 8px;
  overflow: hidden;
}
.goods-source-shell + .notice-card + .filter-card input,
.goods-source-shell + .notice-card + .filter-card .select-like,
.goods-source-shell + .notice-card + .filter-card .date-range {height:32px;}

.user-popover {
  position: fixed;
  top: 48px;
  right: 52px;
  width: 298px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(31,35,41,.12);
  overflow: hidden;
}
.user-popover__head {
  grid-template-columns: 48px 1fr;
  gap: 12px;
  margin: 0;
  padding: 20px 24px 16px;
  border-bottom: 0;
}
.user-popover__head img { width:48px; height:48px; }
.user-popover__head strong { font-size:16px; }
.switch-card {
  height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0;
  padding:0 24px;
  background:#fafbfc;
}
.switch-card button { border:0; color:#1664ff; background:transparent; }
.user-info-list { padding: 16px 0 4px; }
.user-info-list p {
  display:grid;
  grid-template-columns:108px 1fr;
  align-items:center;
  margin:0;
  padding:10px 0;
  min-height:22px;
}
.user-info-list span { color:#86909c; padding-left:0; }
.user-info-list strong { text-align:right; padding-right:0; font-weight:400; color:#1f2329; }
.user-info-list em { color:#1664ff; font-style:normal; margin-left:8px; }
.user-popover > button {
  height:54px;
  border-top:1px solid #f0f2f5;
  border-radius:0;
  text-align:center;
  color:#1f2329;
}

/* Product-list source parity refinements */
.goods-source-shell + .notice-card + .filter-card .filter-extra {
  display: grid !important;
}
.goods-source-shell + .notice-card + .filter-card .filter-chips {
  display: none !important;
}
.goods-source-shell + .notice-card + .filter-card .link-button {
  min-width: 86px;
  white-space: nowrap;
  line-height: 32px;
}
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(1) { grid-column: 1 / span 2; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(2) { grid-column: 3; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(3) { grid-column: 4; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(4) { grid-column: 5; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(5) { grid-column: 1; grid-row: 2; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(6) { grid-column: 2; grid-row: 2; }
.goods-source-shell + .notice-card + .filter-card label:nth-of-type(7) { grid-column: 3; grid-row: 2; }
.goods-source-shell + .notice-card + .filter-card [data-filter-query] { grid-column: 6; grid-row: 1; }
.goods-source-shell + .notice-card + .filter-card [data-filter-reset] { grid-column: 7; grid-row: 1; }
.goods-source-shell + .notice-card + .filter-card [data-toggle-filters] { grid-column: 7; grid-row: 2; justify-self: end; }
