.zmt-report-library {
  color-scheme: light;
  --report-bg: #f4f6f4;
  --report-surface: #ffffff;
  --report-ink: #18221d;
  --report-muted: #66716b;
  --report-line: #dfe5e1;
  --report-line-strong: #cbd5cf;
  --report-green: #167a55;
  --report-green-dark: #0d5d3e;
  --report-green-soft: #e9f4ee;
  --report-red: #ad3f49;
  --report-red-soft: #f8e9eb;
  --report-blue: #315f9a;
  --report-blue-soft: #eaf0f8;
  --report-amber: #9b681c;
  --report-amber-soft: #faf0dc;
  --report-violet: #6f5b86;
  --report-violet-soft: #f0ecf4;
  --report-shadow: 0 14px 34px rgba(21, 36, 28, 0.08), 0 2px 6px rgba(21, 36, 28, 0.04);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

.zmt-report-library *,
.zmt-report-library *::before,
.zmt-report-library *::after {
  box-sizing: border-box;
}

.zmt-report-library {
  scroll-behavior: smooth;
  background: var(--report-bg);
  min-width: 320px;
  color: var(--report-ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.is-modal-open {
  overflow: hidden;
}

body.zmt-report-library-page {
  min-width: 320px;
  margin: 0;
  background: #f4f6f4;
}

/* Keep the global Zibll header, but omit its homepage-only slider on reports. */
body.zmt-report-library-page > .header-slider-container {
  display: none !important;
}

.zmt-report-library button,
.zmt-report-library input,
.zmt-report-library select {
  font-family: inherit;
  letter-spacing: 0;
}

.zmt-report-library button,
.zmt-report-library a,
.zmt-report-library input,
.zmt-report-library select {
  -webkit-tap-highlight-color: transparent;
}

.zmt-report-library button:focus-visible,
.zmt-report-library a:focus-visible,
.zmt-report-library input:focus-visible,
.zmt-report-library select:focus-visible {
  outline: 3px solid rgba(22, 122, 85, 0.22);
  outline-offset: 2px;
}

.zmt-report-library img {
  display: block;
  max-width: 100%;
}

.zmt-report-library [hidden] {
  display: none !important;
}

.report-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.report-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.report-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(24, 34, 29, 0.1);
  backdrop-filter: blur(14px);
}

.report-header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--report-ink);
  text-decoration: none;
}

.report-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--report-ink);
  font-size: 16px;
  font-weight: 800;
}

.report-brand-copy strong,
.report-brand-copy small {
  display: block;
}

.report-brand-copy strong {
  font-size: 15px;
  line-height: 1.2;
}

.report-brand-copy small {
  margin-top: 2px;
  color: var(--report-muted);
  font-size: 10px;
}

.report-nav {
  display: flex;
  align-self: stretch;
  gap: 30px;
  margin-left: 54px;
}

.report-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 48px;
  color: var(--report-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.report-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: transparent;
  content: "";
}

.report-nav a:hover,
.report-nav a.is-active {
  color: var(--report-ink);
}

.report-nav a.is-active::after {
  background: var(--report-green);
}

.report-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.report-icon-button,
.report-dialog-close {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 7px;
  color: var(--report-muted);
  background: transparent;
  cursor: pointer;
  transition-property: color, background-color, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.report-icon-button:hover,
.report-dialog-close:hover {
  color: var(--report-ink);
  background: #f1f4f2;
}

.report-icon-button:active,
.report-dialog-close:active,
.report-button:active,
.report-search-button:active,
.report-card-footer a:active,
.report-platform-tabs button:active,
.report-problem-list button:active,
.report-document-switcher a:active {
  transform: scale(0.96);
}

.report-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition-property: color, background-color, box-shadow, transform;
  transition-duration: 160ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.report-button-primary {
  color: #ffffff;
  background: var(--report-green);
  box-shadow: 0 7px 17px rgba(22, 122, 85, 0.18);
}

.report-button-primary:hover {
  background: var(--report-green-dark);
  box-shadow: 0 9px 22px rgba(22, 122, 85, 0.24);
}

.report-button-secondary {
  color: var(--report-ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--report-line-strong), 0 3px 9px rgba(21, 36, 28, 0.04);
}

.report-button-secondary:hover {
  box-shadow: inset 0 0 0 1px #9dafA5, 0 5px 12px rgba(21, 36, 28, 0.07);
}

.report-view {
  display: none;
}

.report-view.is-active {
  display: block;
}

.report-intro {
  padding: 38px 0 0;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(24, 34, 29, 0.08);
}

.report-intro-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.report-intro-copy h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.report-intro-copy p {
  margin: 10px 0 0;
  color: var(--report-muted);
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}

.report-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 54px;
  margin-top: 27px;
  border-radius: 8px;
  background: #f4f6f4;
  box-shadow: inset 0 0 0 1px #dbe2de;
}

.report-search:focus-within {
  box-shadow: inset 0 0 0 2px var(--report-green), 0 0 0 4px rgba(22, 122, 85, 0.08);
}

.report-search-icon {
  display: grid;
  place-items: center;
  width: 54px;
  color: #7d8882;
}

.report-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--report-ink);
  background: transparent;
  font-size: 14px;
}

.report-search input::placeholder {
  color: #929c96;
}

.report-search-button {
  align-self: stretch;
  min-width: 88px;
  margin: 6px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: var(--report-ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition-property: background-color, transform;
  transition-duration: 160ms;
}

.report-search-button:hover {
  background: #2a3731;
}

.report-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 65px;
  margin-top: 16px;
}

.report-platform-tabs {
  display: flex;
  align-items: stretch;
  gap: 25px;
  height: 65px;
  overflow-x: auto;
  scrollbar-width: none;
}

.report-platform-tabs::-webkit-scrollbar {
  display: none;
}

.report-platform-tabs button {
  position: relative;
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: var(--report-muted);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
  transition-property: color, transform;
  transition-duration: 160ms;
}

.report-platform-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: transparent;
  content: "";
}

