* {
  box-sizing: border-box;
}

:root {
  --qz-blue: #322da9;
  --qz-blue-2: #4956ff;
  --qz-ink: #242632;
  --qz-muted: #7b8193;
  --qz-line: #e8ebf2;
  --qz-soft: #f5f6fb;
  --qz-green: #10a979;
  --qz-red: #f05a5a;
  --qz-yellow: #ffb020;
  --qz-shadow: 0 12px 32px rgba(36, 38, 50, 0.08);
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  margin: 0;
  color: var(--qz-ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #fff;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.qz-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  background: var(--qz-blue);
  color: #fff;
  box-shadow: 0 3px 16px rgba(27, 25, 112, 0.2);
}

.qz-topbar-inner {
  width: min(1720px, calc(100vw - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.qz-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 230px;
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
}

.qz-logo-mark {
  position: relative;
  width: 58px;
  height: 44px;
}

.qz-logo-mark::before,
.qz-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(0 0, 70% 0, 44% 44%, 100% 44%, 100% 100%, 27% 100%, 54% 56%, 0 56%);
}

.qz-logo-mark::after {
  inset: 12px 12px 12px 18px;
  background: var(--qz-blue);
}

.qz-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.qz-nav-link,
.qz-nav-menu-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.qz-nav-link:hover,
.qz-nav-menu:hover .qz-nav-menu-title {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.qz-nav-menu {
  position: relative;
}

.qz-nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 190px;
  padding: 10px;
  border: 1px solid var(--qz-line);
  border-radius: 4px;
  background: #fff;
  color: var(--qz-ink);
  box-shadow: var(--qz-shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.qz-nav-menu:hover .qz-nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qz-nav-dropdown a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--qz-ink);
  text-align: left;
}

.qz-nav-dropdown a:hover {
  color: var(--qz-blue-2);
  background: #f2f4ff;
}

.qz-badge-new {
  padding: 3px 8px;
  border-radius: 12px;
  background: #ff4d4f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.qz-main {
  width: min(1500px, calc(100vw - 88px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.qz-hero {
  position: relative;
  min-height: 430px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(48, 45, 169, 0.95), rgba(72, 86, 255, 0.86)),
    url("/profile/upload/2025/02/23/zgc1.jpg") center/cover no-repeat;
}

.qz-hero::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: 0;
  width: 340px;
  height: 260px;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 48%, #fff 49%, #fff 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, #fff 49%, #fff 51%, transparent 52%);
  background-size: 44px 44px;
}

.qz-hero-content,
.qz-hero-panel {
  position: relative;
  z-index: 1;
}

.qz-eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.qz-h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.15;
  font-weight: 700;
}

.qz-hero p {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.8;
}

.qz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.qz-hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.qz-hero-panel h3,
.qz-card h3,
.qz-section-title h2,
.qz-side-title {
  margin: 0;
}

.qz-hero-panel h3 {
  font-size: 24px;
}

.qz-hero-panel dl {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.qz-hero-panel dt {
  color: rgba(255, 255, 255, 0.74);
}

.qz-hero-panel dd {
  margin: 8px 0 0;
  font-size: 34px;
  font-weight: 700;
}

.qz-section {
  margin-top: 42px;
}

.qz-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.qz-section-title h2 {
  font-size: 30px;
}

.qz-section-title p {
  margin: 10px 0 0;
  color: var(--qz-muted);
}

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

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

.qz-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qz-card,
.qz-panel {
  background: #fff;
  border: 1px solid var(--qz-line);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(35, 39, 65, 0.04);
}

.qz-card {
  min-height: 164px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qz-card:hover {
  transform: translateY(-3px);
  border-color: #d9ddff;
  box-shadow: var(--qz-shadow);
}

.qz-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.qz-card h3 {
  font-size: 22px;
  line-height: 1.4;
}

.qz-card p,
.qz-muted {
  color: var(--qz-muted);
  line-height: 1.7;
}

.qz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.qz-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  background: #f0f2ff;
  color: var(--qz-blue-2);
  font-size: 14px;
}

.qz-tag.green {
  background: #eaf8f3;
  color: var(--qz-green);
}

.qz-tag.red {
  background: #fff0f0;
  color: var(--qz-red);
}

.qz-tag.yellow {
  background: #fff7e6;
  color: #a66a00;
}

.qz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.qz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--qz-blue-2);
  border-radius: 4px;
  background: var(--qz-blue-2);
  color: #fff;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.qz-btn:hover {
  background: #3542e4;
  border-color: #3542e4;
}

.qz-btn.ghost {
  background: #fff;
  color: var(--qz-blue-2);
}

.qz-btn.ghost:hover {
  background: #f4f6ff;
}

.qz-btn.light {
  border-color: rgba(255, 255, 255, 0.8);
  background: #fff;
  color: var(--qz-blue);
}

.qz-btn.danger {
  border-color: var(--qz-red);
  background: var(--qz-red);
}

.qz-btn.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 14px;
}

