:root {
  --primary: #2563eb;
  --primary-dark: #172554;
  --primary-mid: #38bdf8;
  --primary-soft: #eff6ff;
  --accent: #f97316;
  --accent-soft: #fff7ed;
  --accent-border: #fed7aa;
  --text: #0f172a;
  --muted: #64748b;
  --border: #d7e4f7;
  --page: #f8fafc;
  --card: #ffffff;
  --shadow: 0 12px 30px rgba(37, 99, 235, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--page);
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #172554;
  color: #dbeafe;
  font-size: 12px;
}

.top-strip-inner,
.top-strip-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 32px;
}

.top-strip-links a {
  color: #dbeafe;
}

.top-qr-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.top-qr-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  border: 1px solid rgba(219, 234, 254, 0.24);
  border-radius: 4px;
  padding: 0 7px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.top-qr-icon {
  width: 13px;
  height: 13px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, currentColor 2px, transparent 2px) 0 0 / 5px 5px,
    linear-gradient(currentColor 2px, transparent 2px) 0 0 / 5px 5px,
    rgba(255, 255, 255, 0.12);
}

.top-qr-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 164px;
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.top-qr-popover img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 8px;
  background: #fff;
}

.top-qr-popover strong {
  font-size: 13px;
}

.top-qr-contact:hover .top-qr-popover,
.top-qr-contact:focus-within .top-qr-popover {
  opacity: 1;
  transform: translateY(0);
}

.top-consult-link {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 4px;
  padding: 0 8px;
  color: #fff !important;
  background: var(--accent);
  font-weight: 600;
}

.brand-search-row {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 228, 247, 0.82);
}

.brand-search-inner {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 78px;
}

.brand-block {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-block strong {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-block span {
  color: var(--muted);
  font-size: 12px;
}

.brand-block img {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 42px;
}

.global-search {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto 88px;
  height: 44px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 5px;
  overflow: hidden;
  background: var(--card);
}

.global-search span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 13px;
  font-weight: 600;
}

.global-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 12px;
  color: var(--text);
}

.global-search-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 8px;
  background: #fff;
}

.global-search-tags button {
  min-height: 24px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 99px;
  padding: 0 8px;
  color: var(--primary);
  background: #fff;
  font-size: 12px;
}

.global-search-tags button:hover {
  border-color: rgba(37, 99, 235, 0.28);
  background: var(--primary-soft);
}

.global-search > button {
  border: 0;
  color: #fff;
  background: var(--primary);
  font-weight: 600;
}

.header-contact {
  position: relative;
  display: grid;
  justify-items: end;
  gap: 0;
  text-align: right;
}

.header-contact a {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.header-contact span {
  color: var(--muted);
  font-size: 12px;
}

.header-qr-trigger {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  padding: 4px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.header-contact-qr {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  background: #fff;
}

.header-qr-trigger span {
  position: absolute;
  inset: auto 4px 4px;
  border-radius: 4px;
  color: #fff;
  background: rgba(37, 99, 235, 0.94);
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.header-contact-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 164px;
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(37, 99, 235, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease;
}

.header-contact-popover img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 8px;
  background: #fff;
}

.header-contact-popover strong {
  font-size: 13px;
  font-weight: 700;
}

.header-contact:hover .header-contact-popover,
.header-contact:focus-within .header-contact-popover {
  opacity: 1;
  transform: translateY(0);
}

.header-consult-button {
  min-height: 36px;
  border-radius: 5px;
  padding: 0 14px;
  color: #fff !important;
  background: var(--primary);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 36px;
}

.main-nav {
  border-top: 1px solid rgba(215, 228, 247, 0.72);
  border-bottom: 1px solid rgba(37, 99, 235, 0.16);
  background: #fff;
  color: #334155;
}

.main-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #334155;
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--primary);
  background: transparent;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.category-entry-wrap {
  position: relative;
}

.category-entry-wrap:hover .mega-filter-menu {
  display: grid;
}

.mega-filter-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(760px, calc(100vw - 32px));
  padding: 16px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 18px 45px rgba(37, 99, 235, .14);
}

