:root {
  --primary: #1683ff;
  --primary-hover: #2f9bff;
  --success: #14b8a6;
  --sider: #061925;
  --sider-light: #082437;
  --sider-hover: #0d2d42;
  --bg: #eef4f7;
  --text: rgba(0, 0, 0, 0.85);
  --muted: rgba(0, 0, 0, 0.45);
  --line: #f0f0f0;
  --border: #d9d9d9;
  --orange: #f26b2f;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5715;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.app-toast {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1300;
  max-width: 360px;
  border: 1px solid rgba(24, 144, 255, 0.25);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(6, 25, 37, 0.18);
  color: var(--text);
  padding: 10px 14px;
}

.import-progress-mask {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 25, 37, 0.28);
  backdrop-filter: blur(2px);
}

.import-progress-card {
  position: relative;
  width: 260px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(6, 25, 37, 0.22);
  padding: 28px 24px 24px;
  text-align: center;
}

.import-progress-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(0, 0, 0, 0.45);
  font-size: 20px;
  line-height: 1;
}

.import-progress-close:hover {
  background: #f2f5f8;
  color: var(--text);
}

.import-progress-ring {
  --progress: 0;
  position: relative;
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--primary) calc(var(--progress) * 1%), #e8edf3 0);
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
}

.import-progress-ring::before {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.import-progress-ring span {
  position: relative;
  z-index: 1;
}

.import-progress-card strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.import-progress-card p {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.import-progress-dismiss {
  height: 30px;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  color: var(--text);
  font-weight: 700;
}

.import-progress-dismiss:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.import-progress-mask.is-done .import-progress-ring {
  background: conic-gradient(var(--success) 100%, #e8edf3 0);
  color: var(--success);
}

.ant-layout {
  display: flex;
  min-height: 100vh;
}

.ant-layout-sider {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 10;
  width: 220px;
  background: var(--sider);
  box-shadow: 2px 0 14px rgba(6, 25, 37, 0.28);
}

.ant-pro-sider-logo {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 12px;
  padding: 0 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #082536 0%, var(--sider) 100%);
  color: #fff;
  text-decoration: none;
}

.ant-pro-sider-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.ant-pro-sider-logo h1 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.ant-menu {
  margin: 0;
  padding: 14px 0;
}

.ant-menu-item {
  display: flex;
  align-items: center;
  height: 48px;
  margin: 3px 10px;
  padding: 0 14px;
  border-radius: 6px;
  color: rgba(230, 247, 255, 0.68);
  gap: 12px;
  text-decoration: none;
}

.ant-menu-item span:last-of-type {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ant-menu-item:hover {
  color: #fff;
  background: var(--sider-hover);
}

.ant-menu-item-selected {
  color: #fff;
  background: rgba(24, 144, 255, 0.16);
}

.ant-menu-item[data-menu-key="auction"] {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

.market-submenu {
  display: grid;
  gap: 3px;
  margin: 3px 10px 12px;
}

.market-subitem {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(230, 247, 255, 0.56);
  padding: 6px 12px;
  gap: 8px;
  text-align: left;
}

.market-subitem:hover {
  background: var(--sider-hover);
  color: #fff;
}

.market-subitem.is-active {
  background: rgba(24, 144, 255, 0.16);
  color: #fff;
}

.market-subitem strong {
  min-width: 0;
  overflow: visible;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-overflow: clip;
  white-space: normal;
}

.market-subitem small {
  min-width: 38px;
  height: 18px;
  border: 1px solid rgba(230, 247, 255, 0.14);
  border-radius: 999px;
  color: rgba(230, 247, 255, 0.55);
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.market-subitem.is-active small {
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(20, 184, 166, 0.16);
  color: rgba(226, 255, 249, 0.96);
}

.menu-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
  text-align: center;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  content: "";
}

.menu-icon-auction::before {
  top: 3px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.menu-icon-camp::before {
  top: 2px;
  left: 3px;
  width: 12px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 2px 2px 5px 5px;
}

.menu-icon-camp::after {
  top: 5px;
  left: 7px;
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: -3px 3px 0 -1px currentColor, 3px 3px 0 -1px currentColor;
}

.menu-icon-market::before {
  top: 2px;
  left: 7px;
  width: 4px;
  height: 16px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-market::after {
  top: 4px;
  left: 3px;
  width: 12px;
  height: 9px;
  border: 2px solid currentColor;
  border-width: 0 0 2px;
  transform: rotate(45deg);
}

.menu-icon-phone-dark {
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.menu-icon-phone-dark::before {
  bottom: 2px;
  left: 7px;
  width: 4px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-pjt::before {
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.menu-icon-pjt::after {
  top: 8px;
  left: 5px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-calc::before {
  top: 2px;
  left: 3px;
  width: 12px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.menu-icon-calc::after {
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  box-shadow: 0 -4px 0 -1px currentColor;
}

.menu-icon-bulk::before {
  top: 3px;
  left: 2px;
  width: 14px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-radius: 2px;
}

.menu-icon-bulk::after {
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.8px;
  background: currentColor;
  box-shadow: 5px -5px 0 -0.4px currentColor;
}

.menu-icon-recycle::before {
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.menu-icon-recycle::after {
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-icon-shun::before {
  top: 1px;
  left: 7px;
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(28deg);
}

.menu-icon-shun::after {
  top: 9px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.menu-icon-jidaxia::before {
  top: 2px;
  left: 3px;
  width: 12px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 7px 7px 4px 4px;
}

.menu-icon-jidaxia::after {
  top: 6px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 5px 0 -1px currentColor;
}

.menu-icon-yigenxian::before {
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-yigenxian::after {
  top: 4px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: 2px solid currentColor;
  border-width: 2px 0;
}

.menu-icon-xianyu::before {
  top: 5px;
  left: 2px;
  width: 11px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-radius: 50% 55% 55% 50%;
}

.menu-icon-xianyu::after {
  top: 6px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: rotate(45deg);
}

.menu-icon-xiaodang::before {
  top: 2px;
  left: 3px;
  width: 12px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.menu-icon-xiaodang::after {
  top: 5px;
  left: 6px;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor;
}

.menu-icon-record {
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.menu-icon-record::before {
  top: -3px;
  left: 6px;
  width: 5px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-record::after {
  top: 4px;
  left: 8px;
  width: 5px;
  height: 7px;
  border-left: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
}

.menu-icon-task::before {
  top: 2px;
  left: 3px;
  width: 12px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 3px;
}

.menu-icon-task::after {
  top: 5px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(38deg);
}

.menu-icon-download::before {
  top: 2px;
  left: 8px;
  width: 2px;
  height: 11px;
  border-radius: 2px;
  background: currentColor;
}

.menu-icon-download::after {
  top: 8px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.collapse-trigger {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48px;
  border: 0;
  background: var(--sider-light);
  color: rgba(230, 247, 255, 0.7);
  font-size: 24px;
}

.ant-layout-sider + .ant-layout {
  min-width: 0;
  margin-left: 220px;
  flex: 1;
  flex-direction: column;
}

.sider-collapsed .ant-layout-sider {
  width: 60px;
}

.sider-collapsed .ant-pro-sider-logo {
  justify-content: center;
  padding: 0;
}

.sider-collapsed .ant-pro-sider-logo img {
  width: 34px;
  height: 34px;
}

.sider-collapsed .ant-pro-sider-logo h1,
.sider-collapsed .ant-menu-item span:last-of-type {
  display: none;
}

.sider-collapsed .market-submenu {
  display: none;
}

.sider-collapsed .ant-menu-item {
  justify-content: center;
  width: 48px;
  margin: 4px 6px;
  padding: 0;
}

.sider-collapsed .ant-layout-sider + .ant-layout {
  margin-left: 60px;
}

.ant-pro-global-header {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 8px rgba(6, 25, 37, 0.08);
  backdrop-filter: blur(12px);
}

.breadcrumb {
  color: var(--muted);
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.ant-spin-dot-small {
  width: 18px;
  height: 18px;
  border: 2px solid #e6f7ff;
  border-top-color: var(--primary);
  border-radius: 50%;
}

.ant-layout-content {
  padding: 24px;
  background: var(--bg);
}

.page-card {
  min-height: calc(100vh - 112px);
  background: #fff;
  border: 1px solid rgba(6, 25, 37, 0.06);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(6, 25, 37, 0.06);
}

.ant-tabs {
  display: flex;
  align-items: center;
  height: 56px;
  overflow-x: auto;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.ant-tabs-tab {
  position: relative;
  flex: 0 0 auto;
  height: 56px;
  margin: 0 32px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  white-space: nowrap;
}

.ant-tabs-tab:hover {
  color: #40a9ff;
}

.ant-tabs-tab-active {
  color: var(--primary);
  font-weight: 500;
}

.ant-tabs-tab-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: "";
}

.market-panel {
  padding: 24px;
}

.skyeye-mode .ant-layout-content {
  background: #091114;
}

.skyeye-mode .page-card {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.skyeye-mode .ant-tabs {
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  background: #10191d;
}

.skyeye-mode .ant-tabs-tab {
  color: rgba(224, 242, 241, 0.72);
}

.skyeye-mode .ant-tabs-tab:hover,
.skyeye-mode .ant-tabs-tab-active {
  color: #5ff0d2;
}

.skyeye-mode .ant-tabs-tab-active::after {
  background: #5ff0d2;
}

.skyeye-panel {
  padding: 0;
}

.skyeye-screen {
  position: relative;
  min-height: calc(100vh - 168px);
  overflow: hidden;
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 0 0 6px 6px;
  background:
    linear-gradient(rgba(95, 221, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 221, 207, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #0b1618 0%, #11191b 52%, #121612 100%);
  background-size: 28px 28px, 28px 28px, auto;
  color: #e6fffb;
  padding: 22px;
}

.skyeye-screen::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  content: "";
}

.skyeye-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.skyeye-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid rgba(95, 240, 210, 0.32);
  border-radius: 4px;
  background: rgba(95, 240, 210, 0.08);
  color: #5ff0d2;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 700;
}

.skyeye-header h2 {
  margin: 10px 0 4px;
  color: #f4fffd;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.skyeye-header p {
  margin: 0;
  color: rgba(230, 255, 251, 0.66);
}

.skyeye-clock {
  display: grid;
  min-width: 170px;
  border: 1px solid rgba(255, 184, 77, 0.28);
  border-radius: 6px;
  background: rgba(255, 184, 77, 0.07);
  padding: 12px 14px;
  text-align: right;
}

.skyeye-clock span {
  color: rgba(255, 245, 224, 0.68);
  font-size: 12px;
}

.skyeye-clock strong {
  color: #ffd38a;
  font-size: 24px;
  line-height: 1.2;
}

.skyeye-kpis {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.skyeye-kpi {
  min-width: 0;
  min-height: 118px;
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 6px;
  background: rgba(12, 24, 25, 0.86);
  padding: 14px;
}

.skyeye-kpi span,
.skyeye-kpi em {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: rgba(230, 255, 251, 0.62);
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-kpi strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 28px;
  font-weight: 850;
  line-height: 1.35;
}

.skyeye-category-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 6px;
  background: rgba(10, 22, 23, 0.88);
  padding: 14px 16px 16px;
  margin-bottom: 12px;
}

.skyeye-category-panel .skyeye-block-title {
  margin-bottom: 12px;
}

.skyeye-category-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.skyeye-category-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 255, 251, 0.1);
  border-radius: 6px;
  background: rgba(230, 255, 251, 0.04);
  padding: 12px 12px 16px;
}

.skyeye-category-card span,
.skyeye-category-card em,
.skyeye-category-card small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-category-card span {
  color: rgba(230, 255, 251, 0.66);
  font-size: 12px;
  font-weight: 700;
}

.skyeye-category-card strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: #f8fffe;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.35;
}

.skyeye-category-card em {
  color: #ffd38a;
  font-size: 12px;
  font-style: normal;
}

.skyeye-category-card small {
  margin-top: 3px;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
}

.skyeye-category-card b {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--bar, 0%);
  height: 3px;
  background: linear-gradient(90deg, #5ff0d2 0%, #ffd38a 100%);
  filter: hue-rotate(calc(var(--accent, 0) * 18deg));
}

.skyeye-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 12px;
}

.skyeye-block {
  min-width: 0;
  min-height: 286px;
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 6px;
  background: rgba(10, 22, 23, 0.9);
  padding: 16px;
}

.skyeye-market-block,
.skyeye-grade-block {
  grid-row: span 2;
}

.skyeye-hot-block {
  grid-column: span 2;
  min-height: 240px;
}

.skyeye-lifecycle-block {
  grid-column: span 2;
}

.skyeye-block-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.skyeye-block-title span {
  color: #f4fffd;
  font-size: 16px;
  font-weight: 800;
}

.skyeye-block-title strong {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 211, 138, 0.74);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.skyeye-empty {
  display: grid;
  min-height: 168px;
  place-items: center;
  border: 1px dashed rgba(230, 255, 251, 0.16);
  border-radius: 6px;
  color: rgba(230, 255, 251, 0.58);
}

.skyeye-market-rows,
.skyeye-bars,
.skyeye-hot-rows,
.skyeye-price-stats {
  display: grid;
  gap: 10px;
}

.skyeye-market-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.skyeye-market-rank {
  height: 34px;
  border: 1px solid rgba(95, 240, 210, 0.22);
  border-radius: 4px;
  background: rgba(95, 240, 210, 0.08);
  color: #5ff0d2;
  font-size: 13px;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
}

.skyeye-market-main {
  min-width: 0;
}

.skyeye-market-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.skyeye-market-name strong {
  min-width: 0;
  overflow: hidden;
  color: #f8fffe;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-market-name span {
  flex: 0 0 auto;
  color: #ffd38a;
  font-weight: 800;
}

.skyeye-market-track,
.skyeye-bar-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(230, 255, 251, 0.08);
}

.skyeye-market-track {
  margin: 7px 0;
}

.skyeye-market-track::before,
.skyeye-bar-track::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, #5ff0d2 0%, #ffd38a 100%);
  content: "";
}

.skyeye-market-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.skyeye-market-tags span {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 255, 251, 0.1);
  border-radius: 4px;
  background: rgba(230, 255, 251, 0.04);
  color: rgba(230, 255, 251, 0.7);
  padding: 3px 6px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-lifecycle-summary {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.skyeye-lifecycle-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3px 12px;
  border: 1px solid rgba(95, 240, 210, 0.14);
  border-radius: 6px;
  background: rgba(95, 240, 210, 0.06);
  padding: 10px 12px;
}

.skyeye-lifecycle-total span,
.skyeye-lifecycle-total em,
.skyeye-lifecycle-chips span,
.skyeye-lifecycle-head span,
.skyeye-lifecycle-stats span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-lifecycle-total span {
  color: rgba(230, 255, 251, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.skyeye-lifecycle-total strong {
  grid-row: span 2;
  color: #5ff0d2;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.05;
}

.skyeye-lifecycle-total em {
  color: rgba(244, 255, 253, 0.76);
  font-size: 12px;
  font-style: normal;
}

.skyeye-lifecycle-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.skyeye-lifecycle-chips span {
  border: 1px solid rgba(230, 255, 251, 0.1);
  border-radius: 4px;
  background: rgba(230, 255, 251, 0.04);
  color: rgba(230, 255, 251, 0.64);
  padding: 5px 7px;
  font-size: 12px;
}

.skyeye-lifecycle-chips strong {
  color: #ffd38a;
}

.skyeye-lifecycle-empty {
  display: grid;
  min-height: 94px;
  place-items: center;
  border: 1px dashed rgba(230, 255, 251, 0.16);
  border-radius: 6px;
  color: rgba(230, 255, 251, 0.58);
}

.skyeye-lifecycle-rows {
  display: grid;
  gap: 10px;
}

.skyeye-lifecycle-row {
  min-width: 0;
  border-bottom: 1px solid rgba(230, 255, 251, 0.08);
  padding-bottom: 10px;
}

.skyeye-lifecycle-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.skyeye-lifecycle-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.skyeye-lifecycle-head strong {
  min-width: 0;
  overflow: hidden;
  color: #f8fffe;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-lifecycle-head span {
  flex: 0 1 auto;
  color: rgba(230, 255, 251, 0.66);
  font-size: 12px;
}

.skyeye-lifecycle-track {
  display: flex;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(230, 255, 251, 0.08);
  margin: 7px 0;
}

.skyeye-lifecycle-track span {
  display: block;
  width: var(--share, 0%);
  min-width: 0;
}

.skyeye-lifecycle-track .is-new {
  background: #5ff0d2;
}

.skyeye-lifecycle-track .is-old {
  background: #6fa8ff;
}

.skyeye-lifecycle-track .is-after-sale {
  background: #ffd38a;
}

.skyeye-lifecycle-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.skyeye-lifecycle-stats span {
  border: 1px solid rgba(230, 255, 251, 0.08);
  border-radius: 4px;
  background: rgba(230, 255, 251, 0.035);
  color: rgba(230, 255, 251, 0.66);
  padding: 3px 6px;
  font-size: 12px;
}

.skyeye-lifecycle-row.is-failed {
  border: 1px dashed rgba(255, 211, 138, 0.18);
  border-radius: 6px;
  padding: 8px 10px;
}

.skyeye-bar-row {
  display: grid;
  gap: 6px;
}

.skyeye-bar-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.skyeye-bar-meta span {
  min-width: 0;
  overflow: hidden;
  color: rgba(244, 255, 253, 0.88);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-bar-meta strong {
  color: #f4fffd;
}

.skyeye-bar-track {
  height: 18px;
}

.skyeye-bar-track::before {
  filter: hue-rotate(calc(var(--accent, 0) * 24deg));
}

.skyeye-bar-track span {
  position: absolute;
  right: 8px;
  top: 0;
  color: rgba(244, 255, 253, 0.82);
  font-size: 12px;
  line-height: 18px;
}

.skyeye-matrix-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.skyeye-matrix-table th {
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.skyeye-matrix-table th:first-child,
.skyeye-matrix-table td:first-child {
  width: 34%;
  text-align: left;
}

.skyeye-matrix-table td {
  min-width: 0;
  color: rgba(244, 255, 253, 0.82);
  text-align: center;
}

.skyeye-matrix-table td:first-child {
  overflow: hidden;
  padding-right: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-matrix-table td span {
  display: block;
  min-height: 30px;
  border: 1px solid rgba(95, 240, 210, 0.1);
  border-radius: 4px;
  background: rgba(95, 240, 210, var(--heat, 0.08));
  color: #f8fffe;
  font-weight: 800;
  line-height: 28px;
}

.skyeye-hot-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(56px, 0.6fr) 58px;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border-bottom: 1px solid rgba(230, 255, 251, 0.08);
}

.skyeye-hot-row span,
.skyeye-hot-row strong,
.skyeye-hot-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.skyeye-hot-row span {
  color: rgba(230, 255, 251, 0.68);
}

.skyeye-hot-row strong {
  color: #f8fffe;
}

.skyeye-hot-row em {
  color: #ffd38a;
  font-style: normal;
}

.skyeye-hot-row b {
  color: #5ff0d2;
  text-align: right;
}

.product-title-cell {
  min-width: 220px;
  max-width: 360px;
  text-align: center !important;
  word-break: normal !important;
}

.product-title-with-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.7;
  vertical-align: middle;
}

.product-title-with-badge span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-lifecycle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 18px;
  min-width: 18px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  text-transform: lowercase;
}

.product-lifecycle-badge-new {
  min-width: 34px;
  background: linear-gradient(135deg, #ff4d4f 0%, #ff7a45 100%);
}

.product-lifecycle-badge-old {
  min-width: 30px;
  background: #597ef7;
}

.product-lifecycle-badge-warning {
  background: #fa8c16;
  font-size: 13px;
}

.shenjiying-column-cell {
  min-width: 92px;
  word-break: keep-all !important;
}

.shenjiying-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 78px;
  white-space: nowrap;
}

.shenjiying-cell span:last-child {
  color: rgba(0, 0, 0, 0.72);
}

.shenjiying-cell-muted {
  color: rgba(0, 0, 0, 0.34);
}

.shenjiying-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr);
  align-items: stretch;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(230, 244, 255, 0.82), rgba(255, 255, 255, 0.96));
}

.shenjiying-panel-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.shenjiying-panel-head div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.shenjiying-panel-head span {
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
}

.shenjiying-panel-head strong {
  overflow: hidden;
  color: rgba(0, 0, 0, 0.86);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shenjiying-panel-head em {
  color: rgba(0, 0, 0, 0.56);
  font-style: normal;
  font-size: 12px;
}

.shenjiying-panel-warning {
  grid-column: 1 / -1;
  border: 1px solid rgba(250, 173, 20, 0.32);
  border-radius: 4px;
  background: rgba(255, 251, 230, 0.9);
  padding: 8px 10px;
  color: #ad6800;
  font-size: 12px;
  line-height: 1.5;
}

.shenjiying-panel-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.shenjiying-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  gap: 8px;
  border: 1px solid rgba(22, 119, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.shenjiying-chip:hover,
.shenjiying-chip.is-active {
  border-color: #1677ff;
  color: #0958d9;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.08);
}

.shenjiying-chip span {
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shenjiying-chip strong {
  font-size: 18px;
  line-height: 1;
}

.shenjiying-chip-reset {
  border-color: rgba(0, 0, 0, 0.12);
}

.auto-update-control {
  display: grid;
  grid-template-columns: minmax(0, 108px) minmax(120px, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
}

.auto-update-field .auto-update-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  padding: 0 11px;
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.auto-update-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.auto-update-switch {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: #d9d9d9;
  transition: background 0.18s ease;
}

.auto-update-switch::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease;
  content: "";
}

.auto-update-toggle input:checked + .auto-update-switch {
  background: var(--primary);
}

.auto-update-toggle input:checked + .auto-update-switch::after {
  transform: translateX(14px);
}

.auto-update-toggle em {
  font-style: normal;
  white-space: nowrap;
}

.auto-update-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.auto-update-progress-bar {
  height: 6px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.auto-update-progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1677ff, #20c997);
  padding: 0;
  text-align: left;
  transition: width 0.22s ease;
}

.auto-update-progress strong {
  max-width: 180px;
  color: rgba(0, 0, 0, 0.46);
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auto-update-progress.is-active strong {
  color: var(--primary);
}

.auto-update-column-cell {
  min-width: 92px;
  word-break: keep-all !important;
}

.auto-update-hit,
.auto-update-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 22px;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
}

.auto-update-hit {
  background: #e6f4ff;
  color: #1677ff;
}

.auto-update-skip {
  background: #fff7e6;
  color: #d46b08;
}

.auto-update-muted {
  color: rgba(0, 0, 0, 0.34);
}

.market-conditions-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 0 10px;
  align-items: start;
  margin: 0 -5px 12px;
}

.ant-form-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  padding: 0 5px;
}

.ant-form-item span {
  padding-right: 8px;
  text-align: right;
  color: var(--text);
}

.ant-form-item select,
.ant-form-item input,
.history-form input {
  width: 100%;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  padding: 0 11px;
  color: var(--text);
}

.ant-form-item select:focus,
.ant-form-item input:focus,
.history-form input:focus {
  border-color: #40a9ff;
  outline: 0;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.category-filter-field {
  grid-column: 1 / -1;
  min-height: 52px;
}

.category-filter-field input[type="hidden"] {
  display: none;
}

.category-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.category-filter-chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.category-filter-chip strong {
  min-width: 22px;
  border-radius: 999px;
  background: #f5f5f5;
  padding: 1px 7px;
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.category-filter-chip:hover,
.category-filter-chip.is-active {
  border-color: var(--primary);
  background: #e6f4ff;
  color: var(--primary);
}

.category-filter-chip.is-active strong {
  background: var(--primary);
  color: #fff;
}

.rich-filter-field {
  position: relative;
}

.rich-filter-combo-field {
  grid-column: span 2;
}

.native-filter-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rich-filter-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  padding: 0 13px;
  color: rgba(0, 0, 0, 0.68);
  text-align: left;
}

.rich-filter-trigger strong {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rich-filter-trigger i {
  position: relative;
  width: 14px;
  height: 14px;
}

.rich-filter-trigger i::before {
  position: absolute;
  top: 3px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #8c8c8c;
  border-bottom: 1.5px solid #8c8c8c;
  transform: rotate(45deg);
  content: "";
}

.rich-filter-trigger:hover,
.rich-filter-trigger.is-open {
  border-color: #40a9ff;
  color: var(--primary);
}

.rich-filter-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  max-height: 560px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 4;
}

.rich-filter-panel.hidden {
  display: none;
}

.rich-filter-sidebar {
  max-height: 560px;
  border-right: 1px solid #f0f0f0;
  background: #fafafa;
  overflow-y: auto;
}

.rich-filter-side-item {
  width: 100%;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0 24px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.rich-filter-side-item:hover,
.rich-filter-side-item.is-active {
  background: #f0f2f5;
}

.rich-filter-content {
  max-height: 560px;
  padding: 18px 24px 24px;
  overflow-y: auto;
}

.rich-filter-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.rich-filter-clear {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
}

.rich-filter-group {
  margin-bottom: 24px;
}

.rich-filter-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
  font-weight: 700;
}

.rich-filter-all-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.rich-filter-check {
  width: 18px;
  height: 18px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #fff;
  padding: 0;
}

.rich-filter-check.is-active {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 3px #fff;
}

.rich-filter-all-text {
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
  font-weight: 700;
}

.rich-filter-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
}

.rich-filter-option {
  min-height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  color: rgba(0, 0, 0, 0.82);
  font-size: 15px;
}

.rich-filter-option:hover,
.rich-filter-option.is-active {
  border-color: var(--primary);
  background: #e6f4ff;
  color: var(--primary);
  font-weight: 700;
}

.rich-filter-color .rich-filter-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: var(--swatch, #d9d9d9);
}

.engineer-filter {
  grid-column: span 2;
  grid-template-columns: 112px minmax(0, 1fr);
}

.engineer-filter span {
  white-space: nowrap;
}

.engineer-filter-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.qc-filter-control {
  grid-template-columns: minmax(0, 1fr);
}

.reverse-check {
  display: inline-flex;
  align-items: center;
  height: 32px;
  gap: 5px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: rgba(0, 0, 0, 0.65);
  white-space: nowrap;
}

.reverse-check:hover {
  border-color: #40a9ff;
  color: var(--primary);
}

.reverse-check input {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 48px;
  gap: 8px;
  padding-left: 5px;
  padding-right: 5px;
}

.ant-btn {
  min-width: 64px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  padding: 4px 15px;
}

.ant-btn:hover {
  border-color: #40a9ff;
  color: #40a9ff;
}

.ant-btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.ant-btn-primary:hover {
  border-color: #40a9ff;
  background: #40a9ff;
  color: #fff;
}

.ant-btn[disabled] {
  border-color: var(--border);
  background: #f5f5f5;
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}

.auction-basic {
  margin: 14px 0;
}

.auction-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border: 1px solid #e6f7ff;
  background: #f8fdff;
  color: rgba(0, 0, 0, 0.65);
  gap: 18px;
}

.auction-box strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}

.auction-tips {
  margin-top: 8px;
  color: var(--muted);
  text-align: center;
}

.desc-box {
  margin: 12px 0 16px;
  color: rgba(0, 0, 0, 0.65);
}

.desc-box p {
  margin: 0 0 6px;
}

.desc-title {
  color: var(--text);
  font-weight: 500;
}

.fold-button {
  color: var(--primary);
  cursor: pointer;
}

.developing-panel {
  display: grid;
  place-items: center;
  min-height: 360px;
  color: var(--muted);
  text-align: center;
}

.developing-panel h2 {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-size: 22px;
  font-weight: 600;
}

.table-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin: 8px 0 12px;
  min-height: 34px;
}

.bid-analysis {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #ffd591;
  border-radius: 2px;
  background: #fff7e6;
  box-shadow: inset 4px 0 0 #fa8c16, 0 2px 8px rgba(250, 140, 22, 0.1);
}

.bid-analysis-title {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 4px 0 8px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.bid-analysis-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  min-width: 176px;
  padding: 0 14px;
  border-color: #d9d9d9;
  background: #fff;
  font-size: 14px;
}

.bid-analysis-option strong {
  min-width: 30px;
  color: #d4380d;
  font-size: 18px;
  line-height: 1;
}

.bid-analysis-option.is-active {
  border-color: #fa8c16;
  background: #fff1b8;
  color: #ad4e00;
}

.bid-analysis-option.is-active strong {
  color: #ad4e00;
}

.bid-analysis-clear {
  height: 34px;
  padding: 0 6px;
}

.bid-analysis-summary {
  flex: 1 1 320px;
  min-width: 240px;
  color: #8c6d1f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

#dataStatus {
  color: var(--muted);
}

.table-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 0 0;
  color: var(--muted);
}

.page-summary {
  margin-right: auto;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 600;
}

.page-summary strong {
  color: var(--text);
  font-weight: 700;
}

.page-size-control,
.page-jump-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-size-control select,
.page-jump-control input {
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  padding: 0 8px;
}

.page-jump-control input {
  width: 64px;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 4px 15px;
  background: #fff;
  cursor: pointer;
}

.file-button:hover {
  border-color: #40a9ff;
  color: #40a9ff;
}

.file-button input {
  display: none;
}

.table-toolbar .toolbar-primary-action {
  height: 42px;
  min-width: 158px;
  border-color: #1677ff;
  border-radius: 4px;
  padding: 0 22px;
  background: #1677ff;
  box-shadow: 0 6px 14px rgba(22, 119, 255, 0.22);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}

.table-toolbar .toolbar-primary-action:hover {
  border-color: #4096ff;
  background: #4096ff;
  color: #fff;
}

.table-toolbar .toolbar-export-action {
  background: #fff;
  box-shadow: 0 4px 10px rgba(22, 119, 255, 0.12);
  color: #1677ff;
}

.table-toolbar .toolbar-price-lookup-action {
  border-color: #f59e0b;
  background: #fff7ed;
  box-shadow: 0 6px 14px rgba(245, 158, 11, 0.18);
  color: #9a4f00;
}

.table-toolbar .toolbar-price-lookup-action:hover {
  border-color: #d97706;
  background: #ffedd5;
  color: #7c3a00;
}

.table-toolbar .toolbar-flash-action {
  border-color: #14b8a6;
  background: linear-gradient(135deg, #14b8a6 0%, #1683ff 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
  color: #fff;
}

.table-toolbar .toolbar-flash-action:hover {
  border-color: #22c5b4;
  background: linear-gradient(135deg, #22c5b4 0%, #2f9bff 100%);
  color: #fff;
}

.table-toolbar .toolbar-export-action:hover {
  background: #e6f4ff;
  color: #1677ff;
}

.ant-table-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.ant-table {
  width: 100%;
  min-width: 1260px;
  border-collapse: collapse;
  border-spacing: 0;
  color: rgba(0, 0, 0, 0.85);
}

.ant-table th,
.ant-table td {
  border-bottom: 1px solid var(--line);
  padding: 7px 8px;
  text-align: center;
  word-break: break-all;
}

.ant-table th {
  background: #fafafa;
  color: rgba(0, 0, 0, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.ant-table td {
  background: #fff;
}

.ant-table .product-info-cell {
  width: 260px;
  max-width: 260px;
  text-align: left;
  word-break: normal;
}

.product-info-compact {
  display: -webkit-box;
  overflow: hidden;
  max-height: 40px;
  color: rgba(0, 0, 0, 0.76);
  font-size: 13px;
  line-height: 20px;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ant-table tbody tr:hover td {
  background: #fafafa;
}

.market-loading-row td {
  height: 240px;
  padding: 42px 16px !important;
  background: #fff !important;
  text-align: center !important;
}

.market-switch-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 240px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: 6px;
  background: #f7fbff;
  padding: 14px 18px;
  color: #37516f;
  font-size: 14px;
  font-weight: 600;
}

.market-switch-spinner {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(22, 119, 255, 0.16);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: marketSwitchSpin 0.8s linear infinite;
}

@keyframes marketSwitchSpin {
  to {
    transform: rotate(360deg);
  }
}

.table-link {
  border: 0;
  background: transparent;
  color: var(--primary);
  padding: 0;
  cursor: pointer;
}

.muted-cell {
  color: rgba(0, 0, 0, 0.35);
}

.table-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.bid-cell {
  min-width: 128px;
}

.bid-cell-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bid-display {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  gap: 4px;
  padding: 0;
  font: inherit;
}

.bid-display span {
  font-size: 15px;
  line-height: 22px;
}

.bid-display svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.bid-display:hover span {
  color: var(--primary);
}

.bid-submit-link {
  border: 1px solid rgba(47, 107, 217, 0.28);
  border-radius: 999px;
  background: rgba(47, 107, 217, 0.08);
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 9px;
  white-space: nowrap;
}

.bid-submit-link:hover {
  border-color: rgba(47, 107, 217, 0.5);
  background: rgba(47, 107, 217, 0.14);
}

.price-input {
  width: 92px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.price-input:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.12);
}

.price-input.is-risk {
  border-color: #ff4d4f;
  background: #fff1f0;
  color: #a8071a;
}

.price-input.is-risk:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.16);
}

.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.ant-empty {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: var(--muted);
  text-align: center;
}

.ant-empty.large {
  min-height: 420px;
}

.empty-icon {
  width: 64px;
  height: 42px;
  margin: 0 auto 8px;
  border: 2px solid #d9d9d9;
  border-radius: 2px;
  color: transparent;
}

.history-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.history-form input {
  width: 260px;
}

.task-toolbar {
  align-items: center;
}

.task-table {
  min-width: 1180px;
}

.task-file-cell,
.task-message-cell {
  max-width: 260px;
  text-align: left;
}

.task-progress {
  position: relative;
  width: 118px;
  height: 8px;
  margin: 0 auto 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f5;
}

.task-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1677ff, #14b8a6);
}

.task-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 26px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.task-status.is-running {
  border-color: #91caff;
  background: #e6f4ff;
  color: #1677ff;
}

.task-status.is-accepted {
  border-color: #ffd666;
  background: #fffbe6;
  color: #ad6800;
}

.task-status.is-changed {
  border-color: #ffc069;
  background: #fff7e6;
  color: #ad4e00;
}

.task-status.is-success {
  border-color: #95de64;
  background: #f6ffed;
  color: #389e0d;
}

.task-status.is-local {
  border-color: #adc6ff;
  background: #f0f5ff;
  color: #2f54eb;
}

.task-status.is-failed {
  border-color: #ffa39e;
  background: #fff1f0;
  color: #cf1322;
}

.task-center-page {
  display: grid;
  gap: 18px;
}

.task-center-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 8px 22px rgba(15, 35, 66, 0.06);
}

.task-center-head span {
  display: block;
  color: #6b7788;
  font-size: 13px;
  font-weight: 760;
}

.task-center-head h2 {
  margin: 4px 0 0;
  color: #152033;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: 0;
}

.task-center-head p,
.market-sync-note {
  margin: 0;
  color: #6b7788;
  font-size: 13px;
  font-weight: 650;
}

.task-rule-grid,
.market-sync-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
}

.task-rule-card,
.market-sync-card {
  display: grid;
  gap: 14px;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 35, 66, 0.05);
}

.task-rule-card.is-auto,
.market-sync-card.is-success {
  border-color: #b7ebc6;
}

.task-rule-card.is-external,
.market-sync-card.is-pending,
.market-sync-card.is-local {
  border-color: #d9e3f0;
}

.market-sync-card.is-changed {
  border-color: #ffc069;
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.market-sync-card.is-running {
  border-color: #91caff;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.market-sync-card.is-failed {
  border-color: #ffa39e;
  background: linear-gradient(180deg, #ffffff, #fff7f6);
}

.task-rule-card-head,
.market-sync-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.task-rule-card-head strong,
.market-sync-card-head strong {
  display: block;
  color: #172033;
  font-size: 17px;
  font-weight: 850;
}

.task-rule-card-head span,
.market-sync-card-head span {
  display: block;
  margin-top: 4px;
  color: #7b8797;
  font-size: 12px;
  font-weight: 700;
}

.task-rule-card dl,
.market-sync-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.market-sync-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.task-rule-card dl div,
.market-sync-meta div {
  min-width: 0;
  border: 1px solid #edf1f6;
  border-radius: 7px;
  padding: 9px 10px;
  background: #f8fafc;
}

.task-rule-card dt,
.market-sync-meta span {
  display: block;
  color: #7b8797;
  font-size: 12px;
  font-weight: 700;
}

.task-rule-card dd,
.market-sync-meta strong {
  display: block;
  min-width: 0;
  margin: 4px 0 0;
  overflow: hidden;
  color: #172033;
  font-size: 13px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-sync-meta .market-sync-time {
  padding: 8px 10px;
}

.market-sync-meta .market-sync-time strong {
  overflow: visible;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}

.market-sync-meta .market-sync-time strong small {
  display: block;
  margin-top: 2px;
  color: #64748b;
  font-size: 12px;
  font-weight: 760;
}

.task-rule-card p,
.market-sync-message {
  display: grid;
  gap: 5px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 10px 12px;
  background: #f5f8fb;
  color: #5c6b7d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.market-sync-message.is-error {
  border-color: #ffccc7;
  background: #fff1f0;
  color: #a8071a;
}

.market-sync-message.is-warning {
  border-color: #ffd591;
  background: #fff7e6;
  color: #ad4e00;
}

.market-sync-message-label {
  display: block;
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.market-sync-message strong {
  display: block;
  color: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: break-word;
}

.market-sync-manual-entry {
  display: grid;
  gap: 6px;
}

.market-sync-manual-entry span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.market-sync-manual-entry input {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.market-sync-actions,
.market-sync-card-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.market-sync-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.task-rules-summary {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.market-monitor-grid {
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.market-monitor-card.is-success {
  border-color: #b7ebc6;
}

.market-monitor-card.is-local {
  border-color: #adc6ff;
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
}

.market-monitor-card.is-changed {
  border-color: #ffc069;
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.market-monitor-card.is-running {
  border-color: #91caff;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.market-monitor-card.is-failed {
  border-color: #ffa39e;
  background: linear-gradient(180deg, #ffffff, #fff7f6);
}

.market-monitor-next {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #e6f0ff;
  border-radius: 7px;
  padding: 10px 12px;
  background: #f7fbff;
}

.market-monitor-next span,
.market-monitor-next em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
}

.market-monitor-next strong {
  min-width: 0;
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  font-weight: 860;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-monitor-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.market-monitor-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-monitor-actions {
  justify-content: flex-end;
}

.market-monitor-card .market-sync-message {
  max-height: none;
  overflow: visible;
}

.market-sync-kpi {
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.market-sync-kpi span,
.market-sync-kpi em {
  display: block;
  color: #7b8797;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.market-sync-kpi strong {
  display: block;
  margin: 6px 0;
  color: #172033;
  font-size: 24px;
  font-weight: 900;
}

.market-sync-kpi.is-failed {
  border-color: #ffccc7;
  background: #fff7f6;
}

.market-sync-kpi.is-failed span,
.market-sync-kpi.is-failed em {
  color: #b42318;
}

.market-sync-kpi.is-failed strong {
  color: #cf1322;
}

.market-sync-kpi.is-running {
  border-color: #b7d3ff;
  background: #f5f9ff;
}

.market-sync-kpi.is-running strong {
  color: #1d4ed8;
}

.market-sync-kpi.is-success {
  border-color: #b7eb8f;
  background: #f6ffed;
}

.market-sync-kpi.is-success strong {
  color: #237804;
}

.market-sync-kpi.is-changed {
  border-color: #ffd591;
  background: #fff7e6;
}

.market-sync-kpi.is-changed strong {
  color: #ad6800;
}

.market-sync-progress {
  position: relative;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.market-sync-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1677ff, #14b8a6);
  transition: width 220ms ease;
}

.market-monitor-progress {
  height: 9px;
}

.market-monitor-progress-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
}

.market-monitor-progress-wrap strong {
  color: #172033;
  font-size: 13px;
  font-weight: 880;
  text-align: right;
  white-space: nowrap;
}

.market-sync-card.is-success .market-sync-progress span,
.market-monitor-card.is-success .market-sync-progress span {
  background: linear-gradient(90deg, #2f6fed, #4bc0a8);
}

.market-sync-card.is-running .market-sync-progress span,
.market-monitor-card.is-running .market-sync-progress span {
  background: linear-gradient(90deg, #1677ff, #69b1ff);
}

.market-sync-card.is-changed .market-sync-progress span,
.market-monitor-card.is-changed .market-sync-progress span {
  background: linear-gradient(90deg, #faad14, #ffc069);
}

.market-sync-card.is-failed .market-sync-progress span {
  background: linear-gradient(90deg, #ff4d4f, #ff9c6e);
}

.market-monitor-card.is-failed .market-sync-progress span {
  background: linear-gradient(90deg, #ff4d4f, #ff9c6e);
}

.market-sync-card.is-pending .market-sync-progress span,
.market-sync-card.is-local .market-sync-progress span,
.market-monitor-card.is-pending .market-sync-progress span,
.market-monitor-card.is-local .market-sync-progress span {
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.market-sync-card-actions {
  justify-content: space-between;
  border-top: 1px solid #edf1f6;
  padding-top: 12px;
}

.market-sync-card-actions span {
  min-width: 0;
  overflow: hidden;
  color: #7b8797;
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-sync-log-modal.hidden {
  display: none;
}

.market-sync-log-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
}

.market-sync-log-mask {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.36);
}

.market-sync-log-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(760px, calc(100vw - 40px));
  max-height: min(620px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.market-sync-log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf1f6;
  padding: 14px 16px;
}

.market-sync-log-head strong {
  color: #172033;
  font-size: 16px;
  font-weight: 850;
}

#marketSyncLogBody {
  margin: 0;
  overflow: auto;
  padding: 16px;
  color: #334155;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 1200px) {
  .task-rules-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-monitor-grid {
    grid-template-columns: 1fr;
  }
}

.ant-btn-sm {
  height: 30px;
  padding: 0 12px;
  font-size: 13px;
}

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

.price-system-zz-mode .price-system-pjt-section,
.price-system-zz-mode .price-system-fee-rules-section,
.price-system-zz-mode .price-system-foldables-section,
.price-system-zz-mode .price-system-calculator-section,
.price-system-pjt-mode .price-system-zz-section,
.price-system-pjt-mode .price-system-fee-rules-section,
.price-system-pjt-mode .price-system-foldables-section,
.price-system-pjt-mode .price-system-calculator-section,
.price-system-fee-rules-mode .price-system-zz-section,
.price-system-fee-rules-mode .price-system-pjt-section,
.price-system-fee-rules-mode .price-system-foldables-section,
.price-system-fee-rules-mode .price-system-calculator-section,
.price-system-fee-rules-mode .price-system-shared-section,
.price-system-foldables-mode .price-system-zz-section,
.price-system-foldables-mode .price-system-pjt-section,
.price-system-foldables-mode .price-system-fee-rules-section,
.price-system-foldables-mode .price-system-calculator-section,
.price-system-foldables-mode .price-system-shared-section,
.price-system-calculator-mode .price-system-zz-section,
.price-system-calculator-mode .price-system-pjt-section,
.price-system-calculator-mode .price-system-fee-rules-section,
.price-system-calculator-mode .price-system-foldables-section,
.price-system-calculator-mode .price-system-shared-section {
  display: none !important;
}

.price-system-pjt-mode .price-system-shared-section {
  display: none !important;
}

.price-system-pjt-mode .price-system-page,
.price-system-fee-rules-mode .price-system-page,
.price-system-foldables-mode .price-system-page,
.price-system-calculator-mode .price-system-page {
  align-content: start;
}

.price-system-toolbar {
  align-items: center;
}

.price-system-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.price-system-kpi {
  min-height: 92px;
  padding: 14px;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
}

.price-system-kpi.is-clickable {
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.price-system-kpi.is-clickable:hover,
.price-system-kpi.is-clickable:focus {
  border-color: #91caff;
  box-shadow: 0 8px 20px rgba(22, 119, 255, 0.12);
  outline: none;
}

.price-system-kpi.is-clickable:active {
  transform: translateY(1px);
}

.price-system-kpi.is-active {
  border-color: #1677ff;
  background: #f5f9ff;
}

.price-system-kpi span,
.price-system-kpi em {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.price-system-kpi strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.1;
}

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

.decision-center-mode .top-ad-slot {
  display: none;
}

.decision-center-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.decision-center-hero span,
.decision-center-block-head span,
.decision-center-kpi span {
  display: block;
  color: #667085;
  font-size: 12px;
  font-weight: 700;
}

.decision-center-hero h2 {
  margin: 6px 0;
  color: #101828;
  font-size: 24px;
  line-height: 1.22;
}

.decision-center-hero p {
  max-width: 760px;
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.7;
}

.decision-center-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.decision-center-actions label {
  display: grid;
  gap: 6px;
}

.decision-center-actions select {
  min-width: 180px;
  height: 36px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #344054;
  padding: 0 10px;
}

.decision-center-status {
  min-height: 42px;
  border: 1px solid #dbe7f3;
  border-radius: 8px;
  background: #f8fbff;
  color: #344054;
  padding: 11px 14px;
  font-weight: 700;
}

.decision-center-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.decision-center-kpi {
  min-height: 94px;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.decision-center-kpi strong {
  display: block;
  margin-top: 8px;
  color: #101828;
  font-size: 24px;
  line-height: 1.12;
}

.decision-center-kpi em {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
  font-style: normal;
}

.decision-center-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.decision-center-block {
  min-width: 0;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.decision-center-block-wide {
  grid-column: 1 / -1;
}

.decision-center-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef2f6;
  padding: 14px 16px;
}

.decision-center-block-head strong {
  display: block;
  margin-top: 4px;
  color: #101828;
  font-size: 18px;
}

.decision-center-table-wrap {
  overflow: auto;
  max-height: 520px;
}

.decision-center-table {
  min-width: 720px;
  table-layout: fixed;
}

.decision-center-table th,
.decision-center-table td {
  vertical-align: top;
}

.decision-center-table th:nth-child(1),
.decision-center-table td:nth-child(1) {
  width: 28%;
}

.decision-center-table th:nth-child(2),
.decision-center-table td:nth-child(2) {
  width: 18%;
}

.decision-center-table th:nth-child(3),
.decision-center-table td:nth-child(3),
.decision-center-table th:nth-child(4),
.decision-center-table td:nth-child(4) {
  width: 15%;
}

.decision-center-table th:nth-child(5),
.decision-center-table td:nth-child(5) {
  width: 24%;
}

.decision-center-table td strong,
.decision-center-table td span {
  display: block;
}

.decision-center-table td strong {
  color: #101828;
}

.decision-center-table td span {
  margin-top: 4px;
  color: #667085;
  font-size: 12px;
  line-height: 1.45;
}

.decision-evidence-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  margin-top: 8px;
  border: 1px solid #d0d5dd;
  border-radius: 4px;
  background: #fff;
  color: #344054;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.decision-evidence-btn:hover {
  border-color: #2f80ff;
  color: #175cd3;
}

.decision-evidence-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.decision-evidence-modal {
  width: min(760px, calc(100vw - 48px));
}

.decision-evidence-body {
  display: grid;
  gap: 12px;
}

.decision-evidence-body section {
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: #fff;
  padding: 12px;
}

.decision-evidence-body strong {
  display: block;
  color: #101828;
  font-size: 14px;
}

.decision-evidence-body p {
  margin: 6px 0 0;
  color: #475467;
  line-height: 1.55;
}

.decision-evidence-body ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.decision-evidence-body li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #f2f4f7;
  padding-bottom: 6px;
  color: #475467;
}

.decision-evidence-body li span {
  color: #667085;
  white-space: nowrap;
}

.decision-center-empty-row td {
  padding: 34px 16px;
  color: #98a2b3;
  text-align: center;
}

.price-system-progress-panel {
  display: grid;
  gap: 12px;
}

.pjt-test-center {
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.pjt-test-toolbar {
  display: flex;
  align-items: end;
  gap: 10px;
  flex-wrap: wrap;
}

.pjt-test-toolbar label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

.pjt-test-toolbar input {
  width: 130px;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 9px;
  color: var(--text);
  font: inherit;
}

.pjt-test-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pjt-test-current {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr);
  align-items: center;
  gap: 14px;
  min-height: 64px;
  border: 1px solid #eef2f6;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}

.pjt-test-current span,
.pjt-test-current em {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pjt-test-current strong {
  display: block;
  margin: 4px 0;
  overflow: hidden;
  color: var(--text);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pjt-test-table {
  min-width: 1080px;
}

.zz-fee-rules {
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.zz-fee-rules .skyeye-block-title {
  gap: 12px;
}

.zz-fee-rules .skyeye-block-title strong {
  margin-left: auto;
  color: #8c5a00;
  font-size: 12px;
  font-weight: 800;
}

.zz-fee-rule-note {
  margin-top: 8px;
  border: 1px solid rgba(250, 173, 20, 0.26);
  border-radius: 6px;
  background: #fffaf0;
  padding: 9px 12px;
  color: #8c5a00;
  font-size: 13px;
  line-height: 1.5;
}

.zz-fee-rule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 12px;
  margin-top: 12px;
}

.zz-fee-rule-wrapper,
.zz-fee-example-wrapper {
  border-radius: 6px;
}

.zz-fee-rule-table {
  min-width: 720px;
}

.zz-fee-quality-table {
  min-width: 320px;
}

.zz-fee-example-table {
  min-width: 560px;
}

.zz-fee-example-wrapper {
  margin-top: 12px;
}

.zz-fee-category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(212, 107, 8, 0.22);
  border-radius: 4px;
  background: #fff7e6;
  padding: 0 8px;
  color: #ad4e00;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .zz-fee-rule-layout {
    grid-template-columns: 1fr;
  }
}

.zz-foldable-library {
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.zz-foldable-library .skyeye-block-title {
  gap: 12px;
}

.zz-foldable-toggle {
  margin-left: auto;
  min-width: 84px;
}

.zz-foldable-library.is-collapsed .zz-foldable-wrapper {
  display: none;
}

.zz-foldable-toolbar input {
  width: 190px;
}

.zz-foldable-wrapper {
  margin-top: 12px;
}

.zz-foldable-table {
  min-width: 900px;
}

.zz-foldable-table th:nth-child(1) {
  width: 220px;
}

.zz-foldable-table th:nth-child(5) {
  width: 360px;
}

.zz-foldable-note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.zz-foldable-source {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid #d6e4ff;
  border-radius: 4px;
  background: #f5f9ff;
  padding: 0 8px;
  color: #1677ff;
  font-size: 12px;
  font-weight: 700;
}

.zz-foldable-samples {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.zz-foldable-samples span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pjt-test-table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pjt-test-status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pjt-test-message {
  max-width: 360px;
  margin-top: 5px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pjt-test-detail-button {
  height: 24px;
  border: 1px solid #d9e2ec;
  border-radius: 4px;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  line-height: 22px;
  padding: 0 8px;
}

.pjt-test-detail-button:hover {
  border-color: var(--primary);
}

.pjt-test-failure-summary {
  grid-column: 1 / -1;
  border-top: 1px solid #eef2f6;
  color: var(--muted);
  font-size: 12px;
  padding-top: 10px;
}

.pjt-selection-modal-wrap {
  padding-top: 56px;
}

.pjt-selection-modal {
  width: 920px;
}

.pjt-selection-body {
  max-height: min(72vh, 720px);
  overflow: auto;
  color: var(--text);
}

.pjt-selection-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pjt-selection-summary div,
.pjt-selection-grid section,
.pjt-selection-pending,
.pjt-selection-visible {
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 12px;
}

.pjt-selection-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.pjt-selection-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
}

.pjt-selection-message {
  margin: 12px 0;
  border-left: 3px solid var(--primary);
  background: #f6f9fc;
  color: var(--text);
  line-height: 1.6;
  padding: 10px 12px;
}

.pjt-selection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pjt-selection-grid h4,
.pjt-selection-pending h4,
.pjt-selection-visible h4 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 13px;
}

.pjt-selection-grid ul,
.pjt-selection-pending ul,
.pjt-selection-visible ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pjt-selection-grid li,
.pjt-selection-pending li,
.pjt-selection-visible li {
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
  padding: 6px 8px;
}

.pjt-selection-visible li strong,
.pjt-selection-visible li span {
  display: block;
}

.pjt-selection-visible li span {
  margin-top: 3px;
  color: var(--muted);
}

.pjt-selection-pending,
.pjt-selection-visible {
  margin-top: 12px;
}

.pjt-selection-empty {
  color: var(--muted);
  font-size: 12px;
}

.pjt-selection-shot {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary);
  font-size: 13px;
}

.price-system-progress-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.price-system-progress-item {
  min-height: 86px;
  border: 1px solid #e7edf3;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.price-system-progress-item span,
.price-system-progress-item em {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.price-system-progress-item strong {
  display: block;
  margin: 7px 0 5px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.price-system-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-system-reason-list {
  display: grid;
  gap: 8px;
}

.price-system-reason-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  border: 1px solid #eef2f6;
  border-radius: 6px;
  background: #fff;
  padding: 8px 10px;
}

.price-system-reason-item span {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-system-reason-item strong {
  color: var(--primary);
  font-size: 15px;
}

.price-system-empty {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px dashed #dbe3ea;
  border-radius: 8px;
  color: var(--muted);
  background: #fbfcfe;
}

.price-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-system-block {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.price-system-task-block,
.price-system-cache-block,
.price-system-history-block {
  grid-column: 1 / -1;
}

.price-system-cache-table,
.price-system-manual-table,
.price-system-history-table {
  min-width: 980px;
}

.price-system-title-cell {
  max-width: 360px;
  text-align: left;
}

.price-system-title-cell,
.price-system-cache-table td,
.price-system-manual-table td,
.price-system-history-table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.market-calculator-section {
  width: 100%;
  max-width: none;
}

.market-calculator-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.market-calculator-section .skyeye-block-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.market-calculator-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-width: 150px;
  min-height: 40px;
  border: 1px solid rgba(22, 119, 255, 0.22);
  border-radius: 999px;
  background: #f8fbff;
  padding: 4px 14px 4px 6px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}

.market-calculator-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.market-calculator-switch span {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.18s ease;
}

.market-calculator-switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.24);
  transition: transform 0.18s ease;
  content: "";
}

.market-calculator-switch input:checked + span {
  background: #1677ff;
}

.market-calculator-switch input:checked + span::after {
  transform: translateX(24px);
}

.market-calculator-switch em {
  color: #1f2937;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.market-calculator-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(160px, 1fr) minmax(160px, 1fr) minmax(160px, 1fr);
  align-items: end;
  gap: 12px;
}

.market-calculator-form label,
.market-calculator-table label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.market-calculator-form input,
.market-calculator-form select,
.market-calculator-table input,
.market-calculator-table select {
  width: 100%;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 0 10px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.market-calculator-tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-calculator-tier-head div {
  display: grid;
  gap: 3px;
}

.market-calculator-tier-head span {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
}

.market-calculator-tier-head strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.market-calculator-table {
  min-width: 960px;
}

.market-calculator-table th,
.market-calculator-table td {
  white-space: nowrap;
}

.market-calculator-table th:nth-child(5),
.market-calculator-table td:nth-child(5) {
  min-width: 180px;
}

@media (max-width: 900px) {
  .market-calculator-section .skyeye-block-title {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .market-calculator-section .skyeye-block-title strong {
    display: none;
  }

  .market-calculator-form {
    grid-template-columns: 1fr;
  }

  .market-calculator-tier-head {
    align-items: stretch;
    flex-direction: column;
  }
}

.table-empty-cell {
  height: 80px;
  color: var(--muted);
  text-align: center;
}

.download-center {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.download-item {
  min-height: 96px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  padding: 16px;
  text-align: left;
}

.download-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px rgba(6, 25, 37, 0.08);
}

.download-item strong,
.download-item span {
  display: block;
}

.download-item strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
}

.download-item span {
  margin-top: 8px;
  color: var(--muted);
}

body.market-recycle {
  background: #f4f4f4;
  color: #2a2a2a;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
}

body.market-recycle .ant-layout-content {
  background: #f4f4f4;
  padding: 0;
}

body.market-recycle .ant-pro-global-header {
  height: 54px;
  background: #ffd800;
  box-shadow: none;
}

body.market-recycle .breadcrumb {
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

body.market-recycle .header-right {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 700;
}

body.market-recycle .ant-spin-dot-small {
  border-color: rgba(0, 0, 0, 0.16);
  border-top-color: #111;
}

body.market-recycle .market-subitem[data-market="recycle"].is-active {
  background: #ffd800;
  color: #111;
  box-shadow: 0 8px 18px rgba(255, 216, 0, 0.22);
}

body.market-recycle .market-subitem[data-market="recycle"].is-active .menu-icon {
  color: #111;
}

body.market-recycle .page-card {
  min-height: calc(100vh - 54px);
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
  box-shadow: none;
  overflow: visible;
}

body.market-recycle .ant-tabs {
  height: 52px;
  border-bottom: 0;
  background: #ffd800;
  padding: 0 18px;
}

body.market-recycle .ant-tabs-tab {
  height: 52px;
  margin-right: 24px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 16px;
  font-weight: 800;
}

body.market-recycle .ant-tabs-tab:hover,
body.market-recycle .ant-tabs-tab-active {
  color: #111;
}

body.market-recycle .ant-tabs-tab-active::after {
  right: 10px;
  bottom: 5px;
  left: 10px;
  height: 5px;
  border-radius: 999px;
  background: #111;
}

body.market-recycle .market-panel[data-panel="current"] {
  padding: 0 16px 16px;
}

body.market-recycle .auction-basic {
  margin: 12px 0 14px;
  border: 1px solid #fff0a6;
  border-radius: 0;
  background: #fffdf0;
  padding: 0;
}

body.market-recycle .auction-box {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 58px;
  max-width: none;
  border: 0;
  background: #fffdf0;
  color: rgba(0, 0, 0, 0.64);
  padding: 0 18px;
  gap: 20px;
  box-shadow: none;
}

body.market-recycle .auction-box span {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 700;
}

body.market-recycle .auction-box strong {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  color: #d6a300;
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

body.market-recycle .auction-tips {
  position: static;
  display: block;
  width: auto;
  min-height: auto;
  margin: 0;
  border-top: 1px solid rgba(255, 216, 0, 0.34);
  border-radius: 0;
  background: #fffaf0;
  color: rgba(0, 0, 0, 0.46);
  padding: 10px 16px 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

body.market-recycle .market-conditions-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px;
  margin: 0 -16px 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  padding: 16px 16px 14px;
}

body.market-recycle .ant-form-item {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 6px;
  min-height: auto;
  padding: 0;
}

body.market-recycle .ant-form-item > span {
  display: block;
  padding: 0 4px;
  text-align: left;
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 900;
  line-height: 18px;
}

body.market-recycle .category-filter-field {
  grid-column: 1 / -1;
  display: block;
}

body.market-recycle .category-filter-bar {
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 2px;
}

body.market-recycle .category-filter-chip {
  flex: 0 0 auto;
  height: 44px;
  min-width: 110px;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #f5f5f5;
  color: #2b2b2b;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 900;
}

body.market-recycle .category-filter-chip strong {
  display: none;
}

body.market-recycle .category-filter-chip:hover,
body.market-recycle .category-filter-chip.is-active {
  background: #fff3b0;
  color: #111;
}

body.market-recycle .rich-filter-combo-field,
body.market-recycle .engineer-filter,
body.market-recycle .qc-filter,
body.market-recycle .auto-update-field {
  grid-column: auto;
}

body.market-recycle .rich-filter-trigger,
body.market-recycle .ant-form-item select,
body.market-recycle .ant-form-item input,
body.market-recycle .reverse-check,
body.market-recycle .auto-update-field .auto-update-toggle {
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f5f5f5;
  color: #3f3f3f;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 800;
}

body.market-recycle .rich-filter-trigger strong {
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 800;
}

body.market-recycle .rich-filter-trigger:hover,
body.market-recycle .rich-filter-trigger.is-open,
body.market-recycle .ant-form-item select:focus,
body.market-recycle .ant-form-item input:focus,
body.market-recycle .reverse-check:hover {
  color: #111;
  background: #fff3b0;
  box-shadow: none;
}

body.market-recycle .engineer-filter-control,
body.market-recycle .auto-update-control {
  align-items: center;
  width: 100%;
}

body.market-recycle .reverse-check {
  justify-content: center;
  min-width: 72px;
  color: #4a4a4a;
}

body.market-recycle .reverse-check input {
  width: auto;
  height: auto;
  padding: 0;
}

body.market-recycle .auto-update-progress {
  min-width: 0;
}

body.market-recycle .rich-filter-panel {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

body.market-recycle .rich-filter-sidebar {
  background: #fafafa;
}

body.market-recycle .rich-filter-side-item:hover,
body.market-recycle .rich-filter-side-item.is-active,
body.market-recycle .rich-filter-option:hover,
body.market-recycle .rich-filter-option.is-active {
  border-color: #ffd800;
  background: #fff7bf;
  color: #111;
}

body.market-recycle .form-actions {
  grid-column: 1 / -1;
}

body.market-recycle .ant-btn-primary,
body.market-recycle .table-toolbar .toolbar-primary-action {
  border-color: #ffd800;
  background: #ffd800;
  box-shadow: 0 6px 14px rgba(255, 216, 0, 0.22);
  color: #111;
}

body.market-recycle .ant-btn-primary:hover,
body.market-recycle .table-toolbar .toolbar-primary-action:hover {
  border-color: #ffe24a;
  background: #ffe24a;
  color: #111;
}

body.market-recycle .table-toolbar {
  justify-content: flex-end;
  margin: 8px 0 12px;
}

body.market-recycle .table-toolbar .toolbar-primary-action {
  height: 42px;
  min-width: 158px;
  border-radius: 4px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
}

body.market-recycle .table-toolbar .toolbar-export-action {
  border-color: #ffd800;
  background: #fff;
  color: #111;
  box-shadow: 0 4px 10px rgba(255, 216, 0, 0.12);
}

body.market-recycle .table-toolbar .toolbar-export-action:hover {
  background: #fffdf0;
  color: #111;
}

body.market-recycle .table-toolbar .toolbar-flash-action {
  border-color: #ff3b30;
  background: #ff3b30;
  box-shadow: 0 8px 18px rgba(255, 59, 48, 0.22);
  color: #fff;
}

body.market-recycle .table-toolbar .toolbar-flash-action:hover {
  border-color: #ff4f45;
  background: #ff4f45;
  color: #fff;
}

body.market-recycle .table-toolbar .toolbar-recycle-submit-action {
  border-color: #ff3b30;
  background: #ff3b30;
  box-shadow: 0 8px 18px rgba(255, 59, 48, 0.22);
  color: #fff;
}

body.market-recycle .table-toolbar .toolbar-recycle-submit-action:hover {
  border-color: #ff4f45;
  background: #ff4f45;
  color: #fff;
}

body.market-recycle .table-toolbar .toolbar-price-lookup-action {
  border-color: #ffd800;
  background: #fff3b0;
  box-shadow: none;
  color: #1b1b1b;
}

body.market-recycle .bid-analysis {
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

body.market-recycle .bid-analysis-option {
  border-radius: 999px;
}

body.market-recycle .bid-analysis-option.is-active {
  border-color: #ffd800;
  background: #fff3b0;
  color: #111;
}

body.market-recycle .ant-table-wrapper {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.market-recycle .ant-table {
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0 10px;
}

body.market-recycle .ant-table thead {
  display: none;
}

body.market-recycle .recycle-card-row td {
  border: 0;
  background: transparent;
  padding: 0;
}

body.market-recycle .recycle-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 12px;
  min-height: 104px;
  border-radius: 12px;
  background: #fff;
  padding: 16px 18px;
}

body.market-recycle .recycle-card-main {
  min-width: 0;
  cursor: pointer;
}

body.market-recycle .recycle-card-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2b2b2b;
}

body.market-recycle .recycle-grade-badge {
  flex: 0 0 auto;
  min-width: 42px;
  height: 28px;
  border-radius: 4px;
  background: #ffe780;
  color: #8b210f;
  padding: 0 7px;
  font-size: 16px;
  font-weight: 900;
  line-height: 28px;
  text-align: center;
}

body.market-recycle .recycle-card-title strong {
  min-width: 0;
  color: #2b2b2b;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.market-recycle .recycle-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 6px;
}

body.market-recycle .recycle-source-badge {
  flex: 0 0 auto;
  border-radius: 4px;
  background: #fff1bf;
  color: #df5400;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: 900;
}

body.market-recycle .recycle-card-meta em {
  min-width: 0;
  overflow: hidden;
  color: #4a4a4a;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.market-recycle .recycle-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

body.market-recycle .recycle-card-price span {
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 800;
}

body.market-recycle .recycle-card-price strong {
  color: #ff3b30;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

body.market-recycle .recycle-card-price .recycle-card-fengjihui-price,
.table-fengjihui-price-hint,
.market-report-fengjihui-price,
.recycle-report-fengjihui-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

body.market-recycle .recycle-card-price .recycle-card-fengjihui-price {
  padding: 4px 8px;
}

body.market-recycle .recycle-card-price .recycle-card-fengjihui-price span,
body.market-recycle .recycle-card-price .recycle-card-fengjihui-price strong,
.table-fengjihui-price-hint span,
.table-fengjihui-price-hint strong,
.market-report-fengjihui-price span,
.market-report-fengjihui-price strong,
.recycle-report-fengjihui-price span,
.recycle-report-fengjihui-price strong {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.table-fengjihui-price-hint {
  width: max-content;
  margin-top: 4px;
  padding: 3px 7px;
  white-space: nowrap;
}

body.market-recycle .recycle-card-side {
  display: grid;
  justify-items: end;
  gap: 7px;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #ffd800;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

body.market-recycle .recycle-card-bid-set {
  flex-direction: column;
  background: #fff3b0;
  color: #2b2b2b;
  font-size: 12px;
}

body.market-recycle .recycle-card-bid-set strong {
  color: #ff3b30;
  font-size: 16px;
  line-height: 1.1;
}

body.market-recycle .recycle-card-report {
  width: 104px;
  height: 30px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #f7f7f7;
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

body.market-recycle .recycle-card-price-input {
  width: 104px;
  height: 42px;
  border: 2px solid #ffd800;
  border-radius: 8px;
  background: #fff;
  color: #ff3b30;
  font-size: 18px;
  font-weight: 950;
}

body.market-recycle .table-link {
  color: #111;
  font-weight: 900;
}

body.market-recycle .price-input:focus {
  border-color: #ffd800;
  box-shadow: 0 0 0 3px rgba(255, 216, 0, 0.22);
}

body.market-recycle .table-pagination {
  min-height: 54px;
  color: #555;
  font-size: 15px;
}

body.market-recycle .page-summary strong {
  color: #ff3b30;
}

body.market-recycle .page-size-control select,
body.market-recycle .page-jump-control input {
  border: 0;
  border-radius: 999px;
  background: #fff;
}

body.market-recycle .auto-update-switch {
  background: #dedede;
}

body.market-recycle .auto-update-toggle input:checked + .auto-update-switch,
body.market-recycle .auto-update-progress-bar span {
  background: #ffd800;
}

body.market-recycle .auto-update-progress-bar {
  background: #eeeeee;
}

@media (max-width: 980px) {
  body.market-recycle .auction-box {
    max-width: none;
    border-radius: 0 0 18px 18px;
  }

  body.market-recycle .auction-tips {
    position: static;
    width: auto;
    min-height: auto;
    margin-top: 0;
  }

  body.market-recycle .market-conditions-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.market-recycle .recycle-product-card {
    grid-template-columns: minmax(0, 1fr);
  }

  body.market-recycle .recycle-card-side {
    justify-items: stretch;
  }

  body.market-recycle .recycle-card-bid-button,
  body.market-recycle .recycle-card-bid-set,
  body.market-recycle .recycle-card-price-input {
    width: 100%;
  }
}

.ant-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.45);
}

.ant-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

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

.report-modal {
  width: 860px;
}

.feedback-modal {
  width: 640px;
}

.notice-modal {
  width: min(1280px, calc(100vw - 48px));
}

.ant-modal-content {
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.ant-modal-header,
.ant-modal-footer {
  padding: 16px 24px;
}

.ant-modal-header {
  border-bottom: 1px solid var(--line);
}

.ant-modal-title {
  font-weight: 500;
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.report-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.feedback-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice-header .ant-modal-title {
  color: #1f2937;
  font-size: 16px;
  font-weight: 780;
}

.feedback-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.modal-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

.ant-modal-body {
  padding: 24px;
  color: #99999f;
}

.feedback-body {
  display: grid;
  gap: 16px;
  color: var(--text);
}

.notice-body {
  display: grid;
  gap: 22px;
  color: var(--text);
}

.notice-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.notice-toolbar select {
  width: 220px;
  height: 38px;
  border: 1px solid #d9dfe8;
  border-radius: 2px;
  background: #fff;
  color: #6b7280;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
}

.notice-toolbar select.custom-select-source {
  display: none !important;
}

.notice-toolbar .market-select {
  position: relative;
  width: 220px;
  flex: 0 0 220px;
}

.notice-toolbar .market-select-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  color: #172033;
  font: inherit;
  font-weight: 650;
  text-align: left;
  outline: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.notice-toolbar .market-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-toolbar .market-select-trigger i {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-right: 2px solid #3478f6;
  border-bottom: 2px solid #3478f6;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.notice-toolbar .market-select.is-open .market-select-trigger,
.notice-toolbar .market-select-trigger:focus-visible {
  border-color: #3478f6;
  box-shadow: 0 0 0 3px rgba(52, 120, 246, 0.14);
}

.notice-toolbar .market-select.is-open .market-select-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.notice-toolbar .market-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1700;
  min-width: 100%;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #d6dfec;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  box-shadow: 0 18px 42px rgba(21, 35, 54, 0.15);
}

.notice-toolbar .market-select-menu.hidden {
  display: none !important;
}

.notice-toolbar .market-select-option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0 16px 0 44px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 760;
  text-align: left;
  white-space: nowrap;
}

.notice-toolbar .market-select-option:hover,
.notice-toolbar .market-select-option:focus-visible {
  background: #f5f8ff;
  outline: 0;
}

.notice-toolbar .market-select-option.is-active {
  background: #eaf2ff;
  color: #185abc;
}

.notice-toolbar .market-select-option.is-active::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3478f6;
  transform: translate(-50%, -50%);
}

.notice-table-wrap {
  position: relative;
  min-height: 520px;
  overflow: auto;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.notice-table th {
  height: 46px;
  background: #fafafa;
  color: #1f2937;
  font-size: 14px;
  font-weight: 760;
  text-align: left;
}

.notice-table th:first-child,
.notice-table td:first-child {
  width: 140px;
  padding-left: 28px;
}

.notice-table th:last-child,
.notice-table td:last-child {
  width: 220px;
  text-align: center;
}

.notice-table td {
  height: 58px;
  border-bottom: 1px solid #eef1f5;
  color: #374151;
  font-size: 14px;
  vertical-align: middle;
}

.notice-content {
  display: inline-block;
  max-width: 100%;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: #5d9bff;
  padding: 0;
  font-weight: 650;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-content:hover {
  color: #1677ff;
  text-decoration: underline;
}

.notice-content.is-muted {
  color: #9ca3af;
}

.notice-detail {
  display: grid;
  gap: 10px;
  border: 1px solid #dbe7f5;
  border-radius: 8px;
  background: #f8fbff;
  padding: 14px 16px;
}

.notice-detail > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.notice-detail span {
  min-width: 52px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #1677ff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
}

.notice-detail strong {
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-detail em {
  color: #64748b;
  font-style: normal;
  font-size: 13px;
  font-weight: 650;
}

.notice-detail p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.notice-empty {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: #8b95a5;
  font-size: 14px;
}

.notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.notice-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
}

.notice-page-button {
  min-width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #374151;
  font-size: 14px;
}

.notice-page-button.is-active {
  border-color: #1677ff;
  color: #1677ff;
}

.notice-page-button:disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.notice-footer-actions {
  display: flex;
  gap: 10px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: minmax(150px, 180px) 1fr;
  gap: 14px;
}

.feedback-field {
  display: grid;
  gap: 8px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 760;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.feedback-field input,
.feedback-field select {
  height: 40px;
  padding: 0 12px;
}

.feedback-field select.custom-select-source {
  display: none !important;
}

.feedback-field .market-select {
  position: relative;
  width: 100%;
}

.feedback-field .market-select-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #fff;
  padding: 0 12px;
  color: #172033;
  font: inherit;
  font-weight: 650;
  text-align: left;
  outline: 0;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.feedback-field .market-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feedback-field .market-select-trigger i {
  justify-self: center;
  width: 9px;
  height: 9px;
  border-right: 2px solid #3478f6;
  border-bottom: 2px solid #3478f6;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.feedback-field .market-select.is-open .market-select-trigger,
.feedback-field .market-select-trigger:focus-visible {
  border-color: #3478f6;
  box-shadow: 0 0 0 3px rgba(52, 120, 246, 0.14);
}

.feedback-field .market-select.is-open .market-select-trigger i {
  transform: translateY(2px) rotate(225deg);
}

.feedback-field .market-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 1700;
  min-width: 100%;
  max-height: 260px;
  overflow: auto;
  border: 1px solid #d6dfec;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  box-shadow: 0 18px 42px rgba(21, 35, 54, 0.15);
}

.feedback-field .market-select-menu.hidden {
  display: none !important;
}

.feedback-field .market-select-option {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: #fff;
  padding: 0 16px 0 44px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 760;
  text-align: left;
  white-space: nowrap;
}

.feedback-field .market-select-option:hover,
.feedback-field .market-select-option:focus-visible {
  background: #f5f8ff;
  outline: 0;
}

.feedback-field .market-select-option.is-active {
  background: #eaf2ff;
  color: #185abc;
}

.feedback-field .market-select-option.is-active::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3478f6;
  transform: translate(-50%, -50%);
}

.feedback-field textarea {
  min-height: 150px;
  padding: 12px;
  line-height: 1.6;
  resize: vertical;
}

.feedback-field input:focus,
.feedback-field select:focus,
.feedback-field textarea:focus {
  border-color: #1677ff;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.feedback-context {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid #e6edf6;
  border-radius: 8px;
  background: #f8fbff;
  color: #64748b;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 650;
}

.feedback-screenshot-box {
  display: grid;
  gap: 12px;
  border: 1px solid #dbe6f3;
  border-radius: 10px;
  background: #f8fbff;
  padding: 12px;
}

.feedback-screenshot-box > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feedback-screenshot-box strong {
  color: #172033;
  font-size: 13px;
  font-weight: 820;
}

.feedback-screenshot-box span {
  color: #64748b;
  font-size: 13px;
  font-weight: 650;
}

.feedback-screenshot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feedback-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.feedback-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.feedback-screenshot-preview {
  width: 100%;
  max-height: 220px;
  border: 1px solid #d7e0ec;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.feedback-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 760px) {
  .feedback-modal-wrap {
    padding: 72px 14px 24px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

.report-body {
  max-height: min(68vh, 680px);
  overflow: auto;
  color: var(--text);
  font-size: 13px;
}

.report-view-tabs {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 16px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
}

.report-view-tab {
  min-width: 132px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.report-view-tab.is-active {
  background: #1677ff;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 119, 255, 0.18);
}

.report-open-link-muted {
  border-color: #d9d9d9;
  background: #f5f5f5;
  color: #595959 !important;
}

.taohuo-quality-list {
  display: grid;
  gap: 10px;
}

.taohuo-quality-item {
  position: relative;
  padding-left: 18px;
  color: rgba(0, 0, 0, 0.82);
  line-height: 1.65;
  white-space: normal;
  word-break: break-word;
}

.taohuo-quality-item::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1677ff;
}

.taohuo-native-report {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 28px;
  min-height: 520px;
}

.taohuo-native-media {
  min-width: 0;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.taohuo-native-main-image {
  overflow: hidden;
  border-radius: 4px;
  background: #d9d9d9;
}

.taohuo-native-main-image button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
}

.taohuo-native-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.taohuo-native-product {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  color: #1f2430;
}

.taohuo-native-product span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #262833;
  color: #f7df83;
  font-size: 16px;
  font-weight: 800;
}

.taohuo-native-product strong {
  min-width: 0;
  color: #1f2430;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.taohuo-native-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.taohuo-native-thumbs button {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f5f5f5;
  padding: 0;
}

.taohuo-native-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.taohuo-native-detail {
  min-width: 0;
}

.taohuo-engineer-note {
  margin-bottom: 16px;
  border: 1px solid #ffe0d6;
  border-radius: 6px;
  background: #fff7f3;
  padding: 14px 16px;
}

.taohuo-engineer-note strong {
  display: block;
  color: #202124;
  font-size: 15px;
  font-weight: 700;
}

.taohuo-engineer-note p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}

.taohuo-native-detail .report-result-panel {
  margin-top: 0;
  border: 0;
  border-radius: 0;
}

.taohuo-native-detail .report-result-panel + .report-result-panel {
  margin-top: 18px;
}

.taohuo-native-detail .report-result-header {
  min-height: 54px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.taohuo-native-detail .report-result-body {
  padding: 18px 0 0;
  background: #fff;
}

.taohuo-native-detail .report-result-row {
  align-items: center;
  min-height: 34px;
  font-size: 15px;
}

.taohuo-native-detail .report-result-images {
  gap: 10px;
}

.taohuo-native-detail .report-result-image {
  width: 56px;
  height: 56px;
  border-radius: 6px;
}

.taohuo-report-source {
  margin-top: 18px;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.report-summary-item {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fafafa;
  padding: 10px 12px;
}

.report-summary-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.report-summary-item strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  word-break: break-all;
}

.report-price-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: -6px 0 18px;
}

.report-price-item {
  border: 1px solid #ffd591;
  border-radius: 2px;
  background: #fff7e6;
  padding: 12px 14px;
}

button.report-price-item,
button.recycle-report-reference-price {
  width: 100%;
  font: inherit;
  color: inherit;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.report-price-item-pjt {
  transition: border-color 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.report-price-item-pjt:hover:not(:disabled) {
  border-color: #f59e0b;
  background: #fff3d7;
}

.report-price-item-pjt:focus-visible {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.report-price-item-pjt.is-loading,
.report-price-item-pjt:disabled {
  cursor: wait;
  opacity: 0.82;
}

.report-price-item span {
  display: block;
  color: #8c5a00;
  font-size: 12px;
}

.report-price-item strong {
  display: block;
  margin-top: 5px;
  color: #d46b08;
  font-size: 18px;
  font-weight: 600;
}

.report-price-item-zz {
  position: relative;
  padding-bottom: 14px;
}

.zz-settle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.zz-price-flip {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(212, 107, 8, 0.24);
  border-radius: 999px;
  background: #fff7e6;
  color: #d46b08;
  cursor: pointer;
  line-height: 1;
}

.zz-price-flip-icon {
  position: relative;
  display: block;
  width: 25px;
  height: 22px;
}

.zz-price-flip-arrow {
  position: absolute;
  top: 0;
  display: block;
  width: 12px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
  transition: transform 0.16s ease;
}

.zz-price-flip-arrow-left {
  left: 1px;
}

.zz-price-flip-arrow-right {
  right: 1px;
}

.zz-price-flip.is-market-view .zz-price-flip-arrow-left {
  transform: rotate(180deg);
}

.zz-price-flip.is-market-view .zz-price-flip-arrow-right {
  transform: rotate(180deg);
}

.zz-price-flip:hover {
  border-color: #d46b08;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.16);
}

.zz-settle-head strong {
  margin-top: 0;
  text-align: right;
}

.zz-settle-current {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: #8c5a00;
  font-size: 12px;
}

.zz-settle-current span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(212, 107, 8, 0.28);
  border-radius: 4px;
  background: #fff;
  padding: 0 8px;
  color: #ad4e00;
  font-weight: 700;
}

.zz-settle-current em {
  min-width: 0;
  overflow: hidden;
  color: #8c5a00;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zz-settle-grade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.zz-settle-grade {
  position: relative;
  min-height: 52px;
  border: 1px solid rgba(212, 107, 8, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 8px;
  text-align: left;
}

.zz-settle-grade.is-reason-open::after {
  content: "!";
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.26);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.zz-settle-grade.is-battery-mode {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.16);
}

.zz-settle-grade.is-battery-mode::after,
.zz-settle-grade.is-battery-mode.is-reason-open::after {
  content: "";
  position: absolute;
  top: -9px;
  right: -10px;
  display: block;
  width: 30px;
  height: 16px;
  border: 2px solid #8a8f98;
  border-radius: 6px;
  background:
    linear-gradient(#12d85d, #12d85d) 4px 3px / 19px 6px no-repeat,
    #f8fafc;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.16);
  box-sizing: border-box;
}

.zz-settle-grade.is-battery-mode::before,
.zz-settle-grade.is-battery-mode.is-reason-open::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -15px;
  z-index: 1;
  width: 5px;
  height: 8px;
  border-radius: 0 5px 5px 0;
  background: #8a8f98;
}

.zz-settle-grade.is-battery-mode span,
.zz-settle-grade.is-battery-mode strong {
  color: #15803d;
}

.zz-settle-grade:hover,
.zz-settle-grade.is-active {
  border-color: #d46b08;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(250, 173, 20, 0.16);
}

.zz-settle-grade.is-battery-mode,
.zz-settle-grade.is-battery-mode:hover,
.zz-settle-grade.is-battery-mode.is-active {
  border-color: #16a34a;
  background: #f0fdf4;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.16);
}

.zz-settle-grade.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.zz-settle-grade.is-unavailable {
  border-color: rgba(148, 163, 184, 0.42);
  background: rgba(248, 250, 252, 0.86);
}

.zz-settle-grade.is-unavailable strong {
  color: #64748b;
}

.zz-settle-grade.is-unavailable:hover,
.zz-settle-grade.is-unavailable.is-active {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.16);
}

.zz-settle-grade span,
.zz-settle-grade strong {
  display: block;
}

.zz-settle-grade span {
  color: #8c5a00;
  font-size: 12px;
  font-weight: 700;
}

.zz-settle-grade strong {
  margin-top: 3px;
  overflow: hidden;
  color: #d46b08;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zz-settle-reason-popover {
  position: relative;
  margin-top: 10px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0, #fff);
  box-shadow: 0 12px 28px rgba(146, 64, 14, 0.14);
  padding: 12px 38px 12px 12px;
  color: #7c2d12;
}

.report-inline-notice {
  position: relative;
  margin-top: 10px;
  border: 1px solid rgba(245, 158, 11, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7ed 0%, #fffdf7 100%);
  box-shadow: inset 4px 0 0 #f97316;
  padding: 11px 38px 11px 12px;
  color: #7c2d12;
  text-align: left;
}

.report-inline-notice strong {
  display: block;
  margin-top: 4px;
  color: #9a3412;
  font-size: 15px;
  font-weight: 900;
}

.report-inline-notice p {
  margin: 6px 0 0;
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.55;
}

.zz-settle-reason-popover::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 28px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(245, 158, 11, 0.45);
  border-left: 1px solid rgba(245, 158, 11, 0.45);
  background: #fffaf0;
  transform: rotate(45deg);
}

.zz-settle-reason-kicker {
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
}

.zz-settle-reason-popover strong {
  margin-top: 4px;
  color: #9a3412;
  font-size: 15px;
}

.zz-settle-reason-popover p {
  margin: 6px 0 0;
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.55;
}

.zz-settle-reason-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 50%;
  background: #fff;
  color: #b45309;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
}

.report-section {
  border: 1px solid var(--line);
  border-radius: 2px;
  margin-top: 12px;
  overflow: hidden;
}

.report-section-title {
  background: #fafafa;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
}

.report-section-content {
  padding: 12px;
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  text-align: justify;
  white-space: pre-wrap;
  word-break: break-all;
}

.report-priority {
  border-color: #ffccc7;
}

.report-priority .report-section-title {
  border-bottom-color: #ffccc7;
  background: #fff1f0;
  color: #cf1322;
}

.downloaded-report-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  white-space: normal;
}

.downloaded-report-gallery::-webkit-scrollbar {
  height: 8px;
}

.downloaded-report-gallery::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 999px;
}

.downloaded-report-image {
  display: flex;
  flex: 0 0 220px;
  flex-direction: column;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  color: var(--text);
  overflow: hidden;
  scroll-snap-align: start;
  text-align: left;
  user-select: none;
}

.downloaded-report-image:hover {
  border-color: var(--primary);
}

.downloaded-report-image:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.downloaded-report-image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #fafafa;
  pointer-events: none;
}

.downloaded-report-image span {
  display: block;
  min-height: 38px;
  padding: 8px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  line-height: 1.35;
  word-break: break-word;
}

.report-result-panel {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  white-space: normal;
}

.report-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 16px 18px;
  background: #fff;
  color: #202124;
}

.report-result-header strong {
  font-size: 16px;
  font-weight: 600;
}

.report-result-count {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}

.report-result-count i,
.report-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-style: normal;
  font-weight: 700;
}

.report-result-count i {
  width: 22px;
  height: 22px;
  font-size: 16px;
}

.report-result-count b {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
}

.report-result-body {
  padding: 18px 20px 22px;
  background: #fafafa;
}

.report-result-group + .report-result-group {
  margin-top: 24px;
}

.report-result-group h4 {
  margin: 0 0 14px;
  color: #202124;
  font-size: 14px;
  font-weight: 600;
}

.report-result-list {
  display: grid;
  gap: 14px;
}

.report-result-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.45;
}

.report-result-text {
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 2px;
  word-break: break-word;
}

.report-result-icon {
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: #fff;
  font-size: 15px;
}

.report-result-images {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  margin-left: auto;
}

.report-result-image {
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.report-result-image:hover {
  border-color: var(--primary);
}

.report-result-image:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.report-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.report-result-abnormal .report-result-count i,
.report-result-abnormal .report-result-icon {
  background: #fa541c;
}

.report-result-normal .report-result-count i,
.report-result-normal .report-result-icon {
  background: #16c784;
}

.report-abnormal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  white-space: normal;
}

.report-abnormal-list span {
  border: 1px solid #ffccc7;
  border-radius: 2px;
  background: #fff1f0;
  color: #cf1322;
  padding: 4px 8px;
  font-size: 12px;
}

.report-empty {
  border: 1px dashed var(--border);
  border-radius: 2px;
  background: #fafafa;
  color: var(--muted);
  padding: 16px;
  text-align: center;
  white-space: normal;
}

.report-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}

.report-link-row a {
  color: var(--primary);
  text-decoration: none;
}

.report-open-link {
  flex: 0 0 auto;
  border: 1px solid var(--primary);
  border-radius: 2px;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff !important;
}

.report-url {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fafafa;
  color: rgba(0, 0, 0, 0.55);
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 10px;
  word-break: break-all;
}

.captcha-login {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.captcha-login img {
  width: 120px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: contain;
}

.captcha-login input {
  width: 140px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0 10px;
}

.report-error {
  margin-bottom: 10px;
  border: 1px solid #ffccc7;
  background: #fff1f0;
  color: #cf1322;
  padding: 8px 12px;
}

.report-frame {
  width: 100%;
  height: min(70vh, 760px);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.report-modal.is-market-report {
  width: min(1320px, calc(100vw - 28px));
}

.report-modal.is-market-report .report-body {
  max-height: calc(100vh - 146px);
  padding: 16px;
  background: linear-gradient(180deg, #f6fbff 0, #ffffff 44%);
}

.market-report {
  color: #1f2937;
}

.market-report-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #cfe4ff;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef7ff 0%, #ffffff 58%);
  padding: 16px 18px;
}

.market-report-hero > div:first-child > span {
  display: block;
  color: #1677ff;
  font-size: 12px;
  font-weight: 850;
}

.market-report-title-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
}

.market-report-grade-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 54px;
  height: 38px;
  border-radius: 999px;
  background: #252833;
  color: #f7dfbd;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.market-report-title-line h2 {
  margin: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.3;
  word-break: break-word;
}

.market-report-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 480px;
}

.market-report-hero-tags em {
  border: 1px solid #cfe4ff;
  border-radius: 999px;
  background: #fff;
  color: #2563eb;
  padding: 7px 11px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.market-report-summary {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.market-report-summary div {
  min-height: 58px;
  border: 1px solid #e2ebf6;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px 10px;
}

.market-report-summary span {
  display: block;
  color: #7b8494;
  font-size: 11px;
}

.market-report-summary strong {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-report-alert-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid #ffccc7;
  border-radius: 10px;
  background: #fff7f7;
  padding: 12px;
}

.market-report-alert-chips span {
  border: 1px solid #ffb3b3;
  border-radius: 6px;
  background: #fff;
  color: #cf1322;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.market-report-photo-strip {
  margin-top: 12px;
  border: 1px solid #dfe8f3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.market-report-photo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf2f7;
  padding: 10px 14px;
}

.market-report-photo-head span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 850;
}

.market-report-photo-head strong {
  color: #1677ff;
  font-size: 13px;
  font-weight: 850;
}

.market-report-photo-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px 8px;
  /* 去 scroll-snap(2026-06-24):鼠标滚轮 scrollLeft+=deltaY 瞬间跳 + snap 吸附回拉=横滚顿挫;改 contain 防溢出 */
  overscroll-behavior-x: contain;
  scrollbar-color: #7b8794 #eef2f7;
  scrollbar-width: thin;
}

.market-report-photo-gallery::-webkit-scrollbar {
  height: 10px;
}

.market-report-photo-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #eef2f7;
}

.market-report-photo-gallery::-webkit-scrollbar-thumb {
  border: 2px solid #eef2f7;
  border-radius: 999px;
  background: #7b8794;
}

.market-report-photo-gallery button {
  position: relative;
  flex: 0 0 138px;
  overflow: hidden;
  border: 1px solid #e5edf6;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  text-align: left;
  scroll-snap-align: start;
}

.market-report-photo-gallery button:hover {
  border-color: #1677ff;
}

.market-report-photo-gallery button.is-board {
  border-color: #bfdbfe;
}

.market-report-photo-gallery button.is-flaw {
  border-color: #fecaca;
  opacity: 0.82;
}

.market-report-photo-gallery img {
  display: block;
  width: 100%;
  height: 116px;
  background: #f8fafc;
  object-fit: contain;
}

.market-report-photo-gallery button.is-image-error::before {
  content: "图片加载失败";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  background: #f8fafc;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
}

.market-report-photo-gallery button.is-image-error img {
  visibility: hidden;
}

.market-report-photo-gallery span {
  display: block;
  overflow: hidden;
  padding: 7px 8px;
  color: #4b5563;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-report-photo-gallery em {
  float: right;
  color: #94a3b8;
  font-size: 11px;
  font-style: normal;
}

.market-report-scroll-track {
  height: 14px;
  margin: 0 14px 12px;
  border-radius: 999px;
  background: #eef2f7;
  cursor: pointer;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.market-report-scroll-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #7b8794;
  transition: margin-left 0.08s linear, width 0.12s ease, background 0.12s ease;
}

.market-report-scroll-track:hover span,
.market-report-scroll-track.is-dragging span {
  background: #4b5563;
}

.market-report-scroll-track.is-dragging {
  cursor: grabbing;
}

.market-report-scroll-track.is-disabled {
  cursor: default;
}

.market-report-scroll-track.is-disabled span {
  background: #cbd5e1;
}

.market-report-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: 14px;
  margin-top: 12px;
}

.market-report-results,
.market-report-price-panel,
.market-report-normal-summary,
.market-report-source {
  border: 1px solid #dfe8f3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.market-report-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  border-bottom: 1px solid #edf2f7;
  background: #fbfdff;
  padding: 12px 14px;
}

.market-report-panel-head span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.market-report-panel-head strong {
  display: block;
  margin-top: 2px;
  color: #111827;
  font-size: 18px;
  font-weight: 850;
}

.market-report-panel-head em {
  color: #1677ff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.market-report-engineer {
  margin: 14px 16px 0;
  border: 1px solid #dbeafe;
  border-radius: 10px;
  background: #eff6ff;
  padding: 12px 14px;
}

.market-report-engineer strong {
  display: block;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
}

.market-report-engineer p {
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.65;
  word-break: break-word;
}

.market-report-results .report-result-panel {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.market-report-results .report-result-panel + .report-result-panel {
  border-top: 1px solid #edf2f7;
}

.market-report-results .report-result-header {
  min-height: 52px;
  padding: 14px 18px;
  background: #fff;
}

.market-report-results .report-result-header strong {
  font-size: 16px;
  font-weight: 850;
}

.market-report-results .report-result-body {
  padding: 18px 20px 20px;
  background: #fff;
}

.market-report-results .report-result-group + .report-result-group {
  margin-top: 22px;
}

.market-report-results .report-result-group h4 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

.market-report-results .report-result-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  color: #5f6b7a;
  font-size: 14px;
  line-height: 1.55;
}

.market-report-results .report-result-row + .report-result-row {
  margin-top: 8px;
}

.market-report-results .report-result-text {
  padding-top: 0;
}

.market-report-results .report-result-images {
  gap: 8px;
}

.market-report-results .report-result-image {
  width: 58px;
  height: 58px;
  border-radius: 8px;
}

.market-report .report-result-abnormal .report-result-count i,
.market-report .report-result-abnormal .report-result-icon {
  background: #ff4d4f;
}

.market-report .report-result-normal .report-result-count i,
.market-report .report-result-normal .report-result-icon {
  background: #16c784;
}

.market-report-price-panel {
  padding: 14px;
}

.market-report-price-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 10px;
}

.market-report-start-price,
.market-report-bid-box,
.market-report-reference-price {
  border: 1px solid #cfe4ff;
  border-radius: 10px;
  background: linear-gradient(180deg, #f3f9ff, #fff);
  padding: 12px;
}

.market-report-start-price span,
.market-report-bid-box > span,
.market-report-reference-price span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.market-report-start-price strong,
.market-report-reference-price strong {
  display: block;
  margin-top: 8px;
  color: #1677ff;
  font-size: 22px;
  line-height: 1;
}

.market-report-fengjihui-price {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 4px 8px;
}

.market-report-start-price .market-report-fengjihui-price span,
.market-report-start-price .market-report-fengjihui-price strong {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.market-report-bid-control {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.market-report-bid-control input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 10px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.market-report-bid-control input.is-risk,
.market-report-bid-box.is-risk .market-report-bid-control input {
  border-color: #ff4d4f;
  background: #fff1f2;
  color: #cf1322;
}

.market-report-bid-control button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  background: #1677ff;
  color: #fff;
  padding: 0 16px;
  font-weight: 900;
}

.market-report-bid-control [data-report-recycle-submit] {
  background: #ff3b30;
  min-width: 104px;
}

.market-report-bid-box em {
  display: block;
  margin-top: 7px;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.market-report-bid-box.is-risk em {
  color: #cf1322;
  font-weight: 800;
}

.market-report-price-panel .report-price-item-zz {
  margin-top: 10px;
  border-color: #cfe4ff;
  border-radius: 10px;
  background: linear-gradient(180deg, #f3f9ff, #fff);
}

.market-report-price-panel .report-price-item-zz span,
.market-report-price-panel .report-price-item-zz em,
.market-report-price-panel .zz-settle-current span,
.market-report-price-panel .zz-settle-current em {
  color: #64748b;
}

.market-report-price-panel .report-price-item-zz strong {
  color: #1677ff;
}

.market-report-price-panel .zz-price-flip {
  border-color: rgba(22, 119, 255, 0.22);
  background: #eef6ff;
  color: #1677ff;
}

.market-report-price-panel .zz-settle-grade {
  border-radius: 8px;
}

.market-report-price-panel .zz-settle-grade.is-active {
  border-color: #1677ff;
  box-shadow: 0 0 0 2px rgba(22, 119, 255, 0.12);
}

.market-report-reference-price {
  width: 100%;
  margin-top: 10px;
  font: inherit;
  text-align: left;
}

.market-report-reference-price:hover:not(:disabled) {
  border-color: #1677ff;
  background: #eff6ff;
}

.market-report-normal-summary {
  margin-top: 12px;
}

.market-report-normal-summary > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
}

.market-report-normal-summary > div:last-child span {
  border: 1px solid #d1fae5;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.market-report-source {
  margin-top: 12px;
  padding: 12px 14px;
}

.market-report-source strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

.market-report-source p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.65;
  word-break: break-all;
}

@media (max-width: 1080px) {
  .market-report-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .market-report-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .report-modal.is-market-report .report-body {
    padding: 10px;
  }

  .market-report-hero {
    flex-direction: column;
  }

  .market-report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-report-price-top,
  .market-report-results .report-result-row {
    grid-template-columns: 1fr;
  }

  .market-report-photo-gallery button {
    flex-basis: 44%;
  }
}

.image-preview {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 18px 38px;
  background: rgba(0, 0, 0, 0.72);
}

.image-preview-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(98vw, 1480px);
  height: min(90vh, 1040px);
  overflow: hidden;
  touch-action: none;
}

.image-preview-stage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  background: #fff;
  object-fit: contain;
  transform-origin: center center;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition: none;
  user-select: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  will-change: transform;
}

.image-preview-stage img.is-zoomed {
  cursor: grab;
}

.image-preview-stage img.is-dragging {
  cursor: grabbing;
}

.image-preview-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.image-preview-tools {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.image-preview-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.image-preview-tools button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.image-preview-nav {
  position: fixed;
  top: 50%;
  width: 52px;
  height: 72px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 54px;
  line-height: 1;
}

.image-preview-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}

.image-preview-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.image-preview-prev {
  left: 24px;
}

.image-preview-next {
  right: 24px;
}

.image-preview-title {
  position: fixed;
  left: 32px;
  right: 32px;
  bottom: 38px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.image-preview-count {
  position: fixed;
  left: 32px;
  right: 32px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-align: center;
}

.image-preview-notice {
  position: fixed;
  left: 50%;
  bottom: 68px;
  z-index: 2;
  min-width: 132px;
  transform: translate(-50%, 8px);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

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

.ant-modal-footer {
  border-top: 1px solid var(--line);
  text-align: right;
}

@media (max-width: 1320px) {
  .skyeye-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .skyeye-category-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .skyeye-market-block,
  .skyeye-grade-block,
  .skyeye-lifecycle-block,
  .skyeye-hot-block {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 1100px) {
  .market-conditions-form {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .skyeye-header {
    flex-direction: column;
  }

  .skyeye-clock {
    width: 100%;
    text-align: left;
  }

  .skyeye-grid {
    grid-template-columns: 1fr;
  }

  .skyeye-market-block,
  .skyeye-grade-block,
  .skyeye-lifecycle-block,
  .skyeye-hot-block {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .ant-layout-sider {
    position: static;
    width: 100%;
    height: auto;
  }

  .ant-layout {
    display: block;
  }

  .ant-layout-sider + .ant-layout {
    margin-left: 0;
  }

  .collapse-trigger {
    display: none;
  }

  .ant-menu {
    display: flex;
    overflow-x: auto;
    padding: 0;
  }

  .ant-menu-item {
    flex: 0 0 auto;
  }

  .market-submenu {
    display: none;
  }

  .ant-layout-content,
  .market-panel {
    padding: 12px;
  }

  .skyeye-panel {
    padding: 0;
  }

  .skyeye-screen {
    min-height: auto;
    padding: 14px;
  }

  .skyeye-header h2 {
    font-size: 22px;
  }

  .skyeye-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skyeye-kpi {
    min-height: 104px;
    padding: 12px;
  }

  .skyeye-kpi strong {
    font-size: 23px;
  }

  .skyeye-category-panel {
    padding: 12px;
  }

  .skyeye-category-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skyeye-category-card strong {
    font-size: 21px;
  }

  .skyeye-block {
    min-height: auto;
    padding: 12px;
  }

  .skyeye-market-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skyeye-hot-row {
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .skyeye-hot-row strong,
  .skyeye-hot-row em {
    display: none;
  }

  .skyeye-matrix-table {
    min-width: 520px;
  }

  .skyeye-grade-matrix {
    overflow-x: auto;
  }

  .market-conditions-form {
    grid-template-columns: 1fr;
  }

  .shenjiying-panel {
    grid-template-columns: 1fr;
  }

  .shenjiying-panel-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ant-form-item {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .engineer-filter {
    grid-column: auto;
  }

  .table-toolbar,
  .table-pagination,
  .history-form {
    align-items: stretch;
    flex-direction: column;
  }

  .file-button,
  .table-toolbar .ant-btn,
  .page-jump-control,
  .history-form .ant-btn,
  .history-form input {
    width: 100%;
  }

  .bid-analysis {
    align-items: stretch;
  }

  .bid-analysis-title,
  .bid-analysis-summary {
    width: 100%;
  }

  .bid-analysis-option {
    flex: 1 1 calc(50% - 4px);
  }

  .page-jump-control input {
    flex: 1;
    width: auto;
  }

  .page-summary {
    margin-right: 0;
  }

  .price-system-kpis,
  .price-system-grid {
    grid-template-columns: 1fr;
  }

  .price-system-task-block,
  .price-system-history-block {
    grid-column: auto;
  }

  .image-preview {
    padding: 60px 8px 42px;
  }

  .image-preview-stage {
    width: 100vw;
    height: calc(100vh - 112px);
  }

  .image-preview-tools {
    top: 14px;
    left: 16px;
    right: 58px;
    transform: none;
  }

  .image-preview-tools button {
    flex: 1;
    min-width: 0;
    height: 34px;
    padding: 0 8px;
    font-size: 16px;
  }

  .image-preview-nav {
    width: 42px;
    height: 58px;
    font-size: 42px;
  }

  .image-preview-prev {
    left: 8px;
  }

  .image-preview-next {
    right: 8px;
  }

  .report-summary {
    grid-template-columns: 1fr;
  }

  .report-price-strip {
    grid-template-columns: 1fr;
  }

  .zz-settle-grade-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .report-result-row {
    flex-wrap: wrap;
  }

  .report-result-text {
    flex-basis: calc(100% - 34px);
  }

  .report-result-images {
    width: 100%;
    margin-left: 34px;
  }
}

/* UI pass 2026-06-06: cleaner operations-console layout. */
:root {
  --primary: #1769e0;
  --primary-hover: #2a7df0;
  --success: #0f9f8f;
  --sider: #132337;
  --sider-light: #182b42;
  --sider-hover: #213852;
  --bg: #f5f7fb;
  --text: rgba(18, 28, 45, 0.9);
  --muted: rgba(18, 28, 45, 0.56);
  --line: #e8edf3;
  --border: #d8e0ea;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --shadow-soft: 0 14px 34px rgba(19, 35, 55, 0.08);
  --shadow-hover: 0 18px 42px rgba(19, 35, 55, 0.12);
}

body {
  background:
    linear-gradient(180deg, rgba(232, 240, 250, 0.72) 0, rgba(245, 247, 251, 0) 280px),
    var(--bg);
}

.ant-layout-sider {
  width: 236px;
  background:
    linear-gradient(180deg, rgba(42, 125, 240, 0.08) 0%, rgba(15, 159, 143, 0.05) 46%, transparent 100%),
    var(--sider);
  box-shadow: 4px 0 24px rgba(19, 35, 55, 0.22);
}

.ant-pro-sider-logo {
  height: 68px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(232, 237, 243, 0.08);
}

.ant-pro-sider-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.ant-pro-sider-logo h1 {
  font-size: 18px;
  font-weight: 800;
}

.ant-menu {
  max-height: calc(100vh - 116px);
  padding: 14px 10px 64px;
  overflow-y: auto;
}

.ant-menu::-webkit-scrollbar,
.rich-filter-sidebar::-webkit-scrollbar,
.rich-filter-content::-webkit-scrollbar,
.ant-tabs::-webkit-scrollbar,
.ant-table-wrapper::-webkit-scrollbar,
.report-body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.ant-menu::-webkit-scrollbar-thumb,
.rich-filter-sidebar::-webkit-scrollbar-thumb,
.rich-filter-content::-webkit-scrollbar-thumb,
.ant-tabs::-webkit-scrollbar-thumb,
.ant-table-wrapper::-webkit-scrollbar-thumb,
.report-body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(126, 146, 173, 0.36);
}

.ant-menu-item {
  height: 44px;
  margin: 4px 0;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(232, 240, 250, 0.72);
  font-weight: 650;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.ant-menu-item:hover,
.market-subitem:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ant-menu-item-selected,
.market-subitem.is-active {
  color: #fff;
  background: rgba(42, 125, 240, 0.18);
}

.ant-menu-item[data-menu-key="auction"] {
  background: linear-gradient(135deg, #1769e0 0%, #0f9f8f 100%);
  box-shadow: 0 10px 22px rgba(23, 105, 224, 0.28);
}

.market-submenu {
  position: relative;
  gap: 4px;
  margin: 4px 0 14px;
  padding: 6px 0 6px 14px;
}

.market-submenu::before {
  position: absolute;
  inset: 8px auto 8px 6px;
  width: 1px;
  background: rgba(232, 240, 250, 0.14);
  content: "";
}

.market-subitem {
  min-height: 40px;
  border-radius: 8px;
  color: rgba(232, 240, 250, 0.62);
  padding: 6px 10px;
  transition: background 0.16s ease, color 0.16s ease;
}

.market-subitem strong {
  font-size: 12px;
  font-weight: 650;
  line-height: 17px;
}

.collapse-trigger {
  height: 52px;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(232, 237, 243, 0.08);
}

.ant-layout-sider + .ant-layout {
  margin-left: 236px;
}

.sider-collapsed .ant-layout-sider {
  width: 64px;
}

.sider-collapsed .ant-layout-sider + .ant-layout {
  margin-left: 64px;
}

.sider-collapsed .ant-menu {
  padding-inline: 8px;
}

.sider-collapsed .ant-menu-item {
  width: 48px;
  height: 44px;
}

.ant-pro-global-header {
  height: 62px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(216, 224, 234, 0.72);
  box-shadow: none;
}

.breadcrumb {
  color: rgba(18, 28, 45, 0.62);
  font-size: 13px;
  font-weight: 650;
}

.header-right {
  color: rgba(18, 28, 45, 0.62);
  font-weight: 650;
}

.ant-spin-dot-small {
  border-color: rgba(23, 105, 224, 0.14);
  border-top-color: var(--primary);
}

.ant-layout-content {
  padding: 24px 28px 28px;
}

.page-card {
  min-height: calc(100vh - 114px);
  overflow: hidden;
  border: 1px solid rgba(216, 224, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.ant-tabs {
  height: 58px;
  gap: 4px;
  padding: 0 18px;
  background: rgba(248, 250, 252, 0.86);
  border-bottom-color: var(--line);
}

.ant-tabs-tab {
  height: 58px;
  margin: 0;
  border-radius: 6px;
  padding: 0 14px;
  color: rgba(18, 28, 45, 0.66);
  font-weight: 700;
}

.ant-tabs-tab:hover {
  color: var(--primary);
  background: rgba(23, 105, 224, 0.06);
}

.ant-tabs-tab-active {
  color: var(--primary);
  background: #fff;
}

.ant-tabs-tab-active::after {
  right: 14px;
  bottom: 9px;
  left: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--success));
}

.market-panel {
  padding: 22px;
}

.market-conditions-form {
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 12px 14px;
  margin: 0 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 16px;
}

.ant-form-item {
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 40px;
  padding: 0;
}

.ant-form-item span {
  color: rgba(18, 28, 45, 0.6);
  font-size: 13px;
  font-weight: 650;
}

.ant-form-item select,
.ant-form-item input,
.history-form input,
.rich-filter-trigger,
.auto-update-field .auto-update-toggle,
.reverse-check,
.page-size-control select,
.page-jump-control input,
.captcha-login input,
.price-input {
  height: 36px;
  border-color: var(--border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.ant-form-item select:hover,
.ant-form-item input:hover,
.history-form input:hover,
.rich-filter-trigger:hover,
.reverse-check:hover,
.page-size-control select:hover,
.page-jump-control input:hover,
.price-input:hover {
  border-color: #9db6d6;
}

.ant-form-item select:focus,
.ant-form-item input:focus,
.history-form input:focus,
.captcha-login input:focus,
.price-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 105, 224, 0.12);
}

.category-filter-field {
  min-height: 42px;
}

.category-filter-chip {
  height: 34px;
  border-color: var(--border);
  border-radius: 999px;
  background: #fff;
  color: rgba(18, 28, 45, 0.72);
}

.category-filter-chip strong {
  background: #eef3f8;
  color: rgba(18, 28, 45, 0.52);
}

.category-filter-chip:hover,
.category-filter-chip.is-active {
  border-color: rgba(23, 105, 224, 0.32);
  background: #eff6ff;
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(23, 105, 224, 0.08);
}

.rich-filter-trigger {
  height: 36px;
  border-color: var(--border);
}

.rich-filter-trigger strong {
  font-size: 14px;
  font-weight: 650;
}

.rich-filter-panel {
  border-color: var(--border);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(19, 35, 55, 0.18);
}

.rich-filter-side-item,
.rich-filter-option {
  border-radius: 6px;
}

.rich-filter-option:hover,
.rich-filter-option.is-active {
  border-color: rgba(23, 105, 224, 0.34);
  background: #eff6ff;
  color: var(--primary);
}

.engineer-filter {
  grid-template-columns: 112px minmax(0, 1fr);
}

.auto-update-control {
  grid-template-columns: minmax(0, 124px) minmax(120px, 1fr);
}

.auto-update-field {
  grid-column: span 2;
}

.auto-update-toggle input[type="checkbox"] {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.auto-update-progress-bar {
  background: #e6edf5;
}

.form-actions {
  min-height: 40px;
  padding: 0;
}

.ant-btn,
.file-button {
  min-width: 68px;
  height: 36px;
  border-color: var(--border);
  border-radius: 6px;
  padding: 0 14px;
  font-weight: 700;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.ant-btn:hover,
.file-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 5px 14px rgba(23, 105, 224, 0.1);
}

.ant-btn:active,
.file-button:active,
.download-item:active,
.price-system-kpi.is-clickable:active {
  transform: translateY(1px);
}

.ant-btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.22);
}

.ant-btn-primary:hover {
  border-color: var(--primary-hover);
  background: var(--primary-hover);
  color: #fff;
}

.auction-basic {
  margin: 0 0 16px;
}

.auction-box {
  min-height: 60px;
  height: auto;
  border: 1px solid #dceafd;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.06), rgba(15, 159, 143, 0.05)),
    #fff;
  color: rgba(18, 28, 45, 0.68);
}

.auction-box strong {
  color: var(--primary);
  font-size: 19px;
  font-weight: 850;
}

.auction-tips {
  margin-top: 8px;
  color: rgba(18, 28, 45, 0.52);
  font-size: 13px;
}

.shenjiying-panel {
  border-color: rgba(23, 105, 224, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(240, 253, 250, 0.66)),
    #fff;
}

.shenjiying-chip {
  min-height: 44px;
  border-color: rgba(23, 105, 224, 0.16);
  border-radius: 6px;
}

.desc-box {
  margin: 0 0 14px;
  color: rgba(18, 28, 45, 0.62);
}

.table-toolbar {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 14px;
}

.table-toolbar .toolbar-primary-action {
  height: 40px;
  min-width: 142px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.16);
  font-size: 14px;
}

.table-toolbar .toolbar-export-action {
  border-color: rgba(23, 105, 224, 0.24);
}

.bid-analysis {
  min-height: 52px;
  margin-bottom: 14px;
  border-color: #f4c57b;
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: inset 4px 0 0 #f59e0b;
}

.bid-analysis-title {
  min-height: 32px;
  color: rgba(18, 28, 45, 0.78);
  font-weight: 800;
}

.bid-analysis-option {
  height: 36px;
  min-width: 142px;
  border-radius: 999px;
}

.bid-analysis-option.is-active {
  border-color: #f59e0b;
  background: #fff1c2;
  color: #8a4b00;
}

.ant-table-wrapper {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(19, 35, 55, 0.04);
}

.ant-table {
  min-width: 1280px;
}

.ant-table th,
.ant-table td {
  border-bottom-color: var(--line);
  padding: 10px 10px;
}

.ant-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fafc;
  color: rgba(18, 28, 45, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.ant-table td {
  color: rgba(18, 28, 45, 0.76);
}

.ant-table tbody tr:hover td {
  background: #f8fbff;
}

.ant-table .product-info-cell {
  width: 300px;
  max-width: 300px;
}

.product-info-compact {
  max-height: 42px;
  color: rgba(18, 28, 45, 0.72);
  line-height: 21px;
}

.product-title-cell {
  min-width: 240px;
  max-width: 390px;
}

.product-title-with-badge {
  color: rgba(18, 28, 45, 0.78);
}

.product-lifecycle-badge {
  border-radius: 999px;
}

.table-link {
  color: var(--primary);
  font-weight: 700;
}

.bid-display {
  min-width: 82px;
  border-radius: 6px;
  padding: 3px 6px;
}

.bid-display:hover {
  background: rgba(23, 105, 224, 0.06);
}

.price-input {
  width: 98px;
  color: rgba(18, 28, 45, 0.86);
  font-weight: 750;
}

.table-pagination {
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
}

.page-summary {
  color: rgba(18, 28, 45, 0.68);
}

.page-size-control,
.page-jump-control {
  color: rgba(18, 28, 45, 0.58);
  font-weight: 650;
}

.ant-empty {
  color: rgba(18, 28, 45, 0.46);
}

.empty-icon {
  position: relative;
  width: 58px;
  height: 42px;
  border-color: #ccd7e5;
  border-radius: 8px;
}

.empty-icon::before {
  position: absolute;
  inset: 12px 10px auto;
  height: 2px;
  border-radius: 999px;
  background: #ccd7e5;
  box-shadow: 0 8px 0 #ccd7e5;
  content: "";
}

.history-form {
  gap: 12px;
}

.task-status {
  border-radius: 999px;
  font-size: 12px;
}

.price-system-toolbar {
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 12px;
}

#priceSystemStatus,
#bidRecordStatus,
#flashTaskStatus,
#dataStatus {
  color: rgba(18, 28, 45, 0.55);
  font-size: 13px;
  font-weight: 650;
}

.price-system-kpis {
  grid-template-columns: repeat(6, minmax(120px, 1fr));
}

.price-system-kpi {
  min-height: 96px;
  border-color: var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.82), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 8px 20px rgba(19, 35, 55, 0.04);
}

.price-system-kpi.is-clickable:hover,
.price-system-kpi.is-clickable:focus {
  border-color: rgba(23, 105, 224, 0.28);
  box-shadow: var(--shadow-hover);
}

.price-system-kpi.is-active {
  border-color: rgba(23, 105, 224, 0.48);
  background: #eff6ff;
}

.price-system-kpi strong {
  color: rgba(18, 28, 45, 0.9);
  font-size: 25px;
  font-weight: 850;
}

.price-system-kpi.is-danger {
  border-color: rgba(207, 19, 34, 0.3);
  background: #fff7f7;
}

.price-system-kpi.is-danger span,
.price-system-kpi.is-danger em {
  color: #b42318;
}

.price-system-kpi.is-danger strong {
  color: #cf1322;
}

button.price-system-kpi {
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.price-system-kpi.is-clickable {
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.price-system-kpi.is-clickable:hover,
.price-system-kpi.is-clickable:focus-visible {
  border-color: rgba(23, 105, 224, 0.42);
  box-shadow: 0 12px 26px rgba(23, 105, 224, 0.12);
  outline: none;
}

.price-system-kpi.is-clickable:active {
  transform: translateY(1px);
}

.price-system-kpi.is-active {
  border-color: rgba(23, 105, 224, 0.58);
  background: #eff6ff;
}

.price-system-overview {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.price-system-settings {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #f8fafc;
}

.price-system-settings label {
  display: grid;
  grid-template-columns: auto 96px auto;
  align-items: center;
  gap: 8px;
  color: rgba(18, 28, 45, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.price-system-settings input {
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 10px;
  color: var(--text);
  font-weight: 800;
}

.price-system-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.9fr);
  gap: 14px;
  align-items: start;
}

.price-system-release-queue {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-system-release-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  min-height: 120px;
  place-content: center;
  border: 1px dashed #dbe3ea;
  border-radius: 8px;
  color: rgba(18, 28, 45, 0.55);
  text-align: center;
}

.price-system-release-empty strong {
  color: rgba(18, 28, 45, 0.82);
}

.price-system-release-brand {
  display: grid;
  gap: 10px;
  min-height: 172px;
  border: 1px solid #d9e6f4;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.price-system-release-brand.is-done {
  border-color: rgba(82, 196, 26, 0.35);
}

.price-system-release-brand.is-warning {
  border-color: rgba(207, 19, 34, 0.26);
}

.price-system-release-brand-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.price-system-release-brand-head strong,
.price-system-current-body strong {
  color: rgba(18, 28, 45, 0.9);
}

.price-system-release-brand-head span,
.price-system-current-body span,
.price-system-current-body em {
  display: block;
  color: rgba(18, 28, 45, 0.55);
  font-size: 12px;
  font-style: normal;
}

.price-system-release-brand-head em {
  color: #1769e0;
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
}

.price-system-release-bar,
.price-system-current-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.price-system-release-bar span,
.price-system-current-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6fed, #58b7a8);
}

.price-system-release-brand.is-warning .price-system-release-bar span {
  background: linear-gradient(90deg, #cf1322, #ff9b72);
}

.price-system-release-models {
  display: grid;
  gap: 6px;
}

.price-system-release-model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 30px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #f8fafc;
  appearance: none;
  cursor: pointer;
  padding: 6px 8px;
  text-align: left;
}

.price-system-release-model:hover,
.price-system-release-model:focus-visible {
  background: #eff6ff;
  outline: 1px solid rgba(23, 105, 224, 0.34);
}

.price-system-release-model span {
  overflow: hidden;
  color: rgba(18, 28, 45, 0.74);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-system-release-model strong {
  color: rgba(18, 28, 45, 0.78);
  font-size: 12px;
}

.price-system-side-stack {
  display: grid;
  gap: 12px;
}

.price-system-current-lookup {
  border: 1px solid #d9e6f4;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.price-system-current-lookup {
  display: grid;
  gap: 10px;
}

.price-system-current-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-system-current-head span {
  color: rgba(18, 28, 45, 0.66);
  font-size: 13px;
  font-weight: 760;
}

.price-system-current-head strong {
  color: #1769e0;
  font-size: 18px;
  font-weight: 850;
}

.price-system-current-body {
  display: grid;
  gap: 4px;
}

.price-system-current-lookup p {
  margin: 0;
  color: rgba(18, 28, 45, 0.55);
  font-size: 13px;
}

.price-system-workbench {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.price-system-workbench-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(520px, 1.6fr);
  gap: 14px;
  align-items: end;
}

.price-system-workbench-head span {
  display: block;
  color: rgba(18, 28, 45, 0.88);
  font-size: 17px;
  font-weight: 850;
}

.price-system-workbench-head strong {
  display: block;
  margin-top: 4px;
  color: rgba(18, 28, 45, 0.5);
  font-size: 12px;
  font-weight: 760;
}

.price-system-workbench-filters {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(130px, 0.35fr) minmax(150px, 0.45fr) auto;
  gap: 10px;
  align-items: center;
}

.price-system-workbench-filters input,
.price-system-workbench-filters select {
  width: 100%;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
}

.price-system-workbench-wrapper {
  overflow: auto;
  border: 1px solid #edf2f7;
  border-radius: 8px;
}

.price-system-workbench-table {
  min-width: 1460px;
  table-layout: fixed;
}

.price-system-workbench-table th,
.price-system-workbench-table td {
  vertical-align: top;
  white-space: normal;
}

.price-system-workbench-table th:nth-child(1),
.price-system-workbench-table td:nth-child(1) {
  width: 92px;
}

.price-system-workbench-table th:nth-child(2),
.price-system-workbench-table td:nth-child(2) {
  width: 190px;
}

.price-system-workbench-table th:nth-child(3),
.price-system-workbench-table td:nth-child(3) {
  width: 210px;
}

.price-system-workbench-table th:nth-child(4),
.price-system-workbench-table td:nth-child(4) {
  width: 150px;
}

.price-system-workbench-table th:nth-child(5),
.price-system-workbench-table td:nth-child(5) {
  width: 240px;
}

.price-system-workbench-table th:nth-child(6),
.price-system-workbench-table td:nth-child(6),
.price-system-workbench-table th:nth-child(7),
.price-system-workbench-table td:nth-child(7) {
  width: 92px;
}

.price-system-workbench-table th:nth-child(8),
.price-system-workbench-table td:nth-child(8) {
  width: 150px;
}

.price-system-workbench-table th:nth-child(9),
.price-system-workbench-table td:nth-child(9) {
  width: 310px;
}

.price-system-workbench-table th:nth-child(10),
.price-system-workbench-table td:nth-child(10) {
  width: 118px;
}

.price-system-workbench-row.is-failed {
  background: rgba(255, 247, 247, 0.72);
}

.price-system-workbench-row.is-expired {
  background: rgba(255, 251, 232, 0.78);
}

.price-system-workbench-empty-row td {
  padding: 0;
}

.price-system-workbench-empty {
  position: sticky;
  left: 0;
  display: grid;
  place-items: center;
  width: min(900px, calc(100vw - 360px));
  min-height: 128px;
  border-radius: 8px;
  background: #fff;
  color: rgba(18, 28, 45, 0.62);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  padding: 18px;
}

.price-system-workbench-model,
.price-system-workbench-product {
  min-width: 0;
}

.price-system-workbench-model strong,
.price-system-workbench-product span {
  display: block;
}

.price-system-workbench-model strong {
  color: rgba(18, 28, 45, 0.88);
  font-weight: 850;
}

.price-system-workbench-model span,
.price-system-workbench-product span,
.price-system-workbench-condition {
  color: rgba(18, 28, 45, 0.62);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.price-system-workbench-condition {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.price-system-workbench-reason {
  color: rgba(18, 28, 45, 0.68);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.price-system-workbench-reason.is-danger {
  color: #cf1322;
}

.price-system-workbench-reason.is-warning {
  color: #b86614;
}

.price-system-workbench-reason summary {
  cursor: pointer;
  color: inherit;
  font-weight: 850;
}

.price-system-workbench-reason p {
  margin: 6px 0 0;
  color: inherit;
  font-weight: 700;
}

.price-system-workbench-action {
  width: 90px;
  min-width: 90px;
  justify-content: center;
}

.price-system-workbench-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(18, 28, 45, 0.55);
  font-size: 13px;
  font-weight: 760;
}

.price-system-market-summary,
.price-system-queue-summary {
  display: grid;
  gap: 8px;
}

.price-system-market-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: #f8fafc;
  padding: 9px 10px;
}

.price-system-market-row strong,
.price-system-queue-row strong {
  color: rgba(18, 28, 45, 0.88);
}

.price-system-market-row span,
.price-system-queue-row span {
  display: block;
  color: rgba(18, 28, 45, 0.52);
  font-size: 12px;
}

.price-system-market-row em,
.price-system-queue-row em {
  color: #1769e0;
  font-style: normal;
  font-weight: 850;
}

.price-system-market-bar {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f7;
}

.price-system-market-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6fed, #58b7a8);
}

.price-system-queue-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #edf2f7;
  border-radius: 6px;
  background: #f8fafc;
  padding: 9px 10px;
}

.price-system-detail-empty {
  min-height: 32px;
  border-radius: 6px;
  background: #f8fafc;
  color: rgba(18, 28, 45, 0.45);
  display: grid;
  place-items: center;
  font-size: 12px;
}

@media (max-width: 1320px) {
  .price-system-overview-grid {
    grid-template-columns: 1fr;
  }

  .price-system-release-queue {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .price-system-settings label {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .price-system-workbench-head,
  .price-system-workbench-filters {
    grid-template-columns: 1fr;
  }

  .price-system-queue-row {
    grid-template-columns: 1fr;
  }

}

.price-system-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.price-system-block .skyeye-block-title {
  margin-bottom: 0;
}

.price-system-block .skyeye-block-title span,
.price-system-page .skyeye-block-title span {
  color: rgba(18, 28, 45, 0.86);
}

.price-system-block .skyeye-block-title strong,
.price-system-page .skyeye-block-title strong {
  color: rgba(18, 28, 45, 0.44);
}

.price-system-page .task-table {
  min-width: 1040px;
}

.price-system-page .task-table th,
.price-system-page .task-table td {
  padding-inline: 8px;
}

.price-system-page .task-table th:nth-child(3),
.price-system-page .task-table td:nth-child(3) {
  max-width: 210px;
  overflow-wrap: anywhere;
}

.price-system-page .task-table th:nth-child(8),
.price-system-page .task-table td:nth-child(8) {
  min-width: 88px;
}

.download-center {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.download-item {
  min-height: 112px;
  border-color: var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.76), rgba(255, 255, 255, 0.96)),
    #fff;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.download-item:hover {
  border-color: rgba(23, 105, 224, 0.32);
  box-shadow: var(--shadow-hover);
}

.download-item strong {
  color: rgba(18, 28, 45, 0.86);
}

.download-item span {
  color: rgba(18, 28, 45, 0.54);
  line-height: 1.5;
}

.ant-modal-content {
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(18, 28, 45, 0.22);
}

.ant-modal-header {
  border-bottom-color: var(--line);
}

.ant-modal-title {
  color: rgba(18, 28, 45, 0.88);
  font-weight: 800;
}

.ant-modal-footer {
  border-top-color: var(--line);
}

.report-summary-item,
.report-section,
.report-result-panel,
.downloaded-report-image,
.report-result-image,
.report-frame,
.report-empty,
.report-url {
  border-radius: 6px;
}

.image-preview-stage img {
  border-radius: 8px;
}

.image-preview-nav {
  border-radius: 8px;
}

.skyeye-mode .ant-pro-global-header {
  background: rgba(9, 17, 20, 0.84);
  border-bottom-color: rgba(95, 221, 207, 0.12);
}

.skyeye-mode .breadcrumb,
.skyeye-mode .header-right {
  color: rgba(230, 255, 251, 0.64);
}

.skyeye-mode .ant-tabs {
  height: 56px;
  background: rgba(16, 25, 29, 0.92);
}

.skyeye-mode .ant-tabs-tab {
  height: 56px;
  color: rgba(224, 242, 241, 0.7);
}

.skyeye-mode .ant-tabs-tab-active {
  background: rgba(95, 240, 210, 0.08);
}

.skyeye-screen,
.skyeye-kpi,
.skyeye-category-panel,
.skyeye-block {
  border-radius: 8px;
}

.skyeye-kpi,
.skyeye-category-panel,
.skyeye-block {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 12px 28px rgba(0, 0, 0, 0.18);
}

body.market-recycle .ant-layout-sider + .ant-layout {
  margin-left: 236px;
}

body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
  margin-left: 64px;
}

@media (max-width: 1280px) {
  .market-conditions-form {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .price-system-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-system-progress-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .decision-center-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .market-conditions-form {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .decision-center-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-center-hero {
    flex-direction: column;
  }

  .rich-filter-combo-field,
  .engineer-filter,
  .qc-filter {
    grid-column: 1 / -1;
  }

  .download-center {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .price-system-reason-grid,
  .price-system-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ant-layout-sider {
    width: 100%;
  }

  .ant-layout-sider + .ant-layout,
  .sider-collapsed .ant-layout-sider + .ant-layout,
  body.market-recycle .ant-layout-sider + .ant-layout,
  body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
    margin-left: 0;
  }

  .ant-pro-sider-logo {
    height: 58px;
  }

  .ant-menu {
    max-height: none;
    padding: 8px;
  }

  .ant-menu-item {
    height: 40px;
    padding: 0 12px;
  }

  .ant-pro-global-header {
    height: auto;
    min-height: 54px;
    padding: 10px 14px;
    gap: 12px;
  }

  .breadcrumb,
  .header-right {
    min-width: 0;
  }

  .ant-layout-content {
    padding: 12px;
  }

  .page-card {
    min-height: calc(100vh - 82px);
    border-radius: 8px;
  }

  .ant-tabs {
    height: 50px;
    padding: 0 10px;
  }

  .ant-tabs-tab {
    height: 50px;
    padding: 0 10px;
  }

  .market-panel {
    padding: 12px;
  }

  .market-conditions-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .price-system-kpis,
  .price-system-progress-grid {
    grid-template-columns: 1fr;
  }

  .ant-form-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ant-form-item span {
    padding-right: 0;
    text-align: left;
  }

  .rich-filter-panel {
    grid-template-columns: 1fr;
    max-height: 72vh;
  }

  .rich-filter-sidebar {
    display: flex;
    max-height: none;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rich-filter-side-item {
    flex: 0 0 auto;
    width: auto;
    padding: 0 16px;
  }

  .rich-filter-content {
    max-height: 52vh;
    padding: 14px;
  }

  .rich-filter-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auto-update-control,
  .engineer-filter-control {
    grid-template-columns: 1fr;
  }

  .auto-update-field {
    grid-column: 1 / -1;
  }

  .auction-box {
    flex-direction: column;
    padding: 12px;
    gap: 4px;
  }

  .table-toolbar {
    justify-content: stretch;
  }

  .table-toolbar .toolbar-primary-action,
  .table-toolbar .ant-btn,
  .file-button {
    width: 100%;
  }

  .bid-analysis-option {
    min-width: 0;
  }

  .ant-table-wrapper {
    border-radius: 8px;
  }

  .price-system-kpis,
  .download-center {
    grid-template-columns: 1fr;
  }

  body.market-recycle .ant-pro-global-header {
    min-height: 52px;
    padding: 10px 16px;
  }

  body.market-recycle .market-conditions-form {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-inline: -12px;
    padding: 16px 14px;
  }

  body.market-recycle .ant-form-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  body.market-recycle .ant-form-item > span {
    display: block;
    color: #4a4a4a;
    font-size: 14px;
    text-align: left;
  }

  body.market-recycle .rich-filter-combo-field,
  body.market-recycle .engineer-filter,
  body.market-recycle .qc-filter,
  body.market-recycle .auto-update-field {
    grid-column: 1 / -1;
  }

  body.market-recycle .engineer-filter-control,
  body.market-recycle .auto-update-control {
    grid-template-columns: 1fr;
  }

  body.market-recycle .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body.market-recycle .form-actions .ant-btn,
  body.market-recycle .table-toolbar .toolbar-primary-action,
  body.market-recycle .table-toolbar .ant-btn {
    width: 100%;
  }
}

/* Font rollback 2026-06-06: restore marketplace typography to the first pass. */
.market-panel[data-panel="current"] .ant-form-item span {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .ant-form-item select,
.market-panel[data-panel="current"] .ant-form-item input,
.market-panel[data-panel="current"] .history-form input,
.market-panel[data-panel="current"] .rich-filter-trigger,
.market-panel[data-panel="current"] .auto-update-field .auto-update-toggle,
.market-panel[data-panel="current"] .reverse-check,
.market-panel[data-panel="current"] .page-size-control select,
.market-panel[data-panel="current"] .page-jump-control input,
.market-panel[data-panel="current"] .price-input {
  font-size: 14px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .category-filter-chip {
  font-size: 14px;
  font-weight: 600;
}

.market-panel[data-panel="current"] .category-filter-chip strong {
  font-size: 12px;
  font-weight: 700;
}

.market-panel[data-panel="current"] .rich-filter-trigger strong {
  font-size: 15px;
  font-weight: 500;
}

.market-panel[data-panel="current"] .rich-filter-side-item,
.market-panel[data-panel="current"] .rich-filter-group-title,
.market-panel[data-panel="current"] .rich-filter-all-text {
  font-weight: 700;
}

.market-panel[data-panel="current"] .rich-filter-option {
  font-size: 15px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .rich-filter-option.is-active,
.market-panel[data-panel="current"] .rich-filter-option:hover {
  font-weight: 700;
}

.market-panel[data-panel="current"] .engineer-filter span {
  font-weight: 400;
}

.market-panel[data-panel="current"] .auction-box strong {
  font-size: 18px;
  font-weight: 500;
}

.market-panel[data-panel="current"] .auction-tips,
.market-panel[data-panel="current"] .desc-box,
.market-panel[data-panel="current"] .page-size-control,
.market-panel[data-panel="current"] .page-jump-control {
  font-size: 14px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .table-toolbar .toolbar-primary-action {
  font-size: 16px;
  font-weight: 700;
}

.market-panel[data-panel="current"] .bid-analysis-title {
  font-size: 16px;
  font-weight: 600;
}

.market-panel[data-panel="current"] .bid-analysis-option {
  font-size: 14px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .bid-analysis-option strong {
  font-size: 18px;
  font-weight: 700;
}

.market-panel[data-panel="current"] .bid-analysis-summary {
  font-size: 14px;
  font-weight: 500;
}

.market-panel[data-panel="current"] .ant-table {
  font-size: 14px;
}

.market-panel[data-panel="current"] .ant-table th {
  font-size: 14px;
  font-weight: 500;
}

.market-panel[data-panel="current"] .ant-table td {
  font-size: 14px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .product-info-compact {
  font-size: 13px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .table-link {
  font-weight: 400;
}

.market-panel[data-panel="current"] .bid-display span {
  font-size: 15px;
  font-weight: 400;
}

.market-panel[data-panel="current"] .price-input {
  font-weight: 400;
}

.market-panel[data-panel="current"] .page-summary {
  font-size: 14px;
  font-weight: 600;
}

.market-panel[data-panel="current"] .page-summary strong,
.market-panel[data-panel="current"] .page-jump-control input {
  font-weight: 700;
}

body.market-recycle {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, "Microsoft YaHei", sans-serif;
}

body.market-recycle .breadcrumb {
  font-size: 16px;
  font-weight: 900;
}

body.market-recycle .header-right {
  font-weight: 700;
}

body.market-recycle .ant-tabs-tab {
  font-size: 16px;
  font-weight: 800;
}

body.market-recycle .auction-box span {
  font-size: 14px;
  font-weight: 700;
}

body.market-recycle .auction-box strong {
  font-family: inherit;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

body.market-recycle .auction-tips {
  font-size: 13px;
  font-weight: 700;
}

body.market-recycle .ant-form-item > span {
  font-size: 13px;
  font-weight: 900;
}

body.market-recycle .category-filter-chip {
  font-size: 16px;
  font-weight: 900;
}

body.market-recycle .rich-filter-trigger,
body.market-recycle .ant-form-item select,
body.market-recycle .ant-form-item input,
body.market-recycle .reverse-check,
body.market-recycle .auto-update-field .auto-update-toggle {
  font-size: 15px;
  font-weight: 800;
}

body.market-recycle .rich-filter-trigger strong {
  font-size: 15px;
  font-weight: 800;
}

body.market-recycle .table-toolbar .toolbar-primary-action {
  font-size: 16px;
  font-weight: 700;
}

body.market-recycle .recycle-grade-badge {
  font-size: 16px;
  font-weight: 900;
}

body.market-recycle .recycle-card-title strong {
  font-size: 19px;
  font-weight: 900;
}

body.market-recycle .recycle-source-badge {
  font-size: 13px;
  font-weight: 900;
}

body.market-recycle .recycle-card-meta em {
  font-size: 15px;
  font-weight: 700;
}

body.market-recycle .recycle-card-price span {
  font-size: 14px;
  font-weight: 800;
}

body.market-recycle .recycle-card-price strong {
  font-size: 28px;
  font-weight: 950;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

body.market-recycle .recycle-card-bid-set {
  font-size: 12px;
}

body.market-recycle .recycle-card-bid-set strong {
  font-size: 16px;
}

body.market-recycle .recycle-card-report {
  font-size: 13px;
  font-weight: 800;
}

body.market-recycle .recycle-card-price-input {
  font-size: 18px;
  font-weight: 950;
}

body.market-recycle .table-link {
  font-weight: 900;
}

body.market-recycle .table-pagination {
  font-size: 15px;
}

/* Marketplace typography normalization: keep every market on the same base size. */
.market-panel[data-panel="current"],
.market-panel[data-panel="current"] button,
.market-panel[data-panel="current"] input,
.market-panel[data-panel="current"] select,
.market-panel[data-panel="current"] .ant-form-item span,
.market-panel[data-panel="current"] .category-filter-chip,
.market-panel[data-panel="current"] .rich-filter-trigger,
.market-panel[data-panel="current"] .rich-filter-trigger strong,
.market-panel[data-panel="current"] .rich-filter-option,
.market-panel[data-panel="current"] .auction-tips,
.market-panel[data-panel="current"] .desc-box,
.market-panel[data-panel="current"] .table-toolbar .ant-btn,
.market-panel[data-panel="current"] .table-toolbar .toolbar-primary-action,
.market-panel[data-panel="current"] .bid-analysis-option,
.market-panel[data-panel="current"] .bid-analysis-summary,
.market-panel[data-panel="current"] .ant-table,
.market-panel[data-panel="current"] .ant-table th,
.market-panel[data-panel="current"] .ant-table td,
.market-panel[data-panel="current"] .page-summary,
.market-panel[data-panel="current"] .page-size-control,
.market-panel[data-panel="current"] .page-jump-control,
body.market-recycle .breadcrumb,
body.market-recycle .header-right,
body.market-recycle .ant-tabs-tab,
body.market-recycle .auction-box span,
body.market-recycle .auction-tips,
body.market-recycle .ant-form-item > span,
body.market-recycle .category-filter-chip,
body.market-recycle .rich-filter-trigger,
body.market-recycle .rich-filter-trigger strong,
body.market-recycle .ant-form-item select,
body.market-recycle .ant-form-item input,
body.market-recycle .reverse-check,
body.market-recycle .auto-update-field .auto-update-toggle,
body.market-recycle .table-toolbar .ant-btn,
body.market-recycle .table-toolbar .toolbar-primary-action,
body.market-recycle .bid-analysis,
body.market-recycle .bid-analysis-option,
body.market-recycle .table-pagination,
body.market-recycle .recycle-card-meta em,
body.market-recycle .recycle-card-price span,
body.market-recycle .recycle-source-badge,
body.market-recycle .recycle-card-report {
  font-size: 14px;
}

.market-panel[data-panel="current"] .category-filter-chip strong,
body.market-recycle .category-filter-chip strong,
body.market-recycle .recycle-card-bid-set {
  font-size: 12px;
}

.market-panel[data-panel="current"] .auction-box strong,
body.market-recycle .auction-box strong,
body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set strong,
body.market-recycle .recycle-card-price-input {
  font-size: 18px;
}

body.market-recycle .recycle-grade-badge,
body.market-recycle .recycle-card-title strong,
body.market-recycle .recycle-card-price strong {
  font-size: 18px;
}

/* Match all market typography to the Taohuo marketplace. */
body.market-recycle .breadcrumb,
body.market-recycle .header-right,
body.market-recycle .ant-tabs-tab,
body.market-recycle .auction-box span,
body.market-recycle .auction-tips,
body.market-recycle .ant-form-item > span,
body.market-recycle .rich-filter-trigger,
body.market-recycle .rich-filter-trigger strong,
body.market-recycle .ant-form-item select,
body.market-recycle .ant-form-item input,
body.market-recycle .reverse-check,
body.market-recycle .auto-update-field .auto-update-toggle,
body.market-recycle .bid-analysis-option,
body.market-recycle .table-pagination,
body.market-recycle .recycle-card-meta em,
body.market-recycle .recycle-card-price span,
body.market-recycle .recycle-card-report {
  font-weight: 400;
}

body.market-recycle .category-filter-chip {
  font-weight: 600;
}

body.market-recycle .category-filter-chip strong,
body.market-recycle .recycle-source-badge,
body.market-recycle .recycle-card-bid-set {
  font-weight: 700;
}

body.market-recycle .auction-box strong {
  font-weight: 500;
}

body.market-recycle .table-toolbar .ant-btn,
body.market-recycle .table-toolbar .toolbar-primary-action,
body.market-recycle .ant-tabs-tab,
body.market-recycle .recycle-grade-badge,
body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set strong,
body.market-recycle .recycle-card-price-input,
body.market-recycle .table-link {
  font-weight: 700;
}

body.market-recycle .recycle-card-title strong,
body.market-recycle .recycle-card-price strong {
  font-weight: 700;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set {
  letter-spacing: 0;
}

/* Sidebar marketplace entries use the same typography as top-level menu items. */
.market-subitem strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 22px;
}

/* Sidebar rollback: restore the original left navigation. */
.ant-layout-sider {
  width: 220px;
  background: var(--sider);
  box-shadow: 2px 0 14px rgba(6, 25, 37, 0.28);
}

.ant-pro-sider-logo {
  height: 64px;
  padding: 0 18px;
  background: linear-gradient(180deg, #082536 0%, var(--sider) 100%);
  border-bottom: 0;
}

.ant-pro-sider-logo img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ant-pro-sider-logo h1 {
  font-size: 19px;
  font-weight: 700;
}

.ant-menu {
  max-height: none;
  margin: 0;
  padding: 14px 0;
  overflow-y: visible;
}

.ant-menu-item {
  height: 48px;
  margin: 3px 10px;
  padding: 0 14px;
  border-radius: 6px;
  color: rgba(230, 247, 255, 0.68);
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  transition: none;
}

.ant-menu-item:hover {
  color: #fff;
  background: var(--sider-hover);
}

.ant-menu-item-selected {
  color: #fff;
  background: rgba(24, 144, 255, 0.16);
}

.ant-menu-item[data-menu-key="auction"] {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

.market-submenu {
  display: grid;
  gap: 3px;
  margin: 3px 10px 12px;
  padding: 0;
}

.market-submenu::before {
  display: none;
}

.market-subitem {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(230, 247, 255, 0.56);
  padding: 6px 12px;
  gap: 8px;
  text-align: left;
  transition: none;
}

.market-subitem:hover {
  background: var(--sider-hover);
  color: #fff;
}

.market-subitem.is-active {
  background: rgba(24, 144, 255, 0.16);
  color: #fff;
}

.market-subitem strong {
  min-width: 0;
  overflow: visible;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-overflow: clip;
  white-space: normal;
}

.collapse-trigger {
  height: 48px;
  background: var(--sider-light);
  border-top: 0;
}

.ant-layout-sider + .ant-layout {
  margin-left: 220px;
}

.sider-collapsed .ant-layout-sider {
  width: 60px;
}

.sider-collapsed .ant-layout-sider + .ant-layout {
  margin-left: 60px;
}

.sider-collapsed .ant-menu {
  padding: 14px 0;
}

.sider-collapsed .ant-menu-item {
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 4px 6px;
  padding: 0;
}

body.market-recycle .ant-layout-sider + .ant-layout {
  margin-left: 220px;
}

body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
  margin-left: 60px;
}

@media (max-width: 760px) {
  .ant-layout-sider {
    position: static;
    width: 100%;
    height: auto;
  }

  .ant-layout-sider + .ant-layout,
  .sider-collapsed .ant-layout-sider + .ant-layout,
  body.market-recycle .ant-layout-sider + .ant-layout,
  body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
    margin-left: 0;
  }

  .ant-menu {
    display: flex;
    overflow-x: auto;
    padding: 0;
  }

  .ant-menu-item {
    flex: 0 0 auto;
  }

  .market-submenu {
    display: none;
  }
}

body.market-recycle .report-modal,
body.market-shunhuishou .report-modal {
  width: min(1320px, calc(100vw - 28px));
}

body.market-recycle .ant-modal-wrap,
body.market-shunhuishou .ant-modal-wrap {
  padding-top: 24px;
}

body.market-recycle .report-body,
body.market-shunhuishou .report-body {
  max-height: calc(100vh - 146px);
  padding: 16px;
  background:
    radial-gradient(circle at 10% 0, rgba(250, 219, 20, 0.14), transparent 32%),
    linear-gradient(180deg, #fffdf2 0, #ffffff 42%);
}

.recycle-report-onepage {
  color: #17202a;
}

.recycle-report-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #f5d76e;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7b8 0%, #fffdf0 52%, #ffffff 100%);
  padding: 14px 16px;
}

.recycle-report-hero span {
  color: #8c6d1f;
  font-size: 12px;
  font-weight: 700;
}

.recycle-report-hero h3 {
  margin: 4px 0 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.2;
}

.recycle-report-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.recycle-report-hero-tags span {
  border: 1px solid rgba(140, 109, 31, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 6px 10px;
  color: #5f4b10;
}

.recycle-report-summary {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.recycle-report-summary div {
  min-height: 54px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 10px;
}

.recycle-report-summary span {
  display: block;
  color: #7b8494;
  font-size: 11px;
}

.recycle-report-summary strong {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recycle-report-photo-strip {
  margin-top: 10px;
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.recycle-report-photo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef1f5;
  padding: 10px 14px;
}

.recycle-report-photo-head span {
  color: #7b8494;
  font-size: 12px;
  font-weight: 800;
}

.recycle-report-photo-head strong {
  color: #2563eb;
  font-size: 13px;
}

.recycle-report-photo-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 14px 14px;
  scroll-snap-type: x proximity;
}

.recycle-report-photo-gallery button {
  flex: 0 0 138px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
  scroll-snap-align: start;
}

.recycle-report-photo-gallery button:hover {
  border-color: #2563eb;
}

.recycle-report-photo-gallery img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  background: #f8fafc;
}

.recycle-report-photo-gallery span {
  display: block;
  overflow: hidden;
  padding: 6px 8px;
  color: #4b5563;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recycle-report-decision {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
  gap: 14px;
  margin-top: 12px;
}

.recycle-report-flaws,
.recycle-report-price-decision,
.recycle-report-checklist,
.recycle-report-source {
  border: 1px solid #e7eaf0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07);
}

.recycle-report-flaws {
  min-height: 430px;
  overflow: hidden;
}

.recycle-report-section-head,
.recycle-report-checklist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef1f5;
  padding: 12px 14px;
}

.recycle-report-section-head span,
.recycle-report-checklist-head span {
  display: block;
  color: #7b8494;
  font-size: 12px;
  font-weight: 700;
}

.recycle-report-section-head strong,
.recycle-report-checklist-head strong {
  display: block;
  margin-top: 2px;
  color: #c2410c;
  font-size: 18px;
}

.recycle-report-section-head em {
  color: #9a3412;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.recycle-report-section-side {
  flex: 0 1 min(58%, 520px);
  min-width: 220px;
  margin-left: auto;
}

.recycle-report-engineer-note {
  border: 1px solid #ffe1bf;
  border-radius: 12px;
  background: #fffaf2;
  padding: 9px 11px;
  text-align: left;
}

.recycle-report-engineer-note span {
  display: block;
  color: #9a3412;
  font-size: 12px;
  font-weight: 850;
}

.recycle-report-engineer-note p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recycle-report-flaw-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 12px;
  padding: 12px;
}

.recycle-report-flaw-list {
  max-height: 360px;
  overflow: auto;
  padding-right: 2px;
}

.recycle-report-flaw-group + .recycle-report-flaw-group {
  margin-top: 12px;
}

.recycle-report-flaw-group h4 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 13px;
}

.recycle-report-flaw-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff7ed;
  padding: 9px 10px;
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.42;
}

.recycle-report-flaw-row i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ea580c;
  color: #fff;
  font-style: normal;
  font-weight: 800;
}

.recycle-report-flaw-row > span {
  min-width: 0;
  flex: 1 1 auto;
}

.recycle-report-priority-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  max-height: 360px;
  overflow: auto;
}

.recycle-report-priority-images button {
  min-height: 150px;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.recycle-report-priority-images img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  background: #fffaf0;
}

.recycle-report-priority-images span {
  display: block;
  overflow: hidden;
  padding: 6px 8px;
  color: #9a3412;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recycle-report-price-decision {
  padding: 12px;
}

.recycle-report-price-row {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 10px;
}

.recycle-report-start-price,
.recycle-report-bid-box,
.recycle-report-reference-price {
  border: 1px solid #facc15;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffbeb, #ffffff);
  padding: 12px;
}

.recycle-report-start-price span,
.recycle-report-bid-box > span,
.recycle-report-reference-price span {
  display: block;
  color: #8a6d0a;
  font-size: 12px;
  font-weight: 700;
}

.recycle-report-start-price strong,
.recycle-report-reference-price strong {
  display: block;
  margin-top: 8px;
  color: #b45309;
  font-size: 24px;
  line-height: 1;
}

.recycle-report-fengjihui-price {
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 4px 8px;
}

.recycle-report-start-price .recycle-report-fengjihui-price span,
.recycle-report-start-price .recycle-report-fengjihui-price strong {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.recycle-report-bid-control {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.recycle-report-bid-control input {
  width: 100%;
  min-width: 0;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 10px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.recycle-report-bid-control input.is-risk,
.recycle-report-bid-box.is-risk .recycle-report-bid-control input {
  border-color: #dc2626;
  background: #fff1f2;
  color: #b91c1c;
}

.recycle-report-bid-control button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: #111827;
  padding: 0 14px;
  color: #fff;
  font-weight: 800;
}

.recycle-report-bid-control [data-report-recycle-submit] {
  background: #ff3b30;
  min-width: 104px;
}

.recycle-report-bid-box em {
  display: block;
  margin-top: 7px;
  color: #8a6d0a;
  font-size: 12px;
  font-style: normal;
}

.recycle-report-bid-box.is-risk em {
  color: #dc2626;
  font-weight: 800;
}

.recycle-report-price-decision .report-price-item-zz {
  margin-top: 10px;
  border-radius: 14px;
}

.recycle-report-reference-price {
  margin-top: 10px;
}

.recycle-report-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 12px;
  margin-top: 12px;
}

.recycle-report-checklist,
.recycle-report-source {
  padding-bottom: 12px;
}

.recycle-report-normal-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px 0;
}

.recycle-report-normal-groups span {
  border: 1px solid #d1fae5;
  border-radius: 999px;
  background: #ecfdf5;
  padding: 5px 9px;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
}

.recycle-report-checklist details {
  margin: 12px 14px 0;
}

.recycle-report-checklist summary {
  cursor: pointer;
  color: #2563eb;
  font-weight: 700;
}

.recycle-report-source {
  padding: 0 14px 12px;
}

.recycle-report-source .recycle-report-checklist-head {
  margin: 0 -14px 10px;
}

.recycle-report-source p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.recycle-report-empty-tight {
  margin: 12px;
  border: 1px dashed #fbbf24;
  border-radius: 12px;
  background: #fffbeb;
  padding: 18px;
  color: #92400e;
  text-align: center;
}

@media (max-width: 1080px) {
  .recycle-report-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .recycle-report-decision,
  .recycle-report-lower {
    grid-template-columns: 1fr;
  }

  .recycle-report-flaw-layout {
    grid-template-columns: 1fr;
  }

  .recycle-report-priority-images {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .recycle-report-photo-gallery button {
    flex-basis: 124px;
  }
}

@media (max-width: 760px) {
  body.market-recycle .ant-modal-wrap,
  body.market-shunhuishou .ant-modal-wrap {
    padding: 8px;
  }

  body.market-recycle .report-body,
  body.market-shunhuishou .report-body {
    max-height: calc(100vh - 120px);
    padding: 10px;
  }

  .recycle-report-hero {
    flex-direction: column;
  }

  .recycle-report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recycle-report-price-row,
  .recycle-report-priority-images {
    grid-template-columns: 1fr;
  }

  .recycle-report-photo-gallery button {
    flex-basis: 44%;
  }
}

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

.argus-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  padding: 20px 22px;
}

.argus-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid #d7e4ef;
  border-radius: 4px;
  background: #f6f9fb;
  color: #526575;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 850;
}

.argus-hero h2 {
  margin: 8px 0 2px;
  color: #0e2233;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.argus-hero p {
  margin: 0;
  color: #697b89;
}

.argus-state {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.argus-state span,
.argus-mode-status {
  display: inline-flex;
  align-items: center;
  height: 28px;
  border: 1px solid #dfe8f0;
  border-radius: 4px;
  background: #fff;
  color: #526575;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.argus-state .is-prototype {
  border-color: #efd9b2;
  background: #fff8ea;
  color: #8a6418;
}

.argus-state .is-safe,
.argus-mode-status {
  border-color: #bfe6d6;
  background: #f0fbf6;
  color: #137854;
}

.argus-visual-grid,
.argus-rule-grid,
.argus-main-grid,
.argus-bottom-grid {
  display: grid;
  gap: 12px;
}

.argus-visual-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr) 290px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 119, 255, 0.045), rgba(39, 214, 189, 0.05)),
    #f6f9fb;
  padding: 16px;
}

.argus-rule-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.argus-main-grid {
  grid-template-columns: 1fr;
}

.argus-bottom-grid {
  grid-template-columns: 1fr 1fr;
}

.argus-card {
  min-width: 0;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 14px 16px;
}

.argus-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.argus-card-head h3 {
  margin: 0;
  color: #172c3d;
  font-size: 16px;
  font-weight: 900;
}

.argus-card-head strong {
  color: #8a98a5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.argus-flow-list {
  display: grid;
  gap: 7px;
}

.argus-flow-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid #e3ebf2;
  border-radius: 6px;
  background: #fff;
  padding: 7px 9px;
}

.argus-flow-step b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: #1677ff;
  color: #fff;
  font-size: 12px;
}

.argus-flow-step strong,
.argus-flow-step span,
.argus-funnel-row span,
.argus-funnel-row strong,
.argus-budget-meta span,
.argus-budget-meta strong,
.argus-product strong,
.argus-product span,
.argus-cell span,
.argus-cell strong,
.argus-price-pair span,
.argus-price-pair strong,
.argus-result strong,
.argus-result span,
.argus-review-list strong,
.argus-review-list span,
.argus-review-list em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.argus-flow-step strong {
  color: #172c3d;
  font-size: 13px;
}

.argus-flow-step span {
  color: #7d8c99;
  font-size: 12px;
  text-align: right;
}

.argus-funnel-list {
  display: grid;
  gap: 9px;
}

.argus-funnel-row,
.argus-mini-bars > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 8px;
}

.argus-funnel-row span,
.argus-mini-bars span {
  color: #647586;
  font-size: 12px;
}

.argus-funnel-row strong,
.argus-mini-bars strong {
  color: #172c3d;
  text-align: right;
}

.argus-funnel-row div,
.argus-mini-bars div div {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f6;
}

.argus-funnel-row b,
.argus-mini-bars b {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1677ff 0%, #27d6bd 100%);
}

.argus-funnel-row.is-blocked b {
  background: linear-gradient(90deg, #f1b75a 0%, #ef5b61 100%);
}

.argus-budget-body {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.argus-budget-ring {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#1677ff 0 71%, #e7eef5 71% 100%);
}

.argus-budget-ring div {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}

.argus-budget-ring strong {
  display: block;
  color: #172c3d;
  font-size: 20px;
  line-height: 1;
}

.argus-budget-ring span {
  display: block;
  color: #7d8c99;
  font-size: 12px;
}

.argus-budget-meta {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.argus-budget-meta div {
  border-bottom: 1px solid #edf2f6;
  padding-bottom: 8px;
}

.argus-budget-meta div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.argus-budget-meta span {
  display: block;
  color: #7d8c99;
  font-size: 12px;
}

.argus-budget-meta strong {
  display: block;
  color: #172c3d;
  font-size: 16px;
}

.argus-rule-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.argus-rule-controls label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.argus-rule-controls span {
  color: #526575;
  font-size: 12px;
  font-weight: 850;
}

.argus-rule-controls input,
.argus-rule-controls select {
  width: 100%;
  height: 38px;
  border: 1px solid #cad8e4;
  border-radius: 6px;
  background: #fbfdff;
  color: #102a3c;
  padding: 0 10px;
}

.argus-market-toggles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.argus-market-toggles span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border: 1px solid rgba(22, 119, 255, 0.2);
  border-radius: 4px;
  background: rgba(22, 119, 255, 0.06);
  color: #1d5eaa;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.argus-market-toggles .is-off {
  border-color: #dfe6ec;
  background: #f4f7f9;
  color: #8b9aa7;
}

.argus-mode-grid,
.argus-kpis,
.argus-reason-grid {
  display: grid;
  gap: 10px;
}

.argus-mode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.argus-mode-grid div,
.argus-reason-grid div {
  min-width: 0;
  border: 1px solid #e3ebf2;
  border-radius: 6px;
  background: #f8fbfd;
  padding: 10px;
}

.argus-mode-grid span,
.argus-mode-grid strong,
.argus-reason-grid span,
.argus-reason-grid strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.argus-mode-grid span,
.argus-reason-grid span {
  color: #7d8c99;
  font-size: 12px;
}

.argus-mode-grid strong {
  color: #172c3d;
  font-size: 18px;
}

.argus-mode-grid .is-active strong {
  color: #1677ff;
}

.argus-note {
  margin: 12px 0 0;
  color: #7d8c99;
  font-size: 12px;
}

.argus-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.argus-kpis div {
  min-width: 0;
  min-height: 92px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  padding: 12px 13px;
}

.argus-kpis span,
.argus-kpis em {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #697b89;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.argus-kpis strong {
  display: block;
  color: #0e2233;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.28;
}

.argus-kpis .is-good {
  color: #12845e;
}

.argus-kpis .is-risk {
  color: #d94a4f;
}

.argus-candidates-card {
  padding: 0;
}

.argus-candidates-card .argus-card-head {
  min-height: 52px;
  border-bottom: 1px solid #e9eef3;
  margin: 0;
  padding: 0 16px;
}

.argus-candidate-list {
  display: grid;
}

.argus-candidate-row {
  display: grid;
  grid-template-columns: 38px 92px minmax(280px, 1fr) 100px 116px 120px 82px;
  align-items: center;
  gap: 7px;
  min-height: 78px;
  border-bottom: 1px solid #edf2f6;
  padding: 12px 14px;
}

.argus-candidate-row:last-child {
  border-bottom: 0;
}

.argus-rank {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 4px;
  background: #eef7ff;
  color: #1677ff;
  font-size: 12px;
  font-weight: 900;
}

.argus-market {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  height: 28px;
  overflow: hidden;
  border-radius: 4px;
  background: #eef7ff;
  color: #1677ff;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.argus-market.is-green {
  background: rgba(32, 185, 129, 0.1);
  color: #12845e;
}

.argus-market.is-gold {
  background: rgba(241, 183, 90, 0.14);
  color: #9a6610;
}

.argus-product strong {
  display: block;
  color: #102a3c;
  font-size: 15px;
  font-weight: 900;
}

.argus-product span {
  display: block;
  margin-top: 3px;
  color: #748391;
  font-size: 12px;
}

.argus-cell,
.argus-price-pair,
.argus-result {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.argus-cell span,
.argus-price-pair b,
.argus-result span {
  color: #82919f;
  font-size: 12px;
}

.argus-cell strong,
.argus-price-pair strong,
.argus-result strong {
  color: #102a3c;
  font-size: 14px;
}

.argus-price-pair span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.argus-result span {
  color: #12845e;
  font-weight: 850;
}

.argus-result.is-block strong,
.argus-result.is-block span {
  color: #d94a4f;
}

.argus-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.argus-status.is-ok {
  background: rgba(32, 185, 129, 0.1);
  color: #12845e;
}

.argus-status.is-review {
  background: rgba(241, 183, 90, 0.14);
  color: #9a6610;
}

.argus-status.is-block {
  background: rgba(239, 91, 97, 0.1);
  color: #cf3d43;
}

.argus-side-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 14px;
}

.argus-formula {
  border: 1px solid #d7e4ef;
  border-radius: 6px;
  background: #f8fbfd;
  padding: 12px;
}

.argus-formula span {
  color: #7d8c99;
  font-size: 12px;
}

.argus-formula strong {
  display: block;
  margin-top: 4px;
  color: #172c3d;
  font-size: 16px;
  line-height: 1.35;
}

.argus-mini-bars {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.argus-mini-bars b {
  background: #1677ff;
}

.argus-review-list {
  display: grid;
  gap: 8px;
}

.argus-review-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  border-bottom: 1px solid #edf2f6;
  padding: 10px 0;
}

.argus-review-list div:first-child {
  padding-top: 0;
}

.argus-review-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.argus-review-list strong {
  color: #172c3d;
}

.argus-review-list span {
  color: #7d8c99;
  font-size: 12px;
}

.argus-review-list em {
  grid-row: span 2;
  color: #d94a4f;
  font-style: normal;
  font-weight: 850;
}

.argus-reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.argus-reason-grid strong {
  color: #172c3d;
  font-size: 18px;
}

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

.gold-miner-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(241, 183, 90, 0.1), rgba(22, 119, 255, 0.05)),
    #fff;
  padding: 20px 22px;
}

.gold-miner-hero h2 {
  margin: 8px 0 2px;
  color: #0e2233;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.gold-miner-hero p {
  max-width: 760px;
  margin: 0;
  color: #697b89;
}

.gold-miner-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 166px;
  min-height: 42px;
  border: 1px solid rgba(154, 102, 16, 0.24);
  border-radius: 999px;
  background: #fff9ea;
  padding: 5px 14px 5px 6px;
  color: #6f530f;
  cursor: pointer;
  user-select: none;
}

.gold-miner-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.gold-miner-switch span {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: #d8c9a7;
  transition: background 0.18s ease;
}

.gold-miner-switch span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.24);
  transition: transform 0.18s ease;
  content: "";
}

.gold-miner-switch input:checked + span {
  background: #d58b00;
}

.gold-miner-switch input:checked + span::after {
  transform: translateX(24px);
}

.gold-miner-switch em {
  color: #5f4307;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.gold-miner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 14px;
}

.gold-miner-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.gold-miner-form {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 12px;
}

.gold-miner-price-form {
  grid-template-columns: minmax(160px, 1fr) minmax(140px, 0.8fr);
}

.gold-miner-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.gold-miner-form label > span,
.gold-miner-check span {
  color: #526575;
  font-size: 12px;
  font-weight: 850;
}

.gold-miner-form input,
.gold-miner-form select,
.gold-miner-form textarea {
  width: 100%;
  border: 1px solid #cad8e4;
  border-radius: 6px;
  background: #fbfdff;
  color: #102a3c;
  padding: 0 10px;
  font: inherit;
}

.gold-miner-form input,
.gold-miner-form select {
  height: 38px;
}

.gold-miner-form textarea {
  min-height: 106px;
  resize: vertical;
  padding: 10px;
  line-height: 1.5;
}

.gold-miner-wide-field {
  grid-column: span 1;
}

.gold-miner-check {
  grid-column: 1 / -1;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  min-height: 38px;
}

.gold-miner-check input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.gold-miner-note {
  border: 1px solid rgba(241, 183, 90, 0.38);
  border-radius: 6px;
  background: rgba(255, 248, 234, 0.72);
  color: #8a6418;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.gold-miner-preview {
  display: grid;
  gap: 12px;
}

.gold-miner-actions {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(140px, 180px) minmax(160px, 220px);
  gap: 10px;
}

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

.darwin-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.08), rgba(22, 119, 255, 0.05)),
    #fff;
  padding: 20px 22px;
}

.darwin-hero h2 {
  margin: 8px 0 2px;
  color: #0e2233;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.darwin-hero p {
  max-width: 820px;
  margin: 0;
  color: #697b89;
}

.darwin-state {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.darwin-state span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #bfe6d6;
  border-radius: 4px;
  background: #f0fbf6;
  color: #137854;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.darwin-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.darwin-kpis div {
  min-width: 0;
  min-height: 92px;
  border: 1px solid #dfe8f0;
  border-radius: 8px;
  background: #fff;
  padding: 12px 13px;
}

.darwin-kpis span,
.darwin-kpis em {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #697b89;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.darwin-kpis strong {
  display: block;
  color: #0e2233;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.28;
}

.darwin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 14px;
}

.darwin-card {
  align-content: start;
}

.darwin-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.darwin-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.darwin-form label > span,
.darwin-check span {
  color: #526575;
  font-size: 12px;
  font-weight: 850;
}

.darwin-form input,
.darwin-form select,
.darwin-form textarea {
  width: 100%;
  border: 1px solid #cad8e4;
  border-radius: 6px;
  background: #fbfdff;
  color: #102a3c;
  padding: 0 10px;
  font: inherit;
}

.darwin-form input,
.darwin-form select {
  height: 38px;
}

.darwin-form textarea {
  min-height: 88px;
  resize: vertical;
  padding: 10px;
  line-height: 1.5;
}

.darwin-wide,
.darwin-actions {
  grid-column: span 2;
}

.darwin-check {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
  min-height: 38px;
}

.darwin-check input {
  width: 16px;
  height: 16px;
  padding: 0;
}

.darwin-actions {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(120px, 0.7fr);
  align-items: end;
  gap: 10px;
}

.darwin-insights {
  display: grid;
  gap: 10px;
}

.darwin-insights div {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid #e3ebf2;
  border-radius: 6px;
  background: #f8fbfd;
  padding: 11px 12px;
}

.darwin-insights span {
  color: #7d8c99;
  font-size: 12px;
  font-weight: 800;
}

.darwin-insights strong {
  min-width: 0;
  overflow: hidden;
  color: #172c3d;
  font-size: 16px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.darwin-note {
  margin-top: 12px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 6px;
  background: rgba(240, 253, 250, 0.72);
  color: #0f766e;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

.darwin-records-card {
  padding-bottom: 16px;
}

.darwin-table {
  min-width: 1080px;
}

.darwin-title-cell {
  max-width: 300px;
  text-align: left;
}

.darwin-title-cell strong,
.darwin-title-cell span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.darwin-title-cell span {
  color: #7d8c99;
  font-size: 12px;
}

.darwin-table .is-profit {
  color: #12845e;
  font-weight: 900;
}

.darwin-table .is-loss {
  color: #d94a4f;
  font-weight: 900;
}

@media (max-width: 1280px) {
  .argus-visual-grid,
  .argus-rule-grid,
  .argus-side-stack,
  .argus-bottom-grid,
  .gold-miner-grid,
  .darwin-grid {
    grid-template-columns: 1fr;
  }

  .argus-kpis,
  .darwin-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .argus-hero,
  .gold-miner-hero,
  .darwin-hero {
    flex-direction: column;
  }

  .argus-rule-controls,
  .argus-market-toggles,
  .argus-kpis,
  .argus-mode-grid,
  .argus-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gold-miner-form,
  .gold-miner-price-form,
  .gold-miner-actions,
  .darwin-kpis,
  .darwin-form,
  .darwin-actions {
    grid-template-columns: 1fr;
  }

  .darwin-wide,
  .darwin-actions {
    grid-column: span 1;
  }

  .argus-budget-body,
  .argus-candidate-row {
    grid-template-columns: 1fr;
  }
}

.menu-fold-arrow {
  margin-left: auto;
  color: rgba(230, 247, 255, 0.42);
  font-style: normal;
  font-size: 12px;
}

.ant-menu-item[data-menu-key="auction"]:not(.ant-menu-item-selected) {
  color: rgba(230, 247, 255, 0.68);
  background: transparent;
  box-shadow: none;
}

.ant-menu-item[data-menu-key="tianyan-ai"].ant-menu-item-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

.menu-icon-ai {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1.8px solid currentColor;
  border-radius: 5px;
}

.menu-icon-ai::before,
.menu-icon-ai::after {
  position: absolute;
  top: 5px;
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.menu-icon-ai::before {
  left: 3.5px;
}

.menu-icon-ai::after {
  right: 3.5px;
}

.tyai-submenu {
  display: grid;
  gap: 10px;
  margin: 3px 10px 12px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(24, 144, 255, 0.12);
  border-radius: 8px;
  background: rgba(24, 144, 255, 0.06);
}

.ant-menu-item[data-menu-key="tianyan-ai"]:not(.is-open) + .tyai-submenu {
  display: none;
}

.tyai-subgroup {
  display: grid;
  gap: 3px;
}

.tyai-group-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  height: 26px;
  border: 0;
  background: transparent;
  padding: 0 4px;
  text-align: left;
  color: rgba(230, 247, 255, 0.36);
  font-size: 12px;
  font-weight: 780;
}

.tyai-group-title:hover {
  color: rgba(230, 247, 255, 0.66);
}

.tyai-group-title em {
  color: rgba(230, 247, 255, 0.42);
  font-style: normal;
  font-size: 12px;
}

.tyai-subgroup-body {
  display: grid;
  gap: 3px;
}

.tyai-subgroup:not(.is-open) .tyai-subgroup-body {
  display: none;
}

.tyai-subitem {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(230, 247, 255, 0.56);
  padding: 0 7px 0 36px;
  text-align: left;
  font-size: 13px;
  font-weight: 650;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  position: relative;
}

.tyai-subitem::before {
  position: absolute;
  left: 12px;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  transform: translateY(-50%);
  opacity: 0.9;
  content: "";
}

.tyai-subitem strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tyai-subitem em {
  min-width: 26px;
  height: 20px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(230, 247, 255, 0.72);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.tyai-subitem:hover,
.tyai-subitem.is-active {
  color: #5ff0d2;
  background: rgba(95, 240, 210, 0.08);
}

.tyai-subitem.is-active {
  color: #fff;
  background: rgba(24, 144, 255, 0.16);
  box-shadow: inset 3px 0 0 #5ff0d2;
}

.market-submenu {
  display: none;
}

.market-menu-open .dark-market-submenu,
.realtime-market-menu-open .realtime-market-submenu,
.price-system-menu-open .price-system-submenu,
.argus-menu-open .argus-submenu,
.task-center-menu-open .task-center-submenu {
  display: grid;
}

.ant-menu-item[data-menu-key="market"].is-open,
.ant-menu-item[data-menu-key="realtime-market"].is-open,
.ant-menu-item[data-menu-key="price-system"].is-open,
.ant-menu-item[data-menu-key="argus"].is-open,
.ant-menu-item[data-menu-key="tasks"].is-open {
  color: rgba(230, 247, 255, 0.92);
  background: rgba(24, 62, 94, 0.74);
  box-shadow: none;
}

.market-subitem.is-active {
  color: #fff;
  background: rgba(24, 62, 94, 0.98);
  box-shadow: inset 3px 0 0 #1890ff;
}

.market-subitem.is-active .menu-icon {
  color: #fff;
}

/* Final HSB report override: official abnormal list has no row chrome or detached image rail. */
body.market-recycle .recycle-report-priority-images {
  display: none !important;
}

body.market-recycle .recycle-report-flaw-row {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 34px !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 720 !important;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 17px !important;
  height: 17px !important;
  font-size: 11px !important;
}

/* HSB report engineer note: place it on the right side of the abnormal header. */
body.market-recycle .recycle-report-section-head {
  align-items: flex-start;
}

body.market-recycle .recycle-report-section-side {
  flex: 0 1 min(58%, 520px);
  min-width: 240px;
  margin-left: auto;
}

body.market-recycle .recycle-report-engineer-note {
  border: 1px solid #ffe1bf;
  border-radius: 12px;
  background: #fffaf2;
  padding: 9px 11px;
  text-align: left;
}

body.market-recycle .recycle-report-engineer-note span {
  color: #9a3412;
  font-size: 12px;
  font-weight: 850;
}

body.market-recycle .recycle-report-engineer-note p {
  display: -webkit-box;
  margin: 4px 0 0;
  overflow: hidden;
  color: #7c2d12;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 760px) {
  body.market-recycle .recycle-report-section-head {
    flex-direction: column;
  }

  body.market-recycle .recycle-report-section-side {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }
}

/* Final HSB report override: official abnormal list has no row chrome or detached image rail. */
body.market-recycle .recycle-report-priority-images {
  display: none !important;
}

body.market-recycle .recycle-report-flaw-row {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 34px !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 17px !important;
  height: 17px !important;
  font-size: 11px !important;
}

/* HSB report font override: keep defect descriptions compact like the official report. */
body.market-recycle .recycle-report-flaw-row {
  min-height: 34px !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 17px !important;
  height: 17px !important;
  font-size: 11px !important;
}

/* HSB report/action refinements: match official action order and make image browsing usable. */
body.market-recycle .recycle-card-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set,
body.market-recycle .recycle-card-price-input {
  order: 1;
}

body.market-recycle .recycle-card-report {
  order: 2;
}

/* HSB card action role swap: report is the primary yellow action, bid stays secondary. */
body.market-recycle .recycle-card-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

body.market-recycle .recycle-card-report {
  order: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #ffd800;
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set,
body.market-recycle .recycle-card-price-input {
  order: 2;
  width: 104px;
  height: 30px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #f7f7f7;
  color: #666;
  font-size: 13px;
  font-weight: 800;
}

body.market-recycle .recycle-card-bid-button,
body.market-recycle .recycle-card-bid-set {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.market-recycle .recycle-card-bid-set {
  flex-direction: column;
  background: #f7f7f7;
}

body.market-recycle .recycle-card-bid-set strong {
  color: #ff3b30;
  font-size: 13px;
  line-height: 1;
}

body.market-recycle .recycle-card-price-input {
  text-align: center;
}

/* HSB official-style abnormal list: text row with inline thumbnail, no detached large image rail. */
body.market-recycle .recycle-report-flaw-layout {
  display: block;
  padding: 22px 28px 26px;
}

body.market-recycle .recycle-report-flaw-list {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

body.market-recycle .recycle-report-flaw-group + .recycle-report-flaw-group {
  margin-top: 24px;
}

body.market-recycle .recycle-report-flaw-group h4 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
}

body.market-recycle .recycle-report-flaw-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 10px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0;
  color: #ff7a1a;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 17px;
  height: 17px;
  background: #ff8a1c;
  color: #fff;
  font-size: 11px;
}

body.market-recycle .recycle-report-flaw-row > span:not(.recycle-report-flaw-thumbs) {
  min-width: 0;
  flex: 1 1 auto;
}

body.market-recycle .recycle-report-flaw-thumbs {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  margin-left: auto;
}

body.market-recycle .recycle-report-flaw-thumbs button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

body.market-recycle .recycle-report-flaw-thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.market-recycle .recycle-report-priority-images {
  display: none;
}

body.market-recycle .recycle-report-photo-gallery {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 #eef2f7;
}

body.market-recycle .recycle-report-photo-gallery::-webkit-scrollbar {
  height: 10px;
}

body.market-recycle .recycle-report-photo-gallery::-webkit-scrollbar-track {
  border-radius: 999px;
  background: #eef2f7;
}

body.market-recycle .recycle-report-photo-gallery::-webkit-scrollbar-thumb {
  border: 2px solid #eef2f7;
  border-radius: 999px;
  background: #94a3b8;
}

body.market-recycle .recycle-report-photo-gallery button {
  flex: 0 0 160px;
}

body.market-recycle .recycle-report-priority-images {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body.market-recycle .recycle-report-priority-images button {
  flex: 0 0 150px;
}

/* HSB fee-inclusive start price: shown for one month from 2026-06-08. */
body.market-recycle .recycle-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

body.market-recycle .recycle-card-price span {
  flex: 0 0 auto;
}

body.market-recycle .recycle-report-start-price strong {
  display: block;
  width: 100%;
  text-align: center;
}

body.market-recycle .recycle-report-start-price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

body.market-recycle .recycle-report-start-price .recycle-report-fengjihui-price {
  align-self: center;
}

.hsb-fee-notice {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  cursor: help;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  vertical-align: super;
}

body.market-recycle .recycle-report-start-price > .hsb-fee-notice {
  position: absolute;
  top: 8px;
  right: 8px;
}

.hsb-fee-notice::after {
  position: absolute;
  z-index: 30;
  right: -8px;
  bottom: calc(100% + 10px);
  width: 260px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 12px;
  background: #fff7ed;
  box-shadow: 0 16px 36px rgba(124, 45, 18, 0.18);
  color: #7c2d12;
  content: attr(data-hsb-fee-rule);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  opacity: 0;
  padding: 10px 12px;
  pointer-events: none;
  text-align: left;
  transform: translateY(4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

.hsb-fee-notice:hover::after,
.hsb-fee-notice:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hsb-fee-notice:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.32);
  outline-offset: 2px;
}

/* Recycle marketplace keeps the shared global header; only its product area uses the Recycle theme. */
body.market-recycle .ant-pro-global-header {
  height: 78px;
  padding: 7px 28px;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(216, 224, 234, 0.72);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.market-recycle .breadcrumb {
  color: rgba(18, 28, 45, 0.62);
  font-size: 13px;
  font-weight: 650;
}

body.market-recycle .header-right {
  color: rgba(18, 28, 45, 0.62);
  font-weight: 650;
}

/* Top global navigation has moved to the left sidebar; this area is now an ad/notice slot. */
.header-actions {
  gap: 8px;
}

.header-action {
  height: 36px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: #334155;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 760;
}

.header-action:hover,
.header-action.is-current {
  border-color: #cfe3ff;
  background: #eef6ff;
  color: var(--primary);
}

.identity-entry {
  height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-left: 12px;
  border: 2px solid #d7e5f5;
  border-radius: 999px;
  background: #fff;
  padding: 8px 20px 8px 14px;
  color: #25364b;
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(20, 38, 62, 0.08);
}

.identity-avatar {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #1890ff 0%, #10aeb8 100%);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 -8px 16px rgba(0, 87, 135, 0.16);
}

.identity-text {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.identity-text strong {
  color: #27364d;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.identity-text em {
  color: #6c7d94;
  font-style: normal;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.identity-logout {
  height: 64px;
  min-width: 110px;
  border: 2px solid #d7e5f5;
  border-radius: 999px;
  background: #fff;
  color: #66758b;
  padding: 0 28px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(20, 38, 62, 0.08);
}

.identity-logout:hover {
  border-color: #b9d7ff;
  background: #eef6ff;
  color: var(--primary);
}

.identity-return {
  height: 64px;
  min-width: 150px;
  border: 2px solid #d7e5f5;
  border-radius: 999px;
  background: #eef6ff;
  color: #1556a8;
  padding: 0 24px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(20, 38, 62, 0.08);
}

.identity-return:hover {
  border-color: #b9d7ff;
  background: #dbeeff;
  color: #0f4590;
}

@media (max-width: 1120px) {
  .identity-entry {
    height: 54px;
    gap: 10px;
    padding: 7px 16px 7px 10px;
  }

  .identity-avatar {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .identity-text strong {
    font-size: 21px;
  }

  .identity-text em {
    font-size: 15px;
  }

  .identity-return,
  .identity-logout {
    height: 54px;
    min-width: 90px;
    padding: 0 20px;
    font-size: 21px;
  }
}

.ant-pro-global-header:has(.identity-entry) {
  height: 78px;
  min-height: 78px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.top-ad-slot {
  min-height: 88px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.1), rgba(20, 184, 166, 0.12)),
    #fff;
}

.top-ad-track {
  display: flex;
  width: calc(var(--top-ad-count, 4) * 100%);
  transform: translateX(calc(var(--top-ad-index, 0) * -1 * (100% / var(--top-ad-count, 4))));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.top-ad-slide {
  min-height: 88px;
  width: calc(100% / var(--top-ad-count, 4));
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 20px 28px;
}

.top-ad-slide-warning {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(239, 68, 68, 0.08)),
    #fffaf0;
}

.top-ad-slide-notice {
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.12), rgba(20, 184, 166, 0.08)),
    #f8fbff;
}

.top-ad-slide-feedback {
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.16), rgba(14, 165, 233, 0.1)),
    #f5faff;
}

.top-ad-slide-battery {
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.13), rgba(59, 130, 246, 0.08)),
    #f8f7ff;
}

.top-ad-slide-abacus {
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.17), rgba(34, 197, 94, 0.09)),
    #f2fffb;
}

.top-ad-slide-profit-lock {
  background:
    linear-gradient(135deg, rgba(217, 119, 6, 0.16), rgba(250, 204, 21, 0.12)),
    #fffaf0;
}

.ad-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 8px 20px rgba(23, 105, 224, 0.18);
}

.ad-logo img {
  width: 64px;
  height: 64px;
  display: block;
}

.ad-logo-warning {
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.ad-copy {
  min-width: 0;
}

.ad-copy span {
  display: inline-flex;
  width: fit-content;
  height: 24px;
  align-items: center;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--primary);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 820;
}

.ad-copy h2 {
  margin: 6px 0 4px;
  color: #10263a;
  font-size: 22px;
  line-height: 1.24;
  letter-spacing: 0;
}

.ad-copy p {
  margin: 0;
  color: #5d7188;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 650;
}

.top-ad-slide-warning .ad-copy span {
  background: #fff3d6;
  color: #b45309;
}

.top-ad-slide-warning .ad-copy h2 {
  color: #7f1d1d;
}

.top-ad-slide-warning .ad-copy p {
  color: #8a4b16;
  white-space: normal;
  line-height: 1.45;
  padding-right: 0;
}

.top-ad-slide-notice .ad-copy span {
  background: #eaf4ff;
  color: #1769e0;
}

.top-ad-slide-notice .ad-copy h2 {
  color: #10263a;
}

.top-ad-slide-notice .ad-copy p {
  color: #52677f;
  font-size: 13px;
}

.top-ad-slide-feedback .ad-copy span {
  background: #e8f3ff;
  color: #1769e0;
}

.top-ad-slide-feedback .ad-copy h2 {
  color: #123d68;
}

.top-ad-slide-battery .ad-copy span {
  background: #efeaff;
  color: #6d28d9;
}

.top-ad-slide-battery .ad-copy h2 {
  color: #312e81;
}

.top-ad-slide-battery .ad-copy p {
  color: #5b5f82;
}

.top-ad-slide-abacus .ad-copy span {
  background: #dcfce7;
  color: #047857;
}

.top-ad-slide-abacus .ad-copy h2 {
  color: #064e3b;
}

.top-ad-slide-abacus .ad-copy p {
  color: #206f5e;
}

.top-ad-slide-profit-lock .ad-copy span {
  background: #fef3c7;
  color: #b45309;
}

.top-ad-slide-profit-lock .ad-copy h2 {
  color: #78350f;
}

.top-ad-slide-profit-lock .ad-copy p {
  color: #8a5a18;
}

.top-ad-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
}

.top-ad-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  background: rgba(95, 112, 132, 0.4);
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.top-ad-slot[data-ad-index="0"] .top-ad-dot[data-ad-dot="0"],
.top-ad-slot[data-ad-index="1"] .top-ad-dot[data-ad-dot="1"],
.top-ad-slot[data-ad-index="2"] .top-ad-dot[data-ad-dot="2"],
.top-ad-slot[data-ad-index="3"] .top-ad-dot[data-ad-dot="3"],
.top-ad-slot[data-ad-index="4"] .top-ad-dot[data-ad-dot="4"],
.top-ad-slot[data-ad-index="5"] .top-ad-dot[data-ad-dot="5"],
.top-ad-dot.is-active {
  width: 18px;
  background: linear-gradient(135deg, var(--primary), #14b8a6);
}

.top-ad-dot:hover {
  transform: scale(1.12);
}

/* Core top entries use the original Tianyantong selected gradient. */
.ant-menu .ant-menu-item[data-menu-key="auction"],
.ant-menu .ant-menu-item[data-menu-key="tianyan-ai"],
.ant-menu .ant-menu-item[data-menu-key="argus"] {
  color: rgba(230, 247, 255, 0.68);
  background: transparent;
  box-shadow: none;
}

.ant-menu .ant-menu-item[data-menu-key="auction"].ant-menu-item-selected,
.ant-menu .ant-menu-item[data-menu-key="tianyan-ai"].ant-menu-item-selected,
.ant-menu .ant-menu-item[data-menu-key="argus"].ant-menu-item-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

/* Final override: core entries use the original Tianyantong gradient when active. */
.ant-menu-item[data-menu-key="auction"],
.ant-menu-item[data-menu-key="tianyan-ai"],
.ant-menu-item[data-menu-key="argus"] {
  color: rgba(230, 247, 255, 0.68);
  background: transparent;
  box-shadow: none;
}

.ant-menu-item[data-menu-key="auction"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="tianyan-ai"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="argus"].ant-menu-item-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

/* Restore the original Tianyantong-style active treatment for core entries. */
.ant-menu-item[data-menu-key="auction"],
.ant-menu-item[data-menu-key="tianyan-ai"],
.ant-menu-item[data-menu-key="argus"] {
  color: rgba(230, 247, 255, 0.68);
  background: transparent;
  box-shadow: none;
}

.ant-menu-item[data-menu-key="auction"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="tianyan-ai"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="argus"].ant-menu-item-selected {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  box-shadow: 0 8px 18px rgba(20, 184, 166, 0.24);
}

/* Core module entries share one visual system. */
.menu-fold-arrow,
.tyai-group-title em {
  font-size: 15px;
  line-height: 1;
}

.ant-menu-item[data-menu-key="auction"],
.ant-menu-item[data-menu-key="tianyan-ai"],
.ant-menu-item[data-menu-key="argus"] {
  color: rgba(230, 247, 255, 0.68);
  background: transparent;
  box-shadow: none;
}

.ant-menu-item[data-menu-key="auction"]:hover,
.ant-menu-item[data-menu-key="tianyan-ai"]:hover,
.ant-menu-item[data-menu-key="argus"]:hover {
  color: #fff;
  background: var(--sider-hover);
}

.ant-menu-item[data-menu-key="auction"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="tianyan-ai"].ant-menu-item-selected,
.ant-menu-item[data-menu-key="argus"].ant-menu-item-selected {
  color: #fff;
  background: rgba(24, 62, 94, 0.98);
  box-shadow: inset 3px 0 0 #1890ff;
}

.sider-collapsed .tyai-submenu,
.sider-collapsed .market-submenu,
.sider-collapsed .menu-fold-arrow {
  display: none;
}

.tyai-panel {
  padding: 0;
}

/* Keep the expanded left navigation scrollable when AI and marketplace groups are open. */
.ant-layout-sider {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ant-menu {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 72px;
}

.sider-collapsed .ant-menu {
  overflow-y: hidden;
}

.tyai-screen {
  position: relative;
  min-height: calc(100vh - 168px);
  overflow: hidden;
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(rgba(95, 221, 207, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 221, 207, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #071414 0%, #0b1918 52%, #101714 100%);
  background-size: 28px 28px, 28px 28px, auto;
  color: #e6fffb;
  padding: 22px;
}

.tyai-screen::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 8%, rgba(24, 144, 255, 0.15), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(20, 184, 166, 0.13), transparent 26%);
  content: "";
}

.tyai-screen > * {
  position: relative;
  z-index: 1;
}

.tyai-header {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 250px;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.tyai-eyebrow {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid rgba(95, 240, 210, 0.42);
  border-radius: 4px;
  background: rgba(95, 240, 210, 0.09);
  color: #5ff0d2;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 760;
}

.tyai-header h2,
.tyai-placeholder h2 {
  margin: 9px 0 6px;
  color: #f4fffd;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 850;
}

.tyai-header p,
.tyai-placeholder p {
  margin: 0;
  color: rgba(230, 255, 251, 0.62);
  font-size: 13px;
  font-weight: 620;
}

.tyai-model-card {
  justify-self: end;
  width: 250px;
  height: 74px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid rgba(215, 180, 106, 0.48);
  border-radius: 6px;
  background: rgba(215, 180, 106, 0.08);
  padding: 0 16px;
}

.tyai-model-card span {
  color: #b8aa82;
  font-size: 12px;
  font-weight: 700;
}

.tyai-model-card strong {
  margin-top: 6px;
  color: #ffd282;
  font-size: 28px;
  line-height: 1;
  font-weight: 840;
}

.tyai-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.tyai-flow div,
.tyai-card,
.tyai-bottom-card,
.tyai-placeholder {
  border: 1px solid rgba(95, 221, 207, 0.22);
  border-radius: 8px;
  background: rgba(4, 20, 19, 0.88);
}

.tyai-flow div {
  min-height: 72px;
  padding: 12px;
}

.tyai-flow strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 6px;
}

.tyai-flow span {
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 620;
}

.tyai-workbench {
  display: grid;
  grid-template-columns: 280px minmax(480px, 1fr) 340px;
  gap: 14px;
  min-height: 578px;
  margin-bottom: 14px;
}

.tyai-card {
  overflow: hidden;
}

.tyai-card-head {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(95, 221, 207, 0.16);
}

.tyai-card-head h3,
.tyai-bottom-card h3,
.tyai-hit-list h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.tyai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.tyai-badge.green {
  color: #36d28a;
  background: rgba(54, 210, 138, 0.1);
  border: 1px solid rgba(54, 210, 138, 0.34);
}

.tyai-badge.orange {
  color: #f28a28;
  background: rgba(242, 138, 40, 0.11);
  border: 1px solid rgba(242, 138, 40, 0.38);
}

.tyai-badge.red {
  color: #ff5a55;
  background: rgba(255, 90, 85, 0.11);
  border: 1px solid rgba(255, 90, 85, 0.38);
}

.tyai-orders {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.tyai-order {
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px;
}

.tyai-order.is-active {
  border-color: #5ff0d2;
  box-shadow: inset 0 0 0 1px rgba(95, 240, 210, 0.2);
}

.tyai-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.tyai-order-top strong,
.tyai-mini-grid strong {
  color: #fff;
}

.tyai-order p {
  margin: 0;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 620;
}

.tyai-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.tyai-mini-grid div,
.tyai-evidence-card,
.tyai-asset-grid div,
.tyai-metrics div {
  border: 1px solid rgba(95, 221, 207, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 8px;
}

.tyai-mini-grid span,
.tyai-evidence-card span,
.tyai-asset-grid span,
.tyai-metrics span {
  display: block;
  color: rgba(230, 255, 251, 0.46);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tyai-inspect-body {
  height: calc(100% - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 184px;
}

.tyai-canvas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(95, 221, 207, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 221, 207, 0.045) 1px, transparent 1px),
    rgba(4, 18, 18, 0.72);
  background-size: 30px 30px;
}

.tyai-photo-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(64%, 330px);
  aspect-ratio: 175 / 232;
  transform: translate(-50%, -49%) rotate(-1.5deg);
  overflow: hidden;
  border: 1px solid rgba(95, 240, 210, 0.32);
  border-radius: 8px;
  background: #020707;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tyai-photo-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.tyai-real-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tyai-photo-meta {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 4;
  transform: translateX(-50%);
  max-width: calc(100% - 28px);
  height: 28px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(95, 240, 210, 0.3);
  border-radius: 999px;
  background: rgba(3, 15, 15, 0.88);
  color: rgba(230, 255, 251, 0.78);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.tyai-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 384px;
  transform: translate(-50%, -48%) rotate(-7deg);
  border: 5px solid #111821;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0) 14% 86%, rgba(255,255,255,0.12)),
    linear-gradient(145deg, #05080e, #1d2735 53%, #05080e);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.tyai-phone::before {
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 19px;
  background:
    radial-gradient(circle at 51% 24%, rgba(255,255,255,0.17), transparent 7%),
    linear-gradient(160deg, #182233 0%, #0c121b 58%, #25334a 100%);
  content: "";
}

.tyai-phone::after {
  position: absolute;
  left: 59px;
  top: 134px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 760;
  transform: rotate(7deg);
  content: "HyperOS Recovery";
}

.tyai-defect {
  position: absolute;
  z-index: 3;
  border: 2px solid #ff5a55;
  background: rgba(255, 90, 85, 0.12);
}

.tyai-defect.orange {
  border-color: #f28a28;
  background: rgba(242, 138, 40, 0.13);
}

.tyai-callout {
  position: absolute;
  z-index: 4;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(255, 90, 85, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: #ff5a55;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 830;
  white-space: nowrap;
}

.tyai-callout.orange {
  color: #f28a28;
  border-color: rgba(242, 138, 40, 0.46);
}

.tyai-callout::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.tyai-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.tyai-photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.tyai-evidence {
  border-left: 1px solid rgba(95, 221, 207, 0.16);
  background: rgba(4, 18, 18, 0.86);
  padding: 12px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.tyai-evidence-card {
  padding: 10px;
}

.tyai-evidence-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
}

.tyai-evidence-card p {
  margin: 8px 0 0;
  color: rgba(230, 255, 251, 0.55);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 620;
}

.tyai-score {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 7px;
  align-items: center;
  margin: 8px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 760;
}

.tyai-score-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.tyai-score-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #14b8a6;
}

.tyai-score-bar.red i {
  background: #ff5a55;
}

.tyai-score-bar.orange i {
  background: #f28a28;
}

.tyai-result-main {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 13px;
  align-items: center;
  padding: 18px 15px;
  border-bottom: 1px solid rgba(95, 221, 207, 0.16);
  background: rgba(20, 184, 166, 0.05);
}

.tyai-grade {
  width: 92px;
  height: 92px;
  border: 7px solid rgba(242, 138, 40, 0.55);
  border-radius: 50%;
  background: rgba(8, 24, 23, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tyai-grade strong {
  color: #ff9b3c;
  font-size: 30px;
  line-height: 1;
}

.tyai-grade span {
  margin-top: 6px;
  color: rgba(230, 255, 251, 0.6);
  font-size: 12px;
  font-weight: 720;
}

.tyai-result-copy h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 830;
}

.tyai-result-copy p {
  margin: 0;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 620;
}

.tyai-price {
  padding: 14px 15px;
  border-bottom: 1px solid rgba(95, 221, 207, 0.16);
}

.tyai-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tyai-price-row span {
  color: rgba(230, 255, 251, 0.6);
  font-size: 13px;
  font-weight: 750;
}

.tyai-price-row strong {
  color: #ff9b3c;
  font-size: 30px;
  line-height: 1;
}

.tyai-grade-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.tyai-grade-grid div {
  min-height: 52px;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 5px;
  background: rgba(215, 180, 106, 0.055);
  padding: 8px 7px;
}

.tyai-grade-grid div.is-active {
  border: 2px solid #f28a28;
  background: rgba(242, 138, 40, 0.1);
  padding: 7px 6px;
}

.tyai-grade-grid strong {
  display: block;
  color: #e4c67d;
  font-size: 13px;
  margin-bottom: 5px;
}

.tyai-grade-grid span {
  color: #ff8f2f;
  font-size: 12px;
  font-weight: 780;
}

.tyai-hit-list {
  padding: 13px 15px;
}

.tyai-hit-list h4 {
  margin-bottom: 10px;
}

.tyai-hit {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 9px;
  align-items: start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(95, 221, 207, 0.11);
}

.tyai-hit:last-child {
  border-bottom: none;
}

.tyai-hit em {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #f28a28;
  font-style: normal;
  font-weight: 850;
}

.tyai-hit em.red {
  background: #ff5a55;
}

.tyai-hit strong {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-bottom: 4px;
}

.tyai-hit p {
  margin: 0;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 620;
}

.tyai-bottom {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 14px;
}

.tyai-bottom-card {
  padding: 14px 15px;
}

.tyai-bottom-card h3 {
  margin-bottom: 12px;
}

.tyai-experience {
  min-height: 103px;
  border: 1px dashed rgba(95, 221, 207, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  padding: 12px;
}

.tyai-experience p {
  margin: 0;
  color: rgba(230, 255, 251, 0.7);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 620;
}

.tyai-experience strong {
  color: #ff9b3c;
}

.tyai-asset-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tyai-asset-grid div {
  padding: 10px;
}

.tyai-asset-grid span {
  display: inline-flex;
  height: 22px;
  align-items: center;
  border: 1px solid rgba(95, 240, 210, 0.26);
  border-radius: 999px;
  background: rgba(95, 240, 210, 0.1);
  color: #5ff0d2;
  padding: 0 8px;
  margin-bottom: 8px;
}

.tyai-asset-grid strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 7px;
}

.tyai-asset-grid p {
  margin: 0;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 620;
}

.tyai-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tyai-metrics strong {
  display: block;
  color: #5ff0d2;
  font-size: 23px;
  line-height: 1;
}

.tyai-metrics div:nth-child(2) strong {
  color: #36d28a;
}

.tyai-metrics div:nth-child(3) strong {
  color: #f28a28;
}

.tyai-metrics div:nth-child(4) strong {
  color: #8b73ff;
}

.tyai-placeholder-panel {
  padding: 0;
}

.tyai-placeholder {
  min-height: calc(100vh - 168px);
  padding: 42px;
  background:
    linear-gradient(rgba(95, 221, 207, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 221, 207, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #071414 0%, #0b1918 52%, #101714 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.tyai-data-page {
  color: #e6fffb;
}

.tyai-data-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.tyai-data-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tyai-data-grid div,
.tyai-data-table {
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 8px;
  background: rgba(4, 20, 19, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tyai-data-grid div {
  min-height: 112px;
  padding: 14px;
}

.tyai-data-grid span {
  display: block;
  color: rgba(230, 255, 251, 0.52);
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 8px;
}

.tyai-data-grid strong {
  display: block;
  color: #5ff0d2;
  font-size: 28px;
  line-height: 1;
}

.tyai-data-grid p {
  margin: 10px 0 0;
  color: rgba(230, 255, 251, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.tyai-data-table {
  display: grid;
  margin-top: 14px;
  overflow: hidden;
}

.tyai-data-table > div {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 1.5fr 1fr 0.8fr;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(95, 221, 207, 0.12);
}

.tyai-data-table > div:last-child {
  border-bottom: 0;
}

.tyai-data-table > div:first-child {
  background: rgba(95, 240, 210, 0.08);
}

.tyai-data-table b {
  color: rgba(230, 255, 251, 0.72);
  font-size: 12px;
  font-weight: 820;
}

.tyai-data-table span {
  min-width: 0;
  overflow: hidden;
  color: rgba(230, 255, 251, 0.66);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 650;
}

.tyai-ops-page {
  padding: 24px;
}

.tyai-mode .top-ad-slot {
  display: none;
}

.tyai-ops-page > .tyai-eyebrow {
  height: 22px;
  font-size: 12px;
}

.tyai-ops-page h2 {
  margin-top: 8px;
  font-size: 24px;
}

.tyai-ops-page > p {
  max-width: 720px;
}

.tyai-ops-page .tyai-data-grid {
  margin-top: 14px;
}

.tyai-ops-page .tyai-data-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tyai-ops-page .tyai-data-grid div {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label value"
    "note value";
  align-items: center;
  gap: 4px 12px;
  padding: 12px 14px;
}

.tyai-ops-page .tyai-data-grid span {
  grid-area: label;
  margin: 0;
}

.tyai-ops-page .tyai-data-grid strong {
  grid-area: value;
  font-size: 26px;
}

.tyai-ops-page .tyai-data-grid p {
  grid-area: note;
  margin: 0;
}

.tyai-ops-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 8px;
  background: rgba(4, 20, 19, 0.78);
}

.tyai-ops-toolbar button,
.tyai-report-list-head button,
.tyai-review-actions button,
.tyai-report-side button {
  height: 32px;
  border: 1px solid rgba(95, 221, 207, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(230, 255, 251, 0.74);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.tyai-ops-toolbar button:hover,
.tyai-ops-toolbar button.is-active,
.tyai-report-list-head button:hover,
.tyai-report-list-head button.is-active {
  border-color: #5ff0d2;
  background: rgba(95, 240, 210, 0.12);
  color: #5ff0d2;
}

.tyai-search-field {
  margin-left: auto;
  width: min(320px, 36%);
  height: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(95, 221, 207, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0 10px;
}

.tyai-search-field span {
  color: rgba(230, 255, 251, 0.52);
  font-size: 12px;
  font-weight: 780;
}

.tyai-search-field input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.tyai-search-field input::placeholder {
  color: rgba(230, 255, 251, 0.38);
}

.tyai-review-layout,
.tyai-report-layout {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.tyai-review-layout {
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
}

.tyai-review-queue,
.tyai-review-detail,
.tyai-report-list,
.tyai-report-preview {
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 8px;
  background: rgba(4, 20, 19, 0.78);
  overflow: hidden;
}

.tyai-review-queue {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.tyai-review-ticket {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(95, 221, 207, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.032);
  padding: 10px;
  cursor: pointer;
}

.tyai-review-ticket:hover,
.tyai-review-ticket.is-active {
  border-color: #5ff0d2;
  background: rgba(95, 240, 210, 0.08);
}

.tyai-ticket-main {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
}

.tyai-ticket-main strong,
.tyai-review-head strong,
.tyai-review-facts strong,
.tyai-report-row strong,
.tyai-report-side strong {
  color: #fff;
}

.tyai-ticket-main p {
  margin: 4px 0 0;
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  font-weight: 650;
}

.tyai-ticket-rank {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 860;
}

.tyai-ticket-rank.high {
  background: #ff5a55;
}

.tyai-ticket-rank.medium {
  background: #f28a28;
}

.tyai-ticket-rank.low {
  background: #14b8a6;
}

.tyai-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tyai-ticket-meta span {
  height: 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 999px;
  color: rgba(230, 255, 251, 0.58);
  padding: 0 8px;
  font-size: 11px;
  font-weight: 720;
}

.tyai-ticket-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.tyai-ticket-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f28a28, #ff5a55);
}

.tyai-filter-empty {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(95, 221, 207, 0.2);
  border-radius: 7px;
  color: rgba(230, 255, 251, 0.5);
  font-size: 13px;
  font-weight: 760;
}

.tyai-review-head {
  height: 64px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(95, 221, 207, 0.14);
  padding: 0 18px;
}

.tyai-review-head span,
.tyai-review-facts span,
.tyai-report-paper header span,
.tyai-report-product span,
.tyai-report-side span {
  display: block;
  color: rgba(230, 255, 251, 0.5);
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 6px;
}

.tyai-review-head strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.tyai-review-head em {
  max-width: 280px;
  border: 1px solid rgba(242, 138, 40, 0.34);
  border-radius: 999px;
  background: rgba(242, 138, 40, 0.1);
  color: #ffd282;
  padding: 7px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  white-space: nowrap;
}

.tyai-review-body {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.76fr);
  gap: 12px;
  padding: 12px;
}

.tyai-review-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.tyai-evidence-photo {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(95, 221, 207, 0.18);
  border-radius: 7px;
  background: #020707;
}

.tyai-evidence-photo.large {
  grid-row: span 2;
}

.tyai-evidence-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tyai-evidence-photo span {
  position: absolute;
  border: 2px solid #ff5a55;
  background: rgba(255, 90, 85, 0.13);
}

.tyai-review-facts {
  display: grid;
  gap: 8px;
}

.tyai-review-facts div,
.tyai-report-side div {
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.032);
  padding: 11px;
}

.tyai-review-facts strong {
  display: block;
  font-size: 15px;
}

.tyai-review-facts p,
.tyai-report-side p {
  margin: 8px 0 0;
  color: rgba(230, 255, 251, 0.58);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 640;
}

.tyai-review-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid rgba(95, 221, 207, 0.14);
  padding: 10px 12px;
}

.tyai-review-actions button.primary,
.tyai-report-side button {
  border-color: rgba(20, 184, 166, 0.55);
  background: linear-gradient(135deg, #14b8a6, #0e8f83);
  color: #fff;
}

.tyai-report-layout {
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
}

.tyai-report-list {
  padding: 10px;
}

.tyai-report-list-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.tyai-report-list-head strong {
  color: #fff;
  font-size: 15px;
}

.tyai-report-list-head div {
  display: flex;
  gap: 6px;
}

.tyai-report-list-head button {
  height: 28px;
  padding: 0 9px;
}

.tyai-report-row {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(95, 221, 207, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.032);
  padding: 10px;
  cursor: pointer;
}

.tyai-report-row + .tyai-report-row {
  margin-top: 8px;
}

.tyai-report-row:hover,
.tyai-report-row.is-active {
  border-color: #5ff0d2;
  background: rgba(95, 240, 210, 0.08);
}

.tyai-report-row span {
  color: #5ff0d2;
  font-size: 12px;
  font-weight: 780;
}

.tyai-report-row em {
  color: rgba(230, 255, 251, 0.56);
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.tyai-report-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 12px;
  padding: 12px;
}

.tyai-report-paper {
  min-height: 438px;
  border-radius: 8px;
  background: #f8fbfd;
  color: #12202a;
  padding: 16px;
}

.tyai-report-paper header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #dbe8ef;
  padding-bottom: 12px;
}

.tyai-report-paper header span,
.tyai-report-product span {
  color: #657485;
  margin-bottom: 7px;
}

.tyai-report-paper h3 {
  margin: 0;
  color: #102033;
  font-size: 24px;
  line-height: 1;
}

.tyai-report-paper header > strong {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 6px solid rgba(242, 138, 40, 0.36);
  border-radius: 50%;
  color: #f28a28;
  font-size: 24px;
  font-weight: 880;
}

.tyai-report-product {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.tyai-report-product div {
  border: 1px solid #dbe8ef;
  border-radius: 7px;
  background: #fff;
  padding: 11px;
}

.tyai-report-product strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #132335;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.tyai-report-evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tyai-report-evidence-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  border: 1px solid #dbe8ef;
  border-radius: 7px;
  background: #eef4f7;
}

.tyai-report-findings {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.tyai-report-findings div {
  display: grid;
  grid-template-columns: 42px 1fr auto auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  border: 1px solid #dbe8ef;
  border-radius: 7px;
  background: #fff;
  padding: 0 12px;
}

.tyai-report-findings b {
  color: #14b8a6;
  font-size: 14px;
}

.tyai-report-findings span {
  color: #182b3a;
  font-size: 13px;
  font-weight: 760;
}

.tyai-report-findings strong {
  color: #f28a28;
  font-size: 13px;
}

.tyai-report-findings em {
  color: #657485;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.tyai-report-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.tyai-report-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(95, 221, 207, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.032);
  padding: 13px 13px 13px 36px;
}

.tyai-report-timeline li {
  color: rgba(230, 255, 251, 0.6);
  font-size: 12px;
  font-weight: 650;
}

.tyai-report-timeline strong {
  display: inline-block;
  width: 44px;
  color: #5ff0d2;
}

@media (max-width: 1280px) {
  .tyai-workbench,
  .tyai-bottom,
  .tyai-review-layout,
  .tyai-report-layout,
  .tyai-report-preview {
    grid-template-columns: 1fr;
  }

  .tyai-flow,
  .tyai-data-grid.four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tyai-header,
  .tyai-inspect-body,
  .tyai-flow,
  .tyai-asset-grid {
    grid-template-columns: 1fr;
  }

  .tyai-data-grid.four,
  .tyai-data-table > div,
  .tyai-review-body,
  .tyai-report-product,
  .tyai-report-evidence-strip,
  .tyai-report-findings div {
    grid-template-columns: 1fr;
  }

  .tyai-model-card {
    justify-self: stretch;
    width: 100%;
  }

  .tyai-ops-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .tyai-search-field {
    width: 100%;
    margin-left: 0;
  }
}

/* Final sidebar override: marketplace groups can grow, but the left nav must keep vertical scrolling. */
.ant-layout-sider {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ant-menu {
  display: block;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 72px;
}

.sider-collapsed .ant-menu {
  overflow-y: hidden;
}

@media (max-width: 760px) {
  .ant-layout {
    display: flex;
  }

  .ant-layout-sider {
    position: fixed;
    inset: 0 auto 0 0;
    width: 220px;
    height: 100vh;
  }

  .ant-layout-sider + .ant-layout,
  .sider-collapsed .ant-layout-sider + .ant-layout,
  body.market-recycle .ant-layout-sider + .ant-layout,
  body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
    margin-left: 220px;
  }

  .sider-collapsed .ant-layout-sider + .ant-layout,
  body.market-recycle.sider-collapsed .ant-layout-sider + .ant-layout {
    margin-left: 60px;
  }

  .ant-menu {
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 14px 0 72px;
  }

  .ant-menu-item {
    flex: initial;
    height: 48px;
    margin: 3px 10px;
    padding: 0 14px;
  }

  .market-menu-open .dark-market-submenu,
  .realtime-market-menu-open .realtime-market-submenu,
  .price-system-menu-open .price-system-submenu,
  .argus-menu-open .argus-submenu,
  .task-center-menu-open .task-center-submenu {
    display: grid;
  }
}

/* Menu grouping: parent rows only expand; the concrete child marketplace owns the active state. */
.ant-menu-item[data-menu-key="market"].is-open,
.ant-menu-item[data-menu-key="realtime-market"].is-open,
.ant-menu-item[data-menu-key="price-system"].is-open,
.ant-menu-item[data-menu-key="argus"].is-open,
.ant-menu-item[data-menu-key="tasks"].is-open {
  color: rgba(230, 247, 255, 0.92);
  background: rgba(24, 62, 94, 0.74);
  box-shadow: none;
}

.ant-menu-item[data-menu-key="market"].is-open:not(.ant-menu-item-selected),
.ant-menu-item[data-menu-key="realtime-market"].is-open:not(.ant-menu-item-selected),
.ant-menu-item[data-menu-key="price-system"].is-open:not(.ant-menu-item-selected),
.ant-menu-item[data-menu-key="argus"].is-open:not(.ant-menu-item-selected),
.ant-menu-item[data-menu-key="tasks"].is-open:not(.ant-menu-item-selected) {
  color: rgba(230, 247, 255, 0.92);
}

.market-subitem.is-active {
  color: #fff;
  background: rgba(24, 62, 94, 0.98);
  box-shadow: inset 3px 0 0 #1890ff;
}

.market-subitem.is-active strong {
  font-weight: 760;
}

.market-subitem.is-active .menu-icon {
  color: #fff;
}

/* Final HSB report override: official abnormal list has no row chrome or detached image rail. */
body.market-recycle .recycle-report-priority-images {
  display: none !important;
}

body.market-recycle .recycle-report-flaw-row {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* HSB report compact defect description final override. */
body.market-recycle .recycle-report-flaw-row {
  min-height: 34px !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.45 !important;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 17px !important;
  height: 17px !important;
  font-size: 11px !important;
}

/* HSB report engineer note final position: right side of the abnormal header. */
body.market-recycle .recycle-report-section-head {
  align-items: flex-start !important;
}

body.market-recycle .recycle-report-section-side {
  flex: 0 1 min(66%, 660px) !important;
  min-width: 360px !important;
  margin-left: auto !important;
}

body.market-recycle .recycle-report-engineer-note {
  border: 1px solid #ffe1bf !important;
  border-radius: 16px !important;
  background: #fffaf2 !important;
  padding: 16px 18px !important;
  text-align: left !important;
}

body.market-recycle .recycle-report-engineer-note span {
  color: #9a3412 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.market-recycle .recycle-report-engineer-note p {
  display: -webkit-box !important;
  margin: 9px 0 0 !important;
  overflow: hidden !important;
  color: #7c2d12 !important;
  font-size: 14px !important;
  font-weight: 620 !important;
  line-height: 1.7 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 4 !important;
}

/* HSB report density pass: smaller defect text, larger linked defect images. */
body.market-recycle .recycle-report-flaw-row {
  min-height: 38px !important;
  margin-bottom: 12px !important;
  font-size: 14px !important;
  font-weight: 680 !important;
}

body.market-recycle .recycle-report-flaw-thumbs {
  gap: 8px !important;
}

body.market-recycle .recycle-report-flaw-thumbs button {
  width: 78px !important;
  height: 78px !important;
  border-radius: 14px !important;
}

/* HSB report defect thumbnails should sit close to their matching text, not at the far edge. */
body.market-recycle .recycle-report-flaw-row > span:not(.recycle-report-flaw-thumbs) {
  flex: 0 1 auto !important;
  max-width: min(720px, calc(100% - 112px)) !important;
}

body.market-recycle .recycle-report-flaw-thumbs {
  margin-left: 12px !important;
  align-self: flex-start !important;
}

@media (max-width: 760px) {
  body.market-recycle .recycle-report-section-head {
    flex-direction: column !important;
  }

  body.market-recycle .recycle-report-section-side {
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
  }
}

/* HSB engineer note final layout: make it a readable panel, not a compressed chip. */
body.market-recycle .recycle-report-section-head {
  display: grid !important;
  grid-template-columns: minmax(180px, max-content) minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 18px !important;
  padding: 18px 22px !important;
}

body.market-recycle .recycle-report-section-side {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
}

body.market-recycle .recycle-report-engineer-note {
  min-height: 118px !important;
  max-height: 220px !important;
  border: 1px solid #ffd59f !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #fff8ed 0%, #fffdf8 100%) !important;
  padding: 20px 24px !important;
  overflow: auto !important;
  box-shadow: inset 4px 0 0 #ff8a1c !important;
}

body.market-recycle .recycle-report-engineer-note span {
  color: #8a2f0b !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
}

body.market-recycle .recycle-report-engineer-note p {
  display: block !important;
  margin: 12px 0 0 !important;
  overflow: visible !important;
  color: #6f2a12 !important;
  font-size: 15px !important;
  font-weight: 620 !important;
  line-height: 1.9 !important;
  white-space: pre-wrap !important;
  word-break: break-word !important;
  -webkit-line-clamp: initial !important;
}

@media (max-width: 1080px) {
  body.market-recycle .recycle-report-section-head {
    grid-template-columns: 1fr !important;
  }
}

/* Final sidebar interaction polish: clearer parent/child menus and stateful arrows. */
.ant-menu .menu-fold-arrow,
.ant-menu .tyai-group-title em {
  min-width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: auto !important;
  border-radius: 999px !important;
  color: rgba(230, 247, 255, 0.68) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease !important;
}

.ant-menu .ant-menu-item:hover .menu-fold-arrow,
.ant-menu .ant-menu-item.is-open .menu-fold-arrow,
.ant-menu .ant-menu-item-selected .menu-fold-arrow,
.ant-menu .tyai-group-title:hover em,
.ant-menu .tyai-subgroup.is-open .tyai-group-title em {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.ant-menu .ant-menu-item,
.ant-menu .market-subitem,
.ant-menu .tyai-subitem,
.ant-menu .tyai-group-title {
  cursor: pointer !important;
}

.ant-menu .ant-menu-item:hover,
.ant-menu .market-subitem:hover,
.ant-menu .tyai-subitem:hover,
.ant-menu .tyai-group-title:hover {
  color: #fff !important;
  background: rgba(32, 76, 116, 0.74) !important;
}

.ant-menu .ant-menu-item.is-open {
  color: #fff !important;
  background: rgba(22, 62, 98, 0.9) !important;
  box-shadow: inset 3px 0 0 rgba(95, 240, 210, 0.84) !important;
}

.ant-menu .tyai-submenu,
.ant-menu .market-submenu {
  margin: 0 0 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(1, 13, 24, 0.58) !important;
  padding: 8px 0 10px !important;
  box-shadow: inset 3px 0 0 rgba(24, 144, 255, 0.28) !important;
}

.ant-menu .market-subitem,
.ant-menu .tyai-subitem {
  width: calc(100% - 20px) !important;
  min-height: 50px !important;
  margin: 3px 10px !important;
  border-radius: 7px !important;
  color: rgba(230, 247, 255, 0.58) !important;
  background: transparent !important;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease !important;
}

.ant-menu .market-subitem:hover,
.ant-menu .tyai-subitem:hover {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(31, 74, 112, 0.72) !important;
}

.ant-menu .market-subitem.is-active,
.ant-menu .tyai-subitem.is-active {
  color: #fff !important;
  background: rgba(31, 85, 128, 0.98) !important;
  box-shadow: inset 4px 0 0 #1890ff !important;
}

.ant-menu .market-subitem.is-active strong,
.ant-menu .tyai-subitem.is-active strong {
  font-weight: 850 !important;
}

.ant-menu .market-subitem.is-active .menu-icon,
.ant-menu .tyai-subitem.is-active::before {
  color: #fff !important;
  opacity: 1 !important;
}

.sider-collapsed .menu-fold-arrow {
  display: none !important;
}

/* Final arrow normalization: only parent menus show the same chevron shape. */
.ant-menu .menu-fold-arrow,
.ant-menu .tyai-group-title em {
  position: relative !important;
  width: 24px !important;
  min-width: 24px !important;
  height: 24px !important;
  margin-left: auto !important;
  border-radius: 999px !important;
  color: rgba(230, 247, 255, 0.68) !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -999px !important;
  overflow: hidden !important;
  background: transparent !important;
  transform: rotate(0deg) !important;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease !important;
}

.ant-menu .menu-fold-arrow::before,
.ant-menu .tyai-group-title em::before {
  position: absolute !important;
  top: 8px !important;
  left: 7px !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  content: "" !important;
}

.ant-menu .ant-menu-item.is-open .menu-fold-arrow,
.ant-menu .tyai-subgroup.is-open .tyai-group-title em {
  transform: rotate(180deg) !important;
}

.ant-menu .ant-menu-item:hover .menu-fold-arrow,
.ant-menu .ant-menu-item.is-open .menu-fold-arrow,
.ant-menu .ant-menu-item-selected .menu-fold-arrow,
.ant-menu .tyai-group-title:hover em,
.ant-menu .tyai-subgroup.is-open .tyai-group-title em {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.11) !important;
}

.ant-menu .tyai-group-title {
  grid-template-columns: minmax(0, 1fr) 24px !important;
}

.ant-menu .tyai-group-title em {
  box-sizing: border-box !important;
  width: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 !important;
  flex: 0 0 24px !important;
}

/* Query progress: the loading submit button stays clickable to reopen progress. */
.ant-btn.is-loading {
  cursor: pointer !important;
  opacity: 1 !important;
  border-color: var(--primary) !important;
  background: linear-gradient(135deg, var(--primary), #18b7b5) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.22) !important;
}

.ant-btn.is-loading::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-radius: 999px;
  background: currentColor;
  vertical-align: 1px;
  animation: query-button-pulse 1.1s ease-in-out infinite;
  content: "";
}

@keyframes query-button-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.78);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Marketplace filter redesign: grouped, calmer controls with larger tap targets. */
.market-filter-panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  margin: 0 0 18px !important;
  border: 1px solid #e5eaf2 !important;
  border-radius: 10px !important;
  background: #fff !important;
  padding: 16px !important;
  box-shadow: 0 10px 26px rgba(18, 35, 60, 0.05) !important;
}

.market-filter-panel .filter-section {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid #edf1f6;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 14px;
}

.market-filter-panel .filter-section-category,
.market-filter-panel .rich-filter-panel {
  grid-column: 1 / -1 !important;
}

.market-filter-panel .filter-section-head {
  display: grid;
  gap: 5px;
  padding-top: 4px;
}

.market-filter-panel .filter-section-head strong {
  color: #172033;
  font-size: 15px;
  font-weight: 800;
}

.market-filter-panel .filter-section-head span {
  color: #8a96a8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.market-filter-panel .filter-grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.market-filter-panel .filter-grid-primary {
  grid-template-columns: minmax(170px, 1.35fr) repeat(5, minmax(128px, 1fr)) auto;
}

.market-filter-panel .filter-grid-primary .rich-filter-combo-field {
  grid-column: auto !important;
}

.market-filter-panel .filter-grid-attributes {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.market-filter-panel .linked-attribute-selects,
.market-filter-panel .linked-attribute-selects[hidden] {
  display: none !important;
}

.market-filter-panel .filter-grid-search {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.market-filter-panel .filter-system-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.85fr) minmax(150px, 0.85fr) minmax(260px, 1.35fr) auto;
  gap: 12px;
  align-items: end;
  min-width: 0;
}

.market-filter-panel .ant-form-item {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.market-filter-panel .ant-form-item > span {
  padding: 0 !important;
  color: #5d687a !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.market-filter-panel .category-filter-field > span {
  display: none !important;
}

.market-filter-panel .category-filter-bar {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(118px, 142px)) !important;
  justify-content: start !important;
  gap: 10px !important;
}

.market-filter-panel .category-filter-chip {
  justify-content: center !important;
  height: 46px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #1d2533 !important;
  padding: 0 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.market-filter-panel .category-filter-chip strong {
  min-width: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  color: #8d98a9 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.market-filter-panel .category-filter-chip:hover,
.market-filter-panel .category-filter-chip.is-active {
  border-color: #1769e0 !important;
  background: #eef6ff !important;
  color: #1769e0 !important;
  box-shadow: inset 0 0 0 1px rgba(23, 105, 224, 0.1) !important;
}

.market-filter-panel .category-filter-chip.is-active strong {
  color: #1769e0 !important;
}

.market-filter-panel .ant-form-item select,
.market-filter-panel .ant-form-item input,
.market-filter-panel .rich-filter-trigger,
.market-filter-panel .auto-update-toggle,
.market-filter-panel .reverse-check {
  height: 46px !important;
  border: 1px solid #d8dde6 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #1d2533 !important;
  padding: 0 14px !important;
  font-size: 15px !important;
}

.market-filter-panel .rich-filter-trigger {
  grid-template-columns: minmax(0, 1fr) 18px !important;
}

.market-filter-panel .rich-filter-trigger strong {
  color: #1d2533 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.market-filter-panel .engineer-filter,
.market-filter-panel .qc-filter,
.market-filter-panel .rich-filter-combo-field,
.market-filter-panel .auto-update-field {
  grid-column: auto !important;
}

.market-filter-panel .engineer-filter-control {
  grid-template-columns: minmax(0, 1fr) 86px !important;
}

.market-filter-panel .qc-filter-control {
  grid-template-columns: minmax(0, 1fr) !important;
}

.market-filter-panel .reverse-check {
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 12px !important;
}

.market-filter-panel .reverse-check input {
  width: 16px !important;
  height: 16px !important;
}

.market-filter-panel .auto-update-control {
  grid-template-columns: 128px minmax(0, 1fr) !important;
  gap: 10px !important;
}

.market-filter-panel .auto-update-toggle {
  justify-content: center !important;
  padding: 0 12px !important;
}

.market-filter-panel .auto-update-progress {
  min-width: 0 !important;
}

.market-filter-panel .form-actions {
  grid-column: auto !important;
  justify-content: start !important;
  min-height: 0 !important;
  padding: 0 !important;
}

.market-filter-panel .form-actions .ant-btn {
  height: 46px !important;
  min-width: 86px !important;
  border-radius: 6px !important;
  font-size: 15px !important;
}

.market-filter-panel .rich-filter-panel {
  grid-column: 1 / -1 !important;
  max-height: 680px !important;
  border-radius: 8px !important;
}

.market-filter-panel .rich-filter-content {
  max-height: 680px !important;
}

.market-filter-panel .rich-filter-sidebar {
  max-height: 680px !important;
}

.market-filter-panel .rich-filter-options {
  grid-template-columns: repeat(3, minmax(190px, 1fr)) !important;
  gap: 14px 18px !important;
}

.market-filter-panel .rich-filter-option {
  min-height: 56px !important;
  border-radius: 6px !important;
  font-size: 16px !important;
}

/* Non-recycle marketplace product table: more breathing room, no duplicate lifecycle column. */
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table {
  min-width: 2040px !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th,
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td {
  padding: 18px 14px !important;
  line-height: 1.7 !important;
  vertical-align: middle !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody tr {
  min-height: 128px;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(1),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(1) {
  width: 92px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(2),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(2) {
  width: 72px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(3) {
  width: 76px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(4),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(4) {
  width: 230px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(5),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(5) {
  width: 112px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(6) {
  width: 300px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(7),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(7) {
  width: 320px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(8) {
  width: 140px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(9) {
  width: 260px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(10) {
  width: 86px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(11),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(11) {
  width: 96px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(12) {
  width: 120px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(13) {
  width: 130px !important;
}

body.market-bulk .market-panel[data-panel="current"] .ant-table {
  min-width: 2040px !important;
}

body.market-bulk .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body.market-bulk .market-panel[data-panel="current"] .ant-table td:nth-child(9) {
  width: 190px !important;
  max-width: 190px !important;
  overflow: hidden !important;
}

body.market-bulk .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body.market-bulk .market-panel[data-panel="current"] .ant-table td:nth-child(10) {
  width: 96px !important;
  max-width: 96px !important;
  position: relative;
  z-index: 1;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-title-cell {
  min-width: 0 !important;
  max-width: none !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-title-with-badge {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 6px 8px !important;
  justify-content: center !important;
  line-height: 1.55 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table .product-info-cell {
  width: auto !important;
  max-width: none !important;
  text-align: left !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-info-compact {
  display: -webkit-box !important;
  max-height: none !important;
  overflow: hidden !important;
  color: #3f4b5f !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  text-overflow: initial !important;
  word-break: break-word !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .quality-desc-cell {
  color: #3f4b5f !important;
  text-align: left !important;
  word-break: break-word !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-table-text-clamp {
  display: -webkit-box !important;
  overflow: hidden !important;
  color: inherit !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  text-overflow: ellipsis !important;
  word-break: break-word !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .auto-update-column-cell {
  word-break: keep-all !important;
}

@media (max-width: 1380px) {
  .market-filter-panel .filter-grid-primary {
    grid-template-columns: minmax(170px, 1.2fr) repeat(3, minmax(120px, 1fr)) !important;
  }

  .market-filter-panel .filter-grid-attributes,
  .market-filter-panel .filter-grid-search {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
  }

  .market-filter-panel .filter-system-row {
    grid-template-columns: minmax(130px, 0.8fr) minmax(140px, 0.8fr) minmax(240px, 1.35fr) auto !important;
  }
}

@media (max-width: 980px) {
  .market-filter-panel {
    grid-template-columns: 1fr !important;
  }

  .market-filter-panel .filter-section {
    grid-template-columns: 1fr !important;
  }

  .market-filter-panel .category-filter-bar,
  .market-filter-panel .filter-grid-primary,
  .market-filter-panel .filter-grid-attributes,
  .market-filter-panel .filter-grid-search,
  .market-filter-panel .filter-system-row {
    grid-template-columns: 1fr !important;
  }

  .market-filter-panel .rich-filter-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Compact marketplace filter: toolbar + dropdown card, closer to native B2B auction tools. */
.market-filter-panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 0 0 12px !important;
  border: 1px solid #edf0f5 !important;
  border-radius: 0 !important;
  background: #fff !important;
  padding: 10px 12px !important;
  box-shadow: none !important;
}

.market-filter-panel .filter-section {
  display: contents !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.market-filter-panel .filter-section-head {
  display: none !important;
}

.market-filter-panel .filter-grid,
.market-filter-panel .filter-system-row {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(118px, 1fr)) !important;
  gap: 8px !important;
  align-items: center !important;
}

.market-filter-panel .filter-section-category {
  display: block !important;
}

.market-filter-panel .category-filter-field {
  display: block !important;
  min-height: 0 !important;
}

.market-filter-panel .category-filter-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 2px !important;
}

.market-filter-panel .category-filter-chip {
  width: auto !important;
  min-width: 86px !important;
  height: 34px !important;
  border-color: #d7dce5 !important;
  border-radius: 4px !important;
  padding: 0 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.market-filter-panel .category-filter-chip strong {
  margin-left: 4px !important;
  font-size: 12px !important;
}

.market-filter-panel .ant-form-item {
  display: block !important;
  min-height: 0 !important;
}

.market-filter-panel .ant-form-item > span {
  display: none !important;
}

.market-filter-panel .ant-form-item select,
.market-filter-panel .ant-form-item input,
.market-filter-panel .rich-filter-trigger,
.market-filter-panel .reverse-check,
.market-filter-panel .auto-update-toggle {
  height: 36px !important;
  border: 1px solid #d7dce5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 0 12px !important;
  color: #272d3a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}

.market-filter-panel .rich-filter-trigger {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 14px !important;
  text-align: left !important;
}

.market-filter-panel .rich-filter-trigger strong {
  color: #272d3a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.market-filter-panel .rich-filter-trigger:hover,
.market-filter-panel .rich-filter-trigger.is-open,
.market-filter-panel .ant-form-item select:hover,
.market-filter-panel .ant-form-item input:hover {
  border-color: #2f80ff !important;
}

.market-filter-panel .engineer-filter-control {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 68px !important;
  gap: 6px !important;
}

.market-filter-panel .qc-filter-control {
  grid-template-columns: minmax(0, 1fr) !important;
}

.market-filter-panel .reverse-check {
  justify-content: center !important;
  padding: 0 8px !important;
  white-space: nowrap !important;
}

.market-filter-panel .reverse-check input {
  width: 14px !important;
  height: 14px !important;
}

.market-filter-panel .auto-update-control {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  gap: 8px !important;
}

.market-filter-panel .auto-update-progress {
  height: 36px !important;
  min-width: 0 !important;
}

.market-filter-panel .form-actions {
  justify-content: flex-start !important;
}

.market-filter-panel .form-actions .ant-btn {
  height: 36px !important;
  min-width: 70px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
}

.market-filter-panel .rich-filter-panel {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 220px minmax(0, 1fr) !important;
  max-height: 620px !important;
  margin-top: 4px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden !important;
}

.market-filter-panel .rich-filter-panel.hidden {
  display: none !important;
}

.market-filter-panel .rich-filter-sidebar {
  max-height: 620px !important;
  border-right: 1px solid #edf0f5 !important;
  background: #fafafa !important;
}

.market-filter-panel .rich-filter-side-item {
  height: 42px !important;
  border-radius: 0 !important;
  padding: 0 22px !important;
  font-size: 15px !important;
}

.market-filter-panel .rich-filter-side-item:hover,
.market-filter-panel .rich-filter-side-item.is-active {
  background: #f0f2f5 !important;
  color: #151a24 !important;
}

.market-filter-panel .rich-filter-content {
  max-height: 620px !important;
  padding: 18px 24px 76px !important;
}

.market-filter-panel .rich-filter-options {
  grid-template-columns: repeat(3, minmax(170px, 1fr)) !important;
  gap: 12px 18px !important;
}

.market-filter-panel .rich-filter-option {
  min-height: 48px !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #20242e !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

.market-filter-panel .rich-filter-option:hover,
.market-filter-panel .rich-filter-option.is-active {
  border-color: #d4a650 !important;
  background: #fffaf0 !important;
  color: #8a5a0a !important;
  font-weight: 600 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table {
  min-width: 2040px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th,
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td {
  padding: 12px 10px !important;
  line-height: 1.45 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(6) {
  width: 310px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table td:nth-child(8) {
  width: 140px !important;
}

@media (max-width: 1280px) {
  .market-filter-panel .filter-grid,
  .market-filter-panel .filter-system-row {
    grid-template-columns: repeat(4, minmax(118px, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .market-filter-panel .filter-grid,
  .market-filter-panel .filter-system-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .market-filter-panel .rich-filter-panel {
    grid-template-columns: 1fr !important;
  }
}

/* Second pass: keep the default filter surface as a real compact toolbar. */
.market-filter-panel {
  gap: 6px !important;
  padding: 8px 10px !important;
}

.market-filter-panel .filter-section-primary {
  display: block !important;
}

.market-filter-panel .filter-grid-primary {
  display: grid !important;
  grid-template-columns: minmax(300px, 1.45fr) repeat(4, minmax(132px, 0.62fr)) minmax(170px, 0.72fr) auto !important;
  gap: 8px !important;
  align-items: center !important;
}

.market-filter-panel .filter-grid-primary .report-filter-field {
  min-width: 170px !important;
}

.market-filter-panel .filter-main-actions {
  display: flex !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  min-width: 146px !important;
}

.market-filter-panel .filter-main-actions .ant-btn {
  height: 36px !important;
  min-width: 68px !important;
}

.market-filter-panel .filter-advanced-card {
  position: relative !important;
  grid-column: 1 / -1 !important;
}

.market-filter-panel .filter-advanced-card > summary {
  display: inline-grid !important;
  grid-template-columns: auto 12px !important;
  align-items: center !important;
  gap: 8px !important;
  height: 34px !important;
  border: 1px solid #d7dce5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 0 12px !important;
  color: #525d70 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  list-style: none !important;
}

.market-filter-panel .filter-advanced-card > summary::-webkit-details-marker {
  display: none !important;
}

.market-filter-panel .filter-advanced-card > summary i {
  width: 8px !important;
  height: 8px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  transform: translateY(-2px) rotate(45deg) !important;
}

.market-filter-panel .filter-advanced-card[open] > summary i {
  transform: translateY(2px) rotate(225deg) !important;
}

.market-filter-panel .filter-advanced-body {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  margin-top: 8px !important;
  border: 1px solid #e5e8ee !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 12px !important;
  box-shadow: 0 8px 22px rgba(23, 35, 55, 0.08) !important;
}

.market-filter-panel .filter-advanced-card:not([open]) .filter-advanced-body {
  display: none !important;
}

.market-filter-panel .filter-advanced-body .filter-section {
  display: grid !important;
  grid-template-columns: 96px minmax(0, 1fr) !important;
  gap: 12px !important;
}

.market-filter-panel .filter-advanced-body .filter-section-head {
  display: grid !important;
  gap: 3px !important;
  padding-top: 6px !important;
}

.market-filter-panel .filter-advanced-body .filter-section-head strong {
  color: #242b3a !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.market-filter-panel .filter-advanced-body .filter-section-head span {
  color: #9098a6 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.market-filter-panel .filter-advanced-body .filter-grid,
.market-filter-panel .filter-advanced-body .filter-system-row {
  grid-template-columns: repeat(5, minmax(126px, 1fr)) !important;
}

.market-filter-panel .filter-advanced-body .filter-grid-search {
  grid-template-columns: minmax(320px, 0.42fr) !important;
}

.market-filter-panel .filter-advanced-body .engineer-filter-control {
  grid-template-columns: minmax(0, 1fr) 68px !important;
}

.market-filter-panel .rich-filter-panel {
  margin-top: 8px !important;
}

@media (max-width: 1280px) {
  .market-filter-panel .filter-grid-primary {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) auto !important;
  }
}

@media (max-width: 920px) {
  .market-filter-panel .filter-grid-primary,
  .market-filter-panel .filter-advanced-body .filter-grid,
  .market-filter-panel .filter-advanced-body .filter-system-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .market-filter-panel .filter-advanced-body .filter-section {
    grid-template-columns: 1fr !important;
  }
}

/* Recycle report abnormal summary: merged orange-outline warning card. */
body.market-recycle .recycle-report-section-head {
  display: grid !important;
  grid-template-columns: minmax(160px, 0.16fr) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 16px 20px 10px !important;
  border: 2px solid #ffbd73 !important;
  border-left-width: 6px !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #fff8ef 0%, #fffdf8 100%) !important;
  padding: 14px 22px !important;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07) !important;
}

body.market-recycle .recycle-report-section-head > div:first-child {
  display: grid !important;
  align-content: center !important;
  min-height: 74px !important;
  border-right: 1px solid #ffd4a2 !important;
  background: transparent !important;
  padding: 0 18px 0 0 !important;
}

body.market-recycle .recycle-report-section-head > div:first-child span {
  color: #748093 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

body.market-recycle .recycle-report-section-head > div:first-child strong {
  margin-top: 5px !important;
  color: #c2410c !important;
  font-size: 20px !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
}

body.market-recycle .recycle-report-section-side {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}

body.market-recycle .recycle-report-engineer-note {
  min-height: 0 !important;
  max-height: none !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

body.market-recycle .recycle-report-engineer-note span {
  color: #8a2f0b !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

body.market-recycle .recycle-report-engineer-note p {
  display: block !important;
  margin: 7px 0 0 !important;
  color: #512315 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  line-height: 1.48 !important;
  max-height: 64px !important;
  overflow: auto !important;
  white-space: pre-wrap !important;
  word-break: break-word !important;
}

.engineer-note-lines {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 3px !important;
  margin: 7px 0 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.engineer-note-lines p {
  display: grid !important;
  grid-template-columns: max-content minmax(0, 1fr) !important;
  column-gap: 8px !important;
  align-items: start !important;
  margin: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  white-space: normal !important;
}

.engineer-note-lines b,
.engineer-note-lines em {
  font-style: normal !important;
}

.engineer-note-lines b {
  color: inherit !important;
  font-weight: 850 !important;
  white-space: nowrap !important;
}

.engineer-note-lines em {
  min-width: 0 !important;
  color: inherit !important;
  font-weight: inherit !important;
  word-break: break-word !important;
}

.engineer-note-lines .is-note {
  display: block !important;
}

body.market-recycle .recycle-report-engineer-note .engineer-note-lines {
  max-height: none !important;
  overflow: visible !important;
  color: #512315 !important;
  font-size: 13px !important;
  font-weight: 660 !important;
}

body.market-recycle .recycle-report-engineer-note .engineer-note-lines p {
  max-height: none !important;
  overflow: visible !important;
}

.market-report-engineer .engineer-note-lines {
  color: #4b5563 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body.market-recycle .recycle-report-section-side > em {
  display: block !important;
  height: 100% !important;
  background: transparent !important;
  padding: 0 !important;
  color: #8a5a0a !important;
  font-size: 13px !important;
  font-style: normal !important;
}

@media (max-width: 900px) {
  body.market-recycle .recycle-report-section-head {
    grid-template-columns: 1fr !important;
  }

  body.market-recycle .recycle-report-section-head > div:first-child {
    border-right: 0 !important;
    border-bottom: 1px solid #edf0f5 !important;
    padding: 0 0 18px !important;
  }

  .engineer-note-lines {
    grid-template-columns: 1fr !important;
  }
}

/* Report dialog usability pass: bottom image scrollbar, compact defects, bid action, and PJT notice. */
.market-report-photo-gallery {
  padding-bottom: 4px !important;
  scrollbar-width: none !important;
}

.market-report-photo-gallery::-webkit-scrollbar {
  display: none !important;
}

.market-report-scroll-track {
  height: 16px !important;
  margin: 0 14px 14px !important;
  background: #e2e8f0 !important;
}

.market-report-scroll-track span {
  background: #64748b !important;
}

.market-report-results .report-result-body {
  padding: 12px 18px 16px !important;
}

.market-report-results .report-result-group + .report-result-group {
  margin-top: 14px !important;
}

.market-report-results .report-result-group h4 {
  margin-bottom: 8px !important;
  font-size: 14px !important;
}

.market-report-results .report-result-row {
  min-height: 36px !important;
  gap: 9px !important;
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.market-report-results .report-result-row + .report-result-row {
  margin-top: 6px !important;
}

.market-report-results .report-result-image {
  width: 50px !important;
  height: 50px !important;
}

.market-report-bid-control,
.recycle-report-bid-control {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 7px !important;
  margin-top: 8px !important;
}

.market-report-bid-control input,
.recycle-report-bid-control input {
  width: 100% !important;
  height: 40px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  text-align: center !important;
}

.market-report-bid-control [data-report-bid-submit],
.recycle-report-bid-control [data-report-bid-submit],
.market-report-bid-control [data-report-recycle-submit],
.recycle-report-bid-control [data-report-recycle-submit] {
  width: 100% !important;
  min-width: 0 !important;
  height: 36px !important;
  padding: 0 8px !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #fde68a 0%, #facc15 100%) !important;
  color: #6b4a00 !important;
  box-shadow: inset 0 -1px 0 rgba(146, 64, 14, 0.18) !important;
  white-space: nowrap !important;
}

.market-report-bid-control [data-report-bid-submit].is-committed,
.recycle-report-bid-control [data-report-bid-submit].is-committed,
.market-report-bid-control [data-report-recycle-submit].is-committed,
.recycle-report-bid-control [data-report-recycle-submit].is-committed {
  background: linear-gradient(180deg, #ff5a52 0%, #ef3f35 100%) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(239, 63, 53, 0.18) !important;
}

.market-report-bid-box em,
.recycle-report-bid-box em {
  margin-top: 6px !important;
  font-size: 11px !important;
  line-height: 1.35 !important;
}

.pjt-reference-notice {
  display: inline-grid !important;
  width: 18px !important;
  height: 18px !important;
  margin-left: 6px !important;
  place-items: center !important;
  border-radius: 999px !important;
  background: #f97316 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  vertical-align: 1px !important;
}

body.market-recycle .recycle-report-flaw-layout {
  padding: 16px 24px 20px !important;
}

body.market-recycle .recycle-report-flaw-list {
  max-height: none !important;
  overflow: visible !important;
}

body.market-recycle .recycle-report-flaw-group + .recycle-report-flaw-group {
  margin-top: 16px !important;
}

body.market-recycle .recycle-report-flaw-group h4 {
  margin-bottom: 8px !important;
  font-size: 16px !important;
}

body.market-recycle .recycle-report-flaw-row {
  min-height: 30px !important;
  margin-bottom: 8px !important;
  gap: 9px !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
}

body.market-recycle .recycle-report-flaw-row i {
  width: 16px !important;
  height: 16px !important;
  font-size: 10px !important;
}

body.market-recycle .recycle-report-flaw-thumbs button {
  width: 64px !important;
  height: 64px !important;
  border-radius: 10px !important;
}

/* Report risk and input-state pass: visible scrollbars, in-report confirmation, locked bid field. */
.report-body {
  border-right: 1px solid #e2e8f0 !important;
  scrollbar-color: #64748b #e2e8f0 !important;
  scrollbar-gutter: stable !important;
  scrollbar-width: auto !important;
}

.report-body::-webkit-scrollbar {
  width: 13px !important;
  height: 13px !important;
}

.report-body::-webkit-scrollbar-track {
  border-radius: 999px !important;
  background: #e2e8f0 !important;
}

.report-body::-webkit-scrollbar-thumb {
  min-height: 64px !important;
  border: 3px solid #e2e8f0 !important;
  border-radius: 999px !important;
  background: #64748b !important;
}

.report-body::-webkit-scrollbar-thumb:hover {
  background: #475569 !important;
}

.market-report-bid-control input.is-committed,
.recycle-report-bid-control input.is-committed {
  border-color: #d1d5db !important;
  background: #f3f4f6 !important;
  color: #6b7280 !important;
  box-shadow: inset 0 0 0 1px rgba(209, 213, 219, 0.75) !important;
}

.market-report-bid-control input.is-committed:focus,
.recycle-report-bid-control input.is-committed:focus {
  border-color: #cbd5e1 !important;
  outline: 0 !important;
}

.report-risk-confirm {
  position: fixed;
  inset: 0;
  z-index: 1160;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.36);
  padding: 24px;
}

.report-risk-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 16px;
  width: min(560px, calc(100vw - 48px));
  border: 1px solid #f59e0b;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  box-shadow: 0 22px 54px rgba(146, 64, 14, 0.22);
  padding: 20px;
}

.report-risk-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.report-risk-content span {
  display: block;
  color: #b45309;
  font-size: 13px;
  font-weight: 900;
}

.report-risk-content strong {
  display: block;
  margin-top: 5px;
  color: #7c2d12;
  font-size: 20px;
  font-weight: 950;
}

.report-risk-content p {
  margin: 10px 0 0;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.65;
}

.report-risk-content em {
  display: block;
  margin-top: 8px;
  color: #9a3412;
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.report-risk-actions {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.report-risk-actions button {
  min-width: 92px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 900;
}

.report-risk-cancel {
  background: #f1f5f9;
  color: #334155;
}

.report-risk-confirm-button {
  background: #f97316;
  color: #fff;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.2);
}

/* Keep the report photo scrollbar visible even when the native browser bar is hidden. */
.market-report-photo-strip .market-report-photo-gallery,
.recycle-report-photo-strip .recycle-report-photo-gallery {
  padding-bottom: 8px !important;
  scrollbar-width: none !important;
}

.market-report-photo-strip .market-report-photo-gallery::-webkit-scrollbar,
.recycle-report-photo-strip .recycle-report-photo-gallery::-webkit-scrollbar {
  display: none !important;
}

.market-report-photo-strip .market-report-scroll-track,
.recycle-report-photo-strip .market-report-scroll-track {
  display: block !important;
  position: relative !important;
  height: 20px !important;
  margin: -2px 24px 16px !important;
  padding: 5px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.16) !important;
  cursor: pointer !important;
}

.market-report-photo-strip .market-report-scroll-track span,
.recycle-report-photo-strip .market-report-scroll-track span {
  display: block !important;
  min-width: 46px !important;
  height: 100% !important;
  border-radius: 999px !important;
  background: #64748b !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.16) !important;
}

.market-report-photo-strip .market-report-scroll-track:hover span,
.market-report-photo-strip .market-report-scroll-track.is-dragging span,
.recycle-report-photo-strip .market-report-scroll-track:hover span,
.recycle-report-photo-strip .market-report-scroll-track.is-dragging span {
  background: #475569 !important;
}

.market-report-photo-strip .market-report-scroll-track.is-disabled,
.recycle-report-photo-strip .market-report-scroll-track.is-disabled {
  cursor: default !important;
}

.market-report-photo-strip .market-report-scroll-track.is-disabled span,
.recycle-report-photo-strip .market-report-scroll-track.is-disabled span {
  width: 100% !important;
  margin-left: 0 !important;
  background: #94a3b8 !important;
}

/* Recycle report: keep the top alert compact and move engineer notes below defects. */
body.market-recycle .recycle-report-section-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 44px !important;
  margin: 12px 20px 0 !important;
  border: 1px solid #ffbd73 !important;
  border-left-width: 4px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fff9f0 0%, #fffdf8 100%) !important;
  padding: 8px 14px !important;
  box-shadow: none !important;
}

body.market-recycle .recycle-report-section-head > div:first-child {
  display: flex !important;
  min-height: 0 !important;
  align-items: baseline !important;
  gap: 10px !important;
  border-right: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

body.market-recycle .recycle-report-section-head > div:first-child span {
  color: #8a5a0a !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

body.market-recycle .recycle-report-section-head > div:first-child strong {
  margin: 0 !important;
  color: #c2410c !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body.market-recycle .recycle-report-section-side {
  width: auto !important;
  min-width: 0 !important;
  max-width: 45% !important;
  margin: 0 !important;
}

body.market-recycle .recycle-report-section-side > em {
  display: block !important;
  height: auto !important;
  overflow: hidden !important;
  color: #9a6a18 !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 750 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

body.market-recycle .recycle-report-flaw-layout {
  padding-top: 12px !important;
}

body.market-recycle .recycle-report-flaw-layout > .recycle-report-engineer-note {
  margin: 16px 0 0 !important;
}

body.market-recycle .recycle-report-flaw-layout > .recycle-report-engineer-note {
  border: 1px solid #ffbd73 !important;
  border-left-width: 4px !important;
  border-radius: 14px !important;
  background: #fffaf2 !important;
  padding: 12px 14px !important;
}

body.market-recycle .recycle-report-flaw-layout > .recycle-report-engineer-note span {
  color: #8a2f0b !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.market-recycle .recycle-report-flaw-layout > .recycle-report-engineer-note .engineer-note-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 5px 18px !important;
  margin-top: 8px !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
}

/* Same recycle-style report layout for Shunhuishou and any reused recycle report body. */
.recycle-report-onepage .recycle-report-section-head {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 14px 20px 4px !important;
  border: 1px solid #ffbd73 !important;
  border-left: 3px solid #ff9a3d !important;
  border-radius: 9px !important;
  background: #fffaf2 !important;
  padding: 8px 14px !important;
  box-shadow: none !important;
}

.recycle-report-onepage .recycle-report-section-head > div:first-child {
  display: flex !important;
  min-height: 0 !important;
  align-items: baseline !important;
  gap: 10px !important;
  border-right: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.recycle-report-onepage .recycle-report-section-head span {
  color: #8a5a0a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.recycle-report-onepage .recycle-report-section-head strong {
  margin: 0 !important;
  color: #c2410c !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.recycle-report-onepage .recycle-report-section-side {
  width: auto !important;
  min-width: 0 !important;
  max-width: 45% !important;
  margin: 0 !important;
}

.recycle-report-onepage .recycle-report-section-side > em {
  display: block !important;
  height: auto !important;
  overflow: hidden !important;
  color: #9a6a18 !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 750 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.recycle-report-onepage .recycle-report-flaw-layout {
  display: block !important;
  grid-template-columns: none !important;
  padding-top: 12px !important;
}

.recycle-report-onepage .recycle-report-flaw-list {
  max-height: none !important;
  overflow: visible !important;
}

.recycle-report-onepage .recycle-report-flaw-layout > .recycle-report-engineer-note {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 16px 0 0 !important;
  border: 1px solid #ffbd73 !important;
  border-left-width: 4px !important;
  border-radius: 14px !important;
  background: #fffaf2 !important;
  padding: 12px 14px !important;
}

.recycle-report-onepage .recycle-report-flaw-layout > .recycle-report-engineer-note span {
  color: #8a2f0b !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.recycle-report-onepage .recycle-report-flaw-layout > .recycle-report-engineer-note p {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

.recycle-report-onepage .recycle-report-flaw-layout > .recycle-report-engineer-note .engineer-note-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 5px 18px !important;
  margin-top: 8px !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
}

.recycle-report-engineer-entry {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  margin: 14px 14px 0 !important;
  border-top: 1px solid #eef1f5 !important;
  background: #fff !important;
  padding: 14px 0 0 !important;
}

.recycle-report-engineer-entry div {
  display: grid !important;
  gap: 3px !important;
}

.recycle-report-engineer-entry span {
  color: #111827 !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.recycle-report-engineer-entry strong {
  color: #94a3b8 !important;
  font-size: 12px !important;
  font-weight: 750 !important;
}

.recycle-report-engineer-entry button {
  flex: 0 0 auto !important;
  height: 32px !important;
  border: 1px solid #ffbd73 !important;
  border-radius: 8px !important;
  background: #fffaf2 !important;
  padding: 0 12px !important;
  color: #c2410c !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.report-engineer-dialog {
  position: fixed;
  inset: 0;
  z-index: 1162;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.34);
  padding: 24px;
}

.report-engineer-card {
  width: min(680px, calc(100vw - 64px));
  max-height: min(620px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid #ffbd73;
  border-radius: 16px;
  background: #fffaf2;
  box-shadow: 0 22px 56px rgba(124, 45, 18, 0.22);
}

.report-engineer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #fed7aa;
  padding: 14px 18px;
}

.report-engineer-head span {
  color: #8a2f0b;
  font-size: 15px;
  font-weight: 950;
}

.report-engineer-head button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #fff;
  color: #c2410c;
  font-size: 18px;
  font-weight: 900;
}

.report-engineer-body {
  max-height: 500px;
  overflow: auto;
  padding: 18px;
}

.report-engineer-body .engineer-note-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 22px !important;
  margin: 0 !important;
  color: #512315 !important;
  font-size: 14px !important;
  line-height: 1.58 !important;
}

/* Final override: HSB/recycle pages have stronger body.market-recycle rules. */
body.market-recycle .recycle-report-onepage .recycle-report-section-head {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  justify-self: start !important;
  align-self: start !important;
  gap: 10px !important;
  width: fit-content !important;
  max-width: max-content !important;
  min-height: 0 !important;
  margin: 14px 20px 4px !important;
  border: 1px solid #ffbd73 !important;
  border-left: 3px solid #ff9a3d !important;
  border-radius: 9px !important;
  background: #fffaf2 !important;
  padding: 8px 14px !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

body.market-recycle .recycle-report-onepage .recycle-report-section-head > div:first-child {
  display: contents !important;
  min-height: 0 !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

body.market-recycle .recycle-report-onepage .recycle-report-section-head span {
  color: #8a5a0a !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

body.market-recycle .recycle-report-onepage .recycle-report-section-head strong {
  margin: 0 !important;
  color: #c2410c !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

/* Final marketplace category selector: dedicated category UI, shared by every market. */
.market-panel[data-panel="current"] .filter-section-category {
  display: grid !important;
  grid-template-columns: 118px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 2px !important;
  border: 1px solid #dde7f3 !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  padding: 10px 12px !important;
  box-shadow: 0 8px 20px rgba(15, 35, 60, 0.045) !important;
}

.market-panel[data-panel="current"] .filter-section-category .filter-section-head {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
  padding: 0 2px 0 0 !important;
}

.market-panel[data-panel="current"] .filter-section-category .filter-section-head strong {
  color: #162033 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

.market-panel[data-panel="current"] .filter-section-category .filter-section-head span {
  color: #7b8798 !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1.3 !important;
}

.market-panel[data-panel="current"] .category-filter-field,
body.market-recycle .market-panel[data-panel="current"] .category-filter-field {
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.market-panel[data-panel="current"] .category-filter-field > span,
body.market-recycle .market-panel[data-panel="current"] .category-filter-field > span {
  display: none !important;
}

.market-panel[data-panel="current"] .category-filter-bar,
body.market-recycle .market-panel[data-panel="current"] .category-filter-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  align-items: center !important;
  min-width: 0 !important;
  margin: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 2px 2px 4px !important;
  scrollbar-color: #b7c6d8 #eef4fb !important;
  scrollbar-width: thin !important;
}

.market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar,
body.market-recycle .market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar {
  height: 8px !important;
}

.market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar-track,
body.market-recycle .market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar-track {
  border-radius: 999px !important;
  background: #eef4fb !important;
}

.market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar-thumb,
body.market-recycle .market-panel[data-panel="current"] .category-filter-bar::-webkit-scrollbar-thumb {
  border: 2px solid #eef4fb !important;
  border-radius: 999px !important;
  background: #8ca1ba !important;
}

.market-panel[data-panel="current"] .category-filter-chip,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip {
  position: relative !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 102px !important;
  height: 38px !important;
  gap: 7px !important;
  border: 1px solid #d2dbe8 !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 0 13px !important;
  color: #263244 !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  box-shadow: inset 0 -1px 0 rgba(15, 35, 60, 0.035) !important;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease !important;
}

.market-panel[data-panel="current"] .category-filter-chip::before,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip::before {
  width: 7px !important;
  height: 7px !important;
  flex: 0 0 auto !important;
  border-radius: 50% !important;
  background: #b8c5d6 !important;
  content: "" !important;
}

.market-panel[data-panel="current"] .category-filter-chip strong,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip strong {
  display: inline-flex !important;
  min-width: 18px !important;
  height: 18px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 0 !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  padding: 0 6px !important;
  color: #66768a !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  line-height: 18px !important;
}

.market-panel[data-panel="current"] .category-filter-chip:hover,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip:hover {
  border-color: #8db8f6 !important;
  background: #f6faff !important;
  color: #1559b7 !important;
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, 0.08), 0 4px 12px rgba(22, 119, 255, 0.08) !important;
}

.market-panel[data-panel="current"] .category-filter-chip:hover::before,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip:hover::before {
  background: #6aa5ff !important;
}

.market-panel[data-panel="current"] .category-filter-chip.is-active,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip.is-active {
  border-color: #1677ff !important;
  background: linear-gradient(180deg, #eef6ff 0%, #e8f2ff 100%) !important;
  color: #0f4fad !important;
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, 0.2), 0 6px 16px rgba(22, 119, 255, 0.12) !important;
}

.market-panel[data-panel="current"] .category-filter-chip.is-active::before,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip.is-active::before {
  background: linear-gradient(135deg, #1677ff 0%, #17b5c7 100%) !important;
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.1) !important;
}

.market-panel[data-panel="current"] .category-filter-chip.is-active strong,
body.market-recycle .market-panel[data-panel="current"] .category-filter-chip.is-active strong {
  background: #1677ff !important;
  color: #fff !important;
}

@media (max-width: 900px) {
  .market-panel[data-panel="current"] .filter-section-category {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
}

/* Final rich filter dropdown: anchored brand/model selector instead of pushing content down. */
.market-filter-panel .rich-filter-panel,
.market-panel[data-panel="current"] .rich-filter-panel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel {
  position: fixed !important;
  top: var(--rich-top, 128px) !important;
  left: var(--rich-left, 240px) !important;
  z-index: 1400 !important;
  display: grid !important;
  grid-template-columns: 176px minmax(0, 1fr) !important;
  width: var(--rich-width, 980px) !important;
  max-width: calc(100vw - 28px) !important;
  max-height: var(--rich-max-height, 520px) !important;
  margin: 0 !important;
  border: 1px solid #dce3ee !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(15, 35, 60, 0.18) !important;
  overflow: hidden !important;
}

.market-filter-panel .rich-filter-panel.hidden,
.market-panel[data-panel="current"] .rich-filter-panel.hidden,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel.hidden {
  display: none !important;
}

.market-filter-panel .rich-filter-sidebar,
.market-panel[data-panel="current"] .rich-filter-sidebar,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-sidebar {
  max-height: var(--rich-max-height, 520px) !important;
  border-right: 1px solid #edf1f6 !important;
  background: #f8fafc !important;
  overflow-y: auto !important;
  scrollbar-color: #b7c6d8 #eef4fb !important;
  scrollbar-width: thin !important;
}

.market-filter-panel .rich-filter-sidebar::-webkit-scrollbar,
.market-panel[data-panel="current"] .rich-filter-sidebar::-webkit-scrollbar {
  width: 8px !important;
}

.market-filter-panel .rich-filter-sidebar::-webkit-scrollbar-thumb,
.market-panel[data-panel="current"] .rich-filter-sidebar::-webkit-scrollbar-thumb {
  border: 2px solid #eef4fb !important;
  border-radius: 999px !important;
  background: #8ca1ba !important;
}

.market-filter-panel .rich-filter-side-item,
.market-panel[data-panel="current"] .rich-filter-side-item,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-side-item {
  width: 100% !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 18px !important;
  color: #1f2937 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 42px !important;
  text-align: left !important;
}

.market-filter-panel .rich-filter-side-item:hover,
.market-filter-panel .rich-filter-side-item.is-active,
.market-panel[data-panel="current"] .rich-filter-side-item:hover,
.market-panel[data-panel="current"] .rich-filter-side-item.is-active,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-side-item:hover,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-side-item.is-active {
  background: #eef3f8 !important;
  color: #0f172a !important;
}

.market-filter-panel .rich-filter-content,
.market-panel[data-panel="current"] .rich-filter-content,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-content {
  max-height: var(--rich-max-height, 520px) !important;
  overflow-y: auto !important;
  padding: 14px 18px 18px !important;
  scrollbar-color: #b7c6d8 #eef4fb !important;
  scrollbar-width: thin !important;
}

.market-filter-panel .rich-filter-content::-webkit-scrollbar,
.market-panel[data-panel="current"] .rich-filter-content::-webkit-scrollbar {
  width: 8px !important;
}

.market-filter-panel .rich-filter-content::-webkit-scrollbar-thumb,
.market-panel[data-panel="current"] .rich-filter-content::-webkit-scrollbar-thumb {
  border: 2px solid #eef4fb !important;
  border-radius: 999px !important;
  background: #8ca1ba !important;
}

.market-filter-panel .rich-filter-topline,
.market-panel[data-panel="current"] .rich-filter-topline,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-topline {
  margin-bottom: 10px !important;
}

.market-filter-panel .rich-filter-topline strong,
.market-panel[data-panel="current"] .rich-filter-topline strong,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-topline strong {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.market-filter-panel .rich-filter-clear,
.market-panel[data-panel="current"] .rich-filter-clear,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-clear {
  color: #2563eb !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.market-filter-panel .rich-filter-all-row,
.market-panel[data-panel="current"] .rich-filter-all-row,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-all-row {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.market-filter-panel .rich-filter-check,
.market-panel[data-panel="current"] .rich-filter-check,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-check {
  width: 16px !important;
  height: 16px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 3px !important;
  background: #fff !important;
}

.market-filter-panel .rich-filter-check.is-active,
.market-panel[data-panel="current"] .rich-filter-check.is-active,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-check.is-active {
  border-color: #1677ff !important;
  background: #1677ff !important;
  box-shadow: inset 0 0 0 3px #fff !important;
}

.market-filter-panel .rich-filter-check.is-partial,
.market-panel[data-panel="current"] .rich-filter-check.is-partial,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-check.is-partial {
  border-color: #1677ff !important;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #1677ff, #22c55e) border-box !important;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 8px #1677ff !important;
}

.market-filter-panel .rich-filter-all-text,
.market-panel[data-panel="current"] .rich-filter-all-text,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-all-text {
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.market-filter-panel .rich-filter-group,
.market-panel[data-panel="current"] .rich-filter-group,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-group {
  margin-bottom: 14px !important;
}

.market-filter-panel .rich-filter-group-title,
.market-panel[data-panel="current"] .rich-filter-group-title,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-group-title {
  gap: 8px !important;
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.market-filter-panel .rich-filter-options,
.market-panel[data-panel="current"] .rich-filter-options,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-options {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
  gap: 9px 12px !important;
}

.market-filter-panel .rich-filter-option,
.market-panel[data-panel="current"] .rich-filter-option,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-option {
  min-height: 42px !important;
  border: 1px solid #d6dbe3 !important;
  border-radius: 6px !important;
  background: #fff !important;
  padding: 0 12px !important;
  color: #1f2937 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

.market-filter-panel .rich-filter-option:hover,
.market-filter-panel .rich-filter-option.is-active,
.market-panel[data-panel="current"] .rich-filter-option:hover,
.market-panel[data-panel="current"] .rich-filter-option.is-active,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-option:hover,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-option.is-active {
  border-color: #1677ff !important;
  background: #eef6ff !important;
  color: #0f4fad !important;
  font-weight: 800 !important;
}

@media (max-width: 760px) {
  .market-filter-panel .rich-filter-panel,
  .market-panel[data-panel="current"] .rich-filter-panel,
  body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel {
    grid-template-columns: 120px minmax(0, 1fr) !important;
  }

  .market-filter-panel .rich-filter-options,
  .market-panel[data-panel="current"] .rich-filter-options,
  body.market-recycle .market-panel[data-panel="current"] .rich-filter-options {
    grid-template-columns: 1fr !important;
  }
}

/* Marketplace filter select: custom enterprise dropdown, avoids native macOS popup styling. */
.market-filter-panel .ant-form-item select.custom-select-source {
  display: none !important;
}

.market-filter-panel .market-select {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
}

.market-filter-panel .market-select-trigger {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 16px !important;
  align-items: center !important;
  width: 100% !important;
  height: 36px !important;
  border: 1px solid #d7dce5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 0 10px 0 12px !important;
  color: #272d3a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  box-shadow: none !important;
}

.market-filter-panel .market-select-label {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.market-filter-panel .market-select-trigger i {
  justify-self: center !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 1.6px solid #7b8493 !important;
  border-bottom: 1.6px solid #7b8493 !important;
  transform: translateY(-2px) rotate(45deg) !important;
  transition: transform 0.12s ease, border-color 0.12s ease !important;
}

.market-filter-panel .market-select-trigger:hover,
.market-filter-panel .market-select.is-open .market-select-trigger {
  border-color: #2f80ff !important;
}

.market-filter-panel .market-select.is-open .market-select-trigger {
  box-shadow: 0 0 0 2px rgba(47, 128, 255, 0.1) !important;
}

.market-filter-panel .market-select.is-open .market-select-trigger i {
  border-color: #2f80ff !important;
  transform: translateY(2px) rotate(225deg) !important;
}

.market-filter-panel .market-select-menu {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1500 !important;
  min-width: 100% !important;
  max-height: 276px !important;
  overflow-y: auto !important;
  border: 1px solid #d7dce5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  padding: 4px 0 !important;
  box-shadow: 0 14px 32px rgba(15, 35, 60, 0.14) !important;
  scrollbar-color: #b7c6d8 #eef4fb !important;
  scrollbar-width: thin !important;
}

.market-filter-panel .market-select-menu.hidden {
  display: none !important;
}

.market-filter-panel .market-select-menu::-webkit-scrollbar {
  width: 8px !important;
}

.market-filter-panel .market-select-menu::-webkit-scrollbar-track {
  background: #eef4fb !important;
}

.market-filter-panel .market-select-menu::-webkit-scrollbar-thumb {
  border: 2px solid #eef4fb !important;
  border-radius: 999px !important;
  background: #8ca1ba !important;
}

.market-filter-panel .market-select-option {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 6px !important;
  width: 100% !important;
  min-height: 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  padding: 0 12px !important;
  color: #20242e !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.market-filter-panel .market-select-option::before {
  content: "" !important;
  justify-self: center !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: transparent !important;
}

.market-filter-panel .market-select-option:hover {
  background: #f3f6fb !important;
  color: #111827 !important;
}

.market-filter-panel .market-select-option.is-active {
  background: #eaf2ff !important;
  color: #0f4fad !important;
  font-weight: 800 !important;
}

.market-filter-panel .market-select-option.is-active::before {
  background: #2f80ff !important;
}

/* Final report bid hint + photo scrollbar polish. */
.market-report-bid-box em,
.recycle-report-bid-box em {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.market-report-photo-strip .market-report-scroll-track,
.recycle-report-photo-strip .market-report-scroll-track {
  contain: layout paint !important;
  touch-action: none !important;
  user-select: none !important;
}

.market-report-photo-strip .market-report-scroll-track span,
.recycle-report-photo-strip .market-report-scroll-track span {
  margin-left: 0 !important;
  will-change: transform, width !important;
  transform: translate3d(0, 0, 0);
}

.market-report-photo-strip .market-report-photo-gallery,
.recycle-report-photo-strip .recycle-report-photo-gallery {
  scroll-behavior: auto !important;
  overscroll-behavior-x: contain !important;
  -webkit-overflow-scrolling: touch !important;
  will-change: scroll-position !important;
}

.market-report-photo-strip .market-report-photo-gallery.is-scrollbar-dragging,
.recycle-report-photo-strip .recycle-report-photo-gallery.is-scrollbar-dragging {
  scroll-snap-type: none !important;
  pointer-events: none !important;
}

.market-report-photo-strip .market-report-photo-gallery button,
.recycle-report-photo-strip .recycle-report-photo-gallery button,
.market-report-photo-strip .market-report-photo-gallery img,
.recycle-report-photo-strip .recycle-report-photo-gallery img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Final low bid block dialog. */
.report-low-bid-notice .report-low-bid-card {
  width: min(500px, calc(100vw - 48px)) !important;
  border-color: #facc15 !important;
  background: linear-gradient(180deg, #fffbe6 0%, #ffffff 100%) !important;
  box-shadow: 0 22px 54px rgba(161, 98, 7, 0.2) !important;
}

.report-low-bid-notice .report-risk-icon {
  background: #f59e0b !important;
}

.report-low-bid-notice .report-risk-content span {
  color: #a16207 !important;
}

.report-low-bid-notice .report-risk-content strong {
  color: #92400e !important;
}

/* Market QC report enlargement: align Taohuo and Zhuanzhuan dark reports with the recycle report scale. */
body.report-market-open .ant-modal-wrap {
  align-items: flex-start !important;
  padding: 18px 18px 0 !important;
}

body.report-market-open #reportMask {
  display: block !important;
}

body.report-market-open #reportModal.is-market-report {
  display: flex !important;
}

body.report-market-open .report-modal.is-market-report {
  width: min(1680px, calc(100vw - 36px)) !important;
  max-width: calc(100vw - 36px) !important;
}

body.report-market-open .report-modal.is-market-report .ant-modal-content {
  overflow: hidden !important;
  border-radius: 12px !important;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22) !important;
}

body.report-market-open .report-modal.is-market-report .report-header {
  padding: 18px 24px !important;
}

body.report-market-open .report-modal.is-market-report .ant-modal-title {
  font-size: 20px !important;
  font-weight: 850 !important;
}

body.report-market-open .report-modal.is-market-report .report-subtitle {
  margin-top: 6px !important;
  font-size: 14px !important;
}

body.report-market-open .report-modal.is-market-report .report-body {
  max-height: calc(100vh - 112px) !important;
  padding: 22px 26px 26px !important;
  background:
    radial-gradient(circle at 8% 0, rgba(22, 119, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #f4f9ff 0, #ffffff 44%) !important;
  font-size: 15px !important;
}

body.report-market-open .report-view-tabs {
  margin-bottom: 18px !important;
  padding: 5px !important;
  border-radius: 12px !important;
}

body.report-market-open .report-view-tab {
  min-width: 156px !important;
  height: 40px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

body.report-market-open .market-report-hero {
  gap: 22px !important;
  border-radius: 14px !important;
  padding: 22px 24px !important;
}

body.report-market-open .market-report-hero > div:first-child > span {
  font-size: 13px !important;
}

body.report-market-open .market-report-title-line {
  gap: 14px !important;
  margin-top: 9px !important;
}

body.report-market-open .market-report-grade-badge {
  min-width: 64px !important;
  height: 46px !important;
  padding: 0 16px !important;
  font-size: 24px !important;
}

body.report-market-open .market-report-title-line h2 {
  font-size: 28px !important;
  line-height: 1.25 !important;
}

body.report-market-open .market-report-hero-tags {
  max-width: 620px !important;
  gap: 10px !important;
}

body.report-market-open .market-report-hero-tags em {
  padding: 8px 13px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-summary {
  gap: 10px !important;
  margin-top: 14px !important;
}

body.report-market-open .market-report-summary div {
  min-height: 76px !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
}

body.report-market-open .market-report-summary span {
  font-size: 12px !important;
}

body.report-market-open .market-report-summary strong {
  margin-top: 8px !important;
  font-size: 16px !important;
}

body.report-market-open .market-report-alert-chips {
  gap: 10px !important;
  margin-top: 14px !important;
  padding: 14px 16px !important;
}

body.report-market-open .market-report-alert-chips span {
  padding: 7px 12px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-photo-strip {
  margin-top: 14px !important;
  border-radius: 14px !important;
}

body.report-market-open .market-report-photo-head {
  padding: 14px 20px !important;
}

body.report-market-open .market-report-photo-head span,
body.report-market-open .market-report-photo-head strong {
  font-size: 15px !important;
}

body.report-market-open .market-report-photo-strip .market-report-photo-gallery {
  gap: 14px !important;
  padding: 18px 20px 10px !important;
}

body.report-market-open .market-report-photo-strip .market-report-photo-gallery button {
  flex: 0 0 198px !important;
  border-radius: 12px !important;
}

body.report-market-open .market-report-photo-strip .market-report-photo-gallery img {
  height: 168px !important;
}

body.report-market-open .market-report-photo-gallery button.is-image-error::before {
  height: 168px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-photo-gallery span {
  padding: 9px 10px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-photo-gallery em {
  font-size: 12px !important;
}

body.report-market-open .market-report-photo-strip .market-report-scroll-track {
  margin: 0 26px 18px !important;
}

body.report-market-open .market-report-main-grid {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.5fr) !important;
  gap: 18px !important;
  margin-top: 16px !important;
}

body.report-market-open .market-report-results,
body.report-market-open .market-report-price-panel,
body.report-market-open .market-report-normal-summary,
body.report-market-open .market-report-source {
  border-radius: 14px !important;
}

body.report-market-open .market-report-panel-head {
  min-height: 68px !important;
  padding: 16px 20px !important;
}

body.report-market-open .market-report-panel-head span {
  font-size: 13px !important;
}

body.report-market-open .market-report-panel-head strong {
  font-size: 22px !important;
}

body.report-market-open .market-report-panel-head em {
  font-size: 13px !important;
}

body.report-market-open .market-report-engineer {
  margin: 18px 22px 0 !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
}

body.report-market-open .market-report-engineer strong {
  font-size: 16px !important;
}

body.report-market-open .market-report-engineer p,
body.report-market-open .market-report-engineer .engineer-note-lines {
  font-size: 15px !important;
  line-height: 1.7 !important;
}

body.report-market-open .market-report-results .report-result-header {
  min-height: 62px !important;
  padding: 16px 22px !important;
}

body.report-market-open .market-report-results .report-result-header strong {
  font-size: 18px !important;
}

body.report-market-open .market-report-results .report-result-count {
  font-size: 15px !important;
}

body.report-market-open .market-report-results .report-result-count i,
body.report-market-open .market-report-results .report-result-icon {
  width: 24px !important;
  height: 24px !important;
  font-size: 16px !important;
}

body.report-market-open .market-report-results .report-result-body {
  padding: 18px 24px 24px !important;
}

body.report-market-open .market-report-results .report-result-group + .report-result-group {
  margin-top: 22px !important;
}

body.report-market-open .market-report-results .report-result-group h4 {
  margin-bottom: 12px !important;
  font-size: 17px !important;
}

body.report-market-open .market-report-results .report-result-row {
  grid-template-columns: 30px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  min-height: 58px !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
}

body.report-market-open .market-report-results .report-result-row + .report-result-row {
  margin-top: 10px !important;
}

body.report-market-open .market-report-results .report-result-images {
  gap: 10px !important;
}

body.report-market-open .market-report-results .report-result-image {
  width: 78px !important;
  height: 78px !important;
  border-radius: 10px !important;
}

body.report-market-open .market-report-price-panel {
  padding: 18px !important;
}

body.report-market-open .market-report-price-top {
  gap: 14px !important;
}

body.report-market-open .market-report-start-price,
body.report-market-open .market-report-bid-box,
body.report-market-open .market-report-reference-price {
  border-radius: 12px !important;
  padding: 16px !important;
}

body.report-market-open .market-report-start-price span,
body.report-market-open .market-report-bid-box > span,
body.report-market-open .market-report-reference-price span {
  font-size: 13px !important;
}

body.report-market-open .market-report-start-price strong,
body.report-market-open .market-report-reference-price strong {
  margin-top: 10px !important;
  font-size: 30px !important;
}

body.report-market-open .market-report-start-price .market-report-fengjihui-price span,
body.report-market-open .market-report-start-price .market-report-fengjihui-price strong {
  font-size: 13px !important;
}

body.report-market-open .market-report-bid-control,
body.report-market-open .recycle-report-bid-control {
  gap: 10px !important;
  margin-top: 12px !important;
}

body.report-market-open .market-report-bid-control input {
  height: 48px !important;
  font-size: 22px !important;
}

body.report-market-open .market-report-bid-control [data-report-bid-submit],
body.report-market-open .market-report-bid-control [data-report-recycle-submit] {
  height: 44px !important;
  font-size: 15px !important;
}

body.report-market-open .market-report-bid-box em {
  margin-top: 9px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.report-market-open .market-report-price-panel .report-price-item-zz {
  margin-top: 14px !important;
  border-radius: 12px !important;
  padding: 16px !important;
}

body.report-market-open .market-report-price-panel .report-price-item-zz strong {
  font-size: 24px !important;
}

body.report-market-open .market-report-price-panel .zz-settle-grade {
  min-height: 60px !important;
  border-radius: 10px !important;
  padding: 9px 10px !important;
}

body.report-market-open .market-report-normal-summary {
  margin-top: 16px !important;
}

body.report-market-open .market-report-normal-summary > div:last-child {
  gap: 10px !important;
  padding: 16px 18px !important;
}

body.report-market-open .market-report-normal-summary > div:last-child span {
  padding: 7px 12px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-source {
  margin-top: 16px !important;
  padding: 16px 18px !important;
}

body.report-market-open .market-report-source strong {
  font-size: 16px !important;
}

body.report-market-open .market-report-source p {
  font-size: 13px !important;
}

@media (max-width: 1180px) {
  body.report-market-open .market-report-main-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body.report-market-open .ant-modal-wrap {
    padding: 8px !important;
  }

  body.report-market-open .report-modal.is-market-report {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
  }

  body.report-market-open .report-modal.is-market-report .report-body {
    max-height: calc(100vh - 112px) !important;
    padding: 12px !important;
  }

  body.report-market-open .market-report-hero {
    flex-direction: column !important;
  }

  body.report-market-open .market-report-title-line h2 {
    font-size: 22px !important;
  }

  body.report-market-open .market-report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.report-market-open .market-report-photo-strip .market-report-photo-gallery button {
    flex-basis: 72% !important;
  }

  body.report-market-open .market-report-price-top,
  body.report-market-open .market-report-results .report-result-row {
    grid-template-columns: 1fr !important;
  }
}

/* Unified marketplace report size: keep all market reports close to the HSB one-page layout. */
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .ant-modal-wrap {
  align-items: flex-start !important;
  padding: 24px 14px 0 !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report {
  width: min(1320px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report .report-body {
  max-height: calc(100vh - 146px) !important;
  padding: 16px !important;
  background:
    radial-gradient(circle at 10% 0, rgba(250, 219, 20, 0.12), transparent 32%),
    linear-gradient(180deg, #fffdf2 0, #ffffff 42%) !important;
  font-size: 14px !important;
}

body.report-market-open.market-bulk .report-modal.is-market-report {
  width: min(1680px, calc(100vw - 28px)) !important;
}

body.report-market-open .report-modal.is-market-report:has([data-bulk-inspection-report]) {
  width: min(1680px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report:has([data-bulk-inspection-report]) {
  width: min(1680px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
}

body.report-market-open.market-bulk .report-modal.is-market-report .report-body {
  background: #f5f8fc !important;
  padding: 16px !important;
}

body.report-market-open .report-modal.is-market-report:has([data-bulk-inspection-report]) .report-body {
  background: #f5f8fc !important;
  padding: 16px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report:has([data-bulk-inspection-report]) .report-body {
  background: #f5f8fc !important;
  padding: 16px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-view-tabs {
  margin-bottom: 10px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-hero {
  gap: 16px !important;
  border-color: #f5d76e !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #fff7b8 0%, #fffdf0 52%, #ffffff 100%) !important;
  padding: 14px 16px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-hero > div:first-child > span {
  color: #8c6d1f !important;
  font-size: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-title-line {
  margin-top: 4px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-grade-badge {
  min-width: 52px !important;
  height: 34px !important;
  padding: 0 12px !important;
  font-size: 18px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-title-line h2 {
  font-size: 22px !important;
  line-height: 1.2 !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-hero-tags {
  max-width: 520px !important;
  gap: 8px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-hero-tags em {
  border-color: rgba(140, 109, 31, 0.2) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #5f4b10 !important;
  padding: 6px 10px !important;
  font-size: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary {
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 10px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary div {
  min-height: 54px !important;
  border-color: #eceff3 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  padding: 8px 10px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary span {
  font-size: 11px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary strong {
  margin-top: 5px !important;
  font-size: 13px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-strip {
  margin-top: 10px !important;
  border-color: #e7eaf0 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06) !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-head {
  padding: 10px 14px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-head span,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-head strong {
  font-size: 13px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-strip .market-report-photo-gallery {
  gap: 10px !important;
  padding: 12px 14px 8px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-strip .market-report-photo-gallery button {
  flex: 0 0 138px !important;
  border-radius: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-strip .market-report-photo-gallery img,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-gallery button.is-image-error::before {
  height: 116px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-gallery span {
  padding: 6px 8px !important;
  font-size: 11px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-photo-strip .market-report-scroll-track {
  margin: 0 14px 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-main-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr) !important;
  gap: 14px !important;
  margin-top: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-price-panel,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-normal-summary,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-source {
  border-color: #e7eaf0 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.07) !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results {
  min-height: 430px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-panel-head {
  min-height: 0 !important;
  border-bottom-color: #eef1f5 !important;
  padding: 12px 14px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-panel-head span {
  font-size: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-panel-head strong {
  color: #c2410c !important;
  font-size: 18px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-header {
  min-height: 0 !important;
  padding: 12px 14px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-body {
  max-height: 360px !important;
  overflow: auto !important;
  padding: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-group h4 {
  margin-bottom: 8px !important;
  font-size: 13px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-row {
  grid-template-columns: 20px minmax(0, 1fr) auto !important;
  gap: 9px !important;
  min-height: 30px !important;
  font-size: 13px !important;
  line-height: 1.38 !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-text {
  min-width: 0 !important;
  padding-top: 0 !important;
  color: #6b7280 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-count i,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-icon {
  width: 16px !important;
  height: 16px !important;
  font-size: 10px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-image {
  width: 64px !important;
  height: 64px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-price-panel {
  padding: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-price-top {
  grid-template-columns: 1fr 1.25fr !important;
  gap: 10px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-start-price,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-bid-box,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-reference-price {
  border-color: #facc15 !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #fffbeb, #ffffff) !important;
  padding: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-start-price span,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-bid-box > span,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-reference-price span {
  color: #8a6d0a !important;
  font-size: 12px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-start-price strong,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-reference-price strong {
  color: #b45309 !important;
  font-size: 24px !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .market-report-start-price {
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .market-report-start-price > strong {
  order: 1 !important;
  margin: 0 !important;
  text-align: center !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .market-report-start-price > span {
  order: 2 !important;
  margin-top: 8px !important;
  text-align: center !important;
  line-height: 1.35 !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .market-report-start-price .market-report-fengjihui-price {
  order: 3 !important;
  justify-self: center !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-bid-control input {
  height: 40px !important;
  border-radius: 10px !important;
  font-size: 18px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-bid-control [data-report-bid-submit],
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-bid-control [data-report-recycle-submit] {
  height: 40px !important;
  border-radius: 10px !important;
  background: #111827 !important;
  font-size: 14px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-hero {
  gap: 10px !important;
  padding: 12px 14px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-title-line h2 {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-grade-badge {
  min-width: 46px !important;
  height: 32px !important;
  padding: 0 10px !important;
  font-size: 17px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-summary {
  gap: 6px !important;
  margin-top: 8px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-summary div {
  min-height: 50px !important;
  padding: 7px 8px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-summary span {
  font-size: 10px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-summary strong {
  margin-top: 4px !important;
  font-size: 12px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-main-grid {
  gap: 10px !important;
  margin-top: 10px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-panel-head {
  min-height: 46px !important;
  padding: 10px 12px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-panel-head span,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-panel-head em {
  font-size: 11px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-panel-head strong {
  font-size: 15px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-header {
  min-height: 44px !important;
  padding: 10px 14px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-header strong,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-group h4 {
  font-size: 13px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-body {
  padding: 12px 14px 14px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-group + .report-result-group {
  margin-top: 14px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-row {
  grid-template-columns: 20px minmax(0, 1fr) auto !important;
  gap: 7px !important;
  min-height: 30px !important;
  font-size: 12px !important;
  line-height: 1.34 !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-text {
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.34 !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-row + .report-result-row {
  margin-top: 5px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-count i,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-icon {
  width: 15px !important;
  height: 15px !important;
  font-size: 9px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-results .report-result-image {
  width: 46px !important;
  height: 46px !important;
  border-radius: 6px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-head {
  padding: 8px 12px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-head span,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-head strong,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-source p,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child span {
  font-size: 11px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-strip .market-report-photo-gallery {
  gap: 8px !important;
  padding: 10px 12px 7px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-strip .market-report-photo-gallery button {
  flex-basis: 124px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-strip .market-report-photo-gallery img,
body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-gallery button.is-image-error::before {
  height: 104px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-photo-gallery span {
  padding: 6px 7px !important;
  font-size: 10px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child {
  gap: 6px !important;
  padding: 10px 12px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child span {
  padding: 5px 8px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-source {
  padding: 10px 12px !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-source strong {
  font-size: 13px !important;
}

@media (max-width: 1080px) {
  body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-main-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .ant-modal-wrap {
    padding: 8px !important;
  }

  body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report .report-body {
    max-height: calc(100vh - 120px) !important;
    padding: 10px !important;
  }

  body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Report-first scan order: show defect descriptions before photos on first open. */
body.report-market-open .market-report-photo-strip,
body.market-recycle .recycle-report-photo-strip,
body.market-shunhuishou .recycle-report-photo-strip {
  margin-top: 14px !important;
}

body.market-recycle .recycle-report-flaw-list,
body.market-shunhuishou .recycle-report-flaw-list,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results .report-result-body {
  max-height: none !important;
  overflow: visible !important;
}

body.market-recycle .recycle-report-flaws,
body.market-shunhuishou .recycle-report-flaws,
body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .market-report-results {
  min-height: 0 !important;
}

/* Taohuo QC report: make all defect descriptions visible on first open. */
body.report-market-open .market-report-taohuo {
  display: flex !important;
  flex-direction: column !important;
}

body.report-market-open .market-report-taohuo .market-report-hero {
  order: 1 !important;
  align-items: center !important;
  min-height: 0 !important;
  margin-bottom: 8px !important;
  border-color: #e7eaf0 !important;
  background: #fff !important;
  padding: 10px 14px !important;
}

body.report-market-open .market-report-taohuo .market-report-hero > div:first-child > span,
body.report-market-open .market-report-taohuo .market-report-hero-tags {
  display: none !important;
}

body.report-market-open .market-report-taohuo .market-report-title-line {
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
}

body.report-market-open .market-report-taohuo .market-report-grade-badge {
  min-width: 44px !important;
  height: 32px !important;
  padding: 0 10px !important;
  font-size: 17px !important;
}

body.report-market-open .market-report-taohuo .market-report-title-line h2 {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

body.report-market-open .market-report-taohuo .market-report-summary {
  order: 2 !important;
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  gap: 6px !important;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

body.report-market-open .market-report-taohuo .market-report-summary div {
  min-height: 42px !important;
  border-radius: 7px !important;
  padding: 6px 8px !important;
}

body.report-market-open .market-report-taohuo .market-report-summary span {
  font-size: 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-summary strong {
  margin-top: 3px !important;
  font-size: 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-main-grid {
  order: 3 !important;
  grid-template-columns: minmax(0, 1fr) 348px !important;
  gap: 10px !important;
  margin-top: 0 !important;
}

body.report-market-open .market-report-taohuo .market-report-results {
  box-shadow: none !important;
}

body.report-market-open .market-report-taohuo .market-report-panel-head {
  min-height: 0 !important;
  padding: 9px 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-panel-head span {
  font-size: 11px !important;
}

body.report-market-open .market-report-taohuo .market-report-panel-head strong {
  font-size: 17px !important;
}

body.report-market-open .market-report-taohuo .market-report-panel-head em {
  font-size: 11px !important;
}

body.report-market-open .market-report-taohuo .market-report-engineer {
  margin: 8px 12px 0 !important;
  padding: 8px 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-engineer strong {
  font-size: 13px !important;
}

body.report-market-open .market-report-taohuo .market-report-engineer p,
body.report-market-open .market-report-taohuo .market-report-engineer .engineer-note-lines {
  margin-top: 5px !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-header {
  padding: 8px 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-body {
  max-height: none !important;
  overflow: visible !important;
  padding: 9px 12px 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-panel + .report-result-panel {
  display: none !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-group + .report-result-group {
  margin-top: 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-group h4 {
  margin: 0 0 6px !important;
  font-size: 13px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-row {
  grid-template-columns: 18px minmax(0, 1fr) auto !important;
  gap: 8px !important;
  min-height: 28px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-row + .report-result-row {
  margin-top: 5px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-count {
  font-size: 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-count i,
body.report-market-open .market-report-taohuo .market-report-results .report-result-icon {
  width: 16px !important;
  height: 16px !important;
  font-size: 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-images {
  gap: 5px !important;
}

body.report-market-open .market-report-taohuo .market-report-results .report-result-image {
  width: 42px !important;
  height: 42px !important;
  border-radius: 6px !important;
}

body.report-market-open .market-report-taohuo .market-report-price-panel {
  padding: 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-price-top {
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

body.report-market-open .market-report-taohuo .market-report-price-panel .report-price-item-zz {
  margin-top: 8px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-strip {
  order: 4 !important;
  margin-top: 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-head {
  padding: 8px 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-head span,
body.report-market-open .market-report-taohuo .market-report-photo-head strong {
  font-size: 12px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-strip .market-report-photo-gallery {
  gap: 8px !important;
  padding: 10px 12px 6px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-strip .market-report-photo-gallery button {
  flex-basis: 122px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-strip .market-report-photo-gallery img,
body.report-market-open .market-report-taohuo .market-report-photo-gallery button.is-image-error::before {
  height: 94px !important;
}

body.report-market-open .market-report-taohuo .market-report-photo-strip .market-report-scroll-track {
  margin: 0 12px 10px !important;
}

body.report-market-open .market-report-taohuo .market-report-normal-summary {
  order: 5 !important;
}

body.report-market-open .market-report-taohuo .market-report-source {
  order: 6 !important;
}

@media (max-width: 1080px) {
  body.report-market-open .market-report-taohuo .market-report-main-grid {
    grid-template-columns: 1fr !important;
  }
}

.report-low-bid-notice .report-risk-content p,
.report-low-bid-notice .report-risk-content em {
  color: #854d0e !important;
}

.report-low-bid-notice .report-risk-confirm-button {
  background: #facc15 !important;
  color: #422006 !important;
  box-shadow: 0 8px 18px rgba(250, 204, 21, 0.24) !important;
}

/* Final compact identity control. */
.ant-pro-global-header:has(.identity-cluster) {
  height: 58px !important;
  min-height: 58px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.header-actions {
  align-items: center !important;
}

.identity-cluster {
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin-left: 8px !important;
  overflow: hidden !important;
  border: 1px solid #d7e5f5 !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: 0 6px 16px rgba(20, 38, 62, 0.08) !important;
}

.identity-cluster .identity-entry {
  height: 100% !important;
  gap: 8px !important;
  margin-left: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 12px 0 8px !important;
  box-shadow: none !important;
}

.identity-cluster .identity-avatar {
  width: 28px !important;
  height: 28px !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.identity-cluster .identity-text {
  gap: 2px !important;
}

.identity-cluster .identity-text strong {
  max-width: 92px !important;
  overflow: hidden !important;
  color: #27364d !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  line-height: 1.05 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.identity-cluster .identity-text em {
  max-width: 92px !important;
  overflow: hidden !important;
  color: #6c7d94 !important;
  font-size: 11px !important;
  font-weight: 720 !important;
  line-height: 1.05 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.identity-cluster .identity-logout {
  height: 100% !important;
  min-width: 54px !important;
  border: 0 !important;
  border-left: 1px solid #e2edf8 !important;
  border-radius: 0 !important;
  background: #f8fbff !important;
  color: #5b6b82 !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  font-weight: 820 !important;
  box-shadow: none !important;
}

.identity-cluster .identity-logout:hover {
  background: #eef6ff !important;
  color: var(--primary) !important;
}

.identity-cluster .identity-return {
  height: 100% !important;
  min-width: 86px !important;
  border: 0 !important;
  border-left: 1px solid #e2edf8 !important;
  border-radius: 0 !important;
  background: #eef6ff !important;
  color: #1556a8 !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  font-weight: 820 !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.identity-cluster .identity-return:hover {
  background: #dbeeff !important;
  color: #0f4590 !important;
}

/* Final header contrast after compact identity layout. */
.ant-pro-global-header:has(.identity-cluster) {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(216, 224, 234, 0.72) !important;
  box-shadow: 0 1px 8px rgba(6, 25, 37, 0.08) !important;
}

.ant-pro-global-header:has(.identity-cluster) .breadcrumb {
  color: rgba(18, 28, 45, 0.68) !important;
  font-size: 13px !important;
  font-weight: 720 !important;
}

.ant-pro-global-header:has(.identity-cluster) .header-action {
  height: 36px !important;
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.72) !important;
  color: #334155 !important;
  font-size: 14px !important;
  font-weight: 780 !important;
}

.ant-pro-global-header:has(.identity-cluster) .header-action:hover,
.ant-pro-global-header:has(.identity-cluster) .header-action.is-current {
  border-color: #cfe3ff !important;
  background: #eef6ff !important;
  color: var(--primary) !important;
}

/* Non-recycle marketplace list density: clearer row separation and scan rhythm. */
body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table-wrapper {
  border-color: #dbe5f1 !important;
  background: #f7fafc !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table {
  border-collapse: separate !important;
  border-spacing: 0 14px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table th {
  border-bottom: 1px solid #dbe5f1 !important;
  background: #f8fafc !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody td {
  padding: 12px 10px !important;
  border-top: 1px solid #e5edf6 !important;
  border-bottom: 1px solid #e5edf6 !important;
  background: #ffffff !important;
  color: #475569 !important;
  line-height: 1.45 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody tr:nth-child(even) td {
  background: #fbfdff !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody td:first-child {
  border-left: 1px solid #e5edf6 !important;
  border-radius: 7px 0 0 7px !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody td:last-child {
  border-right: 1px solid #e5edf6 !important;
  border-radius: 0 7px 7px 0 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .ant-table tbody tr:hover td {
  border-color: #cfe0f5 !important;
  background: #f4f8ff !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-info-compact,
body:not(.market-recycle) .market-panel[data-panel="current"] .quality-desc-cell {
  color: #475569 !important;
  line-height: 1.45 !important;
}

body:not(.market-recycle) .market-panel[data-panel="current"] .product-title-cell {
  color: #334155 !important;
  line-height: 1.58 !important;
}

/* Video-style confirmed filter panels: temporary selection, then Cancel / Confirm. */
.market-filter-panel .rich-filter-panel,
.market-panel[data-panel="current"] .rich-filter-panel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel {
  grid-template-rows: minmax(0, 1fr) auto !important;
}

.market-filter-panel .rich-filter-panel.rich-filter-simple-panel,
.market-panel[data-panel="current"] .rich-filter-panel.rich-filter-simple-panel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel.rich-filter-simple-panel {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
}

.market-filter-panel .rich-filter-panel.rich-filter-attribute-panel,
.market-panel[data-panel="current"] .rich-filter-panel.rich-filter-attribute-panel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-panel.rich-filter-attribute-panel {
  grid-template-columns: minmax(0, 1fr) !important;
}

.market-filter-panel .rich-filter-sidebar,
.market-panel[data-panel="current"] .rich-filter-sidebar,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-sidebar,
.market-filter-panel .rich-filter-content,
.market-panel[data-panel="current"] .rich-filter-content,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-content {
  max-height: calc(var(--rich-max-height, 520px) - 62px) !important;
}

.market-filter-panel .rich-filter-simple-content,
.market-panel[data-panel="current"] .rich-filter-simple-content,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-simple-content {
  padding: 18px 20px 20px !important;
  max-height: none !important;
  overflow: visible !important;
}

.market-filter-panel .rich-filter-attribute-content,
.market-panel[data-panel="current"] .rich-filter-attribute-content,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-attribute-content {
  padding: 16px 18px 18px !important;
}

.market-filter-panel .rich-filter-selected-summary,
.market-panel[data-panel="current"] .rich-filter-selected-summary,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-selected-summary {
  margin-left: auto !important;
  color: #7a8698 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.market-filter-panel .rich-attribute-groups,
.market-panel[data-panel="current"] .rich-attribute-groups,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-groups {
  display: grid !important;
  gap: 14px !important;
}

.market-filter-panel .rich-attribute-group,
.market-panel[data-panel="current"] .rich-attribute-group,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-group {
  display: grid !important;
  gap: 9px !important;
  border-bottom: 1px solid #edf1f6 !important;
  padding-bottom: 12px !important;
}

.market-filter-panel .rich-attribute-group:last-child,
.market-panel[data-panel="current"] .rich-attribute-group:last-child,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-group:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.market-filter-panel .rich-attribute-head,
.market-panel[data-panel="current"] .rich-attribute-head,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
}

.market-filter-panel .rich-attribute-head strong,
.market-panel[data-panel="current"] .rich-attribute-head strong,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-head strong {
  color: #172033 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.market-filter-panel .rich-attribute-clear,
.market-panel[data-panel="current"] .rich-attribute-clear,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-clear {
  max-width: 220px !important;
  border: 0 !important;
  background: transparent !important;
  color: #2563eb !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.market-filter-panel .rich-attribute-options,
.market-panel[data-panel="current"] .rich-attribute-options,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-options {
  grid-template-columns: repeat(4, minmax(112px, 1fr)) !important;
  gap: 8px !important;
}

.market-filter-panel .rich-attribute-options .rich-filter-option,
.market-panel[data-panel="current"] .rich-attribute-options .rich-filter-option,
body.market-recycle .market-panel[data-panel="current"] .rich-attribute-options .rich-filter-option {
  min-height: 38px !important;
  justify-content: center !important;
  padding: 0 10px !important;
  text-align: center !important;
}

.market-filter-panel .rich-filter-report-content,
.market-panel[data-panel="current"] .rich-filter-report-content,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-report-content {
  padding: 18px 20px 20px !important;
}

.market-filter-panel .rich-report-filter-groups,
.market-panel[data-panel="current"] .rich-report-filter-groups,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-groups {
  display: grid !important;
  gap: 18px !important;
}

.market-filter-panel .rich-report-filter-group,
.market-panel[data-panel="current"] .rich-report-filter-group,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-group {
  display: grid !important;
  gap: 12px !important;
  border-bottom: 1px solid #edf1f6 !important;
  padding-bottom: 16px !important;
}

.market-filter-panel .rich-report-filter-group:last-child,
.market-panel[data-panel="current"] .rich-report-filter-group:last-child,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-group:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.market-filter-panel .rich-report-filter-group h4,
.market-panel[data-panel="current"] .rich-report-filter-group h4,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-group h4 {
  margin: 0 !important;
  color: #111827 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

.market-filter-panel .rich-report-filter-options,
.market-panel[data-panel="current"] .rich-report-filter-options,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-options {
  grid-template-columns: repeat(3, minmax(170px, 1fr)) !important;
  gap: 14px 18px !important;
}

.market-filter-panel .rich-report-filter-options .rich-filter-option,
.market-panel[data-panel="current"] .rich-report-filter-options .rich-filter-option,
body.market-recycle .market-panel[data-panel="current"] .rich-report-filter-options .rich-filter-option {
  min-height: 54px !important;
  justify-content: flex-start !important;
  padding: 0 18px !important;
  text-align: left !important;
  font-size: 15px !important;
}

.market-filter-panel .rich-filter-simple-options,
.market-panel[data-panel="current"] .rich-filter-simple-options,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-simple-options {
  grid-template-columns: repeat(var(--rich-columns, 3), minmax(132px, 1fr)) !important;
  gap: 12px !important;
}

.market-filter-panel .rich-filter-simple-options .rich-filter-option,
.market-panel[data-panel="current"] .rich-filter-simple-options .rich-filter-option,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-simple-options .rich-filter-option {
  min-height: 48px !important;
  justify-content: center !important;
  text-align: center !important;
}

.market-filter-panel .rich-filter-actions,
.market-panel[data-panel="current"] .rich-filter-actions,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-actions {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  min-height: 62px !important;
  border-top: 1px solid #edf1f6 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  padding: 10px 18px !important;
  box-shadow: 0 -8px 18px rgba(15, 35, 60, 0.04) !important;
}

.market-filter-panel .rich-filter-cancel,
.market-filter-panel .rich-filter-confirm,
.market-panel[data-panel="current"] .rich-filter-cancel,
.market-panel[data-panel="current"] .rich-filter-confirm,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-cancel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-confirm {
  min-width: 96px !important;
  height: 38px !important;
  border: 1px solid #d9e1ec !important;
  border-radius: 6px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.market-filter-panel .rich-filter-cancel,
.market-panel[data-panel="current"] .rich-filter-cancel,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-cancel {
  background: #f5f7fa !important;
  color: #1f2937 !important;
}

.market-filter-panel .rich-filter-confirm,
.market-panel[data-panel="current"] .rich-filter-confirm,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-confirm {
  border-color: #d4a650 !important;
  background: #d4a650 !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(212, 166, 80, 0.22) !important;
}

.market-filter-panel .rich-filter-cancel:hover,
.market-panel[data-panel="current"] .rich-filter-cancel:hover,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-cancel:hover {
  border-color: #b9c6d8 !important;
  background: #eef2f7 !important;
}

.market-filter-panel .rich-filter-confirm:hover,
.market-panel[data-panel="current"] .rich-filter-confirm:hover,
body.market-recycle .market-panel[data-panel="current"] .rich-filter-confirm:hover {
  border-color: #c19139 !important;
  background: #c19139 !important;
}

/* Shunhuishou report: only defect rows lose card chrome. */
.report-modal.is-shunhuishou-report .recycle-report-flaw-group + .recycle-report-flaw-group {
  margin-top: 18px !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-group h4 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 0 8px !important;
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-group h4::before {
  content: "" !important;
  width: 4px !important;
  height: 15px !important;
  border-radius: 999px !important;
  background: #f97316 !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-row {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-height: 24px !important;
  margin: 0 !important;
  padding: 0 0 0 12px !important;
  color: #7c2d12 !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.5 !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-row i {
  width: 16px !important;
  height: 16px !important;
  margin-top: 2px !important;
  font-size: 10px !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-row + .recycle-report-flaw-row {
  margin-top: 6px !important;
}

.report-modal.is-shunhuishou-report .recycle-report-flaw-row > span:not(.recycle-report-flaw-thumbs) {
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

/* Shared recycle-style reports: Taohuo and Zhuanzhuan dark reuse the same defect row DOM. */
body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-flaw-layout {
  display: block !important;
}

body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-priority-images {
  display: none !important;
}

body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-flaw-row {
  display: grid !important;
  grid-template-columns: 24px fit-content(640px) auto !important;
  justify-content: start !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  gap: 12px !important;
  min-height: 34px !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  align-items: start !important;
  width: 100% !important;
  max-width: 100% !important;
  color: #5f6673 !important;
  font-size: 15px !important;
  font-weight: 520 !important;
  line-height: 1.42 !important;
}

body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-flaw-row i {
  width: 22px !important;
  height: 22px !important;
  margin-top: 2px !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

body.report-market-open .report-modal.is-market-report .recycle-report-flaw-thumbs {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: flex-start !important;
  gap: 8px !important;
  max-width: 144px !important;
  margin-left: 12px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

body.report-market-open .report-modal.is-market-report .recycle-report-flaw-thumbs button {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  border: 0 !important;
  border-radius: 10px !important;
  background: transparent !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.report-market-open .report-modal.is-market-report .recycle-report-flaw-thumbs img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
}

body.report-market-open .report-modal.is-market-report .recycle-report-flaw-row > span:not(.recycle-report-flaw-thumbs) {
  min-width: 0 !important;
}

body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-flaw-row > span:not(.recycle-report-flaw-thumbs) {
  display: block !important;
  min-width: 0 !important;
  flex: none !important;
  max-width: none !important;
  color: #6b7280 !important;
  writing-mode: horizontal-tb !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

body.report-market-open:not(.market-recycle) .report-modal.is-market-report .recycle-report-flaw-thumbs {
  justify-self: start !important;
  margin-left: 12px !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .recycle-report-start-price {
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .recycle-report-start-price > strong {
  order: 1 !important;
  margin: 0 !important;
  text-align: center !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .recycle-report-start-price > span {
  order: 2 !important;
  margin-top: 8px !important;
  text-align: center !important;
  line-height: 1.35 !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .recycle-report-start-price .recycle-report-fengjihui-price {
  order: 3 !important;
  justify-self: center !important;
}

.bulk-package-row .bulk-import-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid #b7d7ff;
  border-radius: 6px;
  background: #f0f7ff;
  color: #1f5fa8;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* 2026-06-19 report UX hard rules: source cards hidden, photos first, original report full width. */
body.report-market-open .report-modal.is-market-report .report-body {
  padding-bottom: 80px !important;
}

body.report-market-open:not(.market-recycle):not(.market-shunhuishou) .report-modal.is-market-report .report-body,
body.report-market-open.market-bulk .report-modal.is-market-report .report-body {
  padding-bottom: 80px !important;
}

.market-report-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.market-report-hero-meta span {
  color: #6b5a18;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
}

body.report-market-open .market-report-taohuo .market-report-hero > div:first-child > span {
  display: block !important;
}

body.report-market-open .market-report-taohuo .market-report-hero-tags {
  display: flex !important;
}

.market-report-main-grid.is-full-width {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.report-market-open.market-bulk .bulk-original-toolbar + .market-report .market-report-main-grid {
  grid-template-columns: minmax(0, 1fr) !important;
}

.bulk-original-base-info {
  margin-top: 10px;
  border: 1px solid #e5eaf3;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.bulk-original-base-info summary,
.market-report-normal-details summary {
  cursor: pointer;
  color: #111827;
  font-size: 14px;
  font-weight: 850;
  list-style: none;
  padding: 12px 14px;
}

.bulk-original-base-info summary::-webkit-details-marker,
.market-report-normal-details summary::-webkit-details-marker {
  display: none;
}

.bulk-original-base-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #edf2f7;
}

.bulk-original-base-grid div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 38px;
  border-right: 1px solid #edf2f7;
  border-bottom: 1px solid #edf2f7;
}

.bulk-original-base-grid span,
.bulk-original-base-grid strong {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1.4;
}

.bulk-original-base-grid span {
  background: #f8fafc;
  color: #64748b;
  font-weight: 750;
}

.bulk-original-base-grid strong {
  color: #1f2937;
  font-weight: 760;
  word-break: break-word;
}

.market-report-normal-details {
  border-top: 1px solid #edf2f7;
  background: #fff;
}

.market-report-normal-details .report-result-panel {
  border-top: 1px solid #edf2f7;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-group h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-row {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 40px;
  font-size: 15px;
  line-height: 1.48;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .market-report-results .report-result-text {
  font-size: 13px !important;
  line-height: 1.48 !important;
}

body.report-market-open:is(.market-taohuo, .market-zz-dark) .report-modal.is-market-report .recycle-report-flaw-row {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

/* 2026-06-19 live verification override: original ZZ report keeps photos first and uses full-width defects. */
body.report-market-open .market-report-taohuo.market-report-view-zz {
  display: flex !important;
  flex-direction: column !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-hero {
  order: 1 !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-photo-strip {
  order: 2 !important;
  margin-top: 10px !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .bulk-original-base-info {
  order: 3 !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-main-grid {
  order: 4 !important;
  margin-top: 10px !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-main-grid.is-full-width {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.report-market-open .market-report-main-grid.is-full-width {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.report-market-open.market-zz-dark .market-report.market-report-view-zz .market-report-main-grid.is-full-width {
  grid-template-columns: minmax(0, 1fr) !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-results .report-result-body {
  max-height: none !important;
  overflow: visible !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-results .report-result-group h4 {
  margin-bottom: 10px !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-results .report-result-row {
  grid-template-columns: 22px minmax(0, 1fr) auto !important;
  gap: 10px !important;
  min-height: 34px !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-results .report-result-text {
  font-size: 15px !important;
  line-height: 1.48 !important;
}

body.report-market-open.market-zz-dark .market-report.market-report-view-zz .market-report-results .report-result-group h4 {
  margin-bottom: 10px !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
}

body.report-market-open.market-zz-dark .market-report.market-report-view-zz .market-report-results .report-result-row {
  grid-template-columns: 22px minmax(0, 1fr) auto !important;
  gap: 10px !important;
  min-height: 34px !important;
  font-size: 15px !important;
  line-height: 1.48 !important;
}

body.report-market-open.market-zz-dark .market-report.market-report-view-zz .market-report-results .report-result-text {
  font-size: 15px !important;
  line-height: 1.48 !important;
}

body.report-market-open .market-report-taohuo.market-report-view-zz .market-report-price-panel {
  display: none !important;
}

body.report-market-open .report-modal.is-market-report .ant-modal-footer {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 20 !important;
  background: #fff !important;
  padding: 10px 24px 18px !important;
}

body.report-market-open .report-modal.is-market-report .ant-modal-content {
  display: flex !important;
  max-height: calc(100vh - 36px) !important;
  flex-direction: column !important;
}

body.report-market-open .report-modal.is-market-report .report-body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  max-height: calc(100vh - 186px) !important;
  overflow: auto !important;
}

/* Restore the marketplace table's original spacing; only text content is clamped. */
body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table {
  min-width: 1280px !important;
  table-layout: auto !important;
}

body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td {
  width: auto !important;
  max-width: none !important;
}

body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th {
  padding: 10px 10px !important;
  line-height: 1.5715 !important;
}

body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td {
  padding: 12px 10px !important;
  line-height: 1.45 !important;
}

body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table .product-info-cell {
  width: 300px !important;
  max-width: 300px !important;
}

body:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .quality-desc-cell {
  max-width: 260px !important;
}

/* Taohuo source-site table parity: plain rows, source columns, natural engineer text. */
/* 已删除 sider 强制宽度:原 `.ant-layout-sider{width:160px!important}` + `+.ant-layout{margin-left:160px!important}`
   把侧边栏焊死成 160px,导致 logo"天眼采购系统"放不下被遮、折叠时无法变窄而变形。
   改回默认 sider 宽度(跟其他卖场一致),logo 放得下、折叠正常。2026-06-24 siderfix */

body.market-taohuo:not(.market-recycle):not(.market-bulk) .ant-layout-content,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .ant-layout-content {
  padding: 24px 20px 28px !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table-wrapper,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table-wrapper {
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table {
  width: 100% !important;
  min-width: 1994px !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  background: #fff !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(3),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(3),
body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(5),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(5),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(5),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(5),
body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(8),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(8) {
  display: none !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th {
  padding: 8px !important;
  border: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  background: #fafafa !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table tbody td,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table tbody td {
  padding: 8px !important;
  border: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table tbody tr:nth-child(even) td,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table tbody tr:nth-child(even) td,
body.market-taohuo .market-panel[data-panel="current"] .ant-table tbody tr:hover td,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table tbody tr:hover td {
  border-color: #f0f0f0 !important;
  background: #fff !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(1),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(1),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(1),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(1) {
  width: 4.51% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(2),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(2),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(2),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(2) {
  width: 3.01% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(4),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(4),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(4),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(4) {
  width: 9.68% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(6),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(6) {
  width: 15.09% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(7),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(7),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(7),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(7) {
  width: 20.26% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(9),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(9) {
  width: 16.62% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(10),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(10) {
  width: 2.81% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(11),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(11),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(11),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(11) {
  width: 7% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(12),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(12) {
  width: 12% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-taohuo .market-panel[data-panel="current"] .ant-table td:nth-child(13),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td:nth-child(13) {
  width: 9% !important;
}

body.market-taohuo .market-panel[data-panel="current"] .product-title-cell,
body.market-zz-dark .market-panel[data-panel="current"] .product-title-cell,
body.market-taohuo .market-panel[data-panel="current"] .product-info-cell,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-cell,
body.market-taohuo .market-panel[data-panel="current"] .quality-desc-cell,
body.market-zz-dark .market-panel[data-panel="current"] .quality-desc-cell,
body.market-taohuo .market-panel[data-panel="current"] .engineer-note-cell,
body.market-zz-dark .market-panel[data-panel="current"] .engineer-note-cell {
  max-width: none !important;
  color: rgba(0, 0, 0, 0.85) !important;
  text-align: center !important;
  word-break: normal !important;
}

body.market-taohuo .market-panel[data-panel="current"] .product-title-with-badge,
body.market-zz-dark .market-panel[data-panel="current"] .product-title-with-badge {
  justify-content: center !important;
  color: rgba(0, 0, 0, 0.85) !important;
  line-height: 22px !important;
}

body.market-taohuo .market-panel[data-panel="current"] .product-info-compact,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-compact,
body.market-taohuo .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-zz-dark .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-taohuo .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text,
body.market-zz-dark .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: normal !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: unset !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table-wrapper,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table-wrapper {
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: none !important;
  overflow: visible !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table {
  width: 100% !important;
  min-width: 1994px !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  background: #fff !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td {
  max-width: none !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(3),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(3),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(5),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(5),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(5),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(5),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(8),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(8),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(8) {
  display: none !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th {
  padding: 8px !important;
  border: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  background: #fafafa !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 22px !important;
  text-align: center !important;
  white-space: normal !important;
  word-break: normal !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td {
  padding: 8px !important;
  border: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td:first-child,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td:first-child,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td:last-child,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody td:last-child {
  border-left: 0 !important;
  border-right: 0 !important;
  border-radius: 0 !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody tr:nth-child(even) td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody tr:nth-child(even) td,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody tr:hover td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table tbody tr:hover td {
  border-color: #f0f0f0 !important;
  background: #fff !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(1),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(1),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(1),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(1) {
  width: 4.51% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(2),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(2),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(2),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(2) {
  width: 3.01% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(4),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(4),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(4),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(4) {
  width: 9.68% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(6),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(6),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(6) {
  width: 15.09% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(7),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(7),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(7),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(7) {
  width: 20.26% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(9),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(9),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(9) {
  width: 16.62% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(10),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(10),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(10) {
  width: 2.81% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(11),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(11),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(11),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(11) {
  width: 7% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(12) {
  width: 12% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(13) {
  width: 9% !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .quality-desc-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .quality-desc-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell {
  max-width: none !important;
  color: rgba(0, 0, 0, 0.85) !important;
  text-align: center !important;
  word-break: normal !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge {
  justify-content: center !important;
  color: rgba(0, 0, 0, 0.85) !important;
  line-height: 22px !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-compact,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-compact,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  color: rgba(0, 0, 0, 0.85) !important;
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  text-overflow: clip !important;
  white-space: normal !important;
  word-break: normal !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: unset !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions {
  display: block !important;
  max-width: none !important;
}

body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-link,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-link {
  color: #1890ff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal !important;
  word-break: normal !important;
}

/* === 淘货/转转暗拍卖场表格:垂直居中(对齐转转采货侠) + 我的出价/操作列重叠修复(20260623) === */
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td {
  vertical-align: middle !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(12),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(12) {
  width: 150px !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(13),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td:nth-child(13) {
  width: 150px !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .bid-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .bid-cell {
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .bid-cell .bid-cell-actions,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .bid-cell .bid-cell-actions {
  flex-wrap: wrap !important;
  justify-content: center !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions {
  box-sizing: border-box !important;
  max-width: 100% !important;
}

/* 照源站:左对齐(源站为左对齐,天眼原居中导致左右参差/不规整) */
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table td,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .quality-desc-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .quality-desc-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-compact,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-info-compact,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .engineer-note-cell .product-table-source-text,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-link,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-link,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .table-actions {
  text-align: left !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge {
  justify-content: flex-start !important;
}
/* 兜底:标题列内所有元素强制左对齐(压住 span 内文字居中) */
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell,
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell *,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-cell * {
  text-align: left !important;
  justify-content: flex-start !important;
}
/* 彻底:标题容器去掉 flex 居中,改 block 让文字靠左流 */
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge {
  display: block !important;
  text-align: left !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge > span,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .product-title-with-badge > span {
  display: inline !important;
  text-align: left !important;
}
/* 用表格 ID 提权,强制单元格垂直居中(对齐转转采货侠版式;淘货+转转暗拍,2026-06-23) */
body.market-taohuo #productRows > tr > td,
body.market-zz-dark #productRows > tr > td,
body.market-taohuo #productRows > tr > th,
body.market-zz-dark #productRows > tr > th,
body.market-taohuo #productRows tr,
body.market-zz-dark #productRows tr,
body.market-zz-dark #productRows > tr > td,
body.market-zz-dark #productRows > tr > th,
body.market-zz-dark #productRows tr {
  vertical-align: middle !important;
}
/* 真正根因修复:淘货只隐藏了"品类"数据列(td:nth-child(3)),却漏了表头(th:nth-child(3)),
   导致表头比数据多一列、整体右移 76px → 把表头也一并隐藏,表头与数据即可逐列对齐 */
body.market-taohuo .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(3),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table th:nth-child(3) {
  display: none !important;
}

.bulk-package-info {
  max-width: 320px;
}

.bulk-source-badge {
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  height: 24px;
  border: 1px solid #c8e6d4;
  border-radius: 6px;
  background: #f0fbf4;
  color: #087443;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.bulk-device-table-qc {
  display: grid;
  gap: 4px;
  max-width: 360px;
}

.bulk-device-table-qc strong {
  color: #344054;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bulk-device-table-qc span {
  color: #667085;
  font-size: 12px;
}

.bulk-package-qc {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.bulk-package-qc strong {
  color: #172033;
  font-size: 12px;
}

.bulk-package-qc span {
  color: #667085;
  font-size: 12px;
}

.bulk-package-report {
  display: grid;
  gap: 14px;
  color: #172033;
}

.bulk-package-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.bulk-package-summary div,
.bulk-package-meta div {
  min-width: 0;
  border: 1px solid #e5e7ef;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.bulk-package-summary span,
.bulk-package-meta span {
  display: block;
  color: #667085;
  font-size: 12px;
}

.bulk-package-summary strong,
.bulk-package-meta strong {
  display: block;
  margin-top: 4px;
  color: #172033;
  font-size: 15px;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.bulk-package-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.bulk-package-warning {
  border: 1px solid #ffd7a8;
  border-radius: 8px;
  background: #fff8ed;
  color: #9a4b00;
  padding: 10px 12px;
  font-size: 13px;
}

.bulk-device-list {
  display: grid;
  gap: 10px;
}

.bulk-device-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 156px;
  gap: 12px;
  border: 1px solid #e5e7ef;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
}

.bulk-device-main {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.bulk-device-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.bulk-device-title strong {
  min-width: 0;
  font-size: 15px;
  color: #172033;
  overflow-wrap: anywhere;
}

.bulk-device-title span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef2ff;
  color: #3751b5;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 700;
}

.bulk-device-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: #667085;
  font-size: 12px;
}

.bulk-device-qc,
.bulk-device-review {
  display: grid;
  gap: 4px;
}

.bulk-device-qc b,
.bulk-device-review b {
  color: #344054;
  font-size: 12px;
}

.bulk-device-qc p,
.bulk-device-review p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.bulk-report-match {
  display: grid;
  align-content: start;
  gap: 8px;
  border-left: 1px solid #edf0f5;
  padding-left: 12px;
}

.bulk-report-match span {
  color: #667085;
  font-size: 12px;
}

.bulk-report-match.is-matched span {
  color: #087443;
}

.bulk-report-match.is-queryable span {
  color: #9a6a15;
}

.bulk-report-match em {
  color: #98a2b3;
  font-style: normal;
  font-size: 12px;
  line-height: 1.4;
}

.bulk-original-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bulk-original-toolbar strong {
  min-width: 0;
  color: #172033;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.bulk-original-toolbar + .market-report {
  font-size: 12px;
}

.bulk-original-toolbar + .market-report .market-report-hero {
  gap: 10px;
  padding: 12px 14px;
}

.bulk-original-toolbar + .market-report .market-report-hero > div:first-child > span,
.bulk-original-toolbar + .market-report .market-report-hero-tags em,
.bulk-original-toolbar + .market-report .market-report-panel-head span,
.bulk-original-toolbar + .market-report .market-report-panel-head em,
.bulk-original-toolbar + .market-report .market-report-photo-head span,
.bulk-original-toolbar + .market-report .market-report-photo-head strong,
.bulk-original-toolbar + .market-report .market-report-source p,
.bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child span {
  font-size: 11px;
}

.bulk-original-toolbar + .market-report .market-report-title-line h2 {
  font-size: 18px;
  line-height: 1.25;
}

.bulk-original-toolbar + .market-report .market-report-grade-badge {
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  font-size: 17px;
}

.bulk-original-toolbar + .market-report .market-report-summary {
  gap: 6px;
  margin-top: 8px;
}

.bulk-original-toolbar + .market-report .market-report-summary div {
  min-height: 50px;
  padding: 7px 8px;
}

.bulk-original-toolbar + .market-report .market-report-summary span {
  font-size: 10px;
}

.bulk-original-toolbar + .market-report .market-report-summary strong {
  margin-top: 4px;
  font-size: 12px;
}

.bulk-original-toolbar + .market-report .market-report-main-grid {
  gap: 10px;
  margin-top: 10px;
}

.bulk-original-toolbar + .market-report .market-report-panel-head {
  min-height: 46px;
  padding: 10px 12px;
}

.bulk-original-toolbar + .market-report .market-report-panel-head strong {
  font-size: 15px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-header {
  min-height: 44px;
  padding: 10px 14px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-header strong {
  font-size: 14px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-body {
  padding: 12px 14px 14px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-group + .report-result-group {
  margin-top: 14px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-group h4 {
  margin-bottom: 8px;
  font-size: 13px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-row {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 34px;
  font-size: 12px;
  line-height: 1.42;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-row + .report-result-row {
  margin-top: 5px;
}

.bulk-original-toolbar + .market-report .market-report-results .report-result-image {
  width: 46px;
  height: 46px;
  border-radius: 6px;
}

.bulk-original-toolbar + .market-report .market-report-photo-strip,
.bulk-original-toolbar + .market-report .market-report-normal-summary,
.bulk-original-toolbar + .market-report .market-report-source {
  margin-top: 10px;
}

.bulk-original-toolbar + .market-report .market-report-photo-head {
  padding: 8px 12px;
}

.bulk-original-toolbar + .market-report .market-report-photo-gallery {
  gap: 8px;
  padding: 10px 12px 7px;
}

.bulk-original-toolbar + .market-report .market-report-photo-gallery button {
  flex-basis: 124px;
}

.bulk-original-toolbar + .market-report .market-report-photo-gallery img,
.bulk-original-toolbar + .market-report .market-report-photo-gallery button.is-image-error::before {
  height: 104px;
}

.bulk-original-toolbar + .market-report .market-report-photo-gallery span {
  padding: 6px 7px;
  font-size: 10px;
}

.bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child {
  gap: 6px;
  padding: 10px 12px;
}

.bulk-original-toolbar + .market-report .market-report-normal-summary > div:last-child span {
  padding: 5px 8px;
}

.bulk-original-toolbar + .market-report .market-report-source {
  padding: 10px 12px;
}

.bulk-original-toolbar + .market-report .market-report-source strong {
  font-size: 13px;
}

.bulk-inspection-report {
  display: grid;
  gap: 14px;
  color: #1f2937;
  background: #f5f8fc;
  margin: -16px;
  padding: 16px;
}

.bulk-inspection-hero {
  display: grid;
  gap: 16px;
  border: 1px solid #f1d25a;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffce8 0%, #fff7c7 100%);
  padding: 16px 18px;
}

.bulk-inspection-hero-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.bulk-inspection-hero span,
.bulk-inspection-photo-head span,
.bulk-inspection-counts span,
.bulk-inspection-summary span {
  color: #7a8494;
  font-size: 13px;
  font-weight: 700;
}

.bulk-inspection-hero h2 {
  margin: 6px 0 0;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.bulk-inspection-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bulk-inspection-hero-tags em {
  border: 1px solid #ead9a1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7c5a16;
  padding: 5px 10px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.bulk-inspection-counts div,
.bulk-inspection-summary div {
  min-width: 0;
  border: 1px solid #e7ebf1;
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.bulk-inspection-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
}

.bulk-inspection-defects,
.bulk-inspection-price-panel,
.bulk-inspection-photo-strip,
.bulk-inspection-summary {
  border: 1px solid #e3e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.bulk-inspection-defects {
  min-height: 300px;
  padding: 18px;
}

.bulk-inspection-defect-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bulk-inspection-alert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fb923c;
  border-radius: 8px;
  background: #fff7ed;
  color: #b45309;
  padding: 9px 14px;
}

.bulk-inspection-alert span {
  font-size: 13px;
  font-weight: 700;
}

.bulk-inspection-alert strong {
  color: #c2410c;
  font-size: 18px;
}

.bulk-inspection-defects h3 {
  margin: 20px 0 18px;
  color: #111827;
  font-size: 18px;
}

.bulk-inspection-defect-list {
  display: grid;
  gap: 21px;
}

.bulk-inspection-defect-list > div:not(.bulk-inspection-muted) {
  display: grid;
  grid-template-columns: 22px fit-content(640px) auto;
  justify-content: start;
  column-gap: 10px;
  row-gap: 6px;
  align-items: center;
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  padding: 7px 0;
}

.bulk-inspection-defect-text {
  overflow-wrap: anywhere;
}

.bulk-inspection-defect-images {
  justify-self: start;
}

.bulk-inspection-defect-images:empty {
  display: none;
}

.bulk-inspection-defect-list .report-result-images {
  display: flex;
  gap: 8px;
  margin-left: 10px;
  margin-top: 0;
}

.bulk-inspection-defect-list .report-result-image {
  width: 54px;
  height: 54px;
  border-color: #fed7aa;
  border-radius: 10px;
  background: #fff7ed;
  overflow: hidden;
}

.bulk-inspection-defect-list .report-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bulk-inspection-defect-list b {
  display: inline-block;
  margin: 0 8px 4px 0;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  background: #fff7ed;
  color: #9a3412;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1.5;
}

.bulk-inspection-defect-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #fb923c;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.bulk-inspection-normal-details {
  margin-top: 12px;
  border-top: 1px solid #edf1f7;
  padding-top: 10px;
}

.bulk-inspection-normal-details summary {
  cursor: pointer;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.bulk-inspection-normal-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.bulk-inspection-normal-list div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.bulk-inspection-normal-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.bulk-inspection-normal-list span {
  overflow-wrap: anywhere;
}

.bulk-inspection-normal-list b {
  display: inline-block;
  margin: 0 8px 4px 0;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #f8fafc;
  color: #475569;
  padding: 1px 6px;
  font-size: 12px;
  line-height: 1.5;
}

.bulk-inspection-muted,
.bulk-inspection-empty {
  color: #8a93a3;
  font-size: 13px;
}

.bulk-inspection-price-panel {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.bulk-inspection-start-price,
.bulk-inspection-original {
  border: 1px solid #f5c84b;
  border-radius: 8px;
  background: #fffbeb;
  padding: 14px;
}

.bulk-inspection-start-price {
  text-align: center;
}

.bulk-inspection-start-price span,
.bulk-inspection-original span {
  display: block;
  color: #9a6a15;
  font-size: 13px;
  font-weight: 700;
}

.bulk-inspection-start-price strong {
  display: block;
  margin-top: 8px;
  color: #b45309;
  font-size: 26px;
}

.bulk-inspection-bid-box .recycle-report-bid-box {
  border: 1px solid #f5c84b;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffbeb, #ffffff);
  padding: 16px;
}

.bulk-inspection-bid-box .recycle-report-bid-control {
  margin-top: 10px;
}

.bulk-inspection-market-prices {
  display: grid;
  gap: 12px;
}

.bulk-inspection-market-prices .report-price-item-zz,
.bulk-inspection-reference-price {
  position: relative;
  width: 100%;
  border-color: #f5c84b;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffbf0, #fff);
  padding: 14px;
  font: inherit;
  text-align: left;
}

.bulk-inspection-reference-price .report-inline-notice {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.bulk-inspection-market-prices .report-price-item-zz span,
.bulk-inspection-market-prices .report-price-item-zz em,
.bulk-inspection-market-prices .zz-settle-current span,
.bulk-inspection-market-prices .zz-settle-current em,
.bulk-inspection-reference-price span {
  color: #9a6a15;
}

.bulk-inspection-market-prices .report-price-item-zz strong,
.bulk-inspection-reference-price strong {
  color: #c76b24;
}

.bulk-inspection-market-prices .zz-price-flip {
  border-color: rgba(197, 123, 30, 0.24);
  background: #fff7df;
  color: #c76b24;
}

.bulk-inspection-market-prices .zz-settle-grade,
.bulk-inspection-market-prices .zz-settle-current span {
  border-radius: 7px;
}

.bulk-inspection-market-prices .zz-settle-grade.is-active {
  border-color: #f97316;
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.12);
}

.bulk-inspection-reference-price:hover:not(:disabled) {
  border-color: #f97316;
  background: #fff7ed;
}

.bulk-inspection-reference-price:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.bulk-inspection-original {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bulk-inspection-defect-head .bulk-inspection-original {
  min-height: 42px;
  padding: 9px 14px;
}

.bulk-inspection-defect-head .bulk-inspection-original span {
  display: inline;
  white-space: nowrap;
}

.bulk-inspection-defect-head .bulk-inspection-original .table-link,
.bulk-inspection-defect-head .bulk-inspection-original strong {
  white-space: nowrap;
}

.bulk-inspection-original strong {
  color: #9ca3af;
  font-size: 15px;
}

.bulk-inspection-original.is-queryable strong,
.bulk-inspection-original.is-queryable .table-link {
  color: #b45309;
}

.bulk-inspection-counts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.bulk-inspection-counts strong {
  display: block;
  margin-top: 6px;
  color: #c2410c;
  font-size: 18px;
}

.bulk-inspection-photo-strip {
  overflow: hidden;
}

.bulk-inspection-photo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #edf1f7;
  padding: 12px 14px;
}

.bulk-inspection-photo-head strong {
  color: #2563eb;
  font-size: 13px;
}

.bulk-inspection-photo-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  scrollbar-width: none;
}

.bulk-inspection-photo-gallery::-webkit-scrollbar {
  display: none;
}

.bulk-inspection-photo-gallery button {
  flex: 0 0 160px;
  border: 1px solid #e3e8f0;
  border-radius: 8px;
  background: #fff;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.bulk-inspection-photo-gallery img {
  display: block;
  width: 100%;
  height: 126px;
  object-fit: cover;
  background: #f3f4f6;
}

.bulk-inspection-photo-gallery span {
  display: block;
  color: #6b7280;
  font-size: 12px;
  padding: 8px;
}

.bulk-inspection-photo-strip .market-report-scroll-track {
  display: block;
  position: relative;
  height: 8px;
  margin: 2px 16px 12px;
  border: 0;
  border-radius: 999px;
  background: #e8eef6;
  cursor: pointer;
  overflow: hidden;
  touch-action: none;
  user-select: none;
}

.bulk-inspection-photo-strip .market-report-scroll-track span {
  display: block;
  min-width: 34px;
  height: 100%;
  border-radius: inherit;
  background: #8da0b8;
  transform: translate3d(0, 0, 0);
  will-change: transform, width;
}

.bulk-inspection-photo-strip .market-report-scroll-track:hover span,
.bulk-inspection-photo-strip .market-report-scroll-track.is-dragging span {
  background: #64748b;
}

.bulk-inspection-photo-strip .market-report-scroll-track.is-disabled {
  cursor: default;
}

.bulk-inspection-photo-strip .market-report-scroll-track.is-disabled span {
  width: 100%;
  background: #cbd5e1;
}

body.report-market-open .bulk-inspection-photo-strip .market-report-scroll-track {
  height: 8px !important;
  margin: 2px 16px 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: #e8eef6 !important;
  box-shadow: none !important;
}

body.report-market-open .bulk-inspection-photo-strip .market-report-scroll-track span {
  min-width: 34px !important;
  background: #8da0b8 !important;
  box-shadow: none !important;
}

body.report-market-open .bulk-inspection-photo-strip .market-report-scroll-track:hover span,
body.report-market-open .bulk-inspection-photo-strip .market-report-scroll-track.is-dragging span {
  background: #64748b !important;
}

.bulk-inspection-empty {
  padding: 16px;
}

.bulk-inspection-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bulk-inspection-summary p {
  margin: 8px 0 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

@media (max-width: 900px) {
  .bulk-package-summary,
  .bulk-package-meta,
  .bulk-device-row {
    grid-template-columns: 1fr;
  }

  .bulk-report-match {
    border-left: 0;
    border-top: 1px solid #edf0f5;
    padding-left: 0;
    padding-top: 10px;
  }

  .bulk-inspection-hero,
  .bulk-inspection-defect-head .bulk-inspection-original {
    align-items: flex-start;
    flex-direction: column;
  }

  .bulk-inspection-main-grid,
  .bulk-inspection-counts,
  .bulk-inspection-summary {
    grid-template-columns: 1fr;
  }

  .bulk-inspection-defect-list > div:not(.bulk-inspection-muted) {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .bulk-inspection-defect-images {
    grid-column: 2;
    justify-self: start;
  }

  .bulk-inspection-report {
    margin: -12px;
    padding: 12px;
  }
}

/* === 淘货 / 转转暗拍 表格对齐转转采货侠版式 (2026-06-23 align1) ===
   只改这两个表格卖场:单元格内容垂直居中(背贴码/等级/标题/商品信息等不再贴顶),
   商品信息/描述信息完整显示并左对齐。不影响回收宝(卡片)、统货、出价分析等其它区域。 */
body.market-taohuo .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th,
body.market-taohuo .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table th,
body.market-zz-dark .market-panel[data-panel="current"] .ant-table td {
  vertical-align: middle !important;
}
body.market-taohuo .market-panel[data-panel="current"] .product-info-cell,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-cell,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-cell,
body.market-taohuo .market-panel[data-panel="current"] .quality-desc-cell,
body.market-zz-dark .market-panel[data-panel="current"] .quality-desc-cell,
body.market-zz-dark .market-panel[data-panel="current"] .quality-desc-cell {
  text-align: left !important;
}
body.market-taohuo .market-panel[data-panel="current"] .product-info-compact,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-compact,
body.market-taohuo .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-zz-dark .market-panel[data-panel="current"] .product-table-text-clamp,
body.market-zz-dark .market-panel[data-panel="current"] .product-info-compact,
body.market-zz-dark .market-panel[data-panel="current"] .product-table-text-clamp {
  display: block !important;
  -webkit-line-clamp: unset !important;
  max-height: none !important;
  overflow: visible !important;
}

/* 表头文字水平居中(对齐转转采货侠的表头;之前被"照源站左对齐"规则强制靠左了,这里特异性更高压回居中) */
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th,
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th {
  text-align: center !important;
}

/* 整页刷新时的全屏"正在刷新"遮罩(让用户确认真的整页重载了),数据加载完由 JS 淡出移除 */
.app-boot-loading { position: fixed; inset: 0; z-index: 2147483647; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: rgba(248,250,252,.96); transition: opacity .3s ease; }
.app-boot-loading.is-hidden { opacity: 0; pointer-events: none; }
.app-boot-spinner { width: 52px; height: 52px; border: 5px solid #e5e7eb; border-top-color: #1890ff; border-radius: 50%; animation: appBootSpin .8s linear infinite; }
.app-boot-loading p { margin: 0; color: #1890ff; font-size: 17px; font-weight: 600; }
@keyframes appBootSpin { to { transform: rotate(360deg); } }

/* ===== Right columns (source10/start-price11/my-bid12/operation13) align RIGHT =====
   #productRows ID lift beats 19567(center)/19588(left); thead high-specificity for headers. 2026-06-24 rightfix */
body.market-taohuo #productRows > tr > td:nth-child(10),
body.market-zz-dark #productRows > tr > td:nth-child(10),
body.market-taohuo #productRows > tr > td:nth-child(11),
body.market-zz-dark #productRows > tr > td:nth-child(11),
body.market-zz-dark #productRows > tr > td:nth-child(10),
body.market-zz-dark #productRows > tr > td:nth-child(11) {
  text-align: right !important;
  padding-right: 20px !important;
}
body.market-taohuo #productRows > tr > td:nth-child(12) .bid-cell,
body.market-zz-dark #productRows > tr > td:nth-child(12) .bid-cell,
body.market-taohuo #productRows > tr > td:nth-child(12) .bid-cell-actions,
body.market-zz-dark #productRows > tr > td:nth-child(12) .bid-cell-actions,
body.market-zz-dark #productRows > tr > td:nth-child(12) .bid-cell,
body.market-zz-dark #productRows > tr > td:nth-child(12) .bid-cell-actions {
  display: flex !important;
  justify-content: flex-end !important;
  width: 100% !important;
  padding-right: 20px !important;
}
body.market-taohuo #productRows > tr > td:nth-child(13),
body.market-zz-dark #productRows > tr > td:nth-child(13),
body.market-zz-dark #productRows > tr > td:nth-child(13) {
  text-align: right !important;
}
body.market-taohuo #productRows > tr > td:nth-child(13) .table-actions,
body.market-zz-dark #productRows > tr > td:nth-child(13) .table-actions,
body.market-zz-dark #productRows > tr > td:nth-child(13) .table-actions {
  display: flex !important;
  justify-content: flex-end !important;
  width: 100% !important;
  padding-right: 20px !important;
}
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(10),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(10),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(11),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(11),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(12),
body.market-taohuo:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(13),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(10),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(11),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(12),
body.market-zz-dark:not(.market-recycle):not(.market-bulk) .market-panel[data-panel="current"] .ant-table thead th:nth-child(13) {
  text-align: right !important;
  padding-right: 20px !important;
}
/* ===== 转转查价卡片 restyle:配色统一 + 暂无柔灰 + 选中加粗 + 圆形更新按钮 + 翻转钮配色 (2026-06-24 zzrefresh2) ===== */
.report-price-item-zz .zz-settle-grade strong { color: #c2410c; }
.report-price-item-zz [data-zz-settle-selected-price] { color: #c2410c; }
.report-price-item-zz .zz-settle-grade.is-unavailable strong { color: #c4b8a4; }
.report-price-item-zz .zz-settle-grade.is-unavailable { border-color: rgba(212,107,8,.12); background: rgba(255,255,255,.5); }
.report-price-item-zz .zz-settle-grade.is-active { border-width: 2px; border-color: #ea580c; background: #fff3e0; box-shadow: none; }
.report-price-item-zz [data-zz-price-view-label] { color: #b45309; }
.report-price-item-zz .zz-settle-current span { color: #9a3412; border-color: rgba(234,88,12,.3); }
.report-price-item-zz .zz-settle-current em { color: #b45309; }
.report-price-item-zz .zz-price-flip { color: #c2410c; border-color: rgba(234,88,12,.3); background: #fff; }
.report-price-item-zz .zz-price-flip:hover { background: #fff3e0; }
.report-price-item-zz .zz-price-flip svg path { stroke: #c2410c; }
.zz-refresh-btn {
  margin-left: auto; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 0;
  border: 1px solid #ea580c; border-radius: 999px;
  background: #ea580c; color: #fff;
  cursor: pointer; transition: background .15s, opacity .15s;
}
.zz-refresh-btn:hover { background: #c2410c; border-color: #c2410c; }
.zz-refresh-btn:active { transform: scale(.95); }
.zz-refresh-btn.is-loading { opacity: .65; pointer-events: none; }
.zz-refresh-btn.is-loading svg { animation: zzRefreshSpin .8s linear infinite; }
@keyframes zzRefreshSpin { to { transform: rotate(360deg); } }
