/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Source Han Sans CN", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  color: #000;
  background: #d7eef9;
  line-height: normal;
  min-width: 320px;
}

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

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

ul {
  list-style: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

:root {
  --content-w: 1250px;
  --blue: #016bb6;
  --blue-dark: #014a84;
  --title-blue: #125995;
  --red: #cc0000;
  --page-bg: #d7eef9;
  --chip-h: 30.702px;
  --chip-r: 4px;
}

.page {
  width: 100%;
  overflow-x: hidden;
  background: var(--page-bg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  height: 216px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 261px;
  pointer-events: none;
}

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

.hero__title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 73px;
  font-size: 54px;
  font-weight: 700;
  color: var(--title-blue);
  letter-spacing: 1.08px;
  text-shadow: 3px 2px 4px #fff;
  white-space: nowrap;
}

/* ===== Province bar ===== */
.province-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.province-bar__inner {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  background: var(--blue);
  padding: 21px 22px 18px;
}

/* ===== Chip grids ===== */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 8px 14px;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--chip-h);
  border-radius: var(--chip-r);
  border: 1px solid #d9d9d9;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.chip-grid--light .chip {
  color: #fff;
  background: transparent;
}

.chip-grid--light .chip:hover,
.chip-grid--light .chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.chip-grid--dark .chip {
  color: #000;
  background: #fff;
  border-color: #d9d9d9;
}

.chip-grid--dark .chip:hover,
.chip-grid--dark .chip.is-active {
  color: var(--blue);
  border-color: var(--blue);
}

/* ===== White shell ===== */
.shell {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  background: #fff;
}

/* ===== Sub banner ===== */
.sub-banner {
  position: relative;
  height: 137px;
  overflow: hidden;
}

.sub-banner__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sub-banner__media img {
  position: absolute;
  left: 0;
  top: -5.84%;
  width: 100%;
  height: 131.39%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.sub-banner__title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 500;
  color: #000;
  text-align: center;
}

/* ===== Nav ===== */
.nav {
  position: relative;
  z-index: 20;
  height: 50px;
  background: transparent;
}

