:root {
  --blue: #0b5cab;
  --blue-dark: #073f7d;
  --blue-soft: #eaf3fb;
  --green: #229f69;
  --green-soft: #eaf8f2;
  --text: #1f2937;
  --muted: #5f6b7a;
  --line: #d9e3ee;
  --bg: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(16, 44, 72, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(160%) blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  display: block;
  width: auto;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  color: var(--blue-dark);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.primary-nav a {
  padding: 10px 12px;
  color: #2b3645;
  font-size: 15px;
  border-radius: 6px;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--blue-dark);
}

.hero--small {
  min-height: 360px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 28, 54, 0.82), rgba(4, 55, 93, 0.58) 54%, rgba(4, 55, 93, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.24));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 86px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #d8f5e8;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 58px);
}

.hero__subtitle {
  margin-top: 18px;
  font-size: clamp(18px, 2.3vw, 24px);
  color: rgba(255, 255, 255, 0.95);
}

.hero__text {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  color: var(--white);
  background: var(--green);
}

.btn--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
}

.section {
  padding: 78px 0;
}

.section--soft {
  background: var(--bg);
}

.section--blue {
  color: var(--white);
  background: var(--blue-dark);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--green);
  font-weight: 700;
}

.section-title h2 {
  color: var(--blue-dark);
  font-size: clamp(26px, 3.2vw, 38px);
}

.section--blue .section-title h2,
.section--blue .section-title p {
  color: var(--white);
}

.section-title p {
  margin-top: 12px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.trust-grid {
  align-items: stretch;
}

.trust-panel h3 {
  color: var(--blue-dark);
  font-size: 24px;
}

.trust-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.trust-panel li {
  margin: 8px 0;
}

.trust-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.card,
.service-card,
.case-card,
.range-card,
.article-card,
.area-card,
.faq-card,
.contact-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(17, 45, 75, 0.06);
}

.service-card,
.case-card,
.article-card {
  overflow: hidden;
}

.service-card img,
.case-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--blue-soft);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 8px 18px rgba(17, 45, 75, 0.08);
}

.article-card img,
.case-list img,
.image-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--blue-soft);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(17, 45, 75, 0.08);
}

.article-card img,
.case-list img {
  margin-bottom: 16px;
}

.service-card__body,
.case-card__body,
.article-card,
.area-card,
.range-card,
.contact-card,
.faq-card,
.process-step {
  padding: 24px;
}

.service-card h3,
.case-card h3,
.range-card h3,
.area-card h2,
.article-card h2,
.contact-card h2,
.faq-card h2,
.process-step h3 {
  color: var(--blue-dark);
  font-size: 21px;
}

.service-card p,
.case-card p,
.range-card p,
.area-card p,
.article-card p,
.contact-card p,
.faq-card p,
.process-step p {
  margin-top: 10px;
  color: var(--muted);
}

.service-card .btn,
.case-card .btn {
  margin-top: 16px;
}

.feature-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}

