:root {
  --blue: #075fff;
  --blue-dark: #062b77;
  --ink: #10182f;
  --muted: #61708a;
  --line: #dbe7f5;
  --soft: #f3f8ff;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(8, 52, 118, 0.14);
  --hero-bg-layers:
    linear-gradient(90deg, rgba(244, 250, 255, 0.95) 0%, rgba(235, 247, 255, 0.8) 46%, rgba(229, 244, 255, 0.38) 100%),
    url("./images/hero-bg.png"),
    linear-gradient(180deg, #f9fcff 0%, #e7f4ff 100%);
  --hero-bg-size: auto, auto 100%, auto;
  --hero-bg-position: center, right bottom, center;
  --hero-bg-repeat: no-repeat, no-repeat, no-repeat;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #fff;
}

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

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

[hidden] {
  display: none !important;
}

.section-anchor {
  scroll-margin-top: 84px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 7vw, 96px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 245, 0.7);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  color: var(--blue);
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 27px 0;
}

.nav a:hover,
.nav a:focus {
  color: var(--blue);
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  content: "";
}

.nav a:hover::after,
.nav a:focus::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 78px;
}

.hero-copy {
  max-width: 750px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hero p {
  max-width: 750px;
  margin: 24px 0 30px;
  color: #26344f;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(135deg, #0068ff, #0048de);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 96, 255, 0.22);
}

.primary-button::after {
  margin-left: 8px;
  content: "→";
}

.metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: -88px auto 0;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 231, 245, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
}

.metric-action {
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.metric-action:hover,
.metric-action:focus {
  background: #f3f8ff;
  transform: translateY(-2px);
  outline: none;
}

.metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
  background: #edf5ff;
  border-radius: 999px;
}

.metric strong {
  font-size: 26px;
  line-height: 1.1;
}

.metric small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.content-section {
  width: min(1180px, calc(100% - 40px));
  margin: 64px auto 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.section-heading h2 {
  position: relative;
  margin: 3px 0 0;
  font-size: 28px;
  line-height: 1.25;
}

.section-heading h2::after {
  display: block;
  width: 36px;
  height: 4px;
  margin-top: 8px;
  background: var(--blue);
  border-radius: 999px;
  content: "";
}

.section-heading a {
  color: #26344f;
  font-weight: 800;
}

.section-heading a::after {
  margin-left: 8px;
  content: "→";
}

.compact {
  margin-bottom: 16px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 30px;
}

.news-card,
.welfare-card {
  min-width: 0;
}

.news-card {
  cursor: pointer;
}

.news-card:focus {
  outline: 3px solid rgba(0, 95, 255, 0.35);
  outline-offset: 6px;
}

.news-card img,
.welfare-card img {
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
  background: var(--soft);
  box-shadow: 0 10px 24px rgba(15, 46, 92, 0.08);
}

.news-card img {
  height: 96px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 46, 92, 0.16);
}

.news-card h3,
.welfare-card h3 {
  margin: 12px 0 6px;
  font-size: 15px;
  line-height: 1.55;
}

.news-card time {
  color: #7b879a;
  font-size: 14px;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.home-product-card {
  display: grid;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-product-main {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 230px;
  overflow: hidden;
}

.home-product-card:hover,
.home-product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(0, 95, 255, 0.3);
  box-shadow: 0 22px 46px rgba(15, 46, 92, 0.13);
}

.home-product-main:focus {
  outline: none;
}

.home-product-media {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 0;
  min-width: 0;
  padding: 26px;
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
}

.home-product-media img {
  width: 122px;
  height: 122px;
  object-fit: contain;
  border-radius: 8px;
}

.home-product-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  min-width: 0;
  height: 100%;
  padding: 24px;
}

