@charset "utf-8";

:root {
  --hw-navy: #061a3a;
  --hw-navy-2: #0a2c62;
  --hw-blue: #075fd2;
  --hw-blue-2: #0b4aa2;
  --hw-gold: #d1a34c;
  --hw-ink: #061a3a;
  --hw-text: #24324a;
  --hw-muted: #647083;
  --hw-line: #dde6f2;
  --hw-soft: #f4f7fb;
  --hw-white: #fff;
  --hw-shadow: 0 18px 46px rgba(6, 26, 58, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--hw-text);
  background: var(--hw-white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; }
.hw-wrap { width: min(1240px, calc(100% - 56px)); margin: 0 auto; }

.hw-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.98);
  box-shadow: 0 6px 24px rgba(6,26,58,.06);
}
.hw-header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.hw-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 286px;
}
.hw-shield {
  width: 54px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--hw-gold);
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(145deg, #061a3a, #0b326d);
  border: 3px solid var(--hw-gold);
  clip-path: polygon(50% 0, 92% 14%, 86% 72%, 50% 100%, 14% 72%, 8% 14%);
  box-shadow: 0 10px 20px rgba(6,26,58,.16);
}
.hw-brand strong {
  display: block;
  color: var(--hw-ink);
  font-size: 24px;
  line-height: 1.1;
  white-space: nowrap;
}
.hw-brand span span {
  display: block;
  margin-top: 5px;
  color: var(--hw-muted);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.hw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #111c33;
  font-size: 15px;
  white-space: nowrap;
}
.hw-nav a {
  position: relative;
  height: 86px;
  display: flex;
  align-items: center;
}
.hw-nav a.active,
.hw-nav a:hover { color: var(--hw-blue); }
.hw-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  background: var(--hw-blue);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.hw-nav a.active:after,
.hw-nav a:hover:after { transform: scaleX(1); }
.hw-header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--hw-ink);
  white-space: nowrap;
}
.hw-call-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--hw-blue-2);
  border-radius: 50%;
  color: var(--hw-blue-2);
  font-size: 24px;
  font-weight: 900;
}
.hw-header-call small { display: block; color: #1d2d48; font-size: 13px; line-height: 1; }
.hw-header-call strong { display: block; margin-top: 4px; color: var(--hw-blue-2); font-size: 24px; line-height: 1; }

.hw-hero {
  position: relative;
  min-height: 610px;
  color: var(--hw-white);
  background:
    linear-gradient(90deg, rgba(6,26,58,.94), rgba(6,26,58,.74) 38%, rgba(6,26,58,.16) 72%),
    url("../images/modern-home/generated-hero.png") center / cover no-repeat;
  overflow: visible;
}
.hw-hero .hw-wrap { position: relative; z-index: 2; padding: 92px 0 150px; }
.hw-hero h1 {
  width: min(720px, 100%);
  margin: 0;
  color: #fff;
  font-size: 54px;
  line-height: 1.16;
  font-weight: 900;
  text-shadow: 0 16px 38px rgba(0,0,0,.26);
  overflow-wrap: anywhere;
}
.hw-hero p {
  width: min(600px, 100%);
  margin: 24px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.hw-hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }
.hw-btn {
  height: 54px;
  min-width: 154px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hw-btn:hover { transform: translateY(-2px); }
.hw-btn-primary { background: var(--hw-blue); color: var(--hw-white); box-shadow: 0 16px 34px rgba(7,95,210,.28); }
.hw-btn-outline { color: var(--hw-white); border-color: rgba(255,255,255,.72); background: rgba(6,26,58,.18); }
.hw-hero-points { display: flex; flex-wrap: wrap; gap: 42px; margin-top: 38px; color: rgba(255,255,255,.94); font-weight: 700; }
.hw-hero-points span { display: inline-flex; align-items: center; gap: 10px; }
.hw-point-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--hw-gold);
  color: var(--hw-gold);
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
}

