
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1c1c1c;
  background: #f6f6f4;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum";
}

/* ========== 顶部细条 ========== */
.topline {
  background: #1c1c1c;
  color: #a8a8a8;
  font-size: 12px;
  padding: 6px 0;
  letter-spacing: 0.2px;
}
.topline-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topline a { color: #a8a8a8; text-decoration: none; }
.topline a:hover { color: #fff; }
.topline .tl-right { display: flex; gap: 20px; }

/* ========== 导航栏 ========== */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e2e2e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: #9E2A2B;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -1px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .nlt-main {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: 0.5px;
}
.nav-logo-text .nlt-sub {
  font-size: 10px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  height: 100%;
}
.nav-menu > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 18px;
  height: 100%;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-menu > li > a:hover { color: #9E2A2B; }
.nav-menu > li > a.active {
  color: #9E2A2B;
  font-weight: 600;
  border-bottom-color: #9E2A2B;
}
.nav-menu .arrow { font-size: 9px; opacity: 0.5; }
.nav-cta {
  background: #9E2A2B !important;
  color: #fff !important;
  font-weight: 600;
  padding: 9px 20px !important;
  height: auto !important;
  border-bottom: none !important;
  margin-left: 12px;
}
.nav-cta:hover { background: #7d1f20 !important; color: #fff !important; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e2e2e0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.18s;
  z-index: 1001;
}
.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: all 0.12s;
  white-space: nowrap;
}
.dropdown li a:hover { background: #f6f6f4; color: #9E2A2B; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: #444; }

/* ========== Hero（两列） ========== */
.hero {
  background: #fff;
  border-bottom: 1px solid #e2e2e0;
  padding: 56px 0 0;
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-left { padding-bottom: 56px; }
.hero-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  color: #9E2A2B;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: #1c1c1c;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: #9E2A2B;
}
.hero-lead {
  font-size: 16px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 620px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.15s;
  cursor: pointer;
  border: 1.5px solid transparent;
  font-family: inherit;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: #9E2A2B;
  color: #fff;
}
.btn-primary:hover { background: #7d1f20; }
.btn-ghost {
  background: transparent;
  color: #1c1c1c;
  border-color: #d0d0ce;
}
.btn-ghost:hover { border-color: #9E2A2B; color: #9E2A2B; }

.hero-right {
  background: #1c1c1c;
  color: #fff;
  padding: 36px 32px 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.hero-data-title {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-data-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #333;
}
.hero-data-row:last-child { border-bottom: none; }
.hero-data-row .hdr-label {
  font-size: 13px;
  color: #a8a8a8;
  letter-spacing: 0.5px;
}
.hero-data-row .hdr-value {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}
.hero-data-row .hdr-value small {
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-left: 3px;
}
.hero-data-row .hdr-value.accent { color: #e8b04b; }

/* ========== 主内容 ========== */
.main-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid #e2e2e0;
}
.section:last-child { border-bottom: none; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head-left { display: flex; align-items: baseline; gap: 16px; }
.section-num {
  font-size: 13px;
  color: #9E2A2B;
  font-weight: 700;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: -0.3px;
}
.section-desc {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
  max-width: 720px;
  line-height: 1.7;
}
.section-link {
  font-size: 13px;
  color: #9E2A2B;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.section-link:hover { border-bottom-color: #9E2A2B; }

/* ========== 快捷入口 ========== */
.entry-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e2e0;
  border-left: 1px solid #e2e2e0;
}
.entry-item {
  padding: 32px 28px;
  border-right: 1px solid #e2e2e0;
  border-bottom: 1px solid #e2e2e0;
  text-decoration: none;
  transition: background 0.15s;
  display: block;
}
.entry-item:hover { background: #fff; }
.entry-num {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
  display: block;
}
.entry-name {
  font-size: 17px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.entry-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}
.entry-item:hover .entry-name { color: #9E2A2B; }

/* ========== 资格条件 ========== */
.qualify-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid #e2e2e0;
}
.qualify-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid #e2e2e0;
}
.qualify-row:nth-child(odd) {
  border-right: 1px solid #e2e2e0;
  padding-right: 40px;
}
.qualify-row:nth-child(even) { padding-left: 40px; }
.qualify-idx {
  font-size: 13px;
  color: #9E2A2B;
  font-weight: 700;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  padding-top: 2px;
}
.qualify-body { flex: 1; }
.qualify-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.qualify-body p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
}

.qualify-row.featured {
  background: linear-gradient(135deg, #fffbf5 0%, #fff8ed 100%);
  border: 1.5px solid #e8b04b;
  border-right: 1.5px solid #e8b04b;
  padding: 26px 28px;
  position: relative;
  grid-column: 1 / -1;
}
.qualify-row.featured .qualify-idx {
  color: #b8860b;
}
.qualify-row.featured .qualify-body h3 {
  color: #1c1c1c;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.qualify-row.featured .qualify-body h3 .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #9E2A2B;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.qualify-row.featured .qualify-body .q-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 14px;
}
.qualify-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.qs-item {
  background: #fff;
  border: 1px solid #f0e0c0;
  border-radius: 4px;
  padding: 14px 16px;
}
.qs-item .qs-title {
  font-size: 13px;
  font-weight: 700;
  color: #9E2A2B;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.qs-item .qs-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}
.qs-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #9E2A2B;
  text-decoration: none;
  padding: 8px 18px;
  background: #fff;
  border: 1.5px solid #9E2A2B;
  border-radius: 2px;
  transition: all 0.15s;
}
.qs-cta:hover {
  background: #9E2A2B;
  color: #fff;
}

/* ========== 九大指标 ========== */
.indicator-table {
  width: 100%;
  border-collapse: collapse;
}
.indicator-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px 14px 0;
  border-bottom: 2px solid #1c1c1c;
}
.indicator-table thead th:last-child { text-align: right; padding-right: 0; }
.indicator-table tbody tr {
  border-bottom: 1px solid #e2e2e0;
  transition: background 0.15s;
}
.indicator-table tbody tr:hover { background: #fafaf8; }
.indicator-table tbody td {
  padding: 22px 20px 22px 0;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}
.indicator-table tbody td:last-child {
  text-align: right;
  padding-right: 0;
  white-space: nowrap;
}
.ind-name {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.ind-name .ind-idx {
  font-size: 12px;
  color: #bbb;
  font-weight: 500;
  margin-right: 6px;
  font-variant-numeric: tabular-nums;
}
.ind-rules {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
.ind-rules span {
  display: inline-block;
  margin-right: 16px;
}
.ind-rules span::before {
  content: '·';
  color: #9E2A2B;
  font-weight: 700;
  margin-right: 4px;
}
.ind-weight {
  font-size: 15px;
  font-weight: 700;
  color: #9E2A2B;
  font-variant-numeric: tabular-nums;
}
.ind-weight small {
  font-size: 11px;
  color: #999;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  letter-spacing: 0;
}

/* ========== 分数线 ========== */
.scoreline-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid #e2e2e0;
  border-left: 1px solid #e2e2e0;
}
.scoreline-cell {
  padding: 32px 24px;
  border-right: 1px solid #e2e2e0;
  border-bottom: 1px solid #e2e2e0;
  background: #fff;
}
.scoreline-cell.current { background: #1c1c1c; color: #fff; }
.scoreline-year {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.scoreline-cell.current .scoreline-year { color: #888; }
.scoreline-score {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.scoreline-cell.current .scoreline-score { color: #e8b04b; }
.scoreline-delta {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
  font-variant-numeric: tabular-nums;
}
.scoreline-delta.up { color: #9E2A2B; }
.scoreline-cell.current .scoreline-delta.up { color: #e8b04b; }

/* ========== 申报流程 ========== */
.flow-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid #1c1c1c;
}
.flow-cell {
  padding: 32px 24px 28px;
  border-right: 1px solid #e2e2e0;
  position: relative;
}
.flow-cell:last-child { border-right: none; }
.flow-num {
  font-size: 32px;
  font-weight: 700;
  color: #e2e2e0;
  letter-spacing: -1px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.flow-cell:hover .flow-num { color: #9E2A2B; }
.flow-title {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.flow-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.65;
}

/* ========== 文章列表 ========== */
.article-list {
  border-top: 1px solid #e2e2e0;
}
.article-row {
  display: grid;
  grid-template-columns: 100px 1fr 130px;
  gap: 32px;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid #e2e2e0;
  text-decoration: none;
  transition: all 0.15s;
}
.article-row:hover { padding-left: 10px; }
.article-row:hover .article-row-title { color: #9E2A2B; }
.article-row-date {
  font-size: 13px;
  color: #999;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.article-row-title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  line-height: 1.5;
  letter-spacing: -0.2px;
  transition: color 0.15s;
  margin-bottom: 6px;
}
.article-row-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}
.article-row-tag {
  font-size: 12px;
  color: #666;
  text-align: right;
  letter-spacing: 0.5px;
}

/* ========== 服务 ========== */
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e2e0;
  border-left: 1px solid #e2e2e0;
}
.service-cell {
  padding: 36px 28px;
  border-right: 1px solid #e2e2e0;
  border-bottom: 1px solid #e2e2e0;
  background: #fff;
}
.service-idx {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}
.service-name {
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.service-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.75;
}

/* ========== FAQ ========== */
.faq-list { border-top: 1px solid #e2e2e0; }
.faq-item { border-bottom: 1px solid #e2e2e0; }
.faq-item summary {
  padding: 22px 40px 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  list-style: none;
  position: relative;
  letter-spacing: -0.2px;
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: #999;
  transition: all 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: #9E2A2B;
}
.faq-item summary:hover { color: #9E2A2B; }
.faq-answer {
  padding: 0 80px 24px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.85;
}

/* ========== 咨询表单区 ========== */
.form-section {
  background: #fff;
  border-top: 1px solid #e2e2e0;
  padding: 64px 0;
}
.form-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.form-left .fs-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  color: #9E2A2B;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-left h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.form-left .fs-lead {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 28px;
}
.form-left .fs-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-left .fs-points li {
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e2e0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-left .fs-points li:last-child { border-bottom: none; }
.form-left .fs-points li::before {
  content: '✓';
  color: #9E2A2B;
  font-weight: 700;
  flex-shrink: 0;
}

.form-right {
  background: #fafaf8;
  border: 1px solid #e2e2e0;
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-field label .req { color: #9E2A2B; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #1c1c1c;
  background: #fff;
  border: 1px solid #d8d8d5;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #9E2A2B;
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}
.form-submit button {
  width: 100%;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #9E2A2B;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.5px;
  transition: background 0.15s;
}
.form-submit button:hover { background: #7d1f20; }
.form-tip {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
}
.form-success {
  display: none;
  padding: 16px;
  background: #f0f8f0;
  border: 1px solid #b8d8b8;
  color: #2d7a2d;
  font-size: 14px;
  text-align: center;
  border-radius: 2px;
  margin-top: 12px;
}

/* ========== 页脚 ========== */
.site-footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #a8a8a8;
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #9E2A2B 0%, #e8b04b 50%, #9E2A2B 100%);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* 上方：左右两端对齐（介绍在左，二维码在右） */
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #9E2A2B, #e8b04b);
  border-radius: 2px;
}

.footer-about {
  font-size: 13px;
  color: #999;
  line-height: 1.9;
  max-width: 720px;
}
.footer-about strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, #fff 0%, #e8b04b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-about span {
  display: block;
  margin-top: 6px;
  color: #999;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding-left: 0;
}
.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #e8b04b;
  transition: width 0.25s;
}
.footer-col ul li a:hover {
  color: #e8b04b;
}
.footer-col ul li a:hover::before {
  width: 14px;
}

.footer-contact {
  font-size: 13px;
  color: #999;
  line-height: 2;
}
.footer-contact .fc-item {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-contact .fc-label {
  color: #666;
  flex-shrink: 0;
  width: 44px;
}

.footer-qr {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.25s;
}
.footer-qr:hover {
  background: rgba(158, 42, 43, 0.15);
  border-color: rgba(232, 176, 75, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158, 42, 43, 0.2);
}
.footer-qr .qr-box {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 11px;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
}
.footer-qr .qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-qr .qr-text .qr-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-qr .qr-text .qr-desc {
  font-size: 12.5px;
  color: #999;
  line-height: 1.7;
}

/* ========== 免责声明以下：单列 ========== */
.footer-legal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
.legal-block {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.25s;
}
.legal-block:hover {
  background: rgba(255, 255, 255, 0.07);
}
.legal-block h5 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-block h5::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #e8b04b;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232, 176, 75, 0.6);
}
.legal-block p {
  font-size: 12.5px;
  color: #999;
  line-height: 1.85;
  margin-bottom: 8px;
}
.legal-block p:last-child {
  margin-bottom: 0;
}
.legal-block strong {
  color: #e8b04b;
  font-weight: 600;
}

/* ========== 页脚底部 ========== */
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #777;
  line-height: 1.9;
}
.footer-bottom a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #e8b04b;
}
.footer-bottom .fb-left {
  flex: 1;
  min-width: 240px;
}
.footer-bottom .fb-right {
  text-align: right;
  color: #666;
}

/* ========== 响应式 ========== */
@media (max-width: 1200px) {
  .topline-inner,
  .nav-inner,
  .hero-inner,
  .main-wrap,
  .form-inner,
  .footer-inner {
    padding: 0 24px;
  }
  .nav-menu > li > a { padding: 0 14px; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid #e2e2e0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: none;
    height: auto;
  }
  .nav-menu.active { display: flex; }
  .nav-menu > li { height: auto; display: block; }
  .nav-menu > li > a {
    padding: 14px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }
  .nav-menu > li > a.active {
    border-bottom: none;
    border-left-color: #9E2A2B;
  }
  .nav-cta { margin: 8px 24px; text-align: center; justify-content: center; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f0f0ee;
    padding: 0;
    display: none;
  }
  .nav-menu > li:hover .dropdown { display: none; }
  .nav-menu > li.open .dropdown { display: block; }
  .dropdown li a { padding: 12px 24px 12px 44px; }

  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-left { padding-bottom: 40px; }
  .hero-right { padding: 32px 28px 0; }

  .entry-list { grid-template-columns: repeat(2, 1fr); }
  .qualify-list { grid-template-columns: 1fr; }
  .qualify-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .qualify-row:nth-child(even) { padding-left: 0; }
  .qualify-services { grid-template-columns: 1fr; }
  .scoreline-wrap { grid-template-columns: repeat(3, 1fr); }
  .flow-row { grid-template-columns: repeat(3, 1fr); }
  .flow-cell:nth-child(3n) { border-right: none; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-cell:nth-child(2n) { border-right: none; }

  .form-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; }
  .footer-bottom .fb-right { text-align: left; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .topline { display: none; }
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-menu { top: 60px; }
  .nav-logo-text .nlt-sub { display: none; }

  .hero { padding: 40px 0 0; }
  .hero-inner { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  .hero-lead { font-size: 14px; }
  .hero-left { padding-bottom: 32px; }
  .hero-right { padding: 24px 20px 0; }
  .hero-data-row { padding: 12px 0; }
  .hero-data-row .hdr-value { font-size: 22px; }

  .main-wrap { padding: 0 16px; }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  .section-title { font-size: 20px; }

  .entry-list { grid-template-columns: 1fr; }
  .entry-item { padding: 20px 18px; }

  .qualify-row { padding: 20px 0; }
  .qualify-body h3 { font-size: 15px; }
  .qualify-row.featured { padding: 22px 20px; }
  .qualify-row.featured .qualify-body h3 { font-size: 16px; }

  .indicator-table thead { display: none; }
  .indicator-table tbody tr { display: block; padding: 20px 0; }
  .indicator-table tbody td { display: block; padding: 0 0 8px 0; }
  .indicator-table tbody td:last-child { text-align: left; padding-top: 6px; }

  .scoreline-wrap { grid-template-columns: repeat(2, 1fr); }
  .scoreline-cell { padding: 20px 16px; }
  .scoreline-score { font-size: 22px; }

  .flow-row { grid-template-columns: repeat(2, 1fr); }
  .flow-cell { padding: 20px 16px; }
  .flow-cell:nth-child(2n) { border-right: none; }
  .flow-cell:nth-child(3n) { border-right: 1px solid #e2e2e0; }
  .flow-num { font-size: 24px; }

  .article-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .article-row-tag { text-align: left; }

  .service-list { grid-template-columns: 1fr; }
  .service-cell { padding: 24px 20px; }

  .faq-item summary { font-size: 15px; padding: 18px 32px 18px 0; }
  .faq-answer { padding: 0 0 20px 0; font-size: 13px; }

  .form-section { padding: 40px 0; }
  .form-inner { padding: 0 16px; gap: 32px; }
  .form-left h2 { font-size: 22px; }
  .form-right { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  .site-footer { padding: 40px 0 24px; }
  .footer-inner { padding: 0 16px; }
  .footer-qr { flex-direction: column; text-align: center; }
}