.mega-filter-group {
  padding: 10px;
  border-radius: 6px;
}

.mega-filter-group:hover {
  background: var(--primary-soft);
}

.mega-filter-group h3 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--primary);
}

.mega-filter-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.mega-filter-group a {
  padding: 0;
  color: #475569;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.category-entry {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 0 18px;
  margin-right: 4px;
  border-right: 1px solid rgba(37, 99, 235, 0.22);
  color: #fff !important;
  background: var(--primary);
}

.page-title-band,
.detail-hero {
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
  background: var(--primary);
  color: #fff;
}

.page-title-band .site-shell,
.detail-hero-grid {
  padding: 34px 0;
}

.page-title-band h1,
.detail-hero h1,
.advisor-hero-card h1,
.article-detail h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.18;
}

.page-title-band h1 {
  font-size: 34px;
}

.page-title-band p {
  max-width: 700px;
  margin: 8px 0 0;
  color: #dbeafe;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.page-title-band .eyebrow,
.detail-hero .eyebrow,
.advisor-hero-card .eyebrow {
  color: #dbeafe;
}

.route-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #eff6ff;
}

.home-hero {
  padding: 18px 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(56, 189, 248, 0.2), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(249, 115, 22, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0, var(--page) 100%);
}

.hero-commerce-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 280px;
  gap: 14px;
}

.hot-filter-panel,
.lead-panel,
.filter-panel,
.company-card,
.recommendation-panel,
.about-service,
.detail-main,
.side-panel,
.article-detail,
.news-row,
.advisor-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hot-filter-panel,
.lead-panel,
.recommendation-panel,
.advisor-card {
  padding: 14px;
}

.lead-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 516px;
  max-height: 516px;
}

.panel-title {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hot-filter-group {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.hot-filter-group:first-of-type {
  border-top: 0;
}

.hot-filter-group strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 14px;
}

.hot-filter-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.hot-filter-group a {
  color: var(--muted);
  font-size: 13px;
}

.advisor-hero-card {
  position: relative;
  isolation: isolate;
  min-height: 320px;
  padding: 30px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(215, 228, 247, 0.9);
  color: #fff;
  background: var(--primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 42px rgba(37, 99, 235, 0.18);
}

.advisor-hero-card::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.advisor-hero-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  background: var(--accent);
}

.advisor-hero-card > * {
  position: relative;
  z-index: 1;
}

.advisor-hero-card h1 {
  max-width: 680px;
  font-size: 38px;
}

.advisor-hero-card > p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: #eef4ff;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.primary-action,
.ghost-action,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 5px;
  padding: 0 16px;
  font-weight: 600;
}

.primary-action {
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
}

.ghost-action {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--primary);
  background: #fff;
}

.secondary-link {
  border: 1px solid var(--border);
  color: var(--primary);
  background: #fff;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.trust-metrics div {
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.13);
}

.trust-metrics strong,
.trust-metrics span {
  display: block;
}

.trust-metrics span {
  margin-top: 3px;
  color: #eef4ff;
  font-size: 12px;
}

.lead-panel p,
.advisor-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 10px;
}

.lead-form--compact {
  gap: 9px;
}

.lead-form input,
.lead-form select,
.lead-form button,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0 10px;
  color: var(--text);
  background: #fff;
}

.lead-form button {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
  font-weight: 600;
}

.lead-type-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.lead-type-tabs button {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--muted);
}

.lead-type-tabs button.active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.lead-choice-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 22px;
}

.lead-choice-row button {
  position: relative;
  width: auto;
  min-height: 22px;
  border: 0;
  padding: 0 0 0 17px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
}

.lead-choice-row button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  transform: translateY(-50%);
}