.feature-card h3 {
  color: var(--blue-dark);
  font-size: 21px;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.process-step {
  position: relative;
  min-height: 210px;
}

.step-number {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue);
  border-radius: 8px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section--blue .area-chips span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

.notice {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.cta {
  padding: 50px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.cta p {
  max-width: 790px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 32px;
}

.split img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-panel h2 {
  color: var(--blue-dark);
  font-size: 30px;
}

.content-panel p {
  margin-top: 14px;
  color: var(--muted);
}

.range-card ul,
.contact-card ol,
.content-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.range-card li,
.contact-card li,
.content-panel li {
  margin: 6px 0;
}

.case-list {
  display: grid;
  gap: 18px;
}

.case-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
}

.image-showcase figure {
  margin: 0;
  padding: 0;
}

.image-showcase figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.case-list h2,
.case-list h3 {
  color: var(--blue-dark);
  font-size: 22px;
}

.case-list p {
  margin-top: 10px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 700;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.meta-list {
  display: grid;
  gap: 14px;
}

.meta-list div {
  padding: 18px 20px;
  background: var(--blue-soft);
  border-radius: 8px;
}

.meta-list strong {
  display: block;
  color: var(--blue-dark);
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: #072f5f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin-top: 8px;
}

.footer-bottom {
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-call {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  color: var(--white);
  font-weight: 800;
  background: var(--green);
  box-shadow: 0 -8px 20px rgba(17, 45, 75, 0.16);
}

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

  .split,
  .cta__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta__inner {
    display: grid;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 68px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .topbar__inner {
    flex-direction: column;
    gap: 2px;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: auto;
    height: 42px;
    flex-basis: auto;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 111px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 14px;
  }

  .hero__actions .btn,
  .cta .btn,
  .trust-action .btn {
    width: 100%;
  }

  .hero,
  .hero--small {
    min-height: 460px;
  }

  .hero__content {
    padding: 66px 0;
  }

  .section {
    padding: 58px 0;
  }

  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .case-card img {
    width: 100%;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand small {
    display: none;
  }

  .topbar {
    display: none;
  }

  .primary-nav {
    top: 76px;
  }

  .hero__actions,
  .btn {
    width: 100%;
  }

  .service-card__body,
  .case-card__body,
  .article-card,
  .area-card,
  .range-card,
  .contact-card,
  .faq-card,
  .process-step,
  .feature-card,
  .content-panel {
    padding: 20px;
  }
}


/* Mobile responsive */
@media screen and (max-width: 768px) {
    nav, .nav-menu { flex-direction: column; text-align: center; }
    img { max-width: 100%; height: auto; }
    body { font-size: 16px; }
    button, input[type="submit"] { width: 100%; padding: 12px; }
}


/* ===== Header logo size fix - 2026 ===== */
.site-header .nav-wrap {
  min-height: 76px;
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 280px;
}

.site-header .brand__logo,
.site-header .brand img {
  width: auto !important;
  height: 54px !important;
  max-width: 260px !important;
  object-fit: contain !important;
}

.site-header .primary-nav {
  flex: 1 1 auto;
}

.hero__bg {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
}

@media screen and (max-width: 768px) {
  .topbar__inner {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .site-header .nav-wrap {
    min-height: 68px;
  }

  .site-header .brand {
    max-width: 220px;
  }

  .site-header .brand__logo,
  .site-header .brand img {
    height: 44px !important;
    max-width: 210px !important;
  }

  .primary-nav {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .site-header .brand__logo,
  .site-header .brand img {
    height: 40px !important;
    max-width: 190px !important;
  }
}


/* ===== Large cases and company strength ===== */
.large-case-grid {
  align-items: stretch;
}

.large-case-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.large-case-card h3 {
  margin-top: 10px;
  color: var(--blue-dark);
  font-size: 21px;
}

.large-case-card p {
  margin-top: 12px;
}

.case-tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.case-money {
  color: var(--blue);
  font-weight: 800;
}

.case-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
}

.strength-section .feature-card {
  min-height: 180px;
}

@media screen and (max-width: 768px) {
  .large-case-card {
    padding: 20px;
  }

  .large-case-card h3 {
    font-size: 19px;
  }
}

/* ===== Daily market, industry news and Beijing local points ===== */
.market-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(43, 183, 126, 0.2), transparent 30%),
    linear-gradient(145deg, #052b58 0%, #074680 62%, #0b5cab 100%);
}

.market-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.market-section .container {
  position: relative;
  z-index: 1;
}

.market-heading,
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.market-heading > div:first-child {
  max-width: 760px;
}

.market-heading h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.market-heading p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.section-kicker--light {
  color: #8ee2ba;
}

.market-update {
  min-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.market-update span,
.market-update small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.market-update strong {
  display: block;
  margin: 3px 0 4px;
  font-size: 18px;
}

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

.metal-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 42px rgba(2, 21, 45, 0.22);
  backdrop-filter: blur(14px);
}

.metal-card::after {
  position: absolute;
  right: -28px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.metal-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.metal-card__head h3 {
  font-size: 20px;
}

.metal-card__head p,
.metal-card__foot {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.metal-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: #061f3d;
  font-weight: 900;
  background: #f3c75b;
}

.metal-card--copper .metal-symbol {
  background: #dc9467;
}

.metal-card--aluminum .metal-symbol {
  background: #dfe8ee;
}

.metal-card--silver .metal-symbol {
  background: #d9e1e7;
}

.metal-card--platinum .metal-symbol {
  background: #a7ded2;
}

.metal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 28px 0 18px;
}

.metal-price strong {
  font-size: clamp(28px, 3vw, 38px);
}

.metal-price span {
  color: rgba(255, 255, 255, 0.7);
}

.market-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(2, 25, 53, 0.36);
}

.market-note p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.btn--market {
  flex: 0 0 auto;
  color: #063a68;
  background: #a7edca;
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.coverage-strip {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  padding: 22px 26px;
  color: var(--white);
  border-radius: 18px;
  background: linear-gradient(135deg, #073f7d, #0b5cab);
  box-shadow: var(--shadow);
}

.coverage-strip div {
  min-width: 90px;
}

.coverage-strip strong,
.coverage-strip span {
  display: block;
}

.coverage-strip strong {
  color: #91e5bd;
  font-size: 25px;
}

.coverage-strip span,
.coverage-strip p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.coverage-strip p {
  justify-self: end;
  text-align: right;
}

.local-points-section {
  background: #f7fafc;
}

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

.local-point-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(17, 45, 75, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.local-point-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(17, 45, 75, 0.13);
}

.local-point-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.local-point-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.local-point-card:hover img {
  transform: scale(1.03);
}

.local-point-card__image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 999px;
  background: rgba(4, 35, 69, 0.84);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.local-point-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 28, 53, 0.08) 25%, rgba(3, 28, 53, 0.9) 100%);
}

.local-point-card__image .local-point-card__overlay span {
  position: static;
  margin-bottom: 8px;
  padding: 4px 9px;
  background: rgba(16, 158, 99, 0.9);
  font-size: 12px;
}

.local-point-card__overlay strong,
.local-point-card__overlay small {
  display: block;
}

.local-point-card__overlay strong {
  font-size: 22px;
  line-height: 1.3;
}

.local-point-card__overlay small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
}

.local-point-card__body {
  padding: 22px;
}

.point-type {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.local-point-card h3 {
  color: var(--blue-dark);
  font-size: 22px;
}

.local-point-card__body > p:not(.point-type) {
  margin-top: 10px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 800;
}

.daily-news-section {
  background: var(--white);
}

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

.daily-news-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 45, 75, 0.06);
}

.daily-news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.daily-news-card__meta span {
  color: var(--green);
  font-weight: 800;
}

.daily-news-card h3 {
  margin-top: 14px;
  color: var(--blue-dark);
  font-size: 21px;
}

.daily-news-card p {
  margin-top: 10px;
  color: var(--muted);
}

.daily-news-card__source {
  display: block;
  margin-top: 12px;
  color: #7b8998;
  font-size: 12px;
}

.precious-history-section {
  background: #f6f9fb;
}

.market-history-panel {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 45, 75, 0.08);
}