.hw-services {
  position: relative;
  z-index: 5;
  margin-top: -86px;
  padding: 0 0 74px;
  background: linear-gradient(180deg, transparent 0 86px, var(--hw-white) 86px);
}
.hw-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.hw-service-card {
  min-height: 230px;
  padding: 34px 32px 28px;
  background: var(--hw-white);
  border: 1px solid rgba(221,230,242,.95);
  border-radius: 8px;
  box-shadow: var(--hw-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hw-service-card:hover { transform: translateY(-5px); box-shadow: 0 26px 58px rgba(6,26,58,.16); }
.hw-service-icon { width: 58px; height: 58px; display: block; color: var(--hw-blue-2); margin-bottom: 18px; }
.hw-service-icon svg { width: 58px; height: 58px; display: block; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hw-service-card h3 { margin: 0; color: var(--hw-ink); font-size: 23px; line-height: 1.25; }
.hw-service-card p { min-height: 78px; max-width: 100%; margin: 16px 0 18px; color: var(--hw-muted); font-size: 14px; line-height: 1.75; overflow-wrap: anywhere; word-break: break-all; }
.hw-round-link { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: var(--hw-white); background: var(--hw-blue); font-size: 14px; font-weight: 900; }

.hw-about { padding: 68px 0 82px; background: linear-gradient(180deg, #f7faff, #fff); }
.hw-about-layout { display: grid; grid-template-columns: 1.05fr 1fr .78fr; gap: 40px; align-items: center; }
.hw-about-image { overflow: hidden; border-radius: 8px; box-shadow: var(--hw-shadow); }
.hw-about-image img { height: 328px; object-fit: cover; }
.hw-about-copy h2 { margin: 0; color: var(--hw-ink); font-size: 36px; line-height: 1.2; }
.hw-about-copy p { margin: 20px 0 28px; color: #273750; font-size: 15px; line-height: 2; }
.hw-about-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hw-about-feature { min-width: 0; text-align: center; color: var(--hw-ink); font-weight: 800; font-size: 13px; border-right: 1px solid var(--hw-line); }
.hw-about-feature:last-child { border-right: 0; }
.hw-mini-icon { width: 30px; height: 30px; display: block; margin: 0 auto 9px; color: var(--hw-blue-2); }
.hw-mini-icon svg { width: 30px; height: 30px; display: block; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hw-about-feature small { display: block; margin-top: 6px; color: var(--hw-muted); font-size: 11px; font-weight: 400; line-height: 1.5; }
.hw-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid #ccd7e7; border-top: 1px solid #ccd7e7; }
.hw-stat { min-height: 126px; padding: 24px 18px; text-align: center; border-right: 1px solid #ccd7e7; border-bottom: 1px solid #ccd7e7; background: rgba(255,255,255,.72); }
.hw-stat strong { color: var(--hw-blue-2); font-size: 32px; line-height: 1; }
.hw-stat strong span { font-size: 16px; margin-left: 2px; }
.hw-stat p { margin: 10px 0 0; color: var(--hw-muted); font-size: 14px; }

.hw-news { padding: 56px 0 50px; background: var(--hw-white); }
.hw-section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.hw-section-head h2 { margin: 0; color: var(--hw-ink); font-size: 34px; line-height: 1.2; }
.hw-section-head h2:after { content: ""; display: block; width: 58px; height: 4px; margin-top: 16px; background: var(--hw-blue); }
.hw-section-head p { width: min(480px, 100%); margin: 0; color: var(--hw-muted); line-height: 1.8; }
.hw-section-side { display: grid; justify-items: end; gap: 14px; }
.hw-section-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.hw-section-links type { display: contents; }
.hw-section-links a { height: 36px; display: inline-flex; align-items: center; padding: 0 16px; border: 1px solid #cdd9ea; border-radius: 4px; color: var(--hw-blue-2); font-size: 13px; font-weight: 800; background: #fff; }
.hw-section-links a:hover { color: #fff; border-color: var(--hw-blue); background: var(--hw-blue); }
.hw-news-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 22px; }
.hw-news-list, .hw-case-panel { border: 1px solid var(--hw-line); border-radius: 8px; background: var(--hw-white); box-shadow: 0 12px 34px rgba(6,26,58,.07); }
.hw-news-list { padding: 6px 24px; }
.hw-news-item { display: grid; grid-template-columns: 74px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--hw-line); }
.hw-news-item:last-child { border-bottom: 0; }
.hw-datebox { height: 68px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--hw-blue-2); border: 1px solid var(--hw-line); font-size: 22px; font-weight: 900; }
.hw-datebox small { margin-top: 3px; color: var(--hw-muted); font-size: 11px; font-weight: 400; }
.hw-news-item h3 { margin: 0; color: var(--hw-ink); font-size: 17px; }
.hw-news-item p { margin: 9px 0 0; color: var(--hw-muted); font-size: 14px; line-height: 1.7; }
.hw-news-item:hover h3 { color: var(--hw-blue); }
.hw-case-panel { padding: 18px; }
.hw-case-panel type { display: contents; }
.hw-case-rail { display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; }
.hw-case-main, .hw-case-small { position: relative; display: block; min-height: 286px; overflow: hidden; border-radius: 6px; background: var(--hw-navy); }
.hw-case-side { display: grid; gap: 14px; }
.hw-case-small { min-height: 136px; }
.hw-case-rail img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .35s ease, opacity .35s ease; }
.hw-case-title { position: absolute; left: 18px; right: 18px; bottom: 16px; color: #fff; font-weight: 800; text-shadow: 0 6px 18px rgba(0,0,0,.4); }
.hw-case-main:hover img, .hw-case-small:hover img { transform: scale(1.04); opacity: 1; }

.hw-contact-band { padding: 58px 0; color: #fff; background: linear-gradient(90deg, var(--hw-navy), var(--hw-navy-2)); }
.hw-contact-layout { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; }
.hw-contact-layout h2 { margin: 0; font-size: 32px; line-height: 1.3; }
.hw-contact-layout p { margin: 14px 0 0; color: rgba(255,255,255,.72); line-height: 1.8; }
.hw-qr { display: flex; align-items: center; gap: 18px; padding: 16px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); }
.hw-qr-code {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  color: var(--hw-navy);
  font-weight: 900;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #0b2345 10px, transparent 10px) 0 0 / 22px 22px,
    linear-gradient(#0b2345 10px, transparent 10px) 0 0 / 22px 22px,
    #fff;
}
.hw-footer { padding: 24px 0; color: rgba(255,255,255,.62); background: #041126; font-size: 13px; }
.hw-footer .hw-wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.hw-mobile-actions { display: none; }
.hw-nav type,
.hw-mobile-actions type {
  display: contents;
}

/* Modern inner-page shell for existing ThinkCMF templates. */
.nydt {
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6,26,58,.92), rgba(6,26,58,.52)),
    url("../images/modern-home/generated-hero.png") center / cover no-repeat;
}
.nydt ul,
.nydt li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hw-header,
.hw-header *,
.nydt,
.nydt *,
#gywm,
#gywm *,
#news,
#news *,
.hw-contact-band,
.hw-contact-band *,
.hw-footer,
.hw-footer * {
  box-sizing: border-box;
}
.nydt img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: .78;
}
#gywm,
#news {
  background: #f7faff;
  padding: 58px 0 72px;
}
.gywm,
.news {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 42px;
  align-items: start;
  height: auto;
  overflow: visible;
}
.gywm-r,
.news-r {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  position: static !important;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6,26,58,.08);
  padding: 30px;
}
.gywm-l,
.news-l {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  position: static !important;
  min-width: 0;
}
.gywm-top,
.news-top {
  margin: 0 0 24px;
  padding: 0 0 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--hw-line);
  list-style: none;
}
.gywm-top .zi,
.news-top .zi {
  color: var(--hw-ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
}
.gywm-top .wz,
.news-top .wz {
  color: var(--hw-muted);
  font-size: 13px;
}
.gywm-top .wz ul,
.news-top .wz ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.gywm-top .wz ul li:first-child,
.news-top .wz ul li:first-child {
  display: none;
}
.wendang,
.wdnr {
  width: 100% !important;
  max-width: 100%;
  color: #273750;
  font-size: 15px;
  line-height: 2;
}
.wdnr img,
.wendang img {
  max-width: 100%;
  height: auto !important;
}
.wdbt {
  margin-bottom: 24px;
  padding-bottom: 22px;
  text-align: center;
  border-bottom: 1px solid var(--hw-line);
}
.wdbt h1 {
  margin: 0;
  color: var(--hw-ink);
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}
.wdbt small {
  display: block;
  margin-top: 10px;
  color: var(--hw-muted);
  font-size: 13px;
}
.wdnr h1,
.wdnr h2,
.wdnr h3,
.wendang h1,
.wendang h2,
.wendang h3 {
  color: var(--hw-ink);
  line-height: 1.45;
}
.wdnr p,
.wendang p {
  margin: 0 0 16px;
}
.wdnr table,
.wendang table {
  max-width: 100%;
}
.wdnr iframe,
.wendang iframe {
  max-width: 100%;
}
.wdnr {
  overflow-wrap: anywhere;
}
.wdnr img {
  margin: 16px auto;
  border-radius: 6px;
}
.wdnr iframe {
  margin-top: 18px;
  border-radius: 8px;
  background: #f7faff;
}
.wendang .pagination {
  margin-top: 28px;
}
.lxnrza {
  margin-top: 26px;
  padding: 26px;
  border-radius: 8px;
  background: #f7faff;
  border: 1px solid var(--hw-line);
}
.lxnrz1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lxnrz1z,
.lxnrz1y,
.lxnrz2,
.lxnrz3 {
  width: 100%;
  display: block;
  border: 1px solid var(--hw-line);
  border-radius: 6px;
  background: #fff;
  color: var(--hw-text);
  font-size: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lxnrz1z,
.lxnrz1y,
.lxnrz2 {
  height: 46px;
  padding: 0 14px;
}
.lxnrz2 {
  margin-top: 14px;
}
.lxnrz3 {
  min-height: 150px;
  margin-top: 14px;
  padding: 14px;
  resize: vertical;
}
.lxnrz1z:focus,
.lxnrz1y:focus,
.lxnrz2:focus,
.lxnrz3:focus {
  border-color: var(--hw-blue);
  box-shadow: 0 0 0 3px rgba(7,95,210,.10);
}
.an,
#button {
  min-width: 132px;
  height: 46px;
  margin-top: 16px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  background: var(--hw-blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.an:hover,
#button:hover {
  background: var(--hw-blue-2);
}
#dituContent {
  width: 100% !important;
  max-width: 100%;
  border: 1px solid var(--hw-line) !important;
  border-radius: 8px;
  overflow: hidden;
}
.hw-conversion {
  padding: 64px 0 78px;
  background: linear-gradient(180deg, #f7faff, #fff);
}
.hw-conversion-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.hw-contact-card,
.hw-form-card,
.hw-map-card {
  background: #fff;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6,26,58,.08);
}
.hw-contact-card,
.hw-form-card {
  padding: 32px;
}
.hw-contact-card h1,
.hw-form-card h1,
.hw-map-card h2 {
  margin: 0;
  color: var(--hw-ink);
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}
.hw-contact-card > p,
.hw-form-card > p {
  margin: 16px 0 0;
  color: var(--hw-muted);
  font-size: 15px;
  line-height: 1.9;
}
.hw-contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.hw-contact-method {
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-radius: 6px;
  background: #f7faff;
  border: 1px solid var(--hw-line);
}
.hw-contact-method i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--hw-blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}
.hw-contact-method strong {
  display: block;
  color: var(--hw-ink);
  font-size: 16px;
}
.hw-contact-method span {
  display: block;
  margin-top: 5px;
  color: var(--hw-muted);
  line-height: 1.6;
}
.hw-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hw-service-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7,95,210,.08);
  color: var(--hw-blue-2);
  font-size: 13px;
  font-weight: 800;
}
.hw-form-card .lxnrza {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
}
.hw-map-card {
  margin-top: 28px;
  overflow: hidden;
}
.hw-map-card h2 {
  padding: 26px 30px 0;
  font-size: 26px;
}
.hw-map-card p {
  margin: 10px 30px 22px;
  color: var(--hw-muted);
}
.hw-map-frame {
  padding: 0 30px 30px;
}
.hw-map-frame #dituContent {
  display: block !important;
  height: 430px !important;
}
.hw-quick-note {
  margin-top: 22px;
  padding: 18px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--hw-navy), var(--hw-blue-2));
}
.hw-quick-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}
.hw-quick-note span {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.izl-rmenu,
#top {
  z-index: 40;
}
.xwfl {
  margin: 0 0 22px;
  padding: 0;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6,26,58,.08);
  list-style: none;
}
#xwfl-s {
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(90deg, var(--hw-navy), var(--hw-blue-2));
  font-size: 20px;
  font-weight: 900;
}
.xwfl li {
  border-bottom: 1px solid var(--hw-line);
}
.xwfl li:last-child { border-bottom: 0; }
.xwfl li a {
  display: block;
  padding: 14px 22px;
  color: var(--hw-text);
}
.xwfl li a:hover {
  color: var(--hw-blue);
  background: #f4f7fb;
}
.hw-side-contact {
  overflow: hidden;
  border: 1px solid rgba(216,227,242,.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6,26,58,.08);
}
.hw-side-contact-head {
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--hw-navy), var(--hw-blue-2));
}
.hw-side-contact-head span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
}
.hw-side-contact-head strong {
  font-size: 22px;
  line-height: 1.2;
}
.hw-side-contact-body {
  padding: 20px 22px 22px;
}
.hw-side-contact-body p {
  margin: 0 0 16px;
  color: var(--hw-muted);
  font-size: 14px;
  line-height: 1.75;
}
.hw-side-call {
  display: block;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #f7faff;
  border: 1px solid var(--hw-line);
  color: var(--hw-ink);
}
.hw-side-call small {
  display: block;
  margin-bottom: 6px;
  color: var(--hw-muted);
  font-size: 12px;
}
.hw-side-call strong {
  color: var(--hw-blue);
  font-size: 21px;
  letter-spacing: .02em;
}
.hw-side-contact dl {
  margin: 0;
}
.hw-side-contact dl div {
  padding: 13px 0;
  border-top: 1px solid var(--hw-line);
}
.hw-side-contact dt {
  margin-bottom: 5px;
  color: var(--hw-ink);
  font-weight: 800;
}
.hw-side-contact dd {
  margin: 0;
  color: var(--hw-muted);
  font-size: 13px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.hw-side-message {
  height: 44px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--hw-blue);
  color: #fff;
  font-weight: 800;
}
.hw-side-message:hover {
  color: #fff;
  background: var(--hw-blue-2);
}
.hw-about-inner-page .gywm-r {
  background:
    linear-gradient(180deg, rgba(247,250,255,.92), rgba(255,255,255,0) 170px),
    #fff;
}
.hw-about-inner-page .gywm-top .zi:after {
  content: "ABOUT";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-about-inner-content {
  color: #24344d;
  font-size: 16px;
  line-height: 2.05;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.hw-about-inner-content p {
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.hw-about-inner-content h2,
.hw-about-inner-content h3 {
  margin: 30px 0 16px;
  color: var(--hw-ink);
  font-weight: 900;
}
.hw-about-inner-content img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin: 18px 0 24px;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(6,26,58,.08);
}
.news-b {
  width: 100% !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}
.news-b a {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}
.news-b:after {
  content: "";
  display: block;
  clear: both;
}
.xwlb_xm,
.xwlb {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--hw-line);
  color: var(--hw-text);
}
.xwlb_xm:hover,
.xwlb:hover {
  color: var(--hw-blue);
}
.xwlb_xms,
.xwbt {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}
.xwlb_xmx,
.xwzy,
.xwrq {
  margin-top: 8px;
  color: var(--hw-muted);
  font-size: 13px;
  line-height: 1.7;
}
.xwlb_xm {
  position: relative;
  width: 100% !important;
  box-sizing: border-box;
  padding: 22px 20px 22px 28px;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.xwlb_xm:before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  background: var(--hw-blue);
  border-radius: 0 4px 4px 0;
}
.xwlb_xm:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,210,.28);
  box-shadow: 0 14px 30px rgba(6,26,58,.08);
}
.xwlb_1 {
  width: calc(50% - 12px) !important;
  box-sizing: border-box;
  float: left;
  margin: 0 24px 24px 0;
  overflow: hidden;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,26,58,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.xwlb_1:nth-child(2n) {
  margin-right: 0;
}
.xwlb_1:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(6,26,58,.12);
}
.xwlb_1s {
  height: 170px;
  overflow: hidden;
  background: var(--hw-soft);
}
.xwlb_1s img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform .25s ease;
}
.xwlb_1:hover .xwlb_1s img {
  transform: scale(1.05);
}
.xwlb_1x {
  padding: 16px 18px 18px;
  color: var(--hw-ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  min-height: 70px;
}
.hw-gallery-page .news-r,
.hw-gallery-detail-page .gywm-r {
  background:
    linear-gradient(180deg, rgba(247,250,255,.9), rgba(255,255,255,0) 168px),
    #fff;
}
.hw-gallery-page .news-top .zi:after,
.hw-gallery-detail-page .gywm-top .zi:after {
  content: "GALLERY";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-gallery-page .news-b {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}
.hw-gallery-page .news-b a {
  height: 100%;
}
.xwlb_2,
.xwlb_21,
.hw-gallery-card {
  width: 100% !important;
  height: auto !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,26,58,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hw-gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(7,95,210,.26);
  box-shadow: 0 20px 40px rgba(6,26,58,.12);
}
.xwlb_2s,
.xwlb_2s1 {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hw-soft);
}
.hw-gallery-card-portrait .xwlb_2s1 {
  aspect-ratio: 3 / 4;
}
.xwlb_2s img,
.xwlb_2s1 img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  transition: transform .25s ease;
}
.hw-gallery-card:hover img {
  transform: scale(1.045);
}
.xwlb_2x,
.xwlb_2x1 {
  width: 100% !important;
  height: auto !important;
  min-height: 62px;
  padding: 16px 18px;
  color: var(--hw-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  text-align: left;
}
.hw-gallery-content {
  color: #24344d;
  font-size: 16px;
  line-height: 2;
  overflow-wrap: anywhere;
}
.hw-gallery-content img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 18px auto 24px;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6,26,58,.09);
}
.hw-search-page .news-r {
  background:
    linear-gradient(180deg, rgba(247,250,255,.9), rgba(255,255,255,0) 168px),
    #fff;
}
.hw-search-page .news-top .zi:after {
  content: "SEARCH";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-news-page .news-r,
.hw-list-page .news-r,
.hw-news-detail-page .gywm-r,
.hw-article-detail-page .gywm-r {
  background:
    linear-gradient(180deg, rgba(247,250,255,.9), rgba(255,255,255,0) 168px),
    #fff;
}
.hw-news-page .news-top .zi:after,
.hw-list-page .news-top .zi:after,
.hw-news-detail-page .gywm-top .zi:after {
  content: "NEWS";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-article-detail-page .gywm-top .zi:after {
  content: "ARTICLE";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-article-content {
  color: #24344d;
  font-size: 16px;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.hw-article-content img {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 18px auto 24px;
  border-radius: 8px;
}
.hw-search-page .news-b {
  display: grid;
  gap: 16px;
  overflow: visible;
}
.hw-search-result {
  width: 100% !important;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 18px !important;
  border: 1px solid var(--hw-line) !important;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(6,26,58,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hw-search-result:hover {
  transform: translateY(-2px);
  border-color: rgba(7,95,210,.25) !important;
  box-shadow: 0 18px 34px rgba(6,26,58,.1);
}
.hw-search-result .img {
  width: 168px !important;
  height: 118px !important;
  grid-row: span 3;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 6px;
  background: var(--hw-soft);
}
.hw-search-result .img img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
.hw-search-result .xwbt {
  width: auto !important;
  height: auto !important;
  grid-column: 2;
  float: none !important;
  color: var(--hw-ink);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
}
.hw-search-result .xwbt a {
  color: inherit;
}
.hw-search-result .xwzy {
  width: auto !important;
  height: auto !important;
  grid-column: 2;
  float: none !important;
  color: var(--hw-muted);
  font-size: 14px;
  line-height: 1.8;
}
.hw-search-result .xwrq {
  grid-column: 2;
  float: none !important;
  color: var(--hw-muted);
  font-size: 13px;
}
.hw-service-list-page .news-r,
.hw-service-detail-page .gywm-r,
.hw-service-overview-page .gywm-r {
  background:
    linear-gradient(180deg, rgba(247,250,255,.86), rgba(255,255,255,0) 168px),
    #fff;
}
.hw-service-list-page .news-top,
.hw-service-detail-page .gywm-top,
.hw-service-overview-page .gywm-top {
  align-items: center;
}
.hw-service-list-page .news-top .zi:after,
.hw-service-detail-page .gywm-top .zi:after,
.hw-service-overview-page .gywm-top .zi:after {
  content: "SERVICE";
  display: block;
  margin-top: 8px;
  color: var(--hw-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
}
.hw-service-list-page .news-b {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}
.hw-service-list-page .news-b a {
  height: 100%;
}
.hw-service-row {
  height: 100%;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 24px 22px !important;
  border-color: #d8e3f2;
  box-shadow: 0 14px 32px rgba(6,26,58,.07);
}
.hw-service-row:before {
  top: 24px;
  bottom: auto;
  width: 38px;
  height: 4px;
  border-radius: 4px;
}
.hw-service-row:after {
  content: "了解服务";
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 24px;
  color: var(--hw-blue);
  font-size: 14px;
  font-weight: 800;
}
.hw-service-row .xwlb_xms {
  padding-top: 20px;
  color: var(--hw-ink);
  font-size: 21px;
  line-height: 1.42;
}
.hw-service-row .xwlb_xmx {
  margin-top: 12px;
  color: var(--hw-muted);
}
.hw-service-content {
  max-width: 100%;
  font-size: 16px;
  line-height: 2.05;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.hw-service-content p {
  overflow-wrap: anywhere;
  word-break: break-all;
}
.hw-service-content h2,
.hw-service-content h3,
.hw-service-content h4 {
  position: relative;
  margin: 28px 0 14px;
  padding-left: 16px;
}
.hw-service-content h2:before,
.hw-service-content h3:before,
.hw-service-content h4:before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 5px;
  height: 1em;
  border-radius: 3px;
  background: var(--hw-blue);
}
.hw-service-content ul,
.hw-service-content ol {
  margin: 16px 0 22px;
  padding: 20px 24px 20px 42px;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  background: #f7faff;
}
.hw-service-content li {
  margin: 6px 0;
}
.hw-service-content blockquote {
  margin: 22px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--hw-gold);
  background: #fbfcff;
  color: var(--hw-ink);
  font-weight: 700;
}
.xwlb {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--hw-line);
  border-radius: 8px;
  background: #fff;
  margin-bottom: 14px;
}
.xwlb .img {
  width: 180px;
  height: 126px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--hw-soft);
}
.xwlb .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.xwbt {
  color: var(--hw-ink);
  font-size: 18px;
  font-weight: 900;
}
.xwzy {
  color: var(--hw-muted);
  font-size: 14px;
}
.xwzy span {
  color: var(--hw-blue);
}
.xwrq {
  color: var(--hw-muted);
}
.pagination ul {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.pagination a,
.pagination span {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hw-line);
  border-radius: 4px;
  color: var(--hw-text);
}
.pagination .current,
.pagination a:hover {
  color: #fff;
  background: var(--hw-blue);
  border-color: var(--hw-blue);
}

@media (max-width: 1240px) {
  .hw-header-inner { gap: 16px; }
  .hw-brand { min-width: 248px; }
  .hw-brand strong { font-size: 22px; }
  .hw-nav { gap: 16px; font-size: 14px; }
  .hw-header-call strong { font-size: 20px; }
}

@media (max-width: 1120px) {
  .hw-nav { gap: 14px; }
  .hw-header-call strong { font-size: 20px; }
  .hw-about-layout { grid-template-columns: 1fr; }
  .hw-stats-grid { max-width: 560px; }
}
@media (max-width: 900px) {
  .hw-wrap {
    width: calc(100% - 48px);
    max-width: 720px;
  }
  .hw-header-inner { height: auto; padding: 14px 0; }
  .hw-nav, .hw-header-call { display: none; }
  .hw-brand {
    min-width: 0;
  }
  .hw-brand strong { font-size: 18px; }
  .hw-brand small,
  .hw-brand span span { display: none; }
  .hw-shield { width: 42px; height: 48px; font-size: 23px; }
  .hw-hero { min-height: auto; }
  .hw-hero .hw-wrap { padding: 76px 0 126px; }
  .hw-hero h1 { width: min(330px, 100%); font-size: 34px; }
  .hw-hero p { width: min(340px, 100%); font-size: 16px; line-height: 1.8; }
  .hw-hero-points { gap: 16px; }
  .hw-services { margin-top: -74px; padding-bottom: 54px; }
  .hw-service-grid, .hw-news-layout, .hw-contact-layout { grid-template-columns: 1fr; }
  .hw-case-rail { grid-template-columns: 1fr; }
  .hw-service-card p { min-height: 0; overflow-wrap: anywhere; word-break: break-all; }
  .hw-about-features { grid-template-columns: repeat(2, 1fr); }
  .hw-mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    box-sizing: border-box;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--hw-white);
    border-top: 1px solid var(--hw-line);
  }
  .hw-mobile-actions > * {
    width: auto !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .hw-mobile-actions type {
    display: flex !important;
    width: auto !important;
    min-width: 0 !important;
  }
  .hw-mobile-actions a {
    width: auto !important;
    min-width: 0 !important;
    height: 54px;
    padding: 0 4px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hw-ink);
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
  }
  .hw-mobile-actions type a {
    width: 100% !important;
  }
  .hw-mobile-actions > a:last-child {
    display: none;
  }
  .gywm,
  .news {
    width: calc(100% - 48px);
    max-width: 720px;
    grid-template-columns: 1fr;
  }
  .gywm-r,
  .news-r {
    padding: 22px 16px;
  }
  .lxnrz1 {
    grid-template-columns: 1fr;
  }
  .wdbt h1 {
    font-size: 24px;
  }
  .gywm-top,
  .news-top {
    display: block;
  }
  .gywm-top .wz,
  .news-top .wz {
    margin-top: 10px;
  }
  .nydt img {
    height: 180px;
  }
  .xwlb_1 {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .hw-service-list-page .news-b {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hw-gallery-page .news-b {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hw-search-result {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px !important;
  }
  .hw-search-result .img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    grid-row: auto;
  }
  .hw-search-result .xwbt,
  .hw-search-result .xwzy,
  .hw-search-result .xwrq {
    grid-column: 1;
  }
  .hw-search-result .xwbt {
    font-size: 17px;
  }
  .xwlb_2s {
    aspect-ratio: 16 / 10;
  }
  .xwlb_2x,
  .xwlb_2x1 {
    min-height: 54px;
    padding: 14px 16px;
    font-size: 15px;
  }
  .hw-service-row {
    min-height: 148px;
    padding: 22px 18px 20px !important;
  }
  .hw-service-row .xwlb_xms {
    font-size: 19px;
  }
  .hw-service-content {
    font-size: 15px;
    line-height: 1.9;
  }
  .hw-service-content ul,
  .hw-service-content ol {
    padding: 16px 18px 16px 34px;
  }
  .xwlb {
    grid-template-columns: 1fr;
  }
  .xwlb .img {
    width: 100%;
    height: 190px;
  }
  .hw-conversion-grid {
    grid-template-columns: 1fr;
  }
  .hw-contact-card,
  .hw-form-card {
    padding: 24px 18px;
  }
  .hw-map-card h2 {
    padding: 22px 18px 0;
  }
  .hw-map-card p {
    margin-left: 18px;
    margin-right: 18px;
  }
  .hw-map-frame {
    padding: 0 18px 22px;
  }
  .hw-map-frame #dituContent {
    height: 320px !important;
  }
}
@media (max-width: 520px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .hw-hero .hw-wrap { padding-top: 62px; }
  .hw-hero h1 { font-size: 30px; line-height: 1.24; }
  .hw-btn { min-width: 128px; height: 48px; }
  .gywm,
  .news {
    width: 100%;
    max-width: 100%;
  }
  .gywm-r,
  .news-r {
    width: 100vw !important;
    max-width: 100vw;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .wendang,
  .wdnr,
  .hw-about-inner-content,
  .hw-about-inner-content p,
  .hw-service-content,
  .hw-service-content p,
  .hw-gallery-content,
  .hw-gallery-content p {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    white-space: normal !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    line-break: anywhere;
  }
  .hw-service-card { padding: 26px 24px; }
  .hw-section-head { display: block; }
  .hw-section-head p { margin-top: 14px; }
  .hw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hw-stat { padding: 20px 12px; min-height: 108px; }
  .hw-stat strong { font-size: 26px; }
}