.home-product-copy small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.home-product-copy strong {
  overflow: hidden;
  color: #102544;
  font-size: 24px;
  line-height: 1.25;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.home-product-copy b {
  color: #26344f;
  font-size: 15px;
  line-height: 1.45;
}

.home-product-copy p {
  margin: 0;
  color: #61708a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.home-product-actions {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.home-product-actions a,
.home-product-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 8px;
}

.home-product-detail {
  color: var(--blue);
  background: #eef6ff;
  border: 1px solid rgba(0, 95, 255, 0.14);
}

.product-download-metric {
  display: grid;
  gap: 2px;
  width: fit-content;
  min-width: 178px;
  margin-top: 8px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f6faff, #eef6ff);
  border: 1px solid #d9e7f7;
  border-radius: 8px;
}

.product-download-metric small {
  color: #61708a;
  font-size: 12px;
  font-weight: 900;
}

.product-download-metric strong {
  color: #075fff;
  font-size: 22px;
  line-height: 1.2;
  white-space: nowrap;
}

.product-download-metric a,
.product-download-metric span {
  color: #61708a;
  font-size: 12px;
  font-weight: 800;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
}

.about-page {
  background: linear-gradient(180deg, #f5f9ff 0, #fff 420px);
}

.about-page-section {
  margin-top: 58px;
  margin-bottom: 64px;
}

.about-intro {
  max-width: 1180px;
}

.about-intro.about-page-section {
  margin-top: 34px;
  margin-bottom: 44px;
}

.about-intro .about-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  align-items: start;
  padding: 34px 40px;
  background: #fff;
  border: 1px solid rgba(219, 231, 245, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 46, 92, 0.07);
}

.about-intro-main {
  min-width: 0;
}

.about-intro-stats {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.about-intro-stats a,
.about-intro-stats div {
  min-width: 0;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid rgba(205, 223, 244, 0.96);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 46, 92, 0.06);
}

.about-intro-stats a {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-intro-stats a:hover,
.about-intro-stats a:focus {
  border-color: rgba(0, 95, 255, 0.35);
  outline: none;
  box-shadow: 0 14px 30px rgba(15, 46, 92, 0.12);
  transform: translateY(-2px);
}

.about-intro-stats strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.1;
}

.about-intro-stats span {
  display: block;
  margin-top: 8px;
  color: #33425e;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.about-band {
  padding: 1px 0;
  background: #f8fbff;
}

.about-band + .content-section,
.content-section + .about-band {
  margin-top: 0;
}

.about-text {
  display: grid;
  gap: 14px;
}

.about-text p {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #33425e;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}

.about-intro .about-text p {
  padding-left: 0;
  color: #31425f;
  font-size: 15.5px;
  font-weight: 650;
  line-height: 1.95;
  text-align: justify;
}

.about-text p::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
}

.about-intro .about-text p::before {
  display: none;
}

#company.about-page-section {
  margin-top: 0;
}

.value-panel {
  display: grid;
  gap: 12px;
}

.value-panel article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f3f8ff, #eaf4ff);
  border: 1px solid rgba(219, 231, 245, 0.9);
  border-radius: 8px;
}

.value-panel span {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
}

.value-panel strong {
  color: #2e3c56;
  font-size: 14px;
  line-height: 1.6;
}

.culture-grid,
.about-card-grid {
  display: grid;
  gap: 24px;
}

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

.culture-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 231, 245, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 46, 92, 0.08);
}

.culture-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fbff;
  border-radius: 8px;
}

.culture-grid div {
  display: grid;
  gap: 8px;
}

.culture-grid span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.culture-grid strong {
  color: #26344f;
  font-size: 15px;
  line-height: 1.7;
}

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

.about-card-grid figure,
.about-feature-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 231, 245, 0.9);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 46, 92, 0.08);
}

.about-card-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--soft);
}

.qualification-grid img {
  height: 250px;
  object-fit: contain;
  padding: 14px;
}

.about-photo-grid img {
  object-position: center top;
}

.scholar-grid img,
.attention-grid img {
  object-fit: contain;
  background: #fff;
}

.scholar-grid img {
  height: 190px;
  padding: 8px;
}

.attention-grid img {
  height: 150px;
  padding: 14px;
}

.scholar-grid,
.attention-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.scholar-grid figure,
.attention-grid figure,
.report-media-grid figure {
  cursor: zoom-in;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.scholar-grid figure:hover,
.scholar-grid figure:focus,
.attention-grid figure:hover,
.attention-grid figure:focus,
.report-media-grid figure:hover,
.report-media-grid figure:focus {
  border-color: rgba(0, 95, 255, 0.45);
  box-shadow: 0 18px 36px rgba(15, 46, 92, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.scholar-grid figcaption {
  padding: 12px;
  font-size: 13px;
}

.attention-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}

.attention-grid figcaption {
  min-height: 84px;
  padding: 12px 14px 14px;
  font-size: 13px;
}

.report-media-grid {
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
  gap: 18px;
}

.report-media-grid img {
  height: 150px;
}

.report-media-grid figcaption {
  min-height: 74px;
  padding: 12px 14px 14px;
  font-size: 13px;
}

.report-network {
  gap: 16px;
}

.report-network .report-media-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}

.report-network figure {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 138px;
  padding: 16px 20px 16px 16px;
  cursor: default;
  min-width: 0;
}

.report-network img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  background: #f8fbff;
  border: 1px solid rgba(219, 231, 245, 0.9);
  border-radius: 6px;
}