.report-platform-tabs button:hover,
.report-platform-tabs button.is-active {
  color: var(--report-ink);
  font-weight: 700;
}

.report-platform-tabs button.is-active::after {
  background: var(--report-green);
}

.report-library-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--report-muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.report-library-count strong {
  color: var(--report-ink);
  font-size: 14px;
}

.report-library-body {
  padding-top: 28px;
  padding-bottom: 60px;
}

.report-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.report-section-heading h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  text-wrap: balance;
}

.report-section-heading p {
  margin: 5px 0 0;
  color: var(--report-muted);
  font-size: 12px;
}

.report-text-button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 40px;
  padding: 0 2px;
  border: 0;
  color: var(--report-muted);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.report-text-button .report-icon {
  width: 15px;
  height: 15px;
}

.report-sort-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--report-muted);
  font-size: 11px;
}

.report-sort-label .report-icon {
  width: 15px;
  height: 15px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.report-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--report-surface);
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.08), 0 5px 16px rgba(21, 36, 28, 0.05);
  transition-property: box-shadow, transform;
  transition-duration: 190ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.report-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--report-shadow);
}

.report-card-media {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #e9eee9;
}

.report-card-media::after,
.report-bundle-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  content: "";
}

.report-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition-property: transform;
  transition-duration: 260ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.report-card:hover .report-card-media img {
  transform: scale(1.025);
}

.media-ink img {
  object-position: center 7%;
}

.media-forest img {
  object-position: center 12%;
}

.media-coral img {
  object-position: center 14%;
}

.media-pink img {
  object-position: center 10%;
}

.media-red img {
  object-position: center 8%;
}

.media-mint img {
  object-position: center 22%;
}

.media-paper img,
.media-book img {
  object-position: center 48%;
}

.media-blue img {
  object-position: center 26%;
  filter: hue-rotate(150deg) saturate(0.7);
}

.media-yellow img {
  object-position: center 16%;
  filter: sepia(0.18) saturate(0.8);
}

.media-dark img {
  object-position: center 36%;
  filter: saturate(0.55) contrast(1.08);
}

.report-platform-label,
.report-pack-count {
  position: absolute;
  z-index: 2;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(20, 28, 24, 0.12);
}

.report-platform-label {
  left: 12px;
}

.report-pack-count {
  right: 12px;
  color: var(--report-ink);
  background: rgba(255, 255, 255, 0.94);
}

.label-xhs {
  color: #ffffff;
  background: #bd3f52;
}

.label-douyin {
  color: #ffffff;
  background: #171b19;
}

.label-channels {
  color: #ffffff;
  background: #2f8657;
}

.label-bilibili {
  color: #ffffff;
  background: #367cb0;
}

.report-card-body {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 16px;
}

.report-card-account {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.avatar-rose { background: #c95667; }
.avatar-green { background: #267a58; }
.avatar-blue { background: #3d6d9f; }
.avatar-amber { background: #a76c22; }
.avatar-violet { background: #735f8c; }
.avatar-red { background: #ad4e42; }
.avatar-mint { background: #428474; }
.avatar-orange { background: #b76435; }
.avatar-yellow { color: #453b20; background: #e4c75f; }
.avatar-dark { background: #303a35; }
.avatar-book { background: #735c45; }

.report-card-account h3 {
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.report-card-judgment {
  min-height: 63px;
  margin: 15px 0 13px;
  color: #28332d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.62;
  text-wrap: pretty;
}

.report-type-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 5px;
  background: #f2f5f3;
}

.report-type-line span {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 28px;
  color: #59655f;
  font-size: 10px;
}

.report-type-line span + span {
  box-shadow: inset 1px 0 0 #dfe6e2;
}

.report-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.report-card-footer time {
  color: #8a948e;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.report-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 40px;
  margin-right: -6px;
  padding: 0 6px;
  border: 0;
  color: var(--report-green);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition-property: color, transform;
  transition-duration: 160ms;
}

.report-card-footer a:hover {
  color: var(--report-green-dark);
}

.report-card-footer .report-icon {
  width: 14px;
  height: 14px;
}

.report-empty {
  display: grid;
  justify-items: center;
  padding: 70px 20px;
  color: var(--report-muted);
  text-align: center;
}

.report-empty > .report-icon {
  width: 30px;
  height: 30px;
}

.report-empty h3 {
  margin: 15px 0 6px;
  color: var(--report-ink);
  font-size: 17px;
}

.report-empty p {
  margin: 0;
  font-size: 12px;
}

.report-empty-state,
.report-empty-page {
  display: grid;
  justify-items: center;
  padding: 72px 24px;
  color: var(--report-muted);
  text-align: center;
}

.report-empty-state > .report-icon {
  width: 30px;
  height: 30px;
}

.report-empty-state h2,
.report-empty-page h1 {
  margin: 16px 0 0;
  color: var(--report-ink);
  font-size: 22px;
}

.report-empty-state p,
.report-empty-page p {
  max-width: 520px;
  margin: 8px 0 20px;
  font-size: 13px;
}

.report-empty-state a {
  color: var(--report-green);
  font-weight: 700;
}

.report-problem-section {
  margin-top: 56px;
  padding-top: 31px;
  box-shadow: inset 0 1px 0 var(--report-line);
}

.report-problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.report-problem-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: var(--report-ink);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.08);
  text-align: left;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition-property: box-shadow, transform;
  transition-duration: 160ms;
}

.report-problem-list button:hover {
  box-shadow: 0 0 0 1px rgba(22, 122, 85, 0.28), 0 7px 17px rgba(21, 36, 28, 0.06);
}

.report-problem-list span {
  color: var(--report-muted);
  font-size: 11px;
  font-weight: 500;
}

.report-claim-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 28px 30px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--report-ink);
}

.report-claim-band h2 {
  margin: 0;
  font-size: 20px;
}

.report-claim-band p {
  margin: 7px 0 0;
  color: #acbbb3;
  font-size: 12px;
}

.report-claim-band .report-button-primary {
  color: var(--report-ink);
  background: #89d9b4;
  box-shadow: none;
}

.report-claim-band .report-button-primary:hover {
  background: #9be2c1;
}

.report-bundle-page {
  padding-top: 26px;
  padding-bottom: 70px;
}

.report-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 0 4px;
  border: 0;
  color: var(--report-muted);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.report-back:hover {
  color: var(--report-ink);
}

.report-bundle-hero {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 260px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--report-ink);
}

.report-bundle-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.report-bundle-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.report-bundle-visual span {
  position: absolute;
  bottom: 17px;
  left: 17px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 5px;
  color: var(--report-ink);
  background: rgba(255, 255, 255, 0.94);
  font-size: 10px;
  font-weight: 700;
}

.report-bundle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 33px 42px;
  color: #ffffff;
}

.report-bundle-account {
  display: flex;
  align-items: center;
  gap: 13px;
}

.report-bundle-account .report-avatar {
  width: 44px;
  height: 44px;
  font-size: 14px;
}

.report-bundle-account p {
  margin: 0 0 3px;
  color: #93a79d;
  font-size: 10px;
}

.report-bundle-account h1 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
  text-wrap: balance;
}

.report-bundle-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d7e1dc;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  text-wrap: pretty;
}

.report-bundle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: #93a79d;
  font-size: 10px;
}

.report-bundle-meta span + span {
  padding-left: 18px;
  box-shadow: inset 1px 0 0 #35473f;
}

.report-document-switcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.report-document-switcher > a,
.report-document-switcher > span {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 11px;
  min-height: 88px;
  padding: 15px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.09);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition-property: box-shadow, transform, background-color;
  transition-duration: 160ms;
}

.report-document-switcher > a::before,
.report-document-switcher > span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: transparent;
  content: "";
}

.report-document-switcher > a:hover,
.report-document-switcher > a.is-active {
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.13), 0 8px 19px rgba(21, 36, 28, 0.06);
}