.qz-page-head {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--qz-line);
}

.qz-page-head h1 {
  margin: 0;
  font-size: 36px;
}

.qz-page-head p {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--qz-muted);
  line-height: 1.8;
}

.qz-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 28px 0;
  padding: 16px;
  border-radius: 6px;
  background: var(--qz-soft);
}

.qz-toolbar.compact {
  grid-template-columns: minmax(0, 1fr) 180px auto;
}

.qz-field,
.qz-textarea,
.qz-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe3ee;
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
  color: var(--qz-ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.qz-textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
  line-height: 1.7;
}

.qz-field:focus,
.qz-textarea:focus,
.qz-select:focus {
  border-color: var(--qz-blue-2);
  box-shadow: 0 0 0 3px rgba(73, 86, 255, 0.12);
}

.qz-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.qz-form label {
  display: grid;
  gap: 8px;
  color: #404454;
}

.qz-form .wide {
  grid-column: 1 / -1;
}

.qz-table {
  width: 100%;
  border-collapse: collapse;
}

.qz-table th,
.qz-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--qz-line);
  text-align: left;
  vertical-align: top;
}

.qz-table th {
  color: #9aa1b2;
  font-weight: 500;
  background: #fafbfe;
}

.qz-list {
  display: grid;
  gap: 16px;
}

.qz-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px dashed #d6dbea;
  border-radius: 6px;
  color: var(--qz-muted);
  background: #fafbfe;
}

.qz-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 4px;
  border-radius: 4px;
  background: #f1f3f9;
}

.qz-tab {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--qz-muted);
}

.qz-tab.active {
  background: #fff;
  color: var(--qz-blue-2);
  box-shadow: 0 4px 14px rgba(35, 39, 65, 0.08);
}

.qz-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.qz-side {
  position: sticky;
  top: 112px;
  padding: 22px;
  border-radius: 6px;
  background: #f7f8fb;
}

.qz-side-title {
  padding: 0 10px 18px;
  font-size: 20px;
}

.qz-side a,
.qz-side button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  background: transparent;
  color: var(--qz-ink);
  text-align: left;
}

.qz-side a.active,
.qz-side button.active,
.qz-side a:hover,
.qz-side button:hover {
  background: #fff;
  color: var(--qz-blue-2);
}

.qz-panel {
  padding: 24px;
}

.qz-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.qz-kpi {
  padding: 20px;
  border: 1px solid var(--qz-line);
  border-radius: 6px;
  background: #fff;
}

.qz-kpi span {
  color: var(--qz-muted);
}

.qz-kpi strong {
  display: block;
  margin-top: 10px;
  font-size: 30px;
}

.qz-classify-result {
  white-space: pre-wrap;
  line-height: 1.8;
  padding: 22px;
  border-radius: 6px;
  border: 1px solid #dbe0ff;
  background: #f7f8ff;
}

.qz-toast {
  position: fixed;
  right: 28px;
  top: 110px;
  z-index: 50;
  min-width: 240px;
  max-width: min(420px, calc(100vw - 56px));
  padding: 14px 18px;
  border-radius: 6px;
  background: #1f2330;
  color: #fff;
  box-shadow: var(--qz-shadow);
}

.qz-toast.success {
  background: var(--qz-green);
}

.qz-toast.error {
  background: var(--qz-red);
}

.qz-loading {
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--qz-muted);
}

.qz-score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--qz-blue-2);
  font-weight: 700;
}

.qz-score strong {
  font-size: 34px;
}

.qz-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#qz-app {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.96), rgba(255, 255, 255, 0.86) 34%, rgba(239, 250, 248, 0.72)),
    repeating-linear-gradient(90deg, rgba(73, 86, 255, 0.055) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(16, 169, 121, 0.04) 0 1px, transparent 1px 72px);
  background-size: auto, 160px 160px, 160px 160px;
  animation: qzCanvasDrift 18s ease-in-out infinite;
}