.market-chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.market-chart-legend span::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
}

.market-chart-legend .is-gold::before {
  background: #c89219;
}

.market-chart-legend .is-silver::before {
  background: #718394;
}

.market-chart-legend .is-platinum::before {
  background: #1b8f78;
}

.precious-chart {
  display: block;
  width: 100%;
  height: 340px;
}

.chart-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.market-history-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
}

.market-history-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.market-history-table caption {
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-weight: 800;
  text-align: left;
}

.market-history-table th,
.market-history-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.market-history-table th:first-child,
.market-history-table td:first-child {
  text-align: left;
}

.market-history-table thead th {
  color: var(--blue-dark);
  background: #f1f6f9;
}

.market-history-table thead small {
  color: var(--muted);
  font-weight: 500;
}

.market-history-table tbody th {
  color: var(--blue-dark);
  font-weight: 700;
}

.market-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.market-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.market-timeline time {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.market-timeline strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
}

.market-timeline p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.content-loading {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.area-search-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 45, 75, 0.06);
}

.area-search-wrap input {
  width: 100%;
  min-height: 42px;
  color: var(--text);
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.area-directory {
  display: grid;
  gap: 18px;
}

.area-directory__group {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 45, 75, 0.05);
}

.area-directory__group h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.area-directory__group h3 span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

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

