:root {
  --blue: #003684;
  --blue-dark: #001f52;
  --orange: #fd6e1e;
  --text: #444;
  --heading: #222;
  --muted: #6b7280;
  --line: #e5e9f1;
  --bg: #fff;
  --soft: #f6f8fb;
  --footer: #04091e;
  --shadow: 0 16px 42px rgba(0, 31, 82, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.top-strip {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.top-strip__inner {
  min-height: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.main-nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  width: 64px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0f66bf);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
}

.brand__text {
  display: grid;
  min-width: 0;
  line-height: 1.25;
}

.brand__text strong {
  color: var(--heading);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.brand__text small {
  color: var(--blue);
  font-weight: 700;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 26px 12px;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s ease;
}

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

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 16px;
}

.nav-toggle {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--blue);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  background: linear-gradient(180deg, #f5f8fc 0%, #fff 100%);
  padding: 54px 0 34px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 30px;
  align-items: center;
  min-width: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
}

.mobile-hero-copy {
  display: none;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.slide img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 6px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #c6cfdd;
}

.slider-dots button.is-active {
  width: 24px;
  background: var(--orange);
}

.client-card {
  background: #fff;
  box-shadow: var(--shadow);
  min-width: 0;
  max-width: 100%;
}

.client-card__image {
  min-height: 150px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(0deg, rgba(0, 54, 132, 0.78), rgba(0, 54, 132, 0.2)),
    url("public/assets/aulwin/blog/main-blog/m-blog-6.png") center/cover;
}

.client-card__image h1 {
  margin: 0 0 2px;
  font-size: 18px;
  line-height: 1.35;
}

.client-card__image p {
  margin: 0;
  color: #fff;
}

.client-card__body {
  padding: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.button,
.main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 18px;
  margin-top: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
  max-width: 100%;
}

.button:hover,
.main-button:hover {
  transform: translateY(-2px);
}

.button--primary,
.main-button {
  color: #fff;
  background: var(--blue);
}

.button--light {
  color: var(--blue);
  background: #edf2f8;
}

.button__icon {
  font-size: 24px;
}

.info-section,
.advantage-area,
.about-area {
  padding: 72px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.section-kicker,
.section-heading span {
  display: block;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}

.news-panel h2,
.schedule-panel h2,
.section-heading h2 {
  margin: 2px 0 18px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.25;
}

.news-panel h2 a,
.schedule-panel h2 a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.link-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.link-list li {
  position: relative;
  padding: 5px 0 5px 16px;
  border-bottom: 1px solid #f1f3f6;
}

.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.link-list a:hover {
  color: var(--orange);
}

.service-area {
  padding: 82px 0;
  background: var(--blue);
}

.section-heading {
  margin-bottom: 36px;
  text-align: center;
}

.section-heading--left {
  text-align: left;
}

.section-heading--light h2,
.section-heading--light span {
  color: #fff;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #111;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
  opacity: 0.65;
}

.service-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
}

.service-card a {
  color: var(--orange);
  font-weight: 800;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 36px;
  text-align: center;
}

.advantage-grid article {
  padding: 26px 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.advantage-grid img {
  height: 56px;
  margin: 0 auto 12px;
}

.advantage-grid p {
  margin: 0;
  color: var(--heading);
  font-weight: 800;
}

.advantage-grid small {
  color: var(--muted);
}

.about-area {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
}

.about-copy p {
  margin-top: 0;
}

.about-copy img {
  margin-top: 18px;
}

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

.metrics-grid article {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 31, 82, 0.08);
}

.metric-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 2px solid rgba(253, 110, 30, 0.24);
  border-radius: 50%;
  font-weight: 800;
}

.metric-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
}

.metrics-grid strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.metrics-grid p {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.45;
}

.metrics-grid small {
  color: var(--muted);
  font-weight: 400;
}

.cta-area {
  padding: 48px 0;
  color: #fff;
  background: var(--blue);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  margin: 0;
  opacity: 0.88;
}

.cta-inner h2 {
  margin: 4px 0 0;
  font-size: 34px;
  line-height: 1.2;
}

.main-button {
  min-width: 210px;
  margin: 0;
  background: var(--orange);
}

.footer-area {
  padding: 70px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 50px;
}

.footer-area h3 {
  margin: 0;
  color: var(--orange);
}

.footer-area h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
}

.qr {
  width: 260px;
  max-width: 100%;
  background: #fff;
}

address {
  font-style: normal;
}

.copyright {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.floating-toolbar {
  position: fixed;
  right: 0;
  top: 210px;
  z-index: 60;
  display: grid;
  gap: 4px;
}

.float-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
}

.float-button:hover,
.float-button:focus {
  background: var(--orange);
}

.float-button--top {
  display: none;
  background: #bfc4cc;
}

.float-button--top.is-visible {
  display: grid;
}

.float-panel {
  position: absolute;
  top: 0;
  right: 54px;
  width: 240px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: 0.2s ease;
}