.report-document-switcher .type-positioning.is-active::before { background: var(--report-green); }
.report-document-switcher .type-teardown.is-active::before { background: var(--report-blue); }
.report-document-switcher .type-diagnosis.is-active::before { background: var(--report-red); }
.report-document-switcher .type-benchmark.is-active::before { background: var(--report-violet); }

.report-document-switcher > span.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.report-document-switcher > a > span,
.report-document-switcher > span > span {
  grid-row: 1 / 3;
  color: #9aa39e;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.report-document-switcher strong {
  color: var(--report-ink);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-document-switcher small {
  margin-top: 5px;
  color: var(--report-muted);
  font-size: 10px;
}

.report-document-preview {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  margin-top: 20px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.09), 0 9px 25px rgba(21, 36, 28, 0.05);
}

.report-document-nav {
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 25px 18px;
  background: #f0f4f1;
  box-shadow: inset -1px 0 0 var(--report-line);
}

.report-document-nav > strong {
  margin: 0 8px 16px;
  font-size: 13px;
}

.report-document-nav a {
  min-height: 42px;
  padding: 13px 10px;
  border-radius: 6px;
  color: var(--report-muted);
  font-size: 11px;
  text-decoration: none;
}

.report-document-nav a:hover,
.report-document-nav a.is-active {
  color: var(--report-green-dark);
  background: #ffffff;
}

.report-document-nav button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  margin-top: auto;
  padding: 0 9px;
  border: 0;
  color: var(--report-muted);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.report-document-body {
  max-width: 860px;
  padding: 43px 50px 52px;
}

.report-document-body header > p:first-child {
  margin: 0 0 13px;
  color: var(--report-green);
  font-size: 11px;
  font-weight: 750;
}

.report-document-body header h2 {
  max-width: 760px;
  margin: 0;
  font-size: 26px;
  line-height: 1.43;
  text-wrap: balance;
}

.report-document-body header > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: #4d5a53;
  font-size: 14px;
  line-height: 1.9;
  text-wrap: pretty;
}

.report-document-finding {
  margin-top: 29px;
  padding: 20px 22px;
  background: var(--report-green-soft);
  box-shadow: inset 3px 0 0 var(--report-green);
}

.report-document-finding span {
  color: var(--report-green-dark);
  font-size: 10px;
  font-weight: 750;
}

.report-document-finding p {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.report-document-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 31px;
}

.report-document-columns h3,
.report-document-action h3 {
  margin: 0;
  font-size: 14px;
}

.report-document-columns p,
.report-document-action p {
  margin: 10px 0 0;
  color: #55625b;
  font-size: 12px;
  line-height: 1.8;
  text-wrap: pretty;
}

.report-document-action {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 31px;
  padding-top: 26px;
  box-shadow: inset 0 1px 0 var(--report-line);
}

.report-document-action > .report-icon {
  width: 25px;
  height: 25px;
  color: var(--report-green);
}

.report-document-content {
  display: grid;
  gap: 22px;
  margin-top: 29px;
}

.report-content-section {
  scroll-margin-top: 96px;
}

.report-content-section h3 {
  margin: 0 0 10px;
  color: var(--report-ink);
  font-size: 16px;
}

.report-content-section p,
.report-content-section li {
  color: #4e5a53;
  font-size: 14px;
  line-height: 1.85;
}

.report-content-section p {
  margin: 0 0 12px;
}

.report-content-section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.report-content-finding {
  padding: 18px 20px;
  border-left: 3px solid var(--report-green);
  background: var(--report-green-soft);
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition-property: opacity, visibility;
  transition-duration: 180ms;
}

.report-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.report-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 22, 18, 0.64);
  backdrop-filter: blur(4px);
  cursor: default;
}

.report-dialog {
  position: relative;
  z-index: 1;
  width: min(468px, 100%);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(5, 14, 9, 0.28);
  transform: translateY(12px) scale(0.985);
  transition-property: transform;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.report-modal.is-open .report-dialog {
  transform: translateY(0) scale(1);
}

.report-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
}

.report-claim-stage {
  display: none;
  padding: 34px;
}