.qz-main {
  --page-accent: #4267ff;
  --page-accent-2: #00b8a9;
  --page-warm: #ffb84d;
  position: relative;
}

.qz-main::before {
  content: "";
  position: fixed;
  inset: 88px 0 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(66, 103, 255, 0.1) 18.3%, transparent 18.8% 58%, rgba(16, 169, 121, 0.08) 58.4%, transparent 59%),
    linear-gradient(65deg, transparent 0 38%, rgba(255, 184, 77, 0.09) 38.4%, transparent 39% 100%);
  animation: qzAmbientSweep 16s ease-in-out infinite;
}

.qz-main > * {
  position: relative;
  z-index: 1;
}

.qz-page-apply {
  --page-accent: #4d63ff;
  --page-accent-2: #09b9d6;
  --page-warm: #ffb84d;
}

.qz-page-achievement {
  --page-accent: #246dff;
  --page-accent-2: #10a979;
  --page-warm: #8dc63f;
}

.qz-page-demand {
  --page-accent: #2359c9;
  --page-accent-2: #ff8f4d;
  --page-warm: #ffd166;
}

.qz-page-match {
  --page-accent: #3f56ff;
  --page-accent-2: #00b8a9;
  --page-warm: #ff5f9c;
}

.qz-page-connections {
  --page-accent: #225bd8;
  --page-accent-2: #36b37e;
  --page-warm: #ffc04d;
}

.qz-page-recommendations {
  --page-accent: #4657ff;
  --page-accent-2: #ff7a59;
  --page-warm: #16c6a5;
}

.qz-page-review {
  --page-accent: #274fc7;
  --page-accent-2: #8b6cff;
  --page-warm: #ffbe55;
}

.qz-page-classify {
  --page-accent: #2d6cdf;
  --page-accent-2: #00a3b8;
  --page-warm: #ffc857;
}

.qz-page-forum {
  --page-accent: #3754d9;
  --page-accent-2: #f05a8a;
  --page-warm: #0dbf9f;
}

.qz-topbar {
  background:
    linear-gradient(90deg, rgba(18, 54, 166, 0.98), rgba(38, 86, 226, 0.98) 48%, rgba(9, 184, 169, 0.92)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 24px);
}

.qz-logo-mark {
  filter: drop-shadow(0 8px 18px rgba(10, 25, 100, 0.26));
}

.qz-logo-mark::before,
.qz-logo-mark::after {
  display: none;
}

.qz-logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qz-logo-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.qz-logo-copy strong {
  font-size: 26px;
  letter-spacing: 0.02em;
}

.qz-logo-copy em {
  font-style: normal;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qz-nav-link,
.qz-nav-menu-title {
  border-radius: 8px;
}

.qz-nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.qz-nav-link span:first-child,
.qz-nav-menu-title span:first-child {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.qz-page-home .qz-hero {
  border-radius: 8px;
  box-shadow: 0 26px 58px rgba(35, 46, 130, 0.18);
}

.qz-hero-redesign {
  min-height: 520px;
}

.qz-hero-stats-inline {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.qz-hero-stat {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.qz-hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.qz-hero-stat strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.qz-hero-media {
  display: grid;
  gap: 16px;
}

.qz-hero-media img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(25, 33, 96, 0.2);
}

.qz-hero-media-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.qz-page-head {
  position: relative;
  min-height: 230px;
  padding: 40px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  border: 1px solid rgba(70, 87, 255, 0.12);
  border-bottom: 1px solid rgba(70, 87, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82) 58%, rgba(255, 255, 255, 0.54)),
    url("/_nuxt/tradeCenter-achieve-bg.D_dHt2aY.png") center/cover no-repeat;
  box-shadow: 0 22px 56px rgba(36, 59, 140, 0.12);
  transform: translateZ(0);
  animation: qzHeadBreathe 9s ease-in-out infinite, qzHeadLift 6s ease-in-out infinite;
}

.qz-page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0 62%, rgba(255, 255, 255, 0.78) 62% 66%, rgba(255, 255, 255, 0) 66%),
    repeating-linear-gradient(90deg, rgba(66, 103, 255, 0.08) 0 1px, transparent 1px 44px);
  mix-blend-mode: multiply;
}

.qz-page-head::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), var(--page-warm), var(--page-accent));
  background-size: 220% 100%;
  animation: qzStripeMove 4.8s linear infinite;
}

.qz-page-head-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.qz-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  margin: 0 0 16px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(66, 103, 255, 0.16);
  border-radius: 8px;
  color: var(--page-accent);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(40, 72, 176, 0.08);
  animation: qzTinyFloat 5.2s ease-in-out infinite;
}

