:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #162033;
  --muted: #687589;
  --line: #dde5ee;
  --brand: #145fbd;
  --brand-dark: #0d3771;
  --red: #d72f2f;
  --gold: #c9882a;
  --green: #13967d;
  --soft: #f8fbff;
  --dark: #101827;
  --shadow: 0 18px 50px rgba(17, 31, 52, 0.10);
  --radius: 8px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
a,
button,
span {
  overflow-wrap: anywhere;
}

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

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

.container {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(221, 229, 238, 0.92);
  box-shadow: 0 8px 24px rgba(17, 31, 52, 0.04);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image {
  width: auto;
  height: 40px;
  max-width: 150px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 2px;
}

.nav a {
  position: relative;
  padding: 27px 12px;
  color: #263246;
  font-size: 15px;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 18px;
  left: 12px;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--brand);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.home-hero {
  min-height: 660px;
  padding: 84px 0 72px;
  color: #fff;
  background: linear-gradient(120deg, #0d2341 0%, #124a8e 52%, #1c6faf 100%);
  overflow: hidden;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e7b45d;
  font-size: 14px;
  font-weight: 700;
}

.hero-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.home-hero h1,
.split-panel h2 {
  margin: 18px 0 0;
  font-size: 52px;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-hero p,
.split-panel p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: var(--brand);
  background: #fff;
  border-color: #c9d8ec;
}

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

.home-hero-art {
  position: relative;
}

.home-hero-art img {
  width: 100%;
  height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.24));
}

.inner-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #14243b;
}

.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 24, 43, 0.82), rgba(11, 24, 43, 0.38));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.inner-hero p {
  margin: 0 0 12px;
  color: #e7b45d;
  font-size: 15px;
  font-weight: 700;
}

.inner-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 44px;
  line-height: 1.2;
  letter-spacing: 0;
}

.inner-hero span {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.section {
  padding: 78px 0;
}

.services-band,
.news-band,
.soft-band {
  background: #fff;
}

.cases-band,
.solutions-band,
.contact-band {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.service-grid,
.case-grid,
.solution-grid,
.news-grid,
.feature-grid,
.flow-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.feature-grid article,
.flow-card,
.contact-list,
.form,
.detail-content {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17, 31, 52, 0.05);
}

.service-card {
  min-height: 230px;
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.case-card:hover,
.solution-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 22px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 800;
}

.service-card.green span {
  background: var(--green);
}

.service-card.orange span {
  background: var(--gold);
}

.service-card.violet span {
  background: #6946a8;
}

.service-card h3,
.case-info h3,
.solution-card h3,
.news-card h3,
.feature-grid h3,
.flow-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.case-info h3,
.solution-card h3,
.news-card h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.case-info h3 a,
.news-card h3 a {
  color: inherit;
}

.service-card p,
.case-info p,
.solution-card p,
.news-card p,
.feature-grid p,
.flow-card p {
  margin: 0;
  color: var(--muted);
}

.case-info p,
.solution-card p,
.news-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.75em * 3);
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.case-card {
  display: grid;
  grid-template-columns: 46% minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-thumb img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.case-info {
  padding: 28px;
}

.case-info > span,
.news-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 62px;
  margin-top: 18px;
  overflow: hidden;
}

.tag-list em {
  padding: 4px 10px;
  color: var(--brand);
  background: #eef5ff;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.dark-band {
  color: #fff;
  background: var(--dark);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 44px;
}

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

.stat {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.about-intro .stat {
  background: #fff;
  border-color: var(--line);
}

.stat strong {
  display: block;
  color: #e7b45d;
  font-size: 34px;
  line-height: 1;
}

.about-intro .stat strong {
  color: var(--brand);
}

.stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.about-intro .stat span {
  color: var(--muted);
}

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

.solution-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.solution-card > div {
  padding: 26px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

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

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card > div {
  padding: 24px;
}

.partner-band {
  padding: 34px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.partner-strip span {
  display: grid;
  min-height: 70px;
  place-items: center;
  color: #7a8799;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: start;
  gap: 44px;
}

.lead {
  margin: 0;
  color: #445168;
  font-size: 18px;
}

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

.feature-grid article {
  padding: 30px;
}

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

.flow-card {
  min-height: 190px;
  padding: 26px;
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 28px;
  font-weight: 800;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
}

.filter-button.is-active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 76px 24px;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--brand);
}

.detail h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: 0;
}

.detail-hero {
  margin-bottom: 28px;
}

.detail-hero span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.detail-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.detail-meta {
  margin: 16px 0 28px;
  color: var(--muted);
}

.detail-content {
  padding: 38px;
}

.detail-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-meta-grid div {
  min-width: 0;
}