.lead-choice-row button.active {
  color: var(--primary);
  font-weight: 600;
}

.lead-choice-row button.active::before {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 0 43%, transparent 48%);
}

.lead-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 7px;
  background: #fff;
}

.lead-input-row input {
  min-width: 0;
  height: 36px;
  min-height: 36px;
  border: 0;
  outline: 0;
  padding: 0 8px;
  font-size: 14px;
}

.lead-input-row button {
  min-height: 36px;
  border: 0;
  border-radius: 5px;
  padding: 0 10px;
}

.lead-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 20px;
}

.lead-speed-copy {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.lead-message {
  min-height: 20px;
  font-size: 13px;
}

.lead-message[data-type="success"] {
  color: #0f7a3a;
}

.lead-message[data-type="error"] {
  color: #c62828;
}

.lead-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.lead-promise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 14px;
  color: var(--primary);
  font-size: 12px;
}

.lead-promise-strip span {
  position: relative;
  padding-left: 10px;
}

.lead-promise-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.deal-feed {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 8px;
  flex: 1;
  min-height: 0;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(215, 228, 247, 0.9);
}

.deal-feed-head {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.deal-feed-window {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.deal-feed-list {
  display: grid;
  gap: 8px;
}

.deal-feed.is-loaded .deal-feed-list {
  animation: deal-feed-scroll 24s linear infinite;
}

.deal-feed-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 56px;
  gap: 7px;
  align-items: center;
  min-height: 28px;
  color: var(--muted);
  font-size: 12px;
}

.deal-feed-item span {
  color: var(--primary);
}

.deal-feed-item strong {
  overflow: hidden;
  color: #334155;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deal-feed-item em {
  font-style: normal;
  text-align: right;
  white-space: nowrap;
}

@keyframes deal-feed-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.lead-contact-cta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.lead-contact-cta strong {
  color: var(--text);
  font-size: 14px;
}

.lead-contact-cta span {
  color: var(--muted);
  font-size: 12px;
}

.contact-modal-open {
  overflow: hidden;
}

.contact-service-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  padding: 16px;
}

.contact-service-modal.is-open {
  display: grid;
  place-items: center;
}

.contact-service-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 16%, rgba(56, 189, 248, 0.22), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(37, 99, 235, 0.2), transparent 28%),
    rgba(13, 19, 33, 0.52);
  backdrop-filter: blur(3px);
}

.contact-service-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96)),
    #fff;
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.2);
}

.contact-service-dialog--form-only {
  width: min(500px, 100%);
}

.contact-service-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1;
}

.contact-service-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-right: 38px;
}

.contact-service-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-service-head span {
  color: var(--muted);
  font-size: 13px;
}

.contact-service-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.contact-input-row input {
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  padding: 0 10px;
  color: var(--text);
  background: transparent;
}

.contact-submit-button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.contact-choice-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-height: 24px;
}

.contact-choice-row button {
  position: relative;
  border: 0;
  padding: 0 0 0 17px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
}

.contact-choice-row button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 1px solid #d8c8b5;
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-choice-row button.active {
  color: var(--primary);
  font-weight: 600;
}

.contact-choice-row button.active::before {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 0 43%, transparent 48%);
}

.contact-choice-row .lead-message {
  flex: 1 1 160px;
  min-height: 0;
  margin-left: auto;
  text-align: right;
}

.contact-service-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.contact-qr-block {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.contact-qr-block img {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.contact-qr-promise {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--primary);
  background: rgba(239, 246, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.contact-info-link--online {
  border-color: rgba(251, 146, 60, 0.38);
  color: #b45309;
  background: rgba(255, 247, 237, 0.92);
}

.captcha-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(15, 23, 42, 0.45);
}

.captcha-dialog {
  position: relative;
  width: min(360px, 100%);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.24);
}

.captcha-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 22px;
  line-height: 1;
}

.captcha-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.captcha-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 6px;
  background: #eaf2ff;
}