.report-network figure > figcaption {
  place-self: center stretch;
  justify-self: start;
  width: 100%;
  min-width: 0;
}

.report-network figure:hover,
.report-network figure:focus {
  border-color: rgba(219, 231, 245, 0.9);
  box-shadow: 0 12px 28px rgba(15, 46, 92, 0.08);
  transform: none;
}

.report-network figcaption {
  display: grid;
  grid-template-columns: 118px 132px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  align-items: baseline;
  justify-content: start;
  justify-items: start;
  min-height: 0;
  padding: 0;
  color: #102544;
  font-size: 15px;
  line-height: 1.6;
  text-align: left !important;
}

.report-network figcaption span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 3px 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  background: #edf5ff;
  border-radius: 999px;
}

.report-network figcaption time {
  color: #7b879a;
  font-size: 15px;
  font-weight: 900;
}

.report-network figcaption strong {
  grid-column: 1 / -1;
  display: block;
  justify-self: start;
  max-width: 100%;
  color: #102544;
  font-size: 17px;
  line-height: 1.55;
  text-align: left;
  overflow-wrap: anywhere;
}

.report-network figcaption span,
.report-network figcaption time,
.report-network .report-source-button {
  justify-self: start;
}

.report-source-button {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  margin-left: 8px;
  padding: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.report-source-button:hover,
.report-source-button:focus {
  color: var(--blue-dark);
  background: transparent;
  outline: none;
}

.report-source-button::after {
  margin-left: 6px;
  content: "↗";
}

.about-card-grid figcaption,
.about-feature-card figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 18px 18px;
  color: #26344f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.65;
  text-align: center;
}

.report-network .about-card-grid figcaption,
.report-network figcaption {
  display: grid;
  grid-template-columns: 118px 132px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  align-items: baseline;
  justify-content: start;
  justify-items: start;
  min-height: 0;
  padding: 0;
  color: #102544;
  font-size: 15px;
  line-height: 1.6;
  text-align: left !important;
}

.report-network figcaption strong {
  grid-column: 1 / -1;
  justify-self: start;
  max-width: 100%;
  text-align: left;
  overflow-wrap: anywhere;
}

.about-feature-card {
  margin-bottom: 24px;
}

.about-feature-card img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
}

.report-group {
  display: grid;
  gap: 18px;
}

.report-group + .report-group {
  margin-top: 38px;
}

.report-group h3 {
  margin: 0;
  color: #102544;
  font-size: 22px;
  line-height: 1.35;
}

.report-group h3::after {
  display: block;
  width: 30px;
  height: 3px;
  margin-top: 8px;
  background: var(--blue);
  border-radius: 999px;
  content: "";
}