.qz-page-glyph {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  box-shadow: 0 10px 22px rgba(66, 103, 255, 0.18);
  animation: qzGlyphBreathe 3.6s ease-in-out infinite;
}

.qz-page-head h1 {
  position: relative;
  margin: 0;
  font-size: 44px;
  color: #172b72;
}

.qz-page-head h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), var(--page-warm));
  background-size: 180% 100%;
  animation: qzStripeMove 3.8s ease-in-out infinite;
}

.qz-page-head p:not(.qz-page-kicker) {
  max-width: 860px;
  margin: 18px 0 0;
  color: #556079;
  font-size: 18px;
  line-height: 1.9;
}

.qz-page-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.qz-page-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(66, 103, 255, 0.14);
  border-radius: 8px;
  color: #253a86;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(36, 59, 140, 0.06);
  animation: qzChipFloat 5.6s ease-in-out infinite;
}

.qz-page-chips span:nth-child(2) {
  animation-delay: -1.2s;
}

.qz-page-chips span:nth-child(3) {
  animation-delay: -2.4s;
}

.qz-page-head-poster {
  position: relative;
  z-index: 1;
  width: min(28vw, 280px);
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.qz-page-head-poster img {
  width: min(26vw, 240px);
  height: min(26vw, 240px);
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 14px 26px rgba(34, 59, 150, 0.2));
  animation: qzCardFloat 5.6s ease-in-out infinite;
}

.qz-page-head-poster-label {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(66, 103, 255, 0.22);
  border-radius: 999px;
  color: #1f3280;
  background: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.qz-page-weave {
  position: relative;
  z-index: 1;
  width: min(32vw, 390px);
  height: 168px;
  flex: 0 0 auto;
}

.qz-weave-line,
.qz-weave-card,
.qz-flow-thread,
.qz-flow-node {
  position: absolute;
  display: block;
  pointer-events: none;
}

.qz-flow-thread {
  right: 14px;
  height: 1px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent),
    linear-gradient(90deg, transparent, var(--page-accent), var(--page-accent-2), transparent);
  background-size: 90px 100%, 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.7;
  animation: qzThreadTravel 4.8s ease-in-out infinite;
}

.qz-flow-thread.thread-a {
  top: 22px;
  width: 300px;
}

.qz-flow-thread.thread-b {
  top: 104px;
  width: 360px;
  animation-delay: -1.5s;
}

.qz-flow-thread.thread-c {
  top: 150px;
  width: 240px;
  animation-delay: -2.9s;
}

.qz-weave-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--page-accent), var(--page-accent-2), transparent);
  opacity: 0.7;
  animation: qzLineDrift 4.8s ease-in-out infinite;
}

.qz-weave-line.line-a {
  width: 260px;
  top: 34px;
  right: 16px;
}

.qz-weave-line.line-b {
  width: 330px;
  top: 84px;
  right: 0;
  animation-delay: -1.4s;
}

.qz-weave-line.line-c {
  width: 210px;
  top: 132px;
  right: 48px;
  animation-delay: -2.7s;
}

.qz-weave-card {
  width: 94px;
  height: 56px;
  border: 1px solid rgba(66, 103, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.62)),
    repeating-linear-gradient(0deg, rgba(66, 103, 255, 0.12) 0 2px, transparent 2px 10px);
  box-shadow: 0 18px 34px rgba(36, 59, 140, 0.13);
  animation: qzCardFloat 4.8s ease-in-out infinite, qzCardGlow 6s ease-in-out infinite;
}

.qz-weave-card::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--page-warm), transparent);
  transform: translateX(-18px);
  animation: qzMiniScan 2.8s ease-in-out infinite;
}

.qz-weave-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2));
}

.qz-weave-card.card-a {
  right: 250px;
  top: 16px;
}

.qz-weave-card.card-b {
  right: 110px;
  top: 62px;
  animation-delay: -1.8s;
}

.qz-weave-card.card-c {
  right: 0;
  top: 18px;
  animation-delay: -3.2s;
}

.qz-flow-node {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  box-shadow: 0 0 0 5px rgba(66, 103, 255, 0.08), 0 10px 20px rgba(36, 59, 140, 0.14);
  animation: qzNodeBlink 3.4s ease-in-out infinite;
}

.qz-flow-node.node-a {
  right: 296px;
  top: 80px;
}