.report-claim-stage.is-active {
  display: block;
}

.report-claim-stage header {
  padding-right: 34px;
}

.report-dialog-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--report-green);
  background: var(--report-green-soft);
}

.report-dialog-icon .report-icon {
  width: 22px;
  height: 22px;
}

.report-dialog-icon.is-found {
  color: var(--report-blue);
  background: var(--report-blue-soft);
}

.report-dialog-icon.is-success {
  color: var(--report-green);
  background: var(--report-green-soft);
}

.report-claim-stage h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
  text-wrap: balance;
}

.report-claim-stage header p {
  margin: 8px 0 0;
  color: var(--report-muted);
  font-size: 12px;
  line-height: 1.7;
  text-wrap: pretty;
}

.report-claim-form {
  display: grid;
  gap: 17px;
  margin-top: 27px;
}

.report-claim-form label,
.report-code-field {
  display: grid;
  gap: 8px;
}

.report-claim-form label > span,
.report-code-field > span {
  font-size: 11px;
  font-weight: 700;
}

.report-claim-form input,
.report-claim-form select,
.report-code-field input {
  width: 100%;
  height: 47px;
  padding: 0 13px;
  border: 0;
  border-radius: 7px;
  outline: 0;
  color: var(--report-ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--report-line-strong);
  font-size: 13px;
}

.report-claim-form input:focus,
.report-claim-form select:focus,
.report-code-field input:focus {
  box-shadow: inset 0 0 0 2px var(--report-green), 0 0 0 4px rgba(22, 122, 85, 0.08);
}

.report-privacy-line {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: var(--report-muted);
  font-size: 10px;
  line-height: 1.6;
}

.report-privacy-line .report-icon {
  width: 15px;
  height: 15px;
  color: var(--report-green);
}

.report-button-wide {
  width: 100%;
  min-height: 47px;
}

.report-claim-match {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  padding: 14px;
  border-radius: 7px;
  background: #f3f6f4;
  box-shadow: inset 0 0 0 1px var(--report-line);
}

.report-claim-match .report-avatar {
  width: 40px;
  height: 40px;
}

.report-claim-match strong,
.report-claim-match small {
  display: block;
}

.report-claim-match strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-claim-match small {
  margin-top: 4px;
  color: var(--report-muted);
  font-size: 9px;
}

.report-claim-match > span:last-child {
  color: var(--report-green-dark);
  font-size: 10px;
  font-weight: 700;
}

.report-code-field {
  margin-top: 19px;
}

.report-code-field input {
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.report-code-error {
  margin: 6px 0 12px;
  color: var(--report-red);
  font-size: 10px;
}

.report-claim-stage[data-claim-stage="verify"] .report-button-wide {
  margin-top: 15px;
}

.report-dialog-text-action {
  display: block;
  min-height: 40px;
  margin: 10px auto -10px;
  padding: 0 10px;
  border: 0;
  color: var(--report-muted);
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.report-success-list,
.report-success-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 25px 0 20px;
}

.report-success-list span,
.report-success-types span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  color: #455249;
  background: #f3f6f4;
  font-size: 11px;
}