.captcha-bg,
.captcha-slider {
  display: block;
  width: 100%;
  user-select: none;
  pointer-events: none;
}

.captcha-slider {
  position: absolute;
  top: 0;
  left: 0;
}

.captcha-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  overflow: hidden;
}

.captcha-handle {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 38px;
  border: 0;
  border-right: 1px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
  touch-action: none;
}

.captcha-handle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  transform: rotate(45deg);
}

.quick-entry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.quick-entry-grid a {
  display: grid;
  gap: 4px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.quick-entry-grid strong {
  color: var(--primary);
}

.quick-entry-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section-block,
.recommendation-bands,
.about-service,
.company-list-page,
.detail-layout,
.news-page-layout,
.article-layout {
  margin-top: 22px;
}

.section-block {
  position: relative;
  padding-top: 20px;
}

.section-block::before,
.recommendation-bands::before,
.about-service::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.18), transparent);
}

.recommendation-bands,
.about-service {
  position: relative;
  padding-top: 20px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 600;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 99px;
  padding: 0 10px;
  color: var(--primary);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
}

.section-title-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title-line h2 {
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
}

.section-title-line span {
  color: var(--muted);
  font-size: 14px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.company-card {
  padding: 14px;
}

.company-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.company-card-actions .secondary-link {
  flex: 1 1 96px;
}

.contact-card-button,
.row-action button,
.advisor-card button {
  border: 1px solid var(--primary);
}

.card-title-row,
.company-row-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-title-row h3,
.company-row-title h2 {
  margin: 0;
  color: #26364d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.company-row-title h2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.card-title-row span,
.company-row-title > span {
  flex: none;
  border-radius: 99px;
  padding: 3px 8px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 600;
}

.company-location-badge {
  flex: none;
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.meta-list,
.compact-meta,
.detail-grid {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.meta-list {
  grid-template-columns: repeat(2, 1fr);
}

.meta-list div,
.compact-meta div,
.detail-grid div {
  min-width: 0;
}

.meta-list dt,
.compact-meta dt,
.detail-grid dt {
  color: #888;
  font-size: 12px;
}

.meta-list dd,
.compact-meta dd,
.detail-grid dd {
  margin: 2px 0 0;
  color: #222;
  font-size: 14px;
  font-weight: 400;
}

.price-text {
  color: var(--accent) !important;
}

.recommendation-bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.compact-heading h2 {
  color: #26364d;
  font-size: 18px;
  font-weight: 500;
}

.mini-company-list,
.guide-panel {
  display: grid;
  gap: 10px;
}

.mini-company-list a,
.guide-panel > a,
.side-link {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.mini-company-list strong,
.guide-panel > a strong,
.side-link strong {
  color: #26364d;
  font-size: 14px;
  font-weight: 500;
}

.mini-company-list a:first-child,
.guide-panel > a:first-of-type {
  border-top: 0;
}

.mini-company-list span,
.side-link span {
  color: var(--muted);
  font-size: 12px;
}

.about-service {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 24px;
  margin-bottom: 28px;
}

.about-service h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 26px;
}

.about-service p {
  margin: 0;
  color: var(--muted);
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-steps span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-radius: 6px;
  padding: 0 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 600;
}

.company-list-page {
  display: grid;
  gap: 16px;
}

.marketplace-filter {
  padding: 16px;
}

.filter-chip-section,
.flat-filter-group {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.filter-chip-title,
.flat-filter-group > span {
  color: var(--text);
  font-weight: 600;
  line-height: 32px;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  min-height: 32px;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  font-size: 13px;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

.require-filter-chip {
  border-color: #f59e0b;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 600;
}

.require-filter-chip.active,
.require-filter-chip:hover {
  border-color: #f59e0b;
  background: #f59e0b;
  color: #fff;
}

.advanced-filter-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.primary-filter-grid label,
.advanced-filter-grid label {
  display: block;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.primary-filter-grid .primary-action {
  align-self: end;
  min-height: 38px;
}

.flat-filter-groups {
  display: grid;
}

.advanced-filter {
  padding-top: 10px;
}

.advanced-filter-grid select {
  width: 118px;
  height: 32px;
  border: 1px solid #d7e0ec;
  border-radius: 4px;
  padding: 0 9px;
  color: #222;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
}

.advanced-filter-grid option {
  font-weight: 400;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
}

.list-toolbar strong {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
}

.list-toolbar span {
  color: var(--muted);
  font-size: 13px;
}

.company-list {
  display: grid;
  gap: 12px;
}

.company-row {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.company-row:hover {
  border-color: #bfd1ea;
  box-shadow: 0 10px 26px rgba(15, 38, 83, .1);
}

.company-row-title p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compact-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border-radius: 99px;
  padding: 4px 9px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  font-weight: 600;
}

.row-action {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 7px;
  border-left: 1px solid var(--border);
  padding-left: 18px;
  text-align: right;
}

.row-action span,
.row-action small {
  color: var(--muted);
  font-size: 12px;
}

.row-action strong {
  color: var(--accent);
  font-size: 22px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pager a,
.pager button,
.pager span {
  min-width: 36px;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text);
  background: #fff;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pager .active {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: center;
}

.detail-hero h1 {
  font-size: 36px;
}

.price-panel {
  padding: 18px;
  text-align: center;
}

.price-panel span {
  color: var(--muted);
  font-size: 13px;
}

.price-panel strong {
  display: block;
  margin: 4px 0 12px;
  color: var(--accent);
  font-size: 28px;
}

.detail-layout,
.article-layout,
.news-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.detail-main,
.article-detail {
  padding: 22px;
}

.detail-section:not(:first-child) {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.detail-section h2,
.detail-section h3,
.side-panel h2 {
  margin: 0 0 12px;
  color: var(--primary);
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid.two-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid div {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  background: #f8fbff;
}

.content-text {
  margin: 0;
  border-radius: 6px;
  padding: 14px;
  color: var(--text);
  background: #f8fbff;
  border: 1px solid var(--border);
}

.side-panel {
  padding: 14px;
}

.advisor-card {
  margin-bottom: 14px;
}

.compact-empty {
  padding: 12px;
  min-height: auto;
}

.news-title-band {
  background: var(--primary);
}

.news-page-layout {
  align-items: start;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-row {
  padding: 18px;
}

.news-row h2 {
  margin: 5px 0 8px;
  font-size: 22px;
}

.news-row span,
.news-row p,
.article-meta {
  color: var(--muted);
}

.news-row p {
  margin: 0;
}

.compact-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 13px;
}

.article-detail header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.article-detail h1 {
  color: var(--text);
  font-size: 34px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
  font-size: 13px;
}

.article-summary {
  margin-top: 18px;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 14px;
  color: var(--text);
  background: var(--primary-soft);
}

.article-content {
  margin-top: 20px;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.related-reading {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.related-reading h2 {
  margin: 0;
  color: var(--primary);
  font-size: 20px;
}

.breadcrumb-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb-row a {
  color: var(--primary);
}

.keyword-filter-row {
  align-items: center;
  border-top: 1px solid var(--border);
}

.keyword-input-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.keyword-filter-row input {
  width: 300px;
}

.keyword-filter-row input,
.inline-range input {
  height: 34px;
  border: 1px solid #d7e0ec;
  border-radius: 4px;
  padding: 0 10px;
}

.filter-chip {
  border-radius: 4px;
  line-height: 30px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}

.filter-chip.active {
  font-weight: 400;
}

.inline-range {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  color: var(--muted);
}

.inline-range input {
  width: 96px;
}

.secondary-action {
  height: 34px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: #fff;
  border-radius: 4px;
  padding: 0 14px;
}

.sort-tabs {
  display: flex;
  gap: 8px;
}

.sort-tabs button {
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.sort-tabs button.active {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.company-row-title h2,
.company-row-title h2 a {
  font-size: 18px;
  font-weight: 500;
}

.row-action strong {
  font-weight: 500;
}

.detail-summary-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.detail-summary-head h1 {
  margin: 0 0 10px;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 0;
}

.detail-grid div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.detail-grid dt {
  margin: 2px 0 0;
}

.detail-grid dd {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-grid.two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-grid .wide {
  grid-column: 1 / -1;
}

.detail-grid dd.content-text {
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.copy-code-button {
  min-height: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 8px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 12px;
  cursor: pointer;
}

.summary-price {
  min-width: 190px;
  text-align: right;
}

.summary-price span {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.summary-price strong {
  color: #c62828;
  font-size: 26px;
  font-weight: 600;
}

.transaction-process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.transaction-process li {
  position: relative;
  min-height: 112px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.transaction-process li::before {
  content: counter(list-item);
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
}

.transaction-process li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-weight: 600;
}

.transaction-process li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.hot-news-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 4px;
  background: #c62828;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  vertical-align: 2px;
}

.article-nav-links {
  display: grid;
  gap: 8px;
}

.company-side-link span,
.side-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.side-meta-row em {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
}

.side-meta-row b {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 600;
}

.recommended-companies {
  margin-top: 14px;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

.site-footer {
  margin-top: 32px;
  color: #dbeafe;
  background: #172554;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
}

.footer-grid strong,
.footer-grid span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.footer-grid p {
  margin: 0;
  color: #bfdbfe;
  font-size: 13px;
}

.footer-grid a {
  display: block;
  margin-top: 6px;
  color: #dbeafe;
  font-size: 13px;
}

.footer-contact-qr {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: #fff;
}

.footer-consult-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 5px;
  padding: 0 12px;
  color: #fff !important;
  background: var(--accent);
  font-weight: 600;
}

.footer-phone {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700;
}

.beian-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  color: #b7c6dc;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1024px) {
  .brand-search-inner,
  .hero-commerce-grid,
  .detail-hero-grid,
  .detail-layout,
  .article-layout,
  .news-page-layout,
  .about-service {
    grid-template-columns: 1fr;
  }

  .header-contact {
    justify-items: start;
    text-align: left;
  }

  .quick-entry-grid,
  .company-grid,
  .recommendation-bands,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .primary-filter-grid,
  .advanced-filter-grid {
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
  }

  .company-row {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    min-height: auto;
    max-height: none;
  }

  .row-action {
    justify-items: start;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 12px 0 0;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .top-strip-inner,
  .top-strip-links,
  .main-nav-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 0;
  }

  .global-search {
    grid-template-columns: 80px 1fr 72px;
  }

  .global-search-tags {
    display: none;
  }

  .advisor-hero-card h1,
  .detail-hero h1,
  .article-detail h1 {
    font-size: 28px;
  }

  .trust-metrics,
  .quick-entry-grid,
  .company-grid,
  .recommendation-bands,
  .footer-grid,
  .compact-meta,
  .detail-grid,
  .detail-grid.two-cols,
  .primary-filter-grid,
  .advanced-filter-grid,
  .service-steps {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .filter-chip-section,
  .flat-filter-group {
    grid-template-columns: 1fr;
  }

  .category-entry {
    margin-left: 0;
  }

  .mega-filter-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .keyword-filter-row,
  .detail-summary-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .inline-range {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .summary-price {
    text-align: left;
  }

  .transaction-process ol {
    grid-template-columns: 1fr;
  }

  .contact-service-dialog {
    padding: 20px;
  }

  .contact-service-head {
    display: grid;
    gap: 4px;
  }

  .contact-input-row {
    grid-template-columns: 1fr;
  }

  .contact-choice-row .lead-message {
    flex-basis: 100%;
    margin-left: 0;
    text-align: left;
  }
}