.detail-meta-grid strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-meta-grid span {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 700;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 26px;
}

.detail-tags em {
  padding: 4px 10px;
  color: var(--brand);
  background: #eef5ff;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
}

.detail-keyword-lines {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-keyword-lines > strong {
  color: var(--ink);
  font-size: 15px;
}

.detail-keyword-lines div {
  display: grid;
  gap: 7px;
}

.detail-keyword-lines span {
  color: #445168;
  line-height: 1.6;
}

.detail-section {
  margin-top: 30px;
}

.detail-content h2 {
  margin: 30px 0 10px;
  font-size: 25px;
}

.detail-content h2:first-of-type {
  margin-top: 0;
}

.detail-content p {
  color: #445168;
}

.detail-content h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 19px;
}

.detail-content ol,
.detail-content ul {
  margin: 12px 0 20px;
  padding-left: 22px;
  color: #445168;
}

.detail-content li {
  margin: 8px 0;
  line-height: 1.8;
}

.detail-content strong {
  color: var(--ink);
}

.detail-table-wrap {
  overflow-x: auto;
  margin: 18px 0 22px;
}

.detail-table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  color: #445168;
  font-size: 15px;
}

.detail-table-wrap th,
.detail-table-wrap td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table-wrap th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 700;
}

.detail-body > *:first-child {
  margin-top: 0;
}

.article-keyword-block {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-keyword-block h2 {
  margin-top: 0;
}

.article-keyword-block ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 24px;
  margin-bottom: 8px;
}

.detail-divider {
  margin: 34px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.detail-faq {
  margin-top: 34px;
}

.detail-publisher {
  margin-top: 34px;
}

.detail-publisher-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-publisher-card div {
  min-width: 0;
}

.detail-publisher-card strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-publisher-card span {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list h3 {
  margin-top: 0;
  font-size: 17px;
}

.faq-list p {
  margin-bottom: 0;
}

.detail-point-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.detail-point-list li {
  padding: 14px 16px;
  color: #354257;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.related-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.related-case-grid a {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.related-case-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.related-case-grid strong {
  color: var(--ink);
  font-size: 16px;
}

.related-case-grid span {
  color: var(--muted);
  font-size: 14px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-list,
.form {
  padding: 30px;
}

.contact-list h2 {
  margin: 12px 0 20px;
  font-size: 32px;
}

.contact-list p {
  margin: 10px 0;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 15px;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.form textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--brand);
}

.form-note.is-error {
  color: var(--red);
}

.site-footer {
  padding: 54px 0 28px;
  color: #c7d1df;
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 15px;
  color: #fff;
}

.footer-grid p,
.footer-grid a {
  color: #c7d1df;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f9cad;
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.back-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-phone {
    display: none;
  }

  .nav a {
    padding-right: 9px;
    padding-left: 9px;
  }

  .home-hero-inner,
  .split-panel,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .solution-grid,
  .news-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 14px 16px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(17, 31, 52, 0.08);
  }

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

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

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

  .home-hero {
    min-height: auto;
    padding: 56px 0 44px;
  }

  .home-hero-inner {
    gap: 30px;
  }

  .home-hero h1,
  .split-panel h2,
  .inner-hero h1,
  .detail h1 {
    font-size: 32px;
  }

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

  .detail-keyword-lines {
    grid-template-columns: 1fr;
  }

  .article-keyword-block ol {
    grid-template-columns: 1fr;
  }

  .home-hero p,
  .split-panel p,
  .inner-hero span {
    font-size: 16px;
  }

  .home-hero-art img {
    height: 320px;
  }

  .inner-hero {
    min-height: 300px;
  }

  .section {
    padding: 54px 0;
  }

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

  .section-head h2 {
    font-size: 28px;
  }

  .case-grid,
  .service-grid,
  .solution-grid,
  .news-grid,
  .feature-grid,
  .flow-grid,
  .stats,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-thumb img {
    min-height: 230px;
  }
}

@media (max-width: 540px) {
  .logo-image {
    height: 36px;
    max-width: 135px;
  }

  .home-hero h1,
  .split-panel h2,
  .inner-hero h1,
  .detail h1 {
    font-size: 27px;
  }

  .hero-actions,
  .detail-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-hero-art img {
    height: 250px;
  }

  .detail {
    padding: 52px 14px;
  }

  .detail-content,
  .article-keyword-block,
  .contact-list,
  .form,
  .case-info,
  .solution-card > div,
  .news-card > div {
    padding: 22px;
  }

  .detail-meta-grid,
  .detail-publisher-card,
  .detail-point-list,
  .detail-gallery,
  .related-case-grid {
    grid-template-columns: 1fr;
  }

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