.qz-flow-node.node-b {
  right: 154px;
  top: 30px;
  animation-delay: -1.1s;
}

.qz-flow-node.node-c {
  right: 54px;
  top: 126px;
  animation-delay: -2.2s;
}

.qz-section {
  animation: qzRise 0.5s ease both;
}

.qz-section-title {
  align-items: center;
}

.qz-section-title h2 {
  position: relative;
  color: #18265e;
}

.qz-section-title h2::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  transform: rotate(45deg);
}

.qz-section-flow {
  margin-top: 30px;
}

.qz-process-grid {
  gap: 16px;
}

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

.qz-card-portal {
  min-height: 190px;
  padding-top: 24px;
  text-decoration: none;
}

.qz-card-portal h3 {
  margin-top: 4px;
}

.qz-card-portal p {
  margin: 10px 0 0;
}

.qz-card-portal-index {
  position: absolute;
  top: 2px;
  left: 16px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(66, 103, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.qz-card,
.qz-panel,
.qz-mini-item,
.qz-kpi,
.qz-toolbar,
.qz-tabs,
.qz-classify-result,
.qz-empty {
  border-color: rgba(66, 103, 255, 0.12);
  box-shadow: 0 12px 30px rgba(36, 59, 140, 0.075);
}

.qz-card,
.qz-panel,
.qz-mini-item,
.qz-kpi {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.95)),
    repeating-linear-gradient(135deg, rgba(66, 103, 255, 0.035) 0 1px, transparent 1px 22px);
}

.qz-list > .qz-card,
.qz-grid > .qz-card,
.qz-grid > .qz-panel,
.qz-grid > .qz-mini-item,
.qz-kpi-row > .qz-kpi {
  animation: qzSoftBreath 7.2s ease-in-out infinite;
}

.qz-list > .qz-card:nth-child(2),
.qz-grid > .qz-card:nth-child(2),
.qz-grid > .qz-panel:nth-child(2),
.qz-grid > .qz-mini-item:nth-child(2),
.qz-kpi-row > .qz-kpi:nth-child(2) {
  animation-delay: -1.4s;
}

.qz-list > .qz-card:nth-child(3),
.qz-grid > .qz-card:nth-child(3),
.qz-grid > .qz-panel:nth-child(3),
.qz-grid > .qz-mini-item:nth-child(3),
.qz-kpi-row > .qz-kpi:nth-child(3) {
  animation-delay: -2.8s;
}

.qz-list > .qz-card:nth-child(4),
.qz-grid > .qz-card:nth-child(4),
.qz-grid > .qz-panel:nth-child(4),
.qz-grid > .qz-mini-item:nth-child(4),
.qz-kpi-row > .qz-kpi:nth-child(4) {
  animation-delay: -4.2s;
}

.qz-card > *,
.qz-panel > *,
.qz-mini-item > *,
.qz-kpi > * {
  position: relative;
  z-index: 1;
}

.qz-card::before,
.qz-panel::before,
.qz-mini-item::before,
.qz-kpi::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2), var(--page-warm), var(--page-accent));
  background-size: 220% 100%;
  animation: qzStripeMove 6.2s linear infinite;
}

.qz-card::after,
.qz-mini-item::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -48px;
  width: 132px;
  height: 132px;
  opacity: 0.42;
  background:
    repeating-linear-gradient(135deg, rgba(66, 103, 255, 0.14) 0 4px, transparent 4px 12px);
  transform: rotate(8deg);
  transition: transform 0.22s ease, opacity 0.22s ease;
  animation: qzCornerDrift 8s ease-in-out infinite;
  pointer-events: none;
}

.qz-card:hover,
.qz-mini-item:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 103, 255, 0.24);
  box-shadow: 0 20px 44px rgba(36, 59, 140, 0.14);
}

.qz-card:hover::after,
.qz-mini-item:hover::after {
  opacity: 0.62;
  transform: translate(-6px, 8px) rotate(2deg);
}

.qz-card h3,
.qz-mini-item h3,
.qz-panel > h3 {
  color: #19245f;
}

.qz-card h3::before,
.qz-mini-item h3::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2));
  transform: translateY(-1px) rotate(45deg);
  animation: qzMarkerBeat 4.2s ease-in-out infinite;
}

.qz-mini-item {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(66, 103, 255, 0.12);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.qz-mini-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.qz-mini-item p {
  color: var(--qz-muted);
  line-height: 1.7;
}

.qz-panel {
  backdrop-filter: blur(8px);
}

.qz-kpi {
  min-height: 130px;
}

.qz-kpi::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2));
  transform-origin: left;
  animation: qzKpiPulse 3.8s ease-in-out infinite;
}