@media (max-width: 1080px) {
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-bundle-hero {
    grid-template-columns: 280px minmax(0, 1fr);
  }

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

@media (max-width: 760px) {
  .report-container {
    width: min(100% - 32px, 620px);
  }

  .report-header {
    height: 58px;
  }

  .report-brand-mark {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .report-brand-copy small,
  .report-nav,
  .report-header-actions .report-icon-button,
  .report-intro-claim {
    display: none;
  }

  .report-brand-copy strong {
    font-size: 13px;
  }

  .report-claim-trigger {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }

  .report-claim-trigger .report-icon {
    width: 16px;
    height: 16px;
  }

  .report-intro {
    padding-top: 25px;
  }

  .report-intro-copy h1 {
    font-size: 28px;
  }

  .report-intro-copy p {
    max-width: 300px;
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.6;
  }

  .report-search {
    height: 50px;
    margin-top: 21px;
  }

  .report-search-icon {
    width: 45px;
  }

  .report-search input {
    font-size: 12px;
  }

  .report-search-button {
    min-width: 67px;
    font-size: 11px;
  }

  .report-filter-row {
    display: block;
    min-height: 0;
    margin-top: 10px;
  }

  .report-platform-tabs {
    width: calc(100% + 16px);
    height: 54px;
    gap: 21px;
    padding-right: 16px;
  }

  .report-platform-tabs button {
    min-height: 40px;
    font-size: 11px;
  }

  .report-library-count {
    padding: 11px 0 14px;
    box-shadow: inset 0 1px 0 var(--report-line);
    font-size: 10px;
  }

  .report-library-count strong {
    font-size: 12px;
  }

  .report-library-body {
    padding-top: 23px;
    padding-bottom: 38px;
  }

  .report-section-heading {
    margin-bottom: 14px;
  }

  .report-section-heading h2 {
    font-size: 18px;
  }

  .report-section-heading p {
    font-size: 10px;
  }

  .report-text-button {
    display: none;
  }

  .report-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 224px;
  }

  .report-card-media {
    height: auto;
    min-height: 224px;
  }

  .report-card-media img {
    position: absolute;
    inset: 0;
  }

  .report-platform-label,
  .report-pack-count {
    top: 9px;
    min-height: 23px;
    padding: 0 7px;
    font-size: 9px;
  }

  .report-platform-label {
    left: 9px;
  }

  .report-pack-count {
    right: auto;
    top: auto;
    bottom: 9px;
    left: 9px;
  }

  .report-card-body {
    min-height: 224px;
    padding: 13px;
  }

  .report-card-account {
    gap: 8px;
  }

  .report-card-account .report-avatar {
    width: 32px;
    height: 32px;
  }

  .report-card-account h3 {
    font-size: 12px;
  }

  .report-card-account p {
    font-size: 9px;
  }

  .report-card-judgment {
    min-height: 58px;
    margin: 11px 0 10px;
    font-size: 11px;
    line-height: 1.58;
  }

  .report-type-line span {
    height: 25px;
    font-size: 9px;
  }

  .report-card-footer {
    padding-top: 8px;
  }

  .report-card-footer time {
    font-size: 9px;
  }

  .report-card-footer a {
    min-height: 36px;
    font-size: 10px;
  }

  .report-problem-section {
    margin-top: 38px;
  }

  .report-problem-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .report-problem-list button {
    min-height: 54px;
    padding: 0 14px;
    font-size: 11px;
  }

  .report-claim-band {
    display: block;
    margin-top: 31px;
    padding: 22px;
  }

  .report-claim-band h2 {
    font-size: 17px;
  }

  .report-claim-band p {
    font-size: 10px;
  }

  .report-claim-band .report-button {
    width: 100%;
    margin-top: 18px;
  }

  .report-bundle-page {
    padding-top: 14px;
  }

  .report-bundle-hero {
    grid-template-columns: 1fr;
    margin-top: 5px;
  }

  .report-bundle-visual {
    min-height: 180px;
    max-height: 180px;
  }

  .report-bundle-copy {
    padding: 22px;
  }

  .report-bundle-account h1 {
    font-size: 21px;
  }

  .report-bundle-lead {
    margin-top: 17px;
    font-size: 13px;
  }

  .report-bundle-meta {
    gap: 10px;
    margin-top: 17px;
    font-size: 9px;
  }

  .report-bundle-meta span + span {
    padding-left: 10px;
  }

  .report-document-switcher {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 1px 8px;
    scrollbar-width: none;
  }

  .report-document-switcher::-webkit-scrollbar {
    display: none;
  }

  .report-document-switcher > a,
  .report-document-switcher > span {
    width: 154px;
    min-width: 154px;
    min-height: 78px;
  }

  .report-document-preview {
    display: block;
    margin-top: 12px;
  }

  .report-document-nav {
    display: flex;
    flex-direction: row;
    min-height: 0;
    gap: 5px;
    padding: 10px;
    overflow-x: auto;
    box-shadow: inset 0 -1px 0 var(--report-line);
    scrollbar-width: none;
  }

  .report-document-nav::-webkit-scrollbar {
    display: none;
  }

  .report-document-nav > strong,
  .report-document-nav button {
    display: none;
  }

  .report-document-nav a {
    min-width: max-content;
    min-height: 36px;
    padding: 11px 9px;
  }

  .report-document-body {
    padding: 25px 20px 34px;
  }

  .report-document-body header h2 {
    font-size: 20px;
    line-height: 1.48;
  }

  .report-document-body header > p:last-child {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.8;
  }

  .report-document-finding {
    margin-top: 22px;
    padding: 17px;
  }

  .report-document-columns {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 24px;
  }

  .report-modal {
    align-items: end;
    padding: 0;
  }

  .report-dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    overflow: auto;
    border-radius: 8px 8px 0 0;
    transform: translateY(22px);
  }

  .report-claim-stage {
    padding: 27px 20px 24px;
  }

  .report-dialog-close {
    top: 8px;
    right: 8px;
  }

  .report-dialog-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .report-claim-stage h2 {
    font-size: 20px;
  }

  .report-claim-match {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .report-claim-match > span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 380px) {
  .report-container {
    width: calc(100% - 24px);
  }

  .report-claim-trigger span:not([data-icon]) {
    display: none;
  }

  .report-claim-trigger {
    width: 40px;
    padding: 0;
  }

  .report-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .report-card-media,
  .report-card-body {
    min-height: 230px;
  }

  .report-card-body {
    padding: 11px;
  }

  .report-card-judgment {
    font-size: 10px;
  }
}

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

/* Account report detail: keep account context compact and let the analysis lead. */
.report-bundle-page {
  padding-top: 18px;
}

.report-account-context {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 14px;
  border: 1px solid var(--report-line);
  border-radius: 7px;
  background: #ffffff;
}

.report-account-homepage {
  position: relative;
  height: 88px;
  overflow: hidden;
  border-radius: 4px;
  background: #e7eee9;
}

.report-account-homepage::after {
  position: absolute;
  right: 9px;
  bottom: 8px;
  z-index: 1;
  padding: 4px 6px;
  border-radius: 3px;
  color: #ffffff;
  background: rgba(24, 34, 29, 0.76);
  content: "账号主页快照";
  font-size: 8px;
  font-weight: 700;
}

.report-account-homepage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.report-account-context-copy > p {
  margin: 0 0 5px;
  color: var(--report-green);
  font-size: 10px;
  font-weight: 750;
}

.report-account-context-copy > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.report-account-context-copy h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
}

.report-account-platform {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.report-account-context-copy small {
  display: block;
  margin-top: 7px;
  color: var(--report-muted);
  font-size: 11px;
}

.report-account-context-meta {
  display: flex;
  gap: 20px;
  color: var(--report-muted);
  font-size: 10px;
  text-align: left;
}

.report-account-context-meta span {
  min-width: 52px;
}

.report-account-context-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--report-ink);
  font-size: 13px;
}

.report-document-switcher {
  gap: 8px;
  margin-top: 15px;
}

.report-document-switcher > a,
.report-document-switcher > span {
  min-height: 76px;
  padding: 13px 14px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(25, 37, 31, 0.09);
}

.report-document-switcher small {
  margin-top: 4px;
}

.report-document-preview.report-document-layout {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) 190px;
  gap: 34px;
  align-items: start;
  margin-top: 28px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.report-document-nav {
  min-height: 0;
  padding: 11px 0;
  background: transparent;
  box-shadow: none;
}

.report-document-nav > strong {
  margin: 0 10px 14px;
}

.report-document-nav a {
  min-height: 40px;
  padding: 12px 10px;
  border-left: 2px solid transparent;
  border-radius: 0;
}

.report-document-nav a:hover,
.report-document-nav a.is-active {
  border-left-color: var(--report-green);
  color: var(--report-green-dark);
  background: var(--report-green-soft);
}

.report-document-nav button {
  margin: 21px 10px 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--report-line);
}