.media-viewer {
  width: min(980px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.media-viewer::backdrop {
  background: rgba(6, 18, 38, 0.72);
  backdrop-filter: blur(5px);
}

.media-viewer figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
}

.media-viewer img {
  width: auto;
  max-width: min(100%, 940px);
  max-height: min(78vh, 760px);
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.media-viewer figcaption {
  max-width: min(100%, 760px);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.media-viewer .media-source-link {
  margin: 12px auto 0;
}

.media-arrow {
  position: fixed;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 74px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 64px;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
}

.media-arrow:hover,
.media-arrow:focus {
  color: #fff;
  outline: none;
}

.media-prev {
  left: max(16px, calc((100vw - 1060px) / 2));
}

.media-next {
  right: max(16px, calc((100vw - 1060px) / 2));
}

.welfare-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.welfare-card {
  cursor: zoom-in;
}

.welfare-card:focus {
  outline: 3px solid rgba(0, 95, 255, 0.35);
  outline-offset: 6px;
}

.welfare-card img {
  height: 106px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.welfare-card:hover img {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 46, 92, 0.16);
}

.welfare-card h3 {
  font-size: 14px;
}

.news-page {
  background: linear-gradient(180deg, #f6faff 0, #fff 360px);
}

.news-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  align-items: stretch;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.news-page-hero-copy {
  min-height: 250px;
  padding: clamp(30px, 4vw, 48px);
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-page-hero-copy span,
.news-page-section .section-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news-page-hero-copy h1 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
}

.news-page-hero-copy p {
  max-width: none;
  margin: 0;
  color: #40506d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
  white-space: nowrap;
}

.news-page-hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 30px;
  color: #fff;
  background: linear-gradient(145deg, #005fff, #123fcf);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-page-hero-panel strong {
  font-size: 56px;
  line-height: 1;
}

.news-page-hero-panel span {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 900;
}

.news-page-hero-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.news-page-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.news-page-layout {
  display: block;
}

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

.news-page-card a {
  display: grid;
  grid-template-rows: 190px auto;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-page-card a:hover,
.news-page-card a:focus {
  transform: translateY(-3px);
  border-color: rgba(0, 95, 255, 0.3);
  outline: none;
  box-shadow: 0 22px 46px rgba(15, 46, 92, 0.13);
}

.news-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.news-page-card-copy {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 20px 22px 22px;
}

.news-page-card-copy time,
.news-page-aside-item time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news-page-card-copy strong {
  color: #102544;
  font-size: 18px;
  line-height: 1.45;
}

.news-page-card-copy p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #61708a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news-page-aside {
  display: none;
}

.news-page-aside h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.news-page-aside-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.news-page-aside-item strong {
  color: #26344f;
  font-size: 15px;
  line-height: 1.55;
}

.news-page-aside-item:hover strong,
.news-page-aside-item:focus strong {
  color: var(--blue);
}

.products-page {
  background: linear-gradient(180deg, #f6faff 0, #fff 360px);
}

.products-page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.products-page-hero-copy {
  min-height: 270px;
  padding: clamp(30px, 4vw, 48px);
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.products-page-hero-copy span,
.products-page-section .section-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.products-page-hero-copy h1 {
  margin: 8px 0 18px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
}

.products-page-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: #40506d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.products-page-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.products-page-layout {
  display: block;
}

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

.products-page-card a {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.products-page-card a:hover,
.products-page-card a:focus {
  transform: translateY(-3px);
  border-color: rgba(0, 95, 255, 0.3);
  outline: none;
  box-shadow: 0 22px 46px rgba(15, 46, 92, 0.13);
}

.products-page-card-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px;
  background: linear-gradient(135deg, #eef6ff, #f7fbff);
}

.products-page-card-media img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.home-product-media img[src$="logo_zh1.png"],
.products-page-card-media img[src$="logo_zh1.png"] {
  width: 188px;
  height: 88px;
}

.products-page-card-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 22px 24px 24px;
}

.products-page-card-copy small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.products-page-card-copy strong {
  color: #102544;
  font-size: 24px;
  line-height: 1.3;
}

.products-page-card-copy b {
  color: #26344f;
  font-size: 16px;
  line-height: 1.55;
}

.products-page-card-copy p {
  margin: 0;
  color: #61708a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.products-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.products-page-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #075fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  background: #eef6ff;
  border-radius: 999px;
}

.products-page-aside {
  position: sticky;
  top: 94px;
  padding: 24px;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
}

.products-page-aside h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.products-page-aside-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.products-page-aside-group h3 {
  margin: 0 0 10px;
  color: #102544;
  font-size: 16px;
}

.products-page-aside-group ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: #61708a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
}

.products-page-aside-group li::before {
  color: #11a872;
  font-weight: 900;
  content: "• ";
}

.product-detail-page {
  background: linear-gradient(180deg, #f6faff 0, #fff 420px);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.product-detail-copy {
  min-height: 310px;
  padding: clamp(30px, 4vw, 52px);
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-detail-copy p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
}

.product-detail-copy > strong {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: #26344f;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(0, 95, 255, 0.18);
  border-radius: 999px;
}

.product-detail-visual {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 38px;
  background: linear-gradient(145deg, #005fff 0%, #0d49d8 55%, #11a872 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-detail-visual img {
  width: min(220px, 80%);
  height: 180px;
  object-fit: contain;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 58px;
}

.product-detail-main,
.product-detail-aside {
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
}

.product-detail-main {
  padding: 30px;
}

.product-detail-summary {
  margin: 0 0 24px;
  color: #26344f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
}

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

.product-detail-sections section {
  min-width: 0;
  padding: 22px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-sections h3 {
  margin: 0 0 10px;
  color: #102544;
  font-size: 18px;
}

.product-detail-sections p {
  margin: 0;
  color: #61708a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.product-detail-aside {
  position: sticky;
  top: 94px;
  padding: 24px;
}

.product-detail-aside h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.product-detail-aside ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: #26344f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  list-style: none;
}

.product-detail-aside li {
  padding: 12px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-detail-stats {
  margin-top: 18px;
}

.product-detail-stats:empty {
  display: none;
}

.product-detail-stats-card {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #f6faff, #eef6ff);
  border: 1px solid #d9e7f7;
  border-radius: 8px;
}

.product-detail-stats-card small {
  color: #61708a;
  font-size: 13px;
  font-weight: 900;
}

.product-detail-stats-card strong {
  color: #075fff;
  font-size: 28px;
  line-height: 1.2;
}

.product-detail-stats-card a {
  color: #61708a;
  font-size: 13px;
  font-weight: 800;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.product-back-link::before {
  margin-right: 8px;
  content: "←";
}

.product-related-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

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

.product-related-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 46, 92, 0.07);
}

.product-related-card:hover,
.product-related-card:focus {
  border-color: rgba(0, 95, 255, 0.3);
  outline: none;
  box-shadow: 0 18px 40px rgba(15, 46, 92, 0.12);
}

.product-related-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 10px;
  background: #eef6ff;
  border-radius: 8px;
}

.product-related-card span {
  display: grid;
  gap: 6px;
}

.product-related-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.product-related-card strong {
  color: #102544;
  font-size: 18px;
  line-height: 1.35;
}

.welfare-page {
  background: linear-gradient(180deg, #f6faff 0, #fff 360px);
}

.welfare-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.welfare-hero-copy {
  min-height: 270px;
  padding: clamp(30px, 4vw, 48px);
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.welfare-hero-copy span,
.welfare-page-section .section-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.welfare-hero-copy h1 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
}

.welfare-hero-copy p {
  max-width: none;
  margin: 0;
  color: #40506d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
}

.welfare-page-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
}

.welfare-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.welfare-banner-tags b {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  background: #eef6ff;
  border: 1px solid rgba(0, 95, 255, 0.12);
  border-radius: 999px;
}

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

.welfare-page-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.welfare-page-card:hover,
.welfare-page-card:focus {
  transform: translateY(-3px);
  border-color: rgba(0, 95, 255, 0.28);
  outline: none;
  box-shadow: 0 22px 46px rgba(15, 46, 92, 0.13);
}

.welfare-page-card img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-bottom: 1px solid #d9e7f7;
}

.welfare-page-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px 20px;
  flex-grow: 1;
}

.welfare-page-card-copy span {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: #eef6ff;
  border-radius: 999px;
}

.welfare-page-card-copy h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.welfare-page-card-copy p {
  margin: 10px 0 0;
  color: #53657f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.contact {
  margin-top: 60px;
  background: linear-gradient(100deg, #edf6ff, #f8fbff);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: #26344f;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.qr-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  align-content: center;
  min-width: 140px;
}

.qr-code,
.qr-image {
  display: grid;
  width: 86px;
  height: 86px;
  background: #fff;
  border: 1px solid var(--line);
}

.qr-code {
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
}

.qr-image {
  object-fit: cover;
  padding: 4px;
}

.qr-code span {
  background: #07152c;
}

.qr-code span:nth-child(2n),
.qr-code span:nth-child(7),
.qr-code span:nth-child(11) {
  background: #fff;
}

.footer {
  color: rgba(255, 255, 255, 0.86);
  background: #07152c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.footer-records,
.police-record {
  display: flex;
  align-items: center;
}

.footer-records {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-records a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.footer-records a:hover,
.footer-records a:focus {
  color: #fff;
}

.police-record {
  gap: 4px;
}

.police-record img {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.detail-page {
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 340px);
}

.detail-hero {
  padding: 58px 20px 44px;
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
}

.detail-hero-inner {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.back-link::before {
  margin-right: 8px;
  content: "←";
}

.detail-hero p {
  display: none;
}

.detail-hero h1 {
  max-width: none;
  margin: 0;
  overflow: visible;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.25;
  white-space: nowrap;
}

.detail-hero time {
  display: block;
  margin-top: 18px;
  color: #61708a;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.article-shell {
  width: min(900px, calc(100% - 40px));
  margin: -16px auto 70px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-content {
  display: grid;
  gap: 18px;
}

.article-content p {
  margin: 0;
  color: #26344f;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.article-content img {
  width: min(100%, 800px);
  max-height: 620px;
  object-fit: contain;
  margin: 8px auto;
  background: #f8fbff;
  border-radius: 8px;
}

.official-notice {
  display: grid;
  gap: 18px;
}

.official-notice h2 {
  margin: 0;
  padding-bottom: 18px;
  color: #0b4fb3;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
  border-bottom: 1px solid #dfe7f2;
}

.official-notice-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: -8px;
  color: #26344f;
  font-size: 14px;
  font-weight: 700;
}

.article-content .official-notice p {
  color: #626b78;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
  text-indent: 2em;
}

.article-content .official-notice-signature {
  margin-top: 18px;
  padding-right: 8px;
  text-align: right;
  text-indent: 0;
}

.official-notice h3,
.article-summary h3 {
  margin: 54px 0 0;
  color: #111827;
  font-size: 28px;
  line-height: 1.35;
  text-align: center;
}

.official-notice img {
  width: min(100%, 793px);
  max-height: none;
  box-shadow: none;
}

.article-summary {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 26px;
  background: #f7fbff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
}

.article-content .article-summary p {
  color: #26344f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.article-summary h3 {
  margin-top: 0;
  color: var(--ink);
  font-size: 24px;
  text-align: left;
}

.image-dialog,
.content-dialog {
  width: min(900px, calc(100vw - 36px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.content-dialog {
  width: min(920px, calc(100vw - 36px));
}

.image-dialog::backdrop,
.content-dialog::backdrop {
  background: rgba(6, 18, 38, 0.72);
  backdrop-filter: blur(5px);
}

.image-dialog img {
  display: block;
  width: auto;
  max-width: min(100%, 900px);
  max-height: 82vh;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.image-dialog p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.dialog-body {
  max-height: 82vh;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.news-detail {
  padding: 28px;
}

.news-detail img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--soft);
  border-radius: 8px;
}

.news-detail time {
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.news-detail h2,
.gallery-detail h2 {
  margin: 8px 0 16px;
  font-size: 28px;
  line-height: 1.35;
}

.rich-text {
  display: grid;
  gap: 12px;
}

.rich-text p,
.gallery-detail p {
  margin: 0;
  color: #34425f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.dialog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  background: var(--blue);
  border-radius: 8px;
}

.dialog-link::after {
  margin-left: 8px;
  content: "↗";
}

.gallery-detail {
  padding: 30px;
}

.gallery-detail > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.news-list-dialog {
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-list-dialog > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news-list-dialog h2 {
  margin: 8px 0 22px;
  color: #102544;
  font-size: 28px;
}

.news-list-panel {
  display: grid;
  gap: 12px;
  max-height: min(68vh, 680px);
  overflow: auto;
  padding-right: 6px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 10px;
  color: #26344f;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list-item:hover,
.news-list-item:focus {
  border-color: rgba(0, 95, 255, 0.35);
  box-shadow: 0 12px 28px rgba(15, 46, 92, 0.1);
}

.news-list-item img {
  width: 112px;
  height: 72px;
  object-fit: cover;
  background: var(--soft);
  border-radius: 6px;
}

.news-list-item span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.news-list-item time {
  color: #7b879a;
  font-size: 13px;
  font-weight: 800;
}

.news-list-item strong {
  color: #102544;
  font-size: 16px;
  line-height: 1.5;
}

.gallery-item {
  margin: 0;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-item figcaption {
  margin-top: 10px;
  color: #26344f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.ip-page {
  background: linear-gradient(180deg, #f5f9ff 0, #fff 360px);
}

.ip-hero {
  padding: 58px 20px 48px;
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
}

.ip-hero > div,
.ip-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ip-hero p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.ip-hero h1 {
  margin: 0;
  color: #102544;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.25;
}

.about-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 34px;
}

.about-hero-copy {
  min-height: 270px;
  padding: clamp(30px, 4vw, 48px);
  background-image: var(--hero-bg-layers);
  background-position: var(--hero-bg-position);
  background-size: var(--hero-bg-size);
  background-repeat: var(--hero-bg-repeat);
  border: 1px solid rgba(219, 231, 245, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-hero-copy span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.ip-hero span {
  display: inline-flex;
  margin-top: 18px;
  color: #61708a;
  font-size: 15px;
  font-weight: 900;
  
}

.about-hero-copy h1 {
  max-width: 820px;
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.1;
}

.about-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: #40506d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.ip-section {
  padding: 42px 0 72px;
}

.ip-group-list {
  display: grid;
  gap: 54px;
  
}

.ip-group + .ip-group {
  margin-top: 0;
}

.ip-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.ip-group-heading h2 {
  margin: 0;
  color: #102544;
  font-size: 26px;
  line-height: 1.35;
}

.ip-group-heading span {
  color: #61708a;
  font-size: 14px;
  font-weight: 900;
}

.ip-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ip-card {
  display: grid;
  grid-template-rows: 240px auto 1fr;
  min-width: 0;
  padding: 0 0 18px;
  overflow: hidden;
  cursor: pointer;
  text-align:center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 46, 92, 0.08);
}

.ip-card:hover,
.ip-card:focus {
  border-color: rgba(0, 95, 255, 0.35);
  box-shadow: 0 18px 36px rgba(15, 46, 92, 0.14);
}

.ip-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: var(--soft);
}

.ip-card span {
  display: inline-flex;
  margin: 16px 16px 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.ip-card strong {
  display: block;
  min-height: 48px;
  margin: 0 16px;
  color: #102544;
  font-size: 15px;
  line-height: 1.6;
  word-break: normal;
  overflow-wrap: anywhere;
  writing-mode: horizontal-tb;
}

.trademark-table-shell {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e7f7;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 46, 92, 0.08);
}

.trademark-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.trademark-table th,
.trademark-table td {
  padding: 18px 20px;
  color: #26344f;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid #e4edf8;
}

.trademark-table th {
  color: #102544;
  font-size: 14px;
  font-weight: 900;
  background: #f2f7ff;
}

.trademark-table tr:last-child td {
  border-bottom: 0;
}

.trademark-table td strong {
  color: #102544;
  font-size: 16px;
  font-weight: 900;
}

.table-link-button {
  min-height: 34px;
  padding: 0 14px;
  cursor: pointer;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: #eef5ff;
  border: 1px solid rgba(0, 95, 255, 0.18);
  border-radius: 999px;
}

.table-link-button:hover,
.table-link-button:focus {
  color: #fff;
  background: var(--blue);
  outline: none;
}

.dialog-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  color: #07152c;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 15px 12px;
  }

  .nav a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-inner {
    padding: 58px 0 100px;
  }

  .hero {
    --hero-bg-size: auto, auto 92%, auto;
  }

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

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

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

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-intro .about-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .report-network .report-media-grid {
    grid-template-columns: 1fr;
  }

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

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

  .news-page-hero,
  .news-page-layout,
  .products-page-hero,
  .product-detail-hero,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-page-aside,
  .products-page-aside,
  .product-detail-aside {
    position: static;
  }

  .home-product-grid,
  .product-detail-sections,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

  .report-network figure {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
  }

  .report-network img {
    height: 92px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
    gap: 24px;
  }

  .contact-inner {
    flex-direction: row;
    align-items: center;
    padding: 28px 0;
    gap: 16px;
  }

  .contact-list {
    font-size: 14px;
    gap: 10px;
    line-height: 1.6;
  }

  .qr-card {
    min-width: 0;
    width: 86px;
    justify-items: center;
    flex-shrink: 0;
  }

  .footer-records {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .hero {
    min-height: 430px;
    --hero-bg-size: auto, auto 100%, auto;
    --hero-bg-position: center, 58% bottom, center;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding-top: 56px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-hero {
    width: min(100% - 28px, 1180px);
    padding: 34px 0 28px;
  }

  .about-hero-copy {
    min-height: 250px;
    padding: 28px;
    background-size: auto, auto 100%, auto;
    background-position: center, 58% bottom, center;
  }

  .about-hero-copy h1 {
    max-width: none;
    font-size: clamp(32px, 7.8vw, 42px);
    line-height: 1.18;
  }

  .about-hero-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.75;
    white-space: normal;
  }

  .news-page-hero-copy p,
  .welfare-hero-copy p {
    white-space: normal;
  }

  .news-grid,
  .home-product-grid,
  .welfare-grid,
  .welfare-page-grid,
  .ip-card-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    width: min(100% - 32px, 1180px);
    margin-top: -86px;
    padding: 18px;
  }

  .metric {
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 10px;
    min-height: 58px;
  }

  .metric-icon {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .metric strong {
    font-size: 22px;
  }

  .metric small {
    font-size: 11px;
  }

  .about-intro .about-copy {
    padding: 24px 22px;
  }

  .about-intro-stats {
    grid-template-columns: 1fr;
  }

  .about-intro-stats a,
  .about-intro-stats div {
    padding: 16px 18px;
  }

  .about-intro .about-text p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .news-card img,
  .welfare-card img {
    height: 150px;
  }

  .welfare-hero,
  .welfare-page-section,
  .news-page-hero,
  .news-page-section,
  .products-page-hero,
  .products-page-section,
  .product-detail-hero,
  .product-detail-layout,
  .product-related-section {
    width: min(100% - 28px, 1180px);
  }

  .news-page-hero,
  .products-page-hero,
  .product-detail-hero {
    padding-top: 34px;
  }

  .news-page-card a {
    grid-template-columns: 1fr;
  }

  .news-page-card img {
    height: 190px;
  }

  .news-page-card-copy {
    padding: 20px;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .news-page-list {
    grid-template-columns: 1fr;
  }

  .trademark-table,
  .trademark-table thead,
  .trademark-table tbody,
  .trademark-table tr,
  .trademark-table th,
  .trademark-table td {
    display: block;
  }

  .trademark-table thead {
    display: none;
  }

  .trademark-table tr {
    padding: 16px 18px;
    border-bottom: 1px solid #e4edf8;
  }

  .trademark-table tr:last-child {
    border-bottom: 0;
  }

  .trademark-table td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    text-align: left;
    border-bottom: 0;
  }

  .trademark-table td::before {
    color: #61708a;
    font-size: 12px;
    font-weight: 900;
    content: attr(data-label);
  }

  .products-page-card-media {
    min-height: 160px;
  }

  .home-product-main {
    grid-template-columns: 1fr;
    grid-template-rows: 160px auto;
    min-height: 380px;
  }

  .home-product-media {
    min-height: 160px;
  }

  .home-product-copy {
    height: auto;
  }

  .home-product-actions {
    grid-template-columns: 1fr;
  }

  .product-detail-main {
    padding: 22px;
  }

  .product-detail-visual {
    min-height: 220px;
  }

  .welfare-hero {
    padding-top: 34px;
  }

  .welfare-page-card img {
    height: auto;
  }

  .value-panel article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .culture-grid,
  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .culture-grid article {
    padding: 18px;
  }

  .about-card-grid img,
  .qualification-grid img {
    height: auto;
    max-height: none;
  }

  .attention-grid img {
    height: 180px;
  }

  .scholar-grid img {
    height: 220px;
    padding: 10px;
  }

  .report-network figure {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 112px;
    column-gap: 12px;
    padding: 12px;
  }

  .report-network img {
    width: 92px;
    height: 70px;
  }

  .report-source-button {
    margin-left: 6px;
  }

  .report-network .about-card-grid figcaption,
  .report-network figcaption {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 6px 10px;
  }

  .about-card-grid figcaption,
  .about-feature-card figcaption {
    min-height: 0;
  }

  .news-detail {
    padding: 20px;
  }

  .news-detail img {
    height: 180px;
  }

  .gallery-detail {
    padding: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-hero,
  .ip-hero {
    padding: 38px 20px 34px;
    --hero-bg-size: auto, auto 66%, auto;
    
  }

  .detail-hero-inner {
    width: 100%;
  }

  .detail-hero h1 {
    overflow: visible;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.28;
    text-overflow: clip;
    white-space: normal;
  }

  .article-shell {
    padding: 22px;
  }

  .article-content p {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .welfare-hero {
    padding: 30px 0 22px;
  }

  .welfare-hero-copy h1 {
    font-size: 38px;
  }

  .welfare-hero-copy p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.75;
    white-space: normal;
  }

  .welfare-page-card img {
    height: auto;
  }

}