.floating-toolbar:hover .float-panel,
.floating-toolbar:focus-within .float-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.float-panel p {
  margin: 5px 0;
}

@media (max-width: 980px) {
  .top-strip {
    display: none;
  }

  .main-nav__inner {
    min-height: 68px;
  }

  .brand__text strong {
    font-size: 14px;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 16px;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-menu a {
    padding: 12px 4px;
  }

  .dropdown {
    position: static;
    width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f5f7fb;
  }

  .hero__grid,
  .info-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .hero-slider {
    min-height: 330px;
  }

  .slide img {
    max-height: 300px;
  }

  .floating-toolbar {
    display: none;
  }

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

@media (max-width: 720px) {
  body,
  main,
  section,
  header,
  footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, 1140px);
  }

  .brand__mark {
    width: 54px;
    height: 38px;
    font-size: 19px;
  }

  .brand__text strong {
    max-width: 170px;
    font-size: 12px;
    line-height: 1.25;
  }

  .main-nav__inner {
    gap: 10px;
    padding-right: 56px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-slider {
    min-height: 230px;
    display: grid;
    place-items: center;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.9)),
      url("public/assets/aulwin/banner/index-1.png") center/cover;
  }

  .mobile-hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    width: 100%;
    padding: 0 24px;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 31, 82, 0.45);
  }

  .mobile-hero-copy span,
  .mobile-hero-copy small {
    color: #fff;
    font-weight: 800;
  }

  .mobile-hero-copy strong {
    color: #fff;
    font-size: 28px;
    line-height: 1.18;
  }

  .hero-slider::before {
    content: "";
    position: absolute;
    inset: 48px 32px;
    z-index: 1;
    background: rgba(0, 54, 132, 0.68);
  }

  .slide img {
    display: none;
  }

  .client-card__body {
    padding: 24px 18px;
  }

  .client-card__body p {
    max-width: 100%;
    white-space: normal;
  }

  .info-section,
  .advantage-area,
  .about-area,
  .service-area {
    padding: 52px 0;
  }

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

  .advantage-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card img {
    min-height: 250px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner h2 {
    font-size: 26px;
  }
}

/* ===== 多页面通用样式 ===== */

/* 页面横幅 */
.page-banner {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 82, 0.3) 0%, rgba(0, 31, 82, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.page-banner__overlay h1 {
  color: #fff;
  font-size: 42px;
  margin: 0;
  line-height: 1.2;
}

.page-banner__overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin: 4px 0 0;
}

/* 内容区块 */
.content-section {
  padding: 72px 0;
}

.content-section.bg-soft {
  background: var(--soft);
}

/* 通用标题 */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--heading);
  font-size: 32px;
  margin: 8px 0 0;
}

/* 导航激活状态 */
.nav-menu a.is-active {
  color: var(--orange);
}

/* PLACEHOLDER_STYLES_2 */