.report-document-body {
  max-width: none;
  min-width: 0;
  padding: 39px 46px 52px;
  border: 1px solid var(--report-line);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 23px rgba(25, 43, 32, 0.04);
}

.report-document-body header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--report-line);
}

.report-document-body header > p:first-child {
  margin-bottom: 10px;
}

.report-document-body header h2 {
  max-width: 690px;
  font-size: 28px;
  line-height: 1.42;
}

.report-document-body header > p:last-child {
  max-width: 690px;
  margin-top: 14px;
  font-size: 14px;
}

.report-document-content {
  gap: 0;
  margin-top: 0;
}

.report-content-section {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  column-gap: 23px;
  padding: 31px 0;
  border-bottom: 1px solid var(--report-line);
}

.report-content-section::before {
  grid-row: 1 / span 4;
  color: var(--report-green);
  content: "分析要点";
  font-size: 10px;
  font-weight: 750;
}

.report-content-section h3,
.report-content-section p,
.report-content-section ul {
  grid-column: 2;
}

.report-content-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.55;
}

.report-content-section p,
.report-content-section li {
  font-size: 13px;
  line-height: 1.9;
}

.report-content-section p:last-of-type {
  margin-bottom: 0;
}

.report-content-section ul {
  margin-top: 12px;
}

.report-content-finding {
  display: block;
  margin: 28px 0 0;
  padding: 20px 23px 22px;
  border: 0;
  border-left: 4px solid var(--report-green);
  background: var(--report-green-soft);
}

.report-content-finding::before {
  display: block;
  color: var(--report-green-dark);
  content: "核心判断";
  font-size: 10px;
  font-weight: 750;
}

.report-content-finding h3 {
  margin: 9px 0 0;
  font-size: 19px;
  line-height: 1.6;
}

.report-content-finding p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.85;
}

.report-document-action {
  margin-top: 0;
  padding-top: 28px;
}

.report-document-related {
  padding-top: 11px;
}

.report-related-sample,
.report-related-documents,
.report-related-reading {
  padding-bottom: 20px;
  margin-bottom: 21px;
  border-bottom: 1px solid var(--report-line);
}

.report-related-sample p,
.report-related-documents > p,
.report-related-reading p {
  margin: 0;
  color: var(--report-muted);
  font-size: 10px;
}

.report-related-sample strong {
  display: block;
  margin-top: 8px;
  color: var(--report-ink);
  font-size: 14px;
}

.report-related-sample span,
.report-related-reading span {
  display: block;
  margin-top: 9px;
  color: #66736c;
  font-size: 11px;
  line-height: 1.75;
}

.report-related-documents a {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--report-line);
  color: var(--report-muted);
  text-decoration: none;
}

.report-related-documents a:last-child {
  border-bottom: 0;
}

.report-related-documents a strong,
.report-related-documents a span {
  display: block;
}

.report-related-documents a strong {
  margin-bottom: 4px;
  color: var(--report-ink);
  font-size: 12px;
}

.report-related-documents a span {
  font-size: 10px;
}

.report-related-documents a.is-active strong {
  color: var(--report-green-dark);
}