.qz-kpi strong {
  color: #172b72;
}

.qz-tag {
  border: 1px solid rgba(73, 86, 255, 0.1);
  border-radius: 8px;
  background: rgba(240, 242, 255, 0.92);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.qz-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 86, 255, 0.22);
  box-shadow: 0 8px 16px rgba(36, 59, 140, 0.08);
}

.qz-toolbar,
.qz-toolbar.compact {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(66, 103, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(66, 103, 255, 0.05) 0 1px, transparent 1px 30px);
}

.qz-toolbar .qz-btn {
  min-width: 118px;
}

.qz-field,
.qz-textarea,
.qz-select {
  border-radius: 8px;
  border-color: rgba(97, 112, 175, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.qz-form label {
  padding: 14px;
  border: 1px solid rgba(66, 103, 255, 0.1);
  border-radius: 8px;
  background: rgba(250, 252, 255, 0.76);
}

.qz-form label.wide.qz-inline {
  display: flex;
}

.qz-btn {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--page-accent, var(--qz-blue-2)), var(--page-accent-2, #3542e4), var(--page-accent, var(--qz-blue-2)));
  background-size: 180% 100%;
  box-shadow: 0 10px 22px rgba(54, 80, 210, 0.16);
  animation: qzButtonBreathe 5.6s ease-in-out infinite;
}

.qz-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.24) 42%, transparent 56%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.qz-btn:hover::after {
  transform: translateX(100%);
}

.qz-btn.ghost {
  background: rgba(255, 255, 255, 0.86);
  color: var(--page-accent, var(--qz-blue-2));
  box-shadow: 0 8px 18px rgba(36, 59, 140, 0.06);
}

.qz-tabs {
  border: 1px solid rgba(66, 103, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 248, 255, 0.96), rgba(238, 250, 248, 0.88));
}

.qz-tab {
  border-radius: 7px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.qz-tab:hover {
  transform: translateY(-1px);
  color: var(--page-accent);
}

.qz-tab.active {
  color: var(--page-accent);
  animation: qzActiveTab 3.6s ease-in-out infinite;
}

.qz-score {
  color: var(--page-accent);
}

.qz-score strong {
  text-shadow: 0 8px 18px rgba(66, 103, 255, 0.12);
}

.qz-classify-result {
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 249, 255, 0.98), rgba(239, 250, 248, 0.88));
}

.qz-empty {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 252, 255, 0.94), rgba(240, 248, 255, 0.92)),
    repeating-linear-gradient(135deg, rgba(66, 103, 255, 0.06) 0 1px, transparent 1px 18px);
}

.qz-empty::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 28px;
  top: 28px;
  right: 30px;
  border-top: 3px solid rgba(66, 103, 255, 0.16);
  border-bottom: 3px solid rgba(16, 169, 121, 0.16);
  transform: skewX(-18deg);
}

.qz-toast {
  border-radius: 8px;
}

@keyframes qzHeadBreathe {
  0%,
  100% {
    background-position: center center;
  }

  50% {
    background-position: 52% 48%;
  }
}

@keyframes qzCanvasDrift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0;
  }

  50% {
    background-position: 0 0, 32px 18px, -24px 28px;
  }
}

@keyframes qzAmbientSweep {
  0%,
  100% {
    transform: translateX(-1.6%);
    opacity: 0.22;
  }

  50% {
    transform: translateX(1.6%);
    opacity: 0.42;
  }
}

@keyframes qzHeadLift {
  0%,
  100% {
    box-shadow: 0 22px 56px rgba(36, 59, 140, 0.12);
  }

  50% {
    box-shadow: 0 30px 70px rgba(36, 59, 140, 0.17);
  }
}

@keyframes qzStripeMove {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 220% 50%;
  }
}

@keyframes qzTinyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes qzGlyphBreathe {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(-4deg) scale(1.08);
  }
}

@keyframes qzChipFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(36, 59, 140, 0.06);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(36, 59, 140, 0.1);
  }
}

@keyframes qzThreadTravel {
  0% {
    background-position: -90px 0, 0 0;
    opacity: 0.46;
  }

  50% {
    opacity: 0.92;
  }

  100% {
    background-position: 120% 0, 0 0;
    opacity: 0.46;
  }
}

@keyframes qzLineDrift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.58;
  }

  50% {
    transform: translateX(-18px);
    opacity: 0.9;
  }
}