/* ===== About 关于我们页面 ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro-text .section-kicker {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.about-intro-text h2 {
  font-size: 28px;
  color: var(--heading);
  margin: 0 0 16px;
}

.about-intro-text p {
  margin: 0 0 12px;
  line-height: 1.8;
}

.about-intro-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* 价值观网格 */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.value-card h3 {
  color: var(--heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* 时间线 */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-year {
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
}

.timeline-content h3 {
  color: var(--heading);
  font-size: 16px;
  margin: 0 0 4px;
}

.timeline-content p {
  color: var(--text);
  margin: 0;
  font-size: 14px;
}

/* 合作伙伴 */
.partners-area {
  text-align: center;
}

.partners-area img {
  max-width: 100%;
  margin: 0 auto;
}

/* PLACEHOLDER_STYLES_3 */

/* ===== Services 服务页面 ===== */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-intro-text p {
  line-height: 1.8;
  margin: 0 0 12px;
}

.service-intro-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* 两列网格 */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.two-col-grid h2,
.two-col-grid h3 {
  color: var(--heading);
  margin: 0 0 12px;
}

.feature-list {
  padding-left: 20px;
  margin: 12px 0 0;
}

.feature-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* 航线卡片 */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.route-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.route-card:hover {
  box-shadow: var(--shadow);
}

.route-card h3 {
  color: var(--heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.route-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* 优势网格 */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.advantage-item {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  background: var(--soft);
  border-radius: 50%;
}

.advantage-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
}

.advantage-item h3 {
  color: var(--heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.advantage-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* 服务类型卡片 */
.service-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-type-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--blue);
}

.service-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  background: var(--soft);
  border-radius: 8px;
}

.service-type-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-type-card h3 {
  color: var(--heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.service-type-card p {
  color: var(--text);
  font-size: 14px;
  margin: 0 0 12px;
}

.service-type-card ul {
  padding-left: 18px;
  margin: 0;
}

.service-type-card ul li {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

/* PLACEHOLDER_STYLES_4 */

/* ===== News 新闻页面 ===== */

/* 首页新闻卡片 */
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.news-card__body {
  padding: 20px;
}

.news-card__body time {
  color: var(--muted);
  font-size: 12px;
}

.news-card__body h3 {
  color: var(--heading);
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.4;
}

.news-card__body p {
  color: var(--text);
  font-size: 13px;
  margin: 0 0 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__body a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

/* 新闻列表 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.news-list-item:hover {
  box-shadow: var(--shadow);
}

.news-list-item__image img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.news-list-item__body {
  padding: 24px 24px 24px 0;
}

.news-list-item__body time {
  color: var(--muted);
  font-size: 12px;
}

.news-list-item__body h2 {
  font-size: 18px;
  color: var(--heading);
  margin: 8px 0;
  line-height: 1.4;
}

.news-list-item__body h2 a:hover {
  color: var(--orange);
}

.news-list-item__body p {
  color: var(--text);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.2s ease;
}

.pagination-item:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.pagination-item.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* PLACEHOLDER_STYLES_5 */

/* ===== 文章详情 ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.article-header .back-link {
  color: var(--blue);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
}

.article-header .back-link:hover {
  color: var(--orange);
}

.article-header time {
  color: var(--muted);
  font-size: 13px;
}

.article-header h1 {
  color: var(--heading);
  font-size: 28px;
  margin: 8px 0 24px;
  line-height: 1.4;
}

.article-content img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}

.article-content p {
  line-height: 1.8;
  margin: 0 0 16px;
}

.article-content h2 {
  color: var(--heading);
  font-size: 20px;
  margin: 32px 0 12px;
}

.article-content ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.article-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.article-sidebar h3 {
  color: var(--heading);
  font-size: 18px;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
}

.sidebar-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-news-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sidebar-news-list li:last-child {
  border-bottom: none;
}

.sidebar-news-list a {
  display: block;
}

.sidebar-news-list time {
  color: var(--muted);
  font-size: 12px;
  display: block;
}

.sidebar-news-list span {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.4;
}

.sidebar-news-list a:hover span {
  color: var(--orange);
}

/* PLACEHOLDER_STYLES_6 */

/* ===== Schedules 船期页面 ===== */
.schedule-filters {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--soft);
  border-radius: 8px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.filter-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
}

.filter-group select {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

.schedule-table-wrap {
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.schedule-table th {
  background: var(--blue);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.schedule-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.schedule-table tbody tr:hover {
  background: var(--soft);
}

.schedule-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff8f0;
  border-left: 4px solid var(--orange);
  border-radius: 4px;
}

.schedule-note p {
  margin: 0 0 4px;
  font-size: 14px;
}

.schedule-note a {
  color: var(--blue);
  font-weight: 700;
}

/* ===== Contact 联系页面 ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info h2,
.contact-form-wrap h2 {
  color: var(--heading);
  font-size: 24px;
  margin: 0 0 24px;
}

.contact-info-grid {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h3 {
  font-size: 14px;
  color: var(--heading);
  margin: 0 0 4px;
}

.contact-item p {
  font-size: 13px;
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-wechat {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-wechat h3 {
  font-size: 16px;
  color: var(--heading);
  margin: 0 0 12px;
}

.contact-wechat img {
  width: 120px;
  margin-bottom: 8px;
}

.contact-wechat p {
  font-size: 13px;
  color: var(--muted);
}

/* PLACEHOLDER_STYLES_7 */

/* 联系表单 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 54, 132, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* 地图区域 */
.map-section {
  padding: 0 0 72px;
}

.map-placeholder {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 31, 82, 0.85);
  padding: 20px 24px;
  color: #fff;
}

.map-overlay p {
  margin: 0 0 4px;
  font-size: 14px;
}

/* ===== 多页面响应式 ===== */
@media (max-width: 980px) {
  .page-banner {
    height: 240px;
  }

  .page-banner__overlay h1 {
    font-size: 32px;
  }

  .about-intro-grid,
  .service-intro-grid,
  .two-col-grid,
  .contact-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .news-list-item__image img {
    height: 200px;
  }

  .schedule-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    min-width: unset;
  }
}

@media (max-width: 720px) {
  .content-section {
    padding: 48px 0;
  }

  .page-banner {
    height: 200px;
  }

  .page-banner__overlay h1 {
    font-size: 26px;
  }

  .values-grid,
  .service-type-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .article-header h1 {
    font-size: 22px;
  }
}

/* ===== 语言切换按钮 ===== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 16px;
}

.lang-toggle:hover {
  background: var(--orange);
}

/* 默认隐藏 en 标签 */
.lang-toggle__en {
  display: none;
}

/* Footer 无 QR 版本 */
.footer-grid--no-qr {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 720px) {
  .footer-grid--no-qr {
    grid-template-columns: 1fr;
  }
  .lang-toggle {
    margin-left: 0;
    margin-top: 12px;
  }
}