.area-directory__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
  padding: 9px 11px;
  color: var(--blue-dark);
  border: 1px solid #e5edf4;
  border-radius: 9px;
  background: #f8fbfd;
}

.area-directory__links a:hover {
  color: var(--green);
  border-color: rgba(16, 158, 99, 0.4);
  background: var(--green-soft);
}

.area-directory__links strong {
  font-size: 14px;
}

.area-directory__links span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
}

.phase-note {
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--muted);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: var(--green-soft);
}

.area-page-hero {
  min-height: 430px;
}

.area-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.area-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.area-facts strong,
.area-facts span {
  display: block;
}

.area-facts strong {
  color: var(--blue-dark);
}

.area-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.area-service-panel {
  width: 100%;
}

.area-service-panel > p {
  max-width: 920px;
}

/* ===== Compact homepage ===== */
.home-compact .hero--home {
  min-height: 420px;
}

.home-compact .hero__content {
  max-width: 790px;
  padding: 54px 0;
}

.home-compact .hero__text {
  max-width: 720px;
  font-size: 16px;
}

.home-compact .hero__actions {
  margin-top: 22px;
}

.home-compact .section {
  padding: 50px 0;
}

.home-compact .market-heading {
  align-items: center;
  margin-bottom: 20px;
}

.home-compact .market-heading h2,
.home-compact .section-title h2,
.compact-column__heading h2 {
  font-size: clamp(25px, 2.7vw, 34px);
}

.home-compact .market-update {
  min-width: 225px;
  padding: 12px 16px;
}

.home-compact .metal-card {
  padding: 17px 18px;
  border-radius: 14px;
}

.home-compact .metal-symbol {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.home-compact .metal-card__head h3 {
  font-size: 17px;
}

.home-compact .metal-price {
  margin: 14px 0 0;
}

.home-compact .metal-price strong {
  font-size: clamp(23px, 2.5vw, 31px);
}

.home-compact .metal-card__foot {
  display: none;
}

.home-compact .market-note {
  margin-top: 14px;
  padding: 12px 16px;
}

.compact-heading {
  align-items: center;
  margin-bottom: 22px;
}

.compact-heading .section-title {
  max-width: 720px;
}

.compact-heading .section-title p {
  margin-top: 7px;
}

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

.compact-service-grid > a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 88px;
  padding: 15px 17px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-service-grid > a:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 158, 99, 0.45);
  box-shadow: 0 10px 25px rgba(17, 45, 75, 0.08);
}

.compact-service-grid > a > span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--green);
  border-radius: 11px;
  background: var(--green-soft);
  font-size: 13px;
  font-weight: 900;
}

.compact-service-grid h3 {
  color: var(--blue-dark);
  font-size: 17px;
}

.compact-service-grid p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.compact-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  padding: 13px 18px;
  color: var(--muted);
  border-radius: 12px;
  background: var(--bg);
  font-size: 14px;
}

.compact-process span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.compact-process b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-size: 12px;
}

.compact-process i {
  color: #9badbf;
  font-style: normal;
}

.home-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.home-scene-grid a {
  position: relative;
  min-height: 178px;
  overflow: hidden;
  color: var(--white);
  border-radius: 14px;
  background: var(--blue-dark);
}

.home-scene-grid img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-scene-grid a:hover img {
  transform: scale(1.03);
}

.home-scene-grid span {
  position: absolute;
  inset: auto 0 0;
  display: block;
  padding: 30px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(3, 29, 55, 0.92));
}