.nav__inner {
  width: 100%;
  height: 100%;
  background: var(--blue);
  position: relative;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.nav__list {
  display: flex;
  height: 100%;
  align-items: stretch;
}

.nav-mobile-bar,
.nav-mobile-menu {
  display: none;
}

.nav__list li {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.nav__list li:first-child {
  flex: 0 0 137px;
}

.nav__list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 47px;
  background: #d9d9d9;
  opacity: 0.2;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav__link.is-active,
.nav__link:hover {
  background: var(--red);
}

/* ===== Main ===== */
.main {
  padding: 17px 22px 24px;
}

.chip-section {
  margin-bottom: 10px;
}

.chip-section--district {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* ===== Promos ===== */
.promos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.promo {
  display: block;
  height: 103px;
  overflow: hidden;
}

.promo img {
  width: 100%;
  height: 103px;
  object-fit: cover;
  pointer-events: none;
}

/* ===== Destination ===== */
.dest__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  min-height: 44px;
}

.dest__title {
  font-size: 44px;
  font-weight: 500;
  text-align: center;
}

.dest__more {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 26px;
  border: 1px solid var(--title-blue);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
}

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

.dest-card {
  display: block;
  background: #fff;
  transition: transform 0.2s ease;
}

.dest-card:hover {
  transform: translateY(-3px);
}

.dest-card__media {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.dest-card__media--crop img {
  position: absolute;
  left: 0;
  top: -21.6%;
  width: 100%;
  height: 143.2%;
  max-width: none;
  object-fit: cover;
}

.dest-card__body {
  height: 98px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  background: #fff;
}

.dest__view-more {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
}

.dest__view-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 26px;
  padding: 0 10px;
  margin-left: 4px;
  border: 1px solid var(--title-blue);
  border-radius: 2px;
  color: var(--title-blue);
  vertical-align: middle;
}

.dest__view-more-link.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.dest__view-more-link:hover {
  background: var(--title-blue);
  color: #fff;
}

/* ===== Quick nav ===== */
.quick-nav {
  margin-top: 36px;
  position: relative;
  padding-top: 14px;
  padding-bottom: 8px;
}

.quick-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
  background: rgba(1, 107, 182, 0.05);
  pointer-events: none;
}

.quick-nav__title {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 36px;
}

/* ===== Footer ===== */
.footer {
  width: min(var(--content-w), 100%);
  margin: 0 auto;
  background: var(--blue);
  color: #fff;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr auto;
  gap: 24px;
  padding: 23px 44px 18px;
  align-items: start;
  min-height: 160px;
}

.footer__name {
  font-size: 34px;
  font-weight: 700;
  white-space: nowrap;
}

.footer__en {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1.12px;
  white-space: nowrap;
}

.footer__links {
  display: flex;
  gap: 40px;
  padding-top: 4px;
}

.footer__links ul li {
  line-height: 30px;
  font-size: 14px;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__contact {
  padding-top: 4px;
  font-size: 14px;
}

.footer__contact p:not(.footer__contact-title) {
  opacity: 0.6;
  line-height: 26px;
}

.footer__qr {
  width: 88px;
  height: 88px;
  background: #fff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  flex-shrink: 0;
}

.footer__qr img {
  width: 84px;
  height: 83px;
  object-fit: cover;
  pointer-events: none;
}

.footer__copy {
  height: 55px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy p {
  font-size: 14px;
  color: #fff;
  opacity: 0.4;
  text-align: center;
}

/* ===== Tablet ===== */
@media (max-width: 1280px) {
  :root {
    --content-w: 100%;
  }

  .hero__title {
    font-size: clamp(28px, 4vw, 54px);
    white-space: normal;
    padding-left: 16px;
    padding-right: 16px;
  }

  .province-bar__inner,
  .shell,
  .footer {
    width: 100%;
    max-width: 1250px;
  }

  .main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sub-banner__title,
  .dest__title {
    font-size: clamp(26px, 3.5vw, 44px);
  }

  .footer__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .chip-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }

  .dest__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .footer__name,
  .footer__en {
    white-space: normal;
  }

  .footer__qr {
    margin-top: 0;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav {
    height: auto;
    min-height: 0;
  }

  .nav__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    background: var(--blue);
  }

  .nav-mobile-bar {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    align-items: stretch;
    background: var(--blue);
  }

  .nav__toggle {
    display: flex;
    flex: 0 0 44px;
    width: 44px;
    max-width: 44px;
    min-height: 76px;
    margin-left: 0;
    padding: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
  }

  .nav-mobile-quick {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 0 4px 0 0;
    background: var(--blue);
  }

  .nav-mobile-quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .nav-mobile-quick-row--first {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .nav-mobile-quick-row--second .nav-mobile-quick-more {
    grid-column: 4;
    grid-row: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .nav-mobile-quick-row > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    height: auto;
    padding: 5px 2px;
    font-size: clamp(10px, 2.8vw, 13px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
  }

  .nav-mobile-quick-row > a:first-child {
    border-left: none;
  }

  .nav-mobile-quick-more {
    cursor: pointer;
    user-select: none;
    color: #fff;
  }

  .nav-mobile-quick-row > a.is-active,
  .nav-mobile-quick-more.is-active {
    background: var(--red);
  }

  .nav-mobile-quick-row > a:active,
  .nav-mobile-quick-more:active {
    background: rgba(0, 0, 0, 0.12);
  }

  .nav__list--desktop {
    display: none !important;
  }

  .nav-mobile-menu {
    display: none !important;
    flex: 0 0 100%;
    width: 100%;
    padding: 6px 4px 8px;
    box-sizing: border-box;
    background: var(--blue-dark);
  }

  .nav-mobile-menu.is-open,
  .nav-mobile-menu.open {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .nav-mobile-menu .nav__link {
    justify-content: center;
    min-height: 38px;
    height: auto;
    padding: 6px 2px;
    font-size: clamp(10px, 2.6vw, 13px);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
  }

  .nav-mobile-menu .nav__link.is-active,
  .nav-mobile-menu .nav__link:hover {
    background: var(--red);
  }

  .nav-mobile-menu .nav__link:nth-child(4n) {
    border-right: none;
  }

  .hero {
    height: auto;
    min-height: 140px;
  }

  .hero__bg {
    height: 100%;
  }

  .hero__title {
    padding: 36px 16px 28px;
    font-size: 26px;
  }

  .province-bar__inner {
    padding: 14px 12px;
    min-height: 0;
  }

  .chip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .chip {
    height: 34px;
    font-size: 14px;
  }

  .sub-banner {
    height: 100px;
  }

  .sub-banner__title {
    font-size: 22px;
    padding: 0 12px;
  }

  .promos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .promo,
  .promo img {
    height: 90px;
  }

  .dest__head {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .dest__more {
    position: static;
    transform: none;
  }

  .dest__title {
    font-size: 22px;
  }

  .dest__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .dest-card__media {
    height: 140px;
  }

  .dest-card__body {
    height: 72px;
    font-size: 14px;
  }

  .dest__view-more {
    font-size: 14px;
    margin-top: 24px;
    padding: 0 8px;
  }

  .quick-nav__title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding: 24px 16px 20px;
    gap: 20px;
  }

  .footer__links {
    gap: 48px;
  }

  .footer__name {
    font-size: 26px;
  }

  .footer__copy {
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
  }

  .footer__copy p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .dest-card__media {
    height: 180px;
  }
}

/* 后台导行（type=nav）富文本：页面不展示，供搜索引擎抓取 */
.national-hidden-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.national-hidden-content__inner {
  display: inline;
}
