:root {
  --brand-blue: #1767b8;
  --brand-blue-dark: #0d4f96;
  --brand-blue-light: #e8f2fc;
  --ink: #16324d;
  --surface: #f4f7fb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}
a{text-decoration: none;}
a,
button,
input {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #ffcc4d;
  outline-offset: 3px;
}

 .mobile-footer { text-align: center; padding: 10px;background-color: #0068b8; color: #fff;  }
  .mobile-footer .link-group { font-size: 12px; color: #eee; margin-bottom: 20px; }
  .mobile-footer .link-group a { color: #c0e1fd; padding: 0 5px; word-break: keep-all; }
  .mobile-footer p { font-size: 14px; }
  #myPhoneHeader .logo { height: auto; margin: 60px auto 20px; width: 200px; }
  #myPhoneHeader .logo img { width: 100%; height: auto; }
  #myPhoneHeader .search-cont { width: 330px; margin: 0 auto; }
  #myNavMobile.bl-nav { color: #fff; margin-top: 30px; background-color: #005eae; }
  .mobile-navbar { margin-bottom: 0; min-height: 44px; background-color: #005eae; border: none; border-radius: 0; z-index: 10; }
  .mobile-navbar .navbar-brand { height: 44px; line-height: 44px; padding: 0 15px; color: #fff; font-size: 15px; }
  .mobile-navbar .navbar-toggle { margin-top: 6px; margin-bottom: 6px; border-color: rgba(255, 255, 255, 0.5); }
  .mobile-navbar .navbar-toggle .icon-bar { background-color: #fff; }
  .mobile-navbar .navbar-toggle:hover, .mobile-navbar .navbar-toggle:focus { background-color: rgba(255, 255, 255, 0.15); }
  .mobile-navbar .navbar-collapse { border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
  .mobile-navbar .navbar-nav { margin: 0; }
  .mobile-navbar .navbar-nav > li { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .mobile-navbar .navbar-nav > li > a { padding: 12px 15px; color: #fff; font-size: 14px; }
  .mobile-navbar .navbar-nav > li.active > a, .mobile-navbar .navbar-nav > li > a:hover, .mobile-navbar .navbar-nav > li > a:focus { background-color: rgba(255, 255, 255, 0.18); color: #fff; } 
.footer .gab {
    color: #fff;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.6rem 0.9rem;
  color: #fff;
  background: #082f5b;
  border-radius: 0.25rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.header-phone {
  position: relative;
  min-height: clamp(17rem, 62vw, 23rem);
  overflow: hidden;
  background: #78b6ec;
}

.header-phone__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.header-phone__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(217, 238, 255, 0.1),
    rgba(19, 95, 165, 0.18)
  );
}

.index-title {
  position: absolute;
  top: 30%;
  left: 50%;
  width: min(52vw, 15rem);
  transform: translate(-50%, -50%);
}

.index-title img {
  display: block;
  width: 100%;
  height: auto;
}

.accessibility-link {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(16, 75, 133, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0.45rem;
  box-shadow: 0 0.4rem 1.1rem rgba(19, 79, 136, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.accessibility-link:hover {
  color: #fff;
  background: rgba(9, 68, 125, 0.9);
}

.accessibility-link:active {
  transform: translateY(1px);
}

.search-box {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  max-width: 44rem;
  min-height: 3.5rem;
  margin: 0 auto;
  padding: 0.3rem 0.35rem 0.3rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0.65rem;
  box-shadow: 0 0.8rem 2rem rgba(19, 79, 136, 0.22);
}

.search-box:focus-within {
  box-shadow:
    0 0 0 3px rgba(255, 204, 77, 0.75),
    0 0.8rem 2rem rgba(19, 79, 136, 0.22);
}

.search-box__icon {
  display: grid;
  color: var(--brand-blue);
  place-items: center;
}

.search-box__input {
  min-width: 0;
  height: 2.75rem;
  padding: 0 0.75rem;
  color: #243f59;
  font-size: 1rem;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-box__input::placeholder {
  color: #7c8996;
}

.search-box__btn {
  min-width: 4.5rem;
  height: 2.75rem;
  padding: 0 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background: var(--brand-blue);
  border: 0;
  border-radius: 0.4rem;
}

.search-box__btn:hover {
  background: var(--brand-blue-dark);
}

.search-box__btn:active {
  transform: translateY(1px);
}

.nav-shell {
  position: relative;
  z-index: 4;
  background: var(--brand-blue);
  box-shadow: 0 0.45rem 1rem rgba(13, 79, 150, 0.22);
}

.navbar {
  display: flex;
  max-width: 64rem;
  min-height: 4rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

.navbar-brand__mark {
  width: 0.3rem;
  height: 1.35rem;
  background: #fff;
  border-radius: 0.08rem;
}

.navbar-toggler {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.45rem;
  border-color: rgba(255, 255, 255, 0.62);
  border-radius: 0.4rem;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-collapse {
  flex-basis: 100%;
  padding-top: 0.65rem;
}

.navbar-nav {
  gap: 0.2rem;
  padding: 0.45rem;
  background: var(--brand-blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.45rem;
}

.navbar-dark .navbar-nav .nav-link {
  padding: 0.78rem 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border-radius: 0.3rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.dropdown-menu {
  margin: 0.15rem 0 0.45rem;
  padding: 0.35rem;
  border: 0;
  border-radius: 0.35rem;
  box-shadow: none;
}

.dropdown-item {
  padding: 0.65rem 0.85rem;
  color: #264864;
  border-radius: 0.25rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--brand-blue-dark);
  background: var(--brand-blue-light);
}

.main-content {
  padding: 1.25rem 1rem 2.25rem;
}

.featured-news {
  max-width: 64rem;
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-heading__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--brand-blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading h1 {
  margin: 0;
  color: #163a5b;
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading__more {
  padding-bottom: 0.15rem;
  color: #52718d;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid #9fb2c3;
}

.section-heading__more:hover {
  color: var(--brand-blue-dark);
  border-color: var(--brand-blue-dark);
}

.featured-swiper {
  overflow: hidden;
  background: #0d4f96;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 2.3rem rgba(20, 73, 123, 0.18);
}

.featured-swiper .swiper-slide {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 22rem;
}

.featured-swiper .swiper-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(5, 34, 61, 0.04) 30%,
    rgba(5, 34, 61, 0.9) 100%
  );
}

.featured-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-swiper .carousel-caption {
  right: 3.75rem;
  bottom: 2.6rem;
  left: 1.3rem;
  z-index: 2;
  padding: 0;
  text-align: left;
}

.carousel-caption__tag {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.2rem 0.45rem;
  color: #ddecfa;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 94, 164, 0.72);
  border-left: 0.2rem solid #fff;
}

.featured-swiper .carousel-caption h2 {
  max-width: 20em;
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}

.featured-swiper .carousel-caption > p:last-child {
  display: -webkit-box;
  max-width: 38em;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-swiper .swiper-pagination {
  z-index: 3;
  right: auto;
  bottom: 1rem;
  left: 1.3rem;
  display: flex;
  width: auto;
  justify-content: flex-start;
}

.featured-swiper .swiper-pagination-bullet {
  width: 1.25rem;
  height: 0.22rem;
  margin: 0 0.2rem;
  background: #fff;
  border: 0;
  border-radius: 0.08rem;
  opacity: 0.4;
}

.featured-swiper .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.featured-swiper .swiper-button-prev,
.featured-swiper .swiper-button-next {
  top: auto;
  right: 0.9rem;
  bottom: 1rem;
  left: auto;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0;
  color: #fff;
  background: rgba(6, 45, 81, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0.35rem;
}

.featured-swiper .swiper-button-prev::after,
.featured-swiper .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.featured-swiper .swiper-button-prev {
  right: 3.55rem;
}

.featured-swiper .swiper-button-prev:hover,
.featured-swiper .swiper-button-next:hover {
  background: var(--brand-blue);
}

.featured-swiper .swiper-button-prev:active,
.featured-swiper .swiper-button-next:active {
  transform: translateY(1px);
}

.accessibility-mode {
  color: #000;
  background: #fff;
  font-size: 1.125rem;
}

.accessibility-mode .header-phone__shade {
  background: rgba(255, 255, 255, 0.2);
}

.accessibility-mode .accessibility-link,
.accessibility-mode .nav-shell,
.accessibility-mode .search-box__btn {
  background: #003b73;
}

.accessibility-mode .navbar-nav {
  background: #002d57;
}

.accessibility-mode .section-heading__eyebrow,
.accessibility-mode .section-heading__more {
  color: #003b73;
}

.accessibility-mode .section-heading__more {
  border-color: #003b73;
}

.information-board {
  margin-top: 2rem;
}

.information-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  max-width: 64rem;
  margin: 0 auto;
}

.bulletin-panel {
  min-width: 0;
}

.bulletin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.85rem;
  border-bottom: 1px solid #e0e8f0;
}

.bulletin-panel__header h3 {
  margin: 0;
  color: var(--brand-blue);
  font-size: 1.05rem;
  font-weight: 700;
}

.bulletin-tabs {
  display: flex;
  gap: clamp(0.85rem, 3vw, 1.5rem);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.bulletin-tabs::-webkit-scrollbar {
  display: none;
}

.bulletin-tab {
  position: relative;
  flex: 0 0 auto;
  min-height: 2.85rem;
  padding: 0.15rem 0 0;
  color: #384d61;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.bulletin-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
  transform: scaleX(0.4);
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.bulletin-tab:hover,
.bulletin-tab.is-active {
  color: var(--brand-blue);
}

.bulletin-tab.is-active::after {
  background: var(--brand-blue);
  transform: scaleX(1);
}

.bulletin-panel__more {
  flex: 0 0 auto;
  color: #73869a;
  font-size: 0.82rem;
  text-decoration: none;
}

.bulletin-panel__more:hover {
  color: var(--brand-blue-dark);
}

.news-list {
  display: grid;
  gap: 0.1rem;
  padding-top: 0.45rem;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  min-height: 2.25rem;
  padding: 0.25rem 0.35rem 0.25rem 0;
  color: #324457;
  font-size: 0.86rem;
  line-height: 1.45;
  text-decoration: none;
  border-radius: 0.2rem;
}

.news-item:hover {
  color: var(--brand-blue-dark);
  background: #eef5fc;
  transform: translateX(0.15rem);
}

.news-item__title {
  position: relative;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item__title::before {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin: 0 0.65rem 0.1rem 0.1rem;
  content: "";
  background: #b5d6f7;
  border-radius: 50%;
}

.news-item time {
  color: #8b949d;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.service-hall {
  margin: 2.6rem -1rem -2.25rem;
  padding: 2rem 1rem 2.65rem;
  background: #f0f2f5;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto 1.5rem;
}

.service-heading__line {
  position: relative;
  flex: 1 1 auto;
  height: 2px;
  background: var(--brand-blue);
}

.service-heading__line::after {
  position: absolute;
  top: 50%;
  right: -0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  background: var(--brand-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-heading__line:last-child::after {
  right: auto;
  left: -0.35rem;
}

.service-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #2d3540;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 82, 133, 0.04);
  box-shadow: 0 0.6rem 1.25rem rgba(48, 73, 97, 0.07);
}

.service-card__visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 8.8rem;
  padding: 1.15rem 1rem;
  overflow: hidden;
}

.service-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16),
    transparent 58%
  );
  pointer-events: none;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #26445f;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-card--travel .service-card__visual {
  background: #dcefff;
}

.service-card--guide .service-card__visual {
  background: #e4f8e7;
}

.service-card--online .service-card__visual {
  background: #fff6dc;
}

.service-card--open .service-card__visual {
  background: #d7eaff;
}

.service-card__art {
  position: absolute;
  right: 7%;
  bottom: 9%;
  width: 47%;
  height: 77%;
  opacity: 0.82;
}

.service-card__art::before,
.service-card__art::after {
  position: absolute;
  content: "";
}

.service-card__art--travel::before {
  right: 5%;
  bottom: 10%;
  width: 72%;
  height: 65%;
  background: linear-gradient(135deg, #70c7ee, #546de4);
  clip-path: polygon(50% 0, 100% 26%, 74% 100%, 23% 86%, 0 35%);
  box-shadow: 0 0.5rem 0 rgba(37, 110, 194, 0.16);
}

.service-card__art--travel::after {
  top: 6%;
  left: 5%;
  width: 1.25rem;
  height: 1.25rem;
  background: #68cbed;
  border-radius: 50%;
  box-shadow:
    1.55rem 1rem 0 -0.25rem #6c7eea,
    0.55rem 2.2rem 0 -0.35rem #61b8eb;
}

.service-card__art--guide::before {
  right: 5%;
  bottom: 6%;
  width: 66%;
  height: 50%;
  background: #4372dc;
  clip-path: polygon(0 25%, 70% 0, 100% 38%, 48% 100%);
  transform: rotate(-8deg);
}

.service-card__art--guide::after {
  top: 0;
  left: 17%;
  width: 1rem;
  height: 1rem;
  background: #706bd8;
  border-radius: 50%;
  box-shadow:
    0.2rem 1.35rem 0 0.15rem #f2ae96,
    2rem 0.7rem 0 -0.15rem #697fe2;
}

.service-card__art--online::before {
  right: 8%;
  bottom: 14%;
  width: 73%;
  height: 62%;
  background: #fff;
  border: 0.3rem solid #3976db;
  border-radius: 0.2rem;
  box-shadow:
    -0.7rem 0.75rem 0 -0.15rem #8ab9ef,
    0.4rem 0.65rem 0 -0.08rem #efb65f;
  transform: skewY(-8deg);
}

.service-card__art--online::after {
  top: 0;
  left: 4%;
  width: 0.7rem;
  height: 0.7rem;
  background: #f08c72;
  border-radius: 50%;
  box-shadow:
    1rem 0.4rem 0 -0.08rem #4d8ee1,
    2rem 0.75rem 0 -0.12rem #6dc49b;
}

.service-card__art--open::before {
  right: 10%;
  bottom: 7%;
  width: 57%;
  height: 72%;
  background: #f9fcff;
  border: 0.22rem solid #4e8fe5;
  border-radius: 0.15rem;
  box-shadow:
    -0.65rem 0.55rem 0 -0.03rem #a5cef5,
    -1.2rem 1.1rem 0 -0.02rem #72b6f1;
  transform: rotate(5deg);
}

.service-card__art--open::after {
  top: 32%;
  right: 20%;
  width: 1.75rem;
  height: 0.2rem;
  background: #ef8b70;
  box-shadow:
    0 0.55rem 0 #72a9e9,
    0 1.1rem 0 #72a9e9;
  transform: rotate(5deg);
}

.service-card__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem 0.3rem;
  min-height: 7.1rem;
  padding: 1rem 0.85rem 1.15rem;
}

.service-card__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.35rem 0.2rem;
  color: #2166b2;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border-radius: 0.2rem;
}

.service-card__links a:hover {
  color: #fff;
  background: var(--brand-blue);
}

.accessibility-mode .bulletin-tab,
.accessibility-mode .news-item,
.accessibility-mode .service-card__links a {
  color: #003b73;
}

.accessibility-mode .service-hall {
  background: #e8edf2;
}

@media (max-width: 767px) {
  .information-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .news-item {
    min-height: 2.45rem;
    font-size: 0.84rem;
  }

  .service-hall {
    padding-top: 1.5rem;
  }

  .service-heading {
    justify-content: flex-start;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .service-heading h2 {
    font-size: 1.12rem;
    letter-spacing: 0;
  }

  .service-heading__line:first-child {
    flex: 0 0 0.28rem;
    width: 0.28rem;
    height: 1.25rem;
    border-radius: 0.08rem;
  }

  .service-heading__line:first-child::after,
  .service-heading__line:last-child {
    display: none;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .service-card {
    align-self: start;
    border: 1px solid #dce6ef;
    border-radius: 0.4rem;
    box-shadow: 0 0.35rem 0.8rem rgba(35, 78, 120, 0.06);
  }

  .service-card__visual {
    align-items: center;
    min-height: 5.8rem;
    padding: 0.75rem;
  }

  .service-card h3 {
    max-width: 5.8em;
    font-size: 1rem;
    line-height: 1.35;
  }

  .service-card__art {
    right: 4%;
    bottom: 7%;
    width: 43%;
    height: 68%;
    opacity: 0.66;
  }

  .service-card__links {
    gap: 0.1rem;
    min-height: 0;
    padding: 0.55rem 0.4rem 0.7rem;
  }

  .service-card__links a {
    min-height: 2rem;
    padding: 0.3rem 0.15rem;
    font-size: 0.69rem;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) {
  .header-phone {
    min-height: 24rem;
  }

  .index-title {
    top: 29%;
    width: 17rem;
  }

  .accessibility-link {
    top: 1.5rem;
    right: 2rem;
  }

  .search-box {
    bottom: 2.2rem;
  }

  .main-content {
    padding-top: 2rem;
  }

  .featured-swiper .swiper-slide {
    aspect-ratio: 16 / 8;
    min-height: 28rem;
  }

  .featured-swiper .carousel-caption {
    right: 7rem;
    bottom: 4rem;
    left: 3rem;
  }

  .featured-swiper .swiper-pagination {
    margin-right: 3rem;
    margin-bottom: 1.7rem;
    margin-left: 3rem;
  }

  .featured-swiper .swiper-button-prev,
  .featured-swiper .swiper-button-next {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .featured-swiper .swiper-button-prev {
    right: 4.35rem;
  }
}

@media (max-width: 420px) {
  .accessibility-link {
    top: 0.75rem;
    right: 0.75rem;
    min-height: 2.25rem;
    padding: 0 0.65rem;
    font-size: 0.8rem;
  }

  .accessibility-link svg {
    width: 1rem;
    height: 1rem;
  }

  .search-box {
    right: 0.75rem;
    bottom: 3rem;
    left: 0.75rem;
    min-height: 3.25rem;
    padding-left: 0.75rem;
  }

  .search-box__input {
    padding-right: 0.35rem;
    padding-left: 0.55rem;
    font-size: 0.94rem;
  }

  .search-box__btn {
    min-width: 4rem;
    padding: 0 0.8rem;
  }

  .featured-swiper .swiper-slide {
    min-height: 20rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Compact service launcher: every entry stays visible on narrow screens. */
.service-entry-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 1.35rem 0.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.service-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: #3c4854;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.service-entry__icon {
  display: grid;
  width: 4.15rem;
  height: 4.15rem;
  place-items: center;
  background: #eaf3ff;
  border-radius: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(30, 100, 177, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-entry__icon svg {
  width: 2.05rem;
  height: 2.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-entry:nth-child(8n + 1) .service-entry__icon {
  color: #2467b8;
  background: #e9f2ff;
}

.service-entry:nth-child(8n + 2) .service-entry__icon {
  color: #e8891a;
  background: #fff3df;
}

.service-entry:nth-child(8n + 3) .service-entry__icon {
  color: #1c9a67;
  background: #e4f8ef;
}

.service-entry:nth-child(8n + 4) .service-entry__icon {
  color: #d84d5c;
  background: #ffeaed;
}

.service-entry:nth-child(8n + 5) .service-entry__icon {
  color: #7650c8;
  background: #f2eaff;
}

.service-entry:nth-child(8n + 6) .service-entry__icon {
  color: #1689ae;
  background: #e2f6fb;
}

.service-entry:nth-child(8n + 7) .service-entry__icon {
  color: #d89117;
  background: #fff5df;
}

.service-entry:nth-child(8n + 8) .service-entry__icon {
  color: #2f71bd;
  background: #eaf3ff;
}

.service-entry__label {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.service-entry:hover {
  color: var(--brand-blue-dark);
}

.service-entry:hover .service-entry__icon,
.service-entry:focus-visible .service-entry__icon {
  box-shadow: 0 0.4rem 0.85rem rgba(30, 93, 159, 0.16);
  transform: translateY(-0.15rem);
}

.accessibility-mode .service-entry {
  color: #003b73;
}

@media (max-width: 767px) {
  .service-entry-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem 0.35rem;
  }

  .service-entry {
    gap: 0.42rem;
    font-size: 0.72rem;
  }

  .service-entry__icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.78rem;
  }

  .service-entry__icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .service-entry__label {
    min-height: 1.95rem;
  }
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.service-group {
  min-width: 0;
  padding-top: 1rem;
  border-top: 1px solid #d9e3ec;
}

.service-group__header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.service-group__header h3 {
  margin: 0;
  color: #2e4357;
  font-size: 1rem;
  font-weight: 700;
}

.service-group__accent {
  width: 0.3rem;
  height: 1.2rem;
  border-radius: 0.08rem;
}

.service-group__accent--blue {
  background: #2467b8;
}

.service-group__accent--purple {
  background: #7650c8;
}

.service-group__accent--green {
  background: #1c9a67;
}

.service-group__accent--orange {
  background: #e8891a;
}

.service-group .service-entry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 0.4rem;
  max-width: none;
  margin: 0;
}

@media (max-width: 767px) {
  .service-groups {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .service-group {
    padding-top: 0.8rem;
  }

  .service-group__header {
    margin-bottom: 0.8rem;
  }

  .service-group .service-entry-grid {
    gap: 1.1rem 0.35rem;
  }
}

@media (max-width: 767px) {
  .service-heading {
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
  }

  .service-heading h2 {
    font-size: 1.45rem;
    letter-spacing: 0.06em;
  }

  .service-heading__line:first-child {
    flex: 1 1 auto;
    width: auto;
    height: 2px;
    border-radius: 0;
  }

  .service-heading__line:first-child::after,
  .service-heading__line:last-child {
    display: block;
  }

  .service-heading__line:last-child {
    flex: 1 1 auto;
  }
}

.service-hall {
  margin-bottom: 0;
}

.interaction-section {
  max-width: 64rem;
  margin: 2.8rem auto 0;
}

.section-ruler {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.65rem;
}

.section-ruler__line {
  position: relative;
  flex: 1 1 auto;
  height: 2px;
  background: #2a73bd;
}

.section-ruler__line::after {
  position: absolute;
  top: 50%;
  right: -0.38rem;
  width: 0.68rem;
  height: 0.68rem;
  content: "";
  background: #1b6cb6;
  border-radius: 50%;
  transform: translateY(-50%);
}

.section-ruler__line:last-child::after {
  right: auto;
  left: -0.38rem;
}

.section-ruler h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #29313b;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.interaction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(13rem, 0.55fr);
  gap: clamp(1.5rem, 5vw, 3.5rem);
}

.hotspot-panel {
  min-width: 0;
}

.panel-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.panel-title h3 {
  margin: 0;
  padding: 0 0 0.45rem;
  color: #2368b1;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 3px solid #2368b1;
}

.panel-title a {
  color: #71859a;
  font-size: 0.82rem;
  text-decoration: none;
}

.panel-title a:hover {
  color: var(--brand-blue-dark);
}

.hotspot-list {
  display: grid;
  gap: 0.05rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotspot-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 2.25rem;
  padding: 0.18rem 0.3rem;
  color: #3b4148;
  font-size: 0.84rem;
  line-height: 1.45;
  text-decoration: none;
  border-radius: 0.2rem;
}

.hotspot-list a:hover {
  color: var(--brand-blue-dark);
  background: #eef5fc;
}

.hotspot-list a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotspot-list time {
  color: #b1b5ba;
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.interaction-side {
  display: grid;
  align-content: start;
  gap: 1.7rem;
  min-width: 0;
  padding-top: 0.05rem;
}

.message-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 4rem;
  padding: 0.65rem 1rem;
  color: #1a62ac;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #1d65ad;
  border-radius: 0.42rem;
}

.message-card:hover {
  color: #fff;
  background: #1d65ad;
  transform: translateY(-0.1rem);
}

.message-card__icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: currentColor;
}

.message-card__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.supervision-card {
  text-align: center;
}

.supervision-card h3 {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0 0 0.45rem;
  color: #2368b1;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 3px solid #2368b1;
}

.supervision-card__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: #3e4248;
  font-size: 0.96rem;
  line-height: 1.5;
  text-decoration: none;
}

.supervision-card__phone:hover {
  color: var(--brand-blue-dark);
}

.supervision-card__phone strong {
  font-size: 1.15rem;
  font-weight: 700;
}

.supervision-card__phone-icon {
  display: grid;
  width: 3.8rem;
  height: 3.8rem;
  color: #61a9e9;
  background: #e4f3ff;
  border-radius: 50%;
  place-items: center;
}

.supervision-card__phone-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.special-section {
  margin: 3rem -1rem -2.25rem;
  padding: 2.2rem 1rem 2.35rem;
  background: #f0f2f5;
}

.special-section .section-ruler {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .interaction-section {
    margin-top: 2.3rem;
  }

  .section-ruler {
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }

  .section-ruler h2 {
    font-size: 1.45rem;
    letter-spacing: 0.05em;
  }

  .interaction-layout {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  .panel-title h3,
  .supervision-card h3 {
    font-size: 1.05rem;
  }

  .hotspot-list a {
    min-height: 2.35rem;
    gap: 0.55rem;
    font-size: 0.76rem;
  }

  .hotspot-list time {
    font-size: 0.68rem;
  }

  .interaction-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 0.65rem;
  }

  .message-card {
    min-height: 7rem;
    padding: 0.55rem;
    font-size: 0.95rem;
  }

  .supervision-card {
    min-height: 7rem;
  }

  .supervision-card h3 {
    margin-bottom: 0.65rem;
    padding-bottom: 0.3rem;
  }

  .supervision-card__phone {
    gap: 0.25rem;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .supervision-card__phone-icon {
    width: 2.65rem;
    height: 2.65rem;
  }

  .supervision-card__phone-icon svg {
    width: 1.45rem;
    height: 1.45rem;
  }

  .supervision-card__phone strong {
    font-size: 0.95rem;
  }

  .special-section {
    margin-top: 2.3rem;
    padding-top: 1.7rem;
    padding-bottom: 1.8rem;
  }
}

/* Mobile-first interaction actions. */
.interaction-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  align-content: start;
  padding-top: 0;
}

.message-card,
.supervision-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-width: 0;
  min-height: 3.55rem;
  padding: 0.6rem 0.7rem;
  color: #1d65ad;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  background: #f2f8ff;
  border: 0;
  border-left: 3px solid #2673bd;
  border-radius: 0.3rem;
}

.message-card:hover,
.supervision-action:hover {
  color: #0c4d8f;
  background: #e7f2ff;
  transform: translateY(-0.08rem);
}

.message-card__icon,
.supervision-action__icon {
  display: grid;
  flex: 0 0 auto;
  width: 1.55rem;
  height: 1.55rem;
  color: currentColor;
  place-items: center;
  font-size: 16px;
}

.message-card__icon svg,
.supervision-action__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
}

.interaction-action__arrow {
  margin-left: auto;
  color: #8aa8c2;
  font-size: 1rem;
  line-height: 1;
}

.supervision-action__copy {
  display: grid;
  min-width: 0;
  gap: 0.1rem;
}

.supervision-action__copy small {
  overflow: hidden;
  color: #60778d;
  font-size: 0.68rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.supervision-action__copy strong {
  color: #1d65ad;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .interaction-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .message-card,
  .supervision-action {
    min-height: 3.35rem;
    padding: 0.5rem;
    padding-left: 1rem;
    font-size: 0.76rem;
  }

  .message-card__icon,
  .supervision-action__icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .supervision-action__copy small {
    font-size: 0.61rem;
  }

  .supervision-action__copy strong {
    font-size: 0.84rem;
  }

  .special-section {
    margin-top: 2.1rem;
  }
}

.service-entry{
  .iconfont{
    font-size: 20px;
  }
}

.special-box {
    display: flex;
    height: 170px;
    background-image: url(special-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    color: rgb(255, 255, 255);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-family: 微软雅黑;
    background-position: center center;
    border-radius: 4px;
    padding: 10px 20px;
    text-decoration: none;
}

.zhuanti-swiper {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
  padding-bottom: 2.25rem;
}

.zhuanti-swiper .swiper-pagination {
  position: absolute;
  bottom: 0.45rem;
  left: 50%;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
}

.zhuanti-swiper .swiper-pagination-bullet {
  width: 1.7rem;
  height: 0.25rem;
  margin: 0 0.2rem;
  background: #c8cdd3;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.zhuanti-swiper .swiper-pagination-bullet-active {
  background: #1767b8;
}