:root {
  --ink: #17212b;
  --muted: #66717f;
  --line: #e6edf2;
  --green: #0b7a5c;
  --blue: #145aa0;
  --amber: #d88a1d;
  --bg: #f6f9f8;
  --paper: #ffffff;
  --shadow: 0 18px 50px rgba(21, 43, 63, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  line-height: 1.65;
}

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

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

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

.topbar {
  background: #102d46;
  color: #d9e7f1;
  font-size: 13px;
}

.topbar .wrap,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 26px rgba(23, 33, 43, .08);
}

.nav {
  min-height: 82px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.brand img {
  max-width: 178px;
  max-height: 54px;
  object-fit: contain;
}

.brand b {
  display: block;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.nav nav {
  display: flex;
  gap: 4px;
}

.nav nav a {
  padding: 12px 15px;
  border-radius: 6px;
  color: #253545;
  font-weight: 700;
}

.nav nav a:hover {
  color: var(--green);
  background: #ecf7f3;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--green);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 35, 53, .94) 0%, rgba(8, 35, 53, .72) 48%, rgba(8, 35, 53, .2) 100%),
    var(--hero) center/cover no-repeat;
}

.hero-inner {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead,
.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

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

.btn.ghost {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}

.section .btn.ghost,
.admin .btn.ghost {
  border-color: var(--line);
  color: var(--green);
}

.hero-stats {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
}

.hero-stats dt {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .78);
}

.section {
  padding: 78px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 4px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.section-title p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px;
  min-height: 238px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card span {
  color: var(--amber);
  font-size: 28px;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.service-card p,
.content-card p,
.about-grid p,
.contact-card p {
  color: var(--muted);
}

.process {
  background: #102d46;
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  padding: 76px 0;
}

.process .section-title p {
  color: rgba(255, 255, 255, .72);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.process b {
  display: block;
  font-size: 20px;
}

.process span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
}

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

.content-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(21, 43, 63, .08);
}

.content-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg);
}

.content-card div {
  padding: 20px;
}

.content-card small {
  color: var(--green);
  font-weight: 800;
}

.content-card h2,
.content-card h3 {
  margin: 8px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.content-card p {
  margin: 0;
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background: linear-gradient(90deg, #0b7a5c, #145aa0);
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-size: 34px;
}

.cta-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .82);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.faq-list,
.news-list {
  display: grid;
  gap: 12px;
}

.faq-list a,
.news-list a {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.faq-page {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.35;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.news-list time {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  padding: 96px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 45, 70, .96), rgba(16, 45, 70, .76)),
    url('/static/upload/image/20220906/1662460527765578.jpg') center/cover no-repeat;
}

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

.article {
  padding: 58px 0 88px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.article header {
  max-width: 880px;
  padding: 34px 0;
}

.article h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.article time {
  color: var(--muted);
}

.article-body {
  max-width: 920px;
  font-size: 17px;
}

.article-body img {
  width: min(100%, 860px);
  height: auto;
  margin: 22px 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body p {
  margin: 0 0 15px;
}

.article-body strong {
  color: var(--blue);
}

.related-content {
  max-width: 920px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related-content h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-grid a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-grid small {
  color: var(--green);
  font-weight: 800;
}

.related-grid span {
  font-weight: 800;
  line-height: 1.45;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
}

.about-grid h2,
.contact-card h2 {
  margin-top: 0;
}

.about-panel,
.contact-card {
  padding: 30px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-panel b {
  font-size: 24px;
}

.about-panel li {
  margin: 12px 0;
}

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

.qr-large img {
  width: 160px;
  margin: 0 auto 12px;
}

.site-footer {
  color: #d6e3ec;
  background: #0d2539;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr 150px;
  gap: 30px;
  padding: 52px 0;
}

.site-footer h3 {
  color: #fff;
  margin: 0 0 12px;
}

.site-footer p {
  margin: 0 0 10px;
}

.footer-phone {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.qr img {
  width: 120px;
  padding: 6px;
  background: #fff;
  border-radius: 6px;
}

.qr span {
  display: block;
  margin-top: 10px;
}

.copyright {
  padding: 16px 20px;
  color: #a8bdcb;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.float-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 30;
}

.float-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.float-action span {
  display: none;
}

.float-action strong {
  font: inherit;
}

.float-wechat {
  display: none;
  background: #118c3c;
}

.float-call {
  background: var(--amber);
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #edf0f4;
}

.admin-box {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  box-shadow: 0 14px 40px rgba(20, 28, 39, .12);
}

.admin-box {
  width: min(420px, calc(100% - 32px));
}

.admin-box label {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.admin-box input {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

.admin-console {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 204px 1fr;
  grid-template-rows: 50px 1fr;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.5;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  height: 50px;
  background: #20242c;
  color: #fff;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 204px;
  height: 50px;
  padding: 0 12px;
  color: #fff;
}

.admin-brand strong {
  font-size: 20px;
  line-height: 1;
}

.admin-brand span {
  padding: 1px 5px;
  color: #222;
  background: #fff;
  border-radius: 2px;
  font-size: 11px;
}

.admin-menu-button {
  width: 50px;
  height: 50px;
  border: 0;
  color: #dfe4eb;
  background: #2d3442;
  font-size: 22px;
}

.admin-topbar nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
}

.admin-topbar nav a,
.admin-topbar nav span {
  color: #f2f4f7;
  white-space: nowrap;
}

.admin-sidebar {
  grid-column: 1;
  grid-row: 2;
  min-height: calc(100vh - 50px);
  background: #383e4b;
  color: #dfe4eb;
}

.admin-menu-group,
.admin-subitem,
.admin-logout button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 45px;
  padding: 0 16px 0 22px;
  border: 0;
  color: #f2f4f7;
  background: transparent;
  text-align: left;
  font: inherit;
}

.admin-menu-group span {
  width: 14px;
  color: #d6dbe3;
  text-align: center;
}

.admin-menu-group em {
  margin-left: auto;
  color: #c8ced8;
  font-style: normal;
}

.admin-menu-group.active,
.admin-menu-group.open,
.admin-subitem.active,
.admin-menu-group:hover,
.admin-subitem:hover,
.admin-logout button:hover {
  background: #2c323f;
}

.admin-subitem {
  min-height: 40px;
  padding-left: 43px;
  color: #f5f6f8;
  background: #2c323f;
}

.admin-logout {
  margin-top: 18px;
}

.admin-main {
  grid-column: 2;
  grid-row: 2;
  padding: 10px 16px 40px;
  background: #fff;
  min-width: 0;
}

.admin-login-info {
  margin: 0 0 22px;
  padding: 16px 20px;
  border-left: 5px solid #009688;
  background: #f2f2f2;
  color: #111;
}

.admin-fieldset {
  margin: 0 0 18px;
  padding: 27px 20px 18px;
  border: 1px solid #ddd;
  min-height: 235px;
}

.admin-fieldset legend {
  padding: 0 12px;
  color: #333;
  font-size: 20px;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.admin-stat-card {
  display: grid;
  place-items: center;
  min-height: 90px;
  color: #888;
  background: #f2f2f2;
  border-radius: 4px;
}

.admin-stat-card strong {
  color: #009688;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.admin-staff-card {
  width: min(700px, 100%);
  border: 1px solid #ddd;
}

.admin-staff-card > div {
  padding: 9px 14px;
  color: #666;
  background: #f2f2f2;
  border-bottom: 1px solid #ddd;
}

.admin-staff-card table,
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-staff-card th,
.admin-staff-card td {
  padding: 9px 16px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
}

.admin-staff-card th {
  width: 140px;
  color: #555;
  background: #fafafa;
  text-align: right;
}

.admin-content-grid {
  display: grid;
  gap: 16px;
}

.admin-panel {
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.admin-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  background: #f2f2f2;
  border-bottom: 1px solid #ddd;
}

.admin-panel-title h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.admin-panel-title p,
.admin-panel-title span {
  margin: 0;
  color: #888;
}

.admin-site-form,
.admin-editor {
  padding-bottom: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 18px;
  padding: 18px;
}

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

.admin-console label {
  display: grid;
  gap: 6px;
  color: #555;
  font-size: 13px;
}

.admin-console input,
.admin-console textarea,
.admin-console select {
  width: 100%;
  padding: 9px 10px;
  color: #222;
  border: 1px solid #d8dde6;
  border-radius: 2px;
  background: #fff;
  font: inherit;
}

.admin-console textarea {
  resize: vertical;
}

.admin-cover-field,
.admin-rich-editor {
  margin: 14px 18px;
}

.admin-cover-field {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 160px auto;
  gap: 12px;
  align-items: end;
}

.admin-cover-preview {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 8px;
  color: #888;
  background: #f7f7f7;
  border: 1px solid #ddd;
}

.admin-cover-preview img {
  max-height: 78px;
  width: auto;
  object-fit: contain;
}

.admin-rich-title {
  margin-bottom: 8px;
  color: #555;
  font-size: 13px;
}

.admin-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  background: #f2f2f2;
  border: 1px solid #d8dde6;
  border-bottom: 0;
}

.admin-rich-toolbar button,
.admin-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  color: #333;
  background: #fff;
  border: 1px solid #cfd5df;
  border-radius: 2px;
  font: inherit;
}

.admin-rich-toolbar button:hover,
.admin-secondary:hover {
  color: #009688;
  border-color: #009688;
}

.admin-rich-toolbar button:disabled,
.admin-secondary:disabled {
  opacity: .55;
  cursor: wait;
}

.admin-rich-toolbar select {
  width: auto;
  min-height: 32px;
  padding: 0 24px 0 9px;
}

.admin-rich-area {
  min-height: 360px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d8dde6;
  outline: none;
  line-height: 1.8;
}

.admin-rich-area:focus {
  border-color: #009688;
  box-shadow: 0 0 0 2px rgba(0, 150, 136, .12);
}

.admin-rich-area h2,
.admin-rich-area h3 {
  margin: 18px 0 10px;
  line-height: 1.4;
}

.admin-rich-area p {
  margin: 0 0 12px;
}

.admin-rich-area img {
  max-width: min(100%, 860px);
  height: auto;
  margin: 14px auto;
  border-radius: 4px;
}

.admin-rich-hint {
  margin: 8px 0 0;
  color: #888;
  font-size: 12px;
}

.admin-table-wrap {
  max-height: 430px;
  overflow: auto;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e4e6eb;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: #666;
  background: #fafafa;
  font-weight: 500;
}

.admin-table a {
  color: #1665c1;
}

.admin-editor > label,
.admin-editor .form-row,
.admin-actions,
.admin-delete-form {
  margin: 14px 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr .8fr;
  gap: 14px;
}

.flash {
  margin: 0 0 12px;
  padding: 10px 12px;
  color: #7a4200;
  background: #fff4df;
  border: 1px solid #f4d29d;
  border-radius: 6px;
}

.admin-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0 18px;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #009688;
  font-weight: 600;
}

.admin-primary.small {
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
}

.danger {
  padding: 10px 16px;
  border: 0;
  color: #fff;
  background: #b42318;
  border-radius: 3px;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 70px;
    background: #f6f6f6;
    font-size: 14px;
    line-height: 1.7;
  }

  .wrap {
    width: min(100% - 24px, 760px);
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .08);
  }

  .topbar .wrap {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0;
  }

  .nav {
    min-height: 58px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    max-width: 132px;
    max-height: 42px;
  }

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

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 2px;
    background: #118c3c;
    line-height: 38px;
  }

  .nav nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid #e9e9e9;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  }

  .nav nav a {
    min-height: 46px;
    padding: 0 8px;
    border-radius: 0;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
  }

  .nav nav a:hover {
    color: #fff;
    background: #118c3c;
  }

  .nav.open nav {
    display: grid;
  }

  .hero,
  .hero-inner {
    min-height: 342px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(5, 36, 23, .72) 0%, rgba(5, 36, 23, .38) 52%, rgba(246, 246, 246, 1) 100%),
      var(--hero) center/cover no-repeat;
  }

  .hero-inner {
    display: block;
    padding-top: 42px;
  }

  .eyebrow {
    margin-bottom: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.24;
  }

  .lead,
  .page-hero p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .btn {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 2px;
    font-size: 14px;
  }

  .btn.primary {
    background: #118c3c;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 22px;
  }

  .hero-stats div {
    min-height: 72px;
    padding: 10px 6px;
    border: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
    text-align: center;
  }

  .hero-stats dt {
    color: #118c3c;
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-stats dd {
    color: #666;
    font-size: 12px;
    line-height: 1.35;
  }

  .section {
    padding: 34px 0;
    background: #f6f6f6;
  }

  .section-title {
    margin-bottom: 18px;
    text-align: center;
  }

  .section-title span {
    color: #999;
    font-size: 12px;
    font-weight: 400;
  }

  .section-title h2 {
    margin: 4px 0 8px;
    color: #118c3c;
    font-size: 24px;
    line-height: 1.25;
  }

  .section-title h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 10px auto 0;
    background: #999;
  }

  .section-title p {
    color: #666;
    font-size: 14px;
  }

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

  .service-card {
    min-height: 160px;
    padding: 18px 12px;
    background: #fff;
    border-color: #eee;
    border-radius: 0;
    text-align: center;
  }

  .service-card span {
    color: #118c3c;
    font-size: 24px;
  }

  .service-card h3 {
    margin: 10px 0 8px;
    font-size: 17px;
    line-height: 1.35;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  .process {
    background: #fff;
  }

  .process-grid {
    gap: 18px;
    padding: 34px 0;
    color: #333;
  }

  .process .section-title p {
    color: #666;
  }

  .process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process li {
    min-height: 126px;
    padding: 16px 12px;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    background: #f8f8f8;
  }

  .process b {
    color: #118c3c;
    font-size: 17px;
  }

  .process span {
    color: #666;
    font-size: 13px;
  }

  .card-grid,
  .list-grid {
    gap: 12px;
  }

  .content-card {
    border-color: #e9e9e9;
    border-radius: 0;
    box-shadow: none;
  }

  .content-card a {
    display: flex;
    align-items: stretch;
    min-height: 126px;
  }

  .content-card img {
    width: 38%;
    min-width: 124px;
    aspect-ratio: auto;
    height: auto;
  }

  .content-card div {
    min-width: 0;
    padding: 12px;
  }

  .content-card small {
    color: #999;
    font-size: 12px;
    font-weight: 400;
  }

  .content-card h2,
  .content-card h3 {
    display: -webkit-box;
    margin: 5px 0 7px;
    overflow: hidden;
    color: #333;
    font-size: 16px;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .content-card p {
    display: -webkit-box;
    overflow: hidden;
    color: #777;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cta-band {
    padding: 28px 0;
    background: #118c3c;
  }

  .cta-band .wrap {
    align-items: center;
    text-align: center;
  }

  .cta-band h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .cta-band p {
    font-size: 14px;
  }

  .two-col {
    gap: 28px;
    background: #fff;
  }

  .faq-list a,
  .news-list a {
    padding: 12px 0;
    color: #333;
    font-size: 14px;
  }

  .page-hero {
    padding: 48px 0 44px;
    background:
      linear-gradient(90deg, rgba(17, 140, 60, .9), rgba(17, 140, 60, .64)),
      url('/static/upload/image/20220906/1662460527765578.jpg') center/cover no-repeat;
  }

  .article {
    padding: 26px 0 46px;
    background: #fff;
  }

  .breadcrumb {
    font-size: 13px;
  }

  .article header {
    padding: 20px 0;
  }

  .article h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .article-body {
    max-width: 100%;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
  }

  .article-body img {
    width: 100%;
    margin: 14px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .related-content {
    max-width: 100%;
    margin-top: 28px;
    padding-top: 18px;
  }

  .related-grid a {
    min-height: auto;
    padding: 14px;
    border-radius: 0;
    background: #f8f8f8;
  }

  .faq-item,
  .about-panel,
  .contact-card {
    padding: 20px 16px;
    border-radius: 0;
    background: #fff;
  }

  .faq-item h2,
  .contact-card h2 {
    font-size: 19px;
  }

  .contact-grid {
    gap: 12px;
  }

  .qr-large img {
    width: 132px;
  }

  .hero-inner,
  .process-grid,
  .two-col,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .list-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .cta-band .wrap {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .cta-band h2 {
    font-size: 22px;
  }

  .footer-grid {
    gap: 18px;
    padding: 28px 0 88px;
  }

  .site-footer h3 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .site-footer p {
    font-size: 13px;
  }

  .footer-phone {
    font-size: 24px;
  }

  .qr {
    display: none;
  }

  .copyright {
    padding: 12px 14px;
    font-size: 12px;
  }

  .float-actions {
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 58px;
    padding: 0;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, .14);
  }

  .float-action {
    display: flex;
    min-height: 58px;
    flex-direction: row;
    gap: 0;
    padding: 0 8px;
    border-radius: 0;
    box-shadow: none;
    letter-spacing: 0;
    line-height: 1;
  }

  .float-action span {
    display: block;
    font-size: 16px;
    font-weight: 900;
  }

  .float-action strong {
    display: none;
  }

  .float-wechat {
    background: #0d7f3d;
    border-right: 1px solid rgba(255, 255, 255, .28);
  }

  .float-call {
    background: #118c3c;
  }

  .admin-console {
    display: block;
  }

  .admin-topbar {
    position: static;
  }

  .admin-brand {
    width: auto;
    flex: 1;
  }

  .admin-topbar nav {
    display: none;
  }

  .admin-sidebar {
    min-height: 0;
  }

  .admin-main {
    padding: 12px;
  }

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

  .admin-form-grid,
  .form-row,
  .admin-cover-field {
    grid-template-columns: 1fr;
  }

  .admin-panel-title {
    align-items: flex-start;
    flex-direction: column;
  }
}