@keyframes qzCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes qzCardGlow {
  0%,
  100% {
    border-color: rgba(66, 103, 255, 0.22);
  }

  50% {
    border-color: rgba(16, 169, 121, 0.28);
  }
}

@keyframes qzMiniScan {
  0%,
  100% {
    transform: translateX(-18px);
    opacity: 0.2;
  }

  50% {
    transform: translateX(18px);
    opacity: 0.85;
  }
}

@keyframes qzNodeBlink {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes qzKpiPulse {
  0%,
  100% {
    transform: scaleX(0.68);
    opacity: 0.72;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes qzSoftBreath {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(36, 59, 140, 0.075);
  }

  50% {
    box-shadow: 0 18px 42px rgba(36, 59, 140, 0.12);
  }
}

@keyframes qzCornerDrift {
  0%,
  100% {
    transform: translate(0, 0) rotate(8deg);
  }

  50% {
    transform: translate(-10px, 12px) rotate(2deg);
  }
}

@keyframes qzMarkerBeat {
  0%,
  100% {
    transform: translateY(-1px) rotate(45deg) scale(1);
  }

  50% {
    transform: translateY(-1px) rotate(45deg) scale(1.22);
  }
}

@keyframes qzButtonBreathe {
  0%,
  100% {
    background-position: 0 50%;
    box-shadow: 0 10px 22px rgba(54, 80, 210, 0.16);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 14px 30px rgba(54, 80, 210, 0.22);
  }
}

@keyframes qzActiveTab {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(35, 39, 65, 0.08);
  }

  50% {
    box-shadow: 0 8px 22px rgba(54, 80, 210, 0.12);
  }
}

@keyframes qzRise {
  from {
    opacity: 0.96;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .qz-topbar {
    height: auto;
  }

  .qz-topbar-inner {
    width: min(100vw - 32px, 980px);
    min-height: 88px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .qz-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .qz-main {
    width: min(100vw - 32px, 980px);
  }

  .qz-hero,
  .qz-layout {
    grid-template-columns: 1fr;
  }

  .qz-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .qz-page-head-poster {
    width: 100%;
    justify-items: start;
  }

  .qz-page-head-poster img {
    width: 180px;
    height: 180px;
  }

  .qz-page-weave {
    width: 100%;
    height: 128px;
  }

  .qz-hero-stats-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qz-weave-card.card-a {
    right: auto;
    left: 0;
  }

  .qz-weave-card.card-b {
    right: auto;
    left: 150px;
  }

  .qz-weave-card.card-c {
    right: auto;
    left: 290px;
  }

  .qz-side {
    position: static;
  }

  .qz-grid,
  .qz-grid-4,
  .qz-grid-2,
  .qz-grid-3,
  .qz-kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .qz-logo {
    min-width: 0;
    font-size: 22px;
  }

  .qz-logo-copy strong {
    font-size: 20px;
  }

  .qz-logo-copy em {
    font-size: 10px;
  }

  .qz-logo-mark {
    width: 44px;
    height: 34px;
  }

  .qz-hero {
    min-height: auto;
    padding: 36px 24px;
  }

  .qz-hero-stat strong {
    font-size: 28px;
  }

  .qz-page-head {
    min-height: auto;
    padding: 28px 22px;
  }

  .qz-page-head-poster {
    display: none;
  }

  .qz-page-head h1 {
    font-size: 32px;
  }

  .qz-page-head p:not(.qz-page-kicker) {
    font-size: 16px;
  }

  .qz-page-weave {
    display: none;
  }

  .qz-h1 {
    font-size: 34px;
  }

  .qz-hero p {
    font-size: 17px;
  }

  .qz-grid,
  .qz-grid-4,
  .qz-grid-2,
  .qz-grid-3,
  .qz-kpi-row,
  .qz-toolbar,
  .qz-toolbar.compact,
  .qz-form {
    grid-template-columns: 1fr;
  }

}
/* Homepage header refinement: keep logic unchanged, only visual tuning */

:root {
  --qz-headline-item-size: clamp(12px, 0.9vw, 14px);
  --qz-headline-item-weight: 600;
  --qz-headline-item-gap: 1.2vw;
  --qz-headline-reboot-icon-size: 0.73vw;
  --qz-headline-reboot-text-size: clamp(14px, 1.04vw, 18px);
  --qz-headline-reboot-text-weight: 700;
  --qz-headline-login-size: clamp(12px, 0.86vw, 13px);
  --qz-headline-login-gap: 2px;
  --qz-headline-login-padding-x: 6px;
  --qz-header-logo-url: url('/images/brand/logo-word.svg');
}

/* Make "分级AI" a peer-level menu item (same rhythm as "对接管理/智能匹配") */
.right_menu[data-v-86b884b0] {
  gap: 0 !important;
}

.header-wrapper .right-container[data-v-86b884b0] {
  margin-right: -0.8vw;
}

.right_menu[data-v-86b884b0] .custom-menu[data-v-ef1702ae] {
  gap: var(--qz-headline-item-gap) !important;
}

.reboot-box[data-v-86b884b0],
a.reboot-box,
.header-wrapper[data-v-86b884b0] a[href="/chart"] {
  align-items: center !important;
  color: var(--text-color, #1f2126) !important;
  display: inline-flex !important;
  gap: 0.4vw !important;
  margin-right: var(--qz-headline-item-gap) !important;
  padding: 0.47vw 0 !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, opacity 0.2s ease, color 0.2s ease !important;
}

.header-wrapper.header-deep .reboot-box[data-v-86b884b0],
.header-wrapper.header-deep a.reboot-box,
.header-wrapper.header-deep[data-v-86b884b0] a[href="/chart"] {
  color: #fff !important;
}

.reboot-box[data-v-86b884b0] img,
a.reboot-box img,
.header-wrapper[data-v-86b884b0] a[href="/chart"] img {
  display: inline-block !important;
  height: var(--qz-headline-reboot-icon-size);
  margin-right: 0.22vw !important;
  vertical-align: middle;
  width: var(--qz-headline-reboot-icon-size);
}

.reboot-box[data-v-86b884b0] span,
a.reboot-box span,
.header-wrapper[data-v-86b884b0] a[href="/chart"] span {
  color: inherit !important;
  font-size: var(--qz-headline-reboot-text-size) !important;
  font-weight: var(--qz-headline-reboot-text-weight) !important;
  letter-spacing: 0.01em !important;
  line-height: 1.2 !important;
}

/* Keep right-side quick actions close and in one row */
.login_register[data-v-86b884b0] {
  align-items: center !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(77, 90, 255, 0.18) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 22px rgba(39, 59, 156, 0.11) !important;
  display: inline-flex !important;
  gap: var(--qz-headline-login-gap) !important;
  height: 34px !important;
  padding: 0 var(--qz-headline-login-padding-x) !important;
  width: auto !important;
}

.login_register .no-login-link[data-v-86b884b0] {
  align-items: center !important;
  color: #1f2f8a !important;
  display: inline-flex !important;
  font-size: var(--qz-headline-login-size) !important;
  font-weight: var(--qz-headline-item-weight) !important;
  height: 100% !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 4px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.login_register .register-btn[data-v-86b884b0] {
  margin-left: 2px;
  padding-left: 9px !important;
  position: relative;
}

.login_register .register-btn[data-v-86b884b0]::before {
  background: rgba(31, 47, 138, 0.2);
  content: "";
  height: 48%;
  left: 0;
  position: absolute;
  top: 26%;
  width: 1px;
}

/* Subtle polish without touching behavior */
.header-wrapper[data-v-86b884b0] {
  backdrop-filter: blur(10px);
}

/* Logo override hook: keep one visual layer only to avoid overlap */
.left-container-logo[data-v-86b884b0] .sprite-icon[data-v-1854cc0d] {
  background: none !important;
  position: relative;
}

.left-container-logo[data-v-86b884b0] .sprite-icon[data-v-1854cc0d]::after {
  background: var(--qz-header-logo-url) center / contain no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.custom-menu-item[data-v-ef1702ae]:hover,
.reboot-box[data-v-86b884b0]:hover,
a.reboot-box:hover,
.header-wrapper[data-v-86b884b0] a[href="/chart"]:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .reboot-box[data-v-86b884b0] img,
  a.reboot-box img,
  .header-wrapper[data-v-86b884b0] a[href="/chart"] img {
    display: inline-block !important;
    height: 12px;
    margin-right: 3px !important;
    width: 12px;
  }

  .header-wrapper .right-container[data-v-86b884b0] {
    margin-right: 0;
  }

  .login_register[data-v-86b884b0] {
    height: 32px !important;
    padding: 0 6px !important;
  }

  .login_register .no-login-link[data-v-86b884b0] {
    font-size: 12px !important;
    padding: 0 5px !important;
  }
}