@media (max-width: 1080px) {
  .report-account-context {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .report-account-context-meta {
    grid-column: 2;
  }

  .report-document-preview.report-document-layout {
    grid-template-columns: 164px minmax(0, 1fr);
  }

  .report-document-related {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .report-related-sample,
  .report-related-documents,
  .report-related-reading {
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .report-bundle-page {
    padding-top: 13px;
  }

  .report-account-context {
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 13px;
    min-height: 0;
    padding: 10px;
  }

  .report-account-homepage {
    height: 75px;
  }

  .report-account-context-copy h1 {
    font-size: 18px;
  }

  .report-account-context-copy small {
    margin-top: 5px;
    font-size: 10px;
  }

  .report-account-context-meta {
    grid-column: 1 / -1;
    gap: 15px;
    padding: 8px 2px 1px;
    border-top: 1px solid var(--report-line);
  }

  .report-account-context-meta strong {
    font-size: 11px;
  }

  .report-document-switcher {
    margin-top: 12px;
  }

  .report-document-preview.report-document-layout {
    display: block;
    margin-top: 12px;
  }

  .report-document-nav {
    padding: 10px 0;
  }

  .report-document-nav a {
    border-bottom: 2px solid transparent;
    border-left: 0;
  }

  .report-document-nav a:hover,
  .report-document-nav a.is-active {
    border-bottom-color: var(--report-green);
    border-left-color: transparent;
  }

  .report-document-body {
    padding: 26px 20px 34px;
  }

  .report-document-body header h2 {
    font-size: 21px;
  }

  .report-content-section {
    display: block;
    padding: 25px 0;
  }

  .report-content-section::before {
    display: block;
    margin-bottom: 8px;
  }

  .report-content-section h3 {
    font-size: 16px;
  }

  .report-content-finding {
    padding: 17px;
  }

  .report-content-finding h3 {
    font-size: 17px;
  }

  .report-document-related {
    display: block;
    padding-top: 25px;
  }

  .report-related-sample,
  .report-related-documents,
  .report-related-reading {
    margin-bottom: 18px;
  }
}

/* Report library landing page refresh. The scope keeps these theme fixes off the rest of the site. */
body.zmt-report-library-page .header,
body.zmt-report-library-page .header .navbar-top {
  color: #24342c !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: inset 0 -1px 0 rgba(28, 48, 38, 0.1);
}

body.zmt-report-library-page .header .navbar-nav > li > a,
body.zmt-report-library-page .header .nav > li > a,
body.zmt-report-library-page .header .navbar-toggle,
body.zmt-report-library-page .header .navbar-form .btn:not(.pay-vip),
body.zmt-report-library-page .header .navbar-form .but:not(.pay-vip),
body.zmt-report-library-page .header .nav-search-btn {
  color: #314139 !important;
}

body.zmt-report-library-page .header .navbar-nav > li.current-menu-item > a,
body.zmt-report-library-page .header .navbar-nav > li.current-menu-ancestor > a,
body.zmt-report-library-page .header .nav > li.current-menu-item > a,
body.zmt-report-library-page .header .nav > li.current-menu-ancestor > a {
  color: #e85091 !important;
}

body.zmt-report-library-page .header .pay-vip,
body.zmt-report-library-page .header .newadd-btns {
  color: #ffffff !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.report-intro {
  padding: 47px 0 0;
  background: #ffffff;
  box-shadow: none;
}

.report-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 344px;
  gap: 56px;
  align-items: end;
  padding-bottom: 27px;
}

.report-intro-copy {
  display: block;
}

.report-intro-copy h1 {
  font-size: 38px;
  line-height: 1.18;
}

.report-intro-copy p {
  max-width: 620px;
  margin-top: 11px;
  font-size: 15px;
}

.report-intro-copy .report-search {
  margin-top: 24px;
}

.report-quick-claim {
  padding: 20px;
  border-radius: 7px;
  color: #ffffff;
  background: #17382b;
  box-shadow: 0 10px 22px rgba(21, 46, 35, 0.11);
}

.report-quick-claim > p {
  margin: 0;
  color: #b5c8bd;
  font-size: 11px;
  font-weight: 600;
}

.report-quick-claim h2 {
  margin: 8px 0 15px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.3;
}

.report-quick-claim form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.report-quick-claim input,
.report-quick-claim button {
  height: 38px;
  min-width: 0;
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-size: 11px;
}

.report-quick-claim input {
  padding: 0 11px;
  outline: 0;
  color: #ffffff;
  background: #294c3d;
}

.report-quick-claim input::placeholder {
  color: #b6c7bd;
}

.report-quick-claim input:focus {
  box-shadow: 0 0 0 2px #aee2c7;
}

.report-quick-claim button {
  padding: 0 12px;
  color: #17382b;
  background: #b5e1c8;
  font-weight: 750;
  cursor: pointer;
}

.report-quick-claim button:hover {
  background: #d0efdc;
}

.report-filter-strip {
  border-top: 1px solid #e6ece8;
  border-bottom: 1px solid #dfe6e2;
  background: #f3f6f3;
}

.report-filter-row {
  min-height: 64px;
  margin-top: 0;
}

.report-platform-tabs {
  height: 64px;
}

.report-library-surface {
  background: #eff3f0;
}

.report-library-body {
  padding-top: 35px;
  padding-bottom: 66px;
}

.report-section-heading {
  margin-bottom: 17px;
}

.report-section-heading h2 {
  font-size: 23px;
}

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

.report-card {
  border-radius: 7px;
  box-shadow: 0 0 0 1px rgba(28, 48, 38, 0.1), 0 9px 18px rgba(21, 40, 30, 0.045);
}

.report-card-media {
  display: block;
  height: auto;
  aspect-ratio: 1.88 / 1;
  background: #dce6df;
}

.report-card-media::after {
  box-shadow: inset 0 0 0 1px rgba(18, 36, 27, 0.08);
}

.report-card-media img {
  object-position: center 20%;
}

.report-card-snapshot-account {
  position: absolute;
  z-index: 2;
  top: 11px;
  left: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  max-width: calc(100% - 84px);
  color: #1f2e27;
}

.report-card-snapshot-account > span:last-child {
  min-width: 0;
}

.report-card-snapshot-account strong,
.report-card-snapshot-account small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-snapshot-account strong {
  font-size: 10px;
  font-weight: 750;
}

.report-card-snapshot-account small {
  margin-top: 2px;
  color: #4d5d54;
  font-size: 9px;
}

.report-card-media .report-avatar {
  width: 25px;
  height: 25px;
  overflow: hidden;
  font-size: 9px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.88);
}

.report-card-media .report-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-card-follow {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  min-height: 23px;
  padding: 0 7px;
  border-radius: 3px;
  color: #284335;
  background: rgba(255, 255, 255, 0.92);
  font-size: 9px;
  font-weight: 750;
  line-height: 23px;
}

.report-card-snapshot-label {
  position: absolute;
  z-index: 2;
  right: 11px;
  bottom: 11px;
  padding: 5px 6px;
  border-radius: 3px;
  color: #ffffff;
  background: rgba(17, 39, 29, 0.78);
  font-size: 9px;
  line-height: 1.2;
}

.report-card-body {
  min-height: 218px;
  padding: 14px 16px 13px;
}

.report-card-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.report-card-label-row .report-platform-label,
.report-card-label-row .report-pack-count {
  position: static;
  min-height: 21px;
  padding: 0 7px;
  border-radius: 3px;
  box-shadow: none;
  font-size: 9px;
}

.report-card-label-row .report-pack-count {
  padding-right: 0;
  color: #75817a;
  background: transparent;
}

.report-card-title {
  margin: 12px 0 0;
  overflow: hidden;
  color: var(--report-ink);
  font-size: 16px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-card-judgment {
  display: -webkit-box;
  min-height: 44px;
  margin: 10px 0 12px;
  overflow: hidden;
  color: #405048;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.report-type-line {
  border: 1px solid #e2e8e4;
  border-radius: 0;
  background: #ffffff;
}

.report-type-line span {
  height: 30px;
  color: #728078;
  font-size: 10px;
}

.report-card-footer {
  padding-top: 8px;
}

.report-card-footer a {
  margin-right: -5px;
  color: var(--report-green-dark);
}

@media (max-width: 1100px) {
  .report-intro-layout {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 310px;
  }

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

@media (max-width: 760px) {
  .report-intro {
    padding-top: 25px;
  }

  .report-intro-layout {
    display: block;
    padding-bottom: 21px;
  }

  .report-intro-copy h1 {
    font-size: 29px;
  }

  .report-intro-copy p {
    font-size: 12px;
  }

  .report-intro-copy .report-search {
    margin-top: 19px;
  }

  .report-quick-claim {
    margin-top: 16px;
    padding: 17px;
  }

  .report-quick-claim h2 {
    margin: 6px 0 12px;
    font-size: 17px;
  }

  .report-filter-row {
    display: block;
    min-height: 0;
  }

  .report-platform-tabs {
    height: 52px;
  }

  .report-library-count {
    padding: 10px 0 12px;
    box-shadow: inset 0 1px 0 var(--report-line);
  }

  .report-library-body {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .report-section-heading h2 {
    font-size: 19px;
  }

  .report-section-heading p {
    max-width: 260px;
    line-height: 1.5;
  }

  .report-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .report-card {
    display: block;
    min-height: 0;
  }

  .report-card-media {
    min-height: 0;
  }

  .report-card-body {
    min-height: 205px;
    padding: 13px 14px 12px;
  }
}

/* Make the four deliverables read as distinct report modules, not table cells. */
.report-type-line {
  gap: 6px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.report-type-line span,
.report-type-line span + span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  padding: 0 6px;
  border: 1px solid var(--report-type-line);
  border-radius: 4px;
  color: var(--report-type-ink);
  background: var(--report-type-soft);
  box-shadow: none;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.report-type-line span::before {
  width: 3px;
  height: 15px;
  border-radius: 2px;
  background: var(--report-type-accent);
  content: "";
}

.report-type-line span::after {
  color: currentColor;
  content: "报告";
  font-size: 9px;
  font-weight: 600;
  opacity: 0.74;
}

.report-type-line span:nth-child(1) {
  --report-type-accent: #16845a;
  --report-type-ink: #176c4c;
  --report-type-line: #cfe6d8;
  --report-type-soft: #edf7f1;
}

.report-type-line span:nth-child(2) {
  --report-type-accent: #3d6fba;
  --report-type-ink: #3a619b;
  --report-type-line: #d8e3f3;
  --report-type-soft: #eff4fb;
}

.report-type-line span:nth-child(3) {
  --report-type-accent: #c65a4b;
  --report-type-ink: #a94c40;
  --report-type-line: #f1d9d4;
  --report-type-soft: #fcf0ee;
}

.report-type-line span:nth-child(4) {
  --report-type-accent: #7a6497;
  --report-type-ink: #68527f;
  --report-type-line: #e3daec;
  --report-type-soft: #f4f0f8;
}

@media (min-width: 1280px) {
  .report-container.report-bundle-page {
    width: min(1780px, calc(100% - 72px));
  }

  .report-document-preview.report-document-layout {
    grid-template-columns: 198px minmax(0, 1fr) 218px;
    gap: 40px;
  }

  .report-document-body {
    padding: 48px 58px 62px;
  }

  .report-document-body header h2,
  .report-document-body header > p:last-child {
    max-width: 880px;
  }

  .report-content-section {
    grid-template-columns: 150px minmax(0, 1fr);
    column-gap: 30px;
  }
}

/* Report documents use a denser top transition and a readable wide-screen scale. */
body.zmt-report-library-wide-page {
  padding-top: 68px !important;
}

.report-bundle-page {
  padding-top: 0;
}

.report-back {
  min-height: 32px;
  font-size: 12px;
}

@media (min-width: 1280px) {
  .report-account-context {
    min-height: 128px;
    padding: 18px;
  }

  .report-account-homepage {
    height: 92px;
  }

  .report-account-context-copy > p {
    font-size: 11px;
  }

  .report-account-context-copy h1 {
    font-size: 27px;
  }

  .report-account-context-copy small,
  .report-account-context-meta {
    font-size: 12px;
  }

  .report-account-context-meta strong {
    font-size: 15px;
  }

  .report-document-switcher {
    gap: 12px;
    margin-top: 16px;
  }

  .report-document-switcher > a,
  .report-document-switcher > span {
    min-height: 92px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 18px;
  }

  .report-document-switcher > a > span,
  .report-document-switcher > span > span {
    font-size: 14px;
  }

  .report-document-switcher strong {
    font-size: 16px;
  }

  .report-document-switcher small {
    margin-top: 6px;
    font-size: 12px;
  }

  .report-document-nav {
    padding-top: 15px;
  }

  .report-document-nav > strong {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .report-document-nav a,
  .report-document-nav button {
    min-height: 46px;
    font-size: 14px;
  }

  .report-document-body {
    padding: 56px 68px 72px;
  }

  .report-document-body header > p:first-child {
    font-size: 12px;
  }

  .report-document-body header h2 {
    max-width: 960px;
    font-size: 34px;
  }

  .report-document-body header > p:last-child {
    max-width: 940px;
    font-size: 17px;
    line-height: 1.9;
  }

  .report-content-finding {
    margin-top: 34px;
    padding: 26px 30px 28px;
  }

  .report-content-finding::before {
    font-size: 12px;
  }

  .report-content-finding h3 {
    font-size: 24px;
  }

  .report-content-finding p {
    font-size: 16px;
    line-height: 1.95;
  }

  .report-content-section {
    grid-template-columns: 162px minmax(0, 1fr);
    column-gap: 36px;
    padding: 38px 0;
  }

  .report-content-section::before {
    font-size: 12px;
  }

  .report-content-section h3 {
    margin-bottom: 13px;
    font-size: 22px;
  }

  .report-content-section p,
  .report-content-section li {
    font-size: 16px;
    line-height: 2;
  }

  .report-document-action {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 15px;
    padding-top: 34px;
  }

  .report-document-action h3 {
    font-size: 20px;
  }

  .report-document-action p {
    font-size: 15px;
    line-height: 1.9;
  }

  .report-related-sample p,
  .report-related-documents > p,
  .report-related-reading p {
    font-size: 11px;
  }

  .report-related-sample strong {
    font-size: 16px;
  }

  .report-related-sample span,
  .report-related-reading span {
    font-size: 13px;
    line-height: 1.85;
  }

  .report-related-documents a {
    padding: 14px 0;
  }

  .report-related-documents a strong {
    font-size: 14px;
  }

  .report-related-documents a span {
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  body.zmt-report-library-wide-page {
    padding-top: 58px !important;
  }
}