.home-scene-grid strong,
.home-scene-grid small {
  display: block;
}

.home-scene-grid strong {
  font-size: 16px;
}

.home-scene-grid small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.compact-coverage {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 16px;
  padding: 16px 20px;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
}

.compact-coverage div {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.compact-coverage strong {
  color: #9fe4c4;
  font-size: 25px;
}

.compact-coverage span,
.compact-coverage p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.compact-coverage p {
  justify-self: end;
  text-align: right;
}

.compact-area-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.compact-area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.compact-area-links a:hover {
  color: var(--green);
  border-color: rgba(16, 158, 99, 0.45);
}

.compact-area-links strong {
  font-size: 14px;
}

.compact-area-links span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.compact-updates-section {
  background: var(--white);
}

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

.compact-column {
  padding: 22px 24px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 45, 75, 0.06);
}

.compact-column__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.compact-column__heading .text-link {
  flex: 0 0 auto;
  margin: 0 0 3px;
  font-size: 13px;
}

.home-news-list .daily-news-card {
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.home-news-list .daily-news-card:last-child {
  border-bottom: 0;
}

.home-news-list .daily-news-card__meta {
  justify-content: flex-start;
  gap: 9px;
  font-size: 12px;
}

.home-news-list .daily-news-card h3 {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.45;
}

.home-news-list .daily-news-card p,
.home-news-list .daily-news-card > .text-link {
  display: none;
}

.compact-case-list a {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  color: var(--blue-dark);
  border-bottom: 1px solid var(--line);
}

.compact-case-list a:last-child {
  border-bottom: 0;
}

.compact-case-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.compact-case-list strong {
  font-size: 15px;
}

.compact-case-list small {
  color: var(--muted);
  white-space: nowrap;
}

.compact-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  overflow: hidden;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--bg);
}

.compact-trust-bar span {
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.compact-trust-bar span:last-child {
  border-right: 0;
}

.compact-trust-bar strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
}

.home-compact .cta {
  padding: 36px 0;
}

@media (max-width: 980px) {
  .metal-grid,
  .local-point-grid,
  .daily-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metal-card:last-child,
  .daily-news-card:last-child {
    grid-column: 1 / -1;
  }

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

  .coverage-strip p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

  .compact-service-grid,
  .compact-area-links,
  .home-scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-scene-grid a:last-child {
    grid-column: 1 / -1;
  }

  .compact-updates-grid {
    grid-template-columns: 1fr;
  }

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

  .compact-coverage p {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }

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

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

@media (max-width: 760px) {
  .market-heading,
  .section-heading-row,
  .market-note {
    align-items: stretch;
    flex-direction: column;
  }

  .market-update {
    min-width: 0;
  }

  .metal-grid,
  .local-point-grid,
  .daily-news-grid,
  .area-facts {
    grid-template-columns: 1fr;
  }

  .metal-card:last-child,
  .daily-news-card:last-child {
    grid-column: auto;
  }

  .coverage-strip {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .coverage-strip div:last-of-type {
    grid-column: 1 / -1;
  }

  .market-note .btn,
  .section-heading-row .btn {
    width: 100%;
  }

  .home-compact .hero--home {
    min-height: 390px;
  }

  .home-compact .hero__content {
    padding: 44px 0;
  }

  .home-compact .section {
    padding: 40px 0;
  }

  .compact-service-grid,
  .compact-area-links,
  .compact-trust-bar,
  .home-scene-grid {
    grid-template-columns: 1fr;
  }

  .home-scene-grid a:last-child {
    grid-column: auto;
  }

  .compact-process {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .compact-process i {
    display: none;
  }

  .compact-coverage {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .compact-coverage div:last-of-type,
  .compact-coverage p {
    grid-column: 1 / -1;
  }

  .compact-trust-bar span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compact-trust-bar span:last-child {
    border-bottom: 0;
  }

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

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

  .market-history-panel {
    padding: 18px;
  }

  .precious-chart {
    height: 290px;
  }
}

@media (max-width: 460px) {
  .area-directory__links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* 分类报价与每日行业报告 */
.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.material-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
}

.material-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.material-card__head > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-weight: 800;
}

.material-card__head small { color: #dbe9e6; }
.material-card__head .is-up { color: #ffd5d5; }
.material-card__head .is-down { color: #bdeedc; }
.material-card h3 { margin: 18px 0 6px; color: #fff; font-size: 18px; }
.material-card__price { display: flex; align-items: baseline; gap: 8px; }
.material-card__price strong { color: #fff; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.03em; }
.material-card__price span { color: #dbe9e6; font-size: 13px; }
.material-card p { margin: 12px 0 0; color: #bcd0d9; font-size: 13px; }

.price-hub { padding-top: 56px; padding-bottom: 56px; }
.price-group + .price-group { margin-top: 58px; }
.price-card-grid,
.related-price-grid,
.report-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card,
.related-price-grid a,
.report-index-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 52, 79, .06);
  color: var(--ink);
}

.price-card:hover,
.related-price-grid a:hover,
.report-index-card:hover { border-color: var(--green); transform: translateY(-2px); }
.price-card > span,
.related-price-grid span { color: var(--green); font-size: 13px; font-weight: 700; }
.price-card h3 { margin: 10px 0 8px; font-size: 20px; }
.price-card p { min-height: 52px; color: var(--muted); }
.price-card > strong,
.related-price-grid small,
.report-index-card span { color: var(--blue); font-weight: 700; }

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.price-main { padding: clamp(24px, 4vw, 44px); }
.price-notice { color: var(--muted); }
.price-table-wrap { margin: 24px 0; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th,
.price-table td { padding: 15px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table thead th { background: var(--soft); color: var(--blue); }
.price-table tbody th { min-width: 160px; color: var(--ink); }
.price-table td:nth-child(2) { min-width: 150px; color: var(--green); }
.price-basis { padding: 18px; border-radius: 10px; background: var(--soft); color: var(--muted); font-size: 14px; }
.price-aside { display: grid; gap: 18px; }
.price-aside > div { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.price-aside h2 { margin-top: 0; font-size: 19px; }
.price-aside li { margin: 10px 0; color: var(--muted); }
.related-price-grid a { display: flex; min-height: 142px; flex-direction: column; gap: 10px; }
.related-price-grid strong { font-size: 19px; }
.related-price-grid small { margin-top: auto; }

.report-page { max-width: 1040px; }
.report-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.report-material-list { display: grid; gap: 18px; }
.report-material {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.report-material > div > span { color: var(--green); font-weight: 800; }
.report-material h2 { margin: 8px 0; }
.report-material > div > strong { display: block; color: var(--blue); font-size: 28px; }
.report-material > div > small { display: block; margin-top: 10px; color: var(--muted); }
.report-material table { width: 100%; border-collapse: collapse; }
.report-material th,
.report-material td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; }
.report-note,
.report-news,
.report-sources { margin-top: 24px; padding: 28px; }
.report-news { border-radius: 14px; background: var(--soft); }
.report-news ul { margin: 0; padding: 0; list-style: none; }
.report-news li { display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.report-news li:last-child { border-bottom: 0; }
.report-news span,
.report-news time { color: var(--muted); font-size: 13px; }
.report-index-card { min-height: 145px; }
.report-index-card time,
.report-index-card strong,
.report-index-card span { display: block; }
.report-index-card time { color: var(--green); font-weight: 800; }
.report-index-card strong { margin: 12px 0; font-size: 20px; }

@media (max-width: 900px) {
  .material-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-layout { grid-template-columns: 1fr; }
  .price-card-grid,
  .related-price-grid,
  .report-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .material-grid,
  .price-card-grid,
  .related-price-grid,
  .report-index-grid,
  .report-material { grid-template-columns: 1fr; }
  .report-news li { grid-template-columns: 1fr; gap: 4px; }
  .report-head { align-items: flex-start; flex-direction: column; }
}
