:root {
  --primary-color: #8A2DE2;
  --secondary-color: #B18CFF;
  --ink: #1e1a36;
  --muted: #7e7494;
  --line: rgba(255, 255, 255, 0.22);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #f6f2fb;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 56px);
  padding: 0 clamp(18px, 6vw, 120px);
  color: #fff;
  background: rgba(17, 26, 69, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.light {
  height: 80px;
  color: #27203c;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 38px rgba(57, 33, 93, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  width: 118px;
}


/* 一级导航列表 */
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 22px;
}

.nLi {
  position: relative;
}

/* 一级链接 */
.nLi h5 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.nLi h5 a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 27px 0;
  opacity: 0.9;
  font-size: 22px;
  color: inherit;
  text-decoration: none;
}

/* 一级链接下划线指示器 */
.nLi h5 a::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 0;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nLi h5 a:hover::after,
.nLi.on > h5 a::after {
  width: 22px;
}

/* 含子菜单的箭头指示 */
.nLi h5 a > i {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

/* hover时箭头旋转 */
.nLi:hover h5 a > i,
.nLi.open h5 a > i {
  transform: rotate(180deg);
}

/* 二级子菜单 */
.sub {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 140px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(53, 31, 78, 0.18);
  backdrop-filter: blur(12px);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

/* hover展开二级菜单 */
.nLi:hover .sub {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 移动端JS控制展开 */
.nLi.open .sub {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sub h6 {
  margin: 0;
  font-size: 14px;
  font-weight: inherit;
}

.sub h6 a {
  display: block;
  padding: 10px 20px;
  color: #27203c;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.sub h6 a:hover {
  color: var(--primary-color);
  background: rgba(138, 45, 226, 0.06);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.search-container {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: auto;
}

.search-input {
  width: 0;
  height: 36px;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  overflow: hidden;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-container:hover .search-input,
.search-container:focus-within .search-input {
  width: 200px;
  padding: 0 12px;
  opacity: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.site-header.light .search-input {
  color: #27203c;
}

.site-header.light .search-input::placeholder {
  color: rgba(39, 32, 60, 0.5);
}

.site-header.light .search-container:hover .search-input,
.site-header.light .search-container:focus-within .search-input {
  border-bottom-color: rgba(39, 32, 60, 0.5);
}

.search-button {
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.site-header.light .search-button {
  color: inherit;
}

.search-button span {
  position: absolute;
  inset: 9px 10px 10px 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button span::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.section-dots {
  position: fixed;
  z-index: 45;
  top: 50%;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.section-dots a {
  position: relative;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.section-dots.dark a {
  border-color: rgba(106, 71, 140, 0.55);
}

.section-dots a.active {
  background: #fff;
  transform: scale(1.45);
}

.section-dots.dark a.active {
  background: var(--primary-color);
}

.fullpage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  touch-action: none;
}

.fullpage-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1680px, calc(100vw - 240px));
  margin: 0 auto;
  padding-top: clamp(92px, 11vh, 136px);
  padding-bottom: clamp(48px, 7vh, 80px);
  height: 100%;
}

.section-heading p,
.section-heading h2 {
  margin: 0;
}

.section-heading p {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
}

.section-heading h2 {
  margin-top: 30px;
  color: rgba(53, 48, 66, 0.38);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.section-heading::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 26px;
  content: "";
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.panel.map-panel .map-header {
  position: relative;
  z-index: 5;
  width: min(1680px, calc(100vw - 240px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 85px) 0 24px;
  text-align: center;
  pointer-events: none;
}

.panel.map-panel .map-header > * {
  pointer-events: auto;
}
.map-header .section-heading h2 {
  margin-top: 12px;
}

.panel.map-panel .map-header .section-heading {
  display: inline-block;
}

.section-heading.light {
  color: #fff;
}

.section-heading.light h2 {
  color: rgba(255, 255, 255, 0.66);
}

.hero-panel {
  display: grid;
  place-items: center;
  color: #fff;
  background: #111a45;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(138, 45, 226, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(35, 16, 100, 0.62), rgba(65, 16, 116, 0.28) 42%, rgba(12, 10, 42, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 84px);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-content p {
  margin: 28px 0 0;
  font-size: clamp(16px, 1.8vw, 32px);
  opacity: 0.94;
}

.next-panel {
  position: absolute;
  z-index: 4;
  bottom: 42px;
  left: 50%;
  width: 38px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: transparent;
  transform: translateX(-50%);
  cursor: pointer;
}

.next-panel::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  animation: arrowDown 1.7s ease-in-out infinite;
}
#news {
  font-size: 18px;
}
#news .news-date-separator {
  color: #A27FBA
}
.news-panel,
.profile-panel {
  background: linear-gradient(180deg, #f4edf9 0%, #fff 38%, #fff 100%);
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1.18fr;
  gap: clamp(24px, 2.5vw, 40px);
  align-items: stretch;
  margin-top: clamp(38px, 5vh, 70px);
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 18px 38px rgba(53, 31, 78, 0.14);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 54px rgba(53, 31, 78, 0.2);
}

/* 卡片正反两面公用 */
.news-face {
  display: flex;
  flex-direction: column;
  transition: opacity 0.45s ease;
}

/* 默认面：图片 + 标题 + 时间 —— 在文档流中，决定 card 高度 */
.news-face-default {
  position: relative;
  flex: 1;
  opacity: 1;
  z-index: 1;
  background: #fff;
}

.news-face-default img {
  width: 100%;
  aspect-ratio: 477 / 320;
  object-fit: cover;
  flex-shrink: 0;
}

.news-face-default .news-copy {
  flex: 1;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 28px;
}

.news-face-default a {
  color: inherit;
  text-decoration: none;
}

.news-face-default h3 {
  margin: 0;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.7;
  font-weight: 500;
  color: #27203c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-face-default .news-meta {
  margin-top: 18px;
  color: #898391;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* 详情面（hover 显示）：绝对定位覆盖在默认面之上 */
.news-face-detail {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  padding: clamp(30px, 3.5vw, 52px);
  color: #fff;
  background-image: url(../images2026/news-background.png);
  background-size: cover;
  background-position: center;
}

.news-face-detail::after {
  position: absolute;
  inset: auto 0 0 auto;
  width: 66%;
  height: 66%;
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: radial-gradient(circle at 100% 100%, #000, transparent 67%);
}

.news-face-detail .news-date {
  position: relative;
  z-index: 1;
}

.news-face-detail p {
  position: relative;
  z-index: 1;
  margin: 20px 0 42px;
  line-height: 1.9;
  opacity: 0.86;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-face-detail .news-more-link {
  position: absolute;
  left: clamp(30px, 3.5vw, 52px);
  bottom: clamp(30px, 3.5vw, 52px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  height: 38px;
  padding: 0 18px;
  border-radius: 19px;
  font-size: 16px;
  background: #fff;
  color: #642A8C;
  text-decoration: none;
}

.news-face-detail .news-more-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* hover 翻转 */
.news-card:hover .news-face-default {
  opacity: 0;
}

.news-card:hover .news-face-detail {
  opacity: 1;
}

/* 日期块 */
.news-date {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #898391;
}

.news-date strong {
  color: #5f596a;
  font-size: 32px;
  font-weight: 500;
}

.news-date em {
  margin-left: auto;
  font-size: 18px;
  font-style: normal;
}

.news-date.light,
.news-date.light strong {
  color: #fff;
}

/* 右侧 news-side 列表 */
.news-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.news-side .news-item {
  display: grid;
  grid-template-columns: clamp(120px, 22vw, 220px) 1fr;
  gap: clamp(10px, 1.2vw, 18px);
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(103, 91, 122, 0.12);
  color: #504b5a;
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-side .news-item:last-child {
  border-bottom: 0;
}

.news-side .news-item:hover {
  color: var(--primary-color);
  transform: translateX(6px);
}

.news-side .news-item img {
  width: 100%;
  aspect-ratio: 477 / 320;
  object-fit: cover;
}

/* news-header：标题与 tabs 同行 */
.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

/* news-tabs 切换按钮 */
.news-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #4f4a59;
  font-size: 18px;
}

.news-tabs button,
.news-tabs a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}

.news-tabs button:hover,
.news-tabs a:hover {
  color: var(--primary-color);
}

.news-tabs button::after,
.news-tabs a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--primary-color);
  transition: width 0.25s ease;
}

.news-tabs .news-tab-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.news-tabs button.active {
  color: var(--primary-color);
}

.news-tabs button.active::after {
  width: 100%;
}

.news-layout {
  margin-top: 22px;
}

.news-item-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(82px, 14.8vw, 148px);
}

.news-item-copy > span {
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item-copy .news-meta {
  margin-top: 10px;
  color: #898391;
  font-size: 13px;
}

.news-more-link {
  color: #642A8C;
}

.pill-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.business-panel {
  color: #fff;
  background: #101342;
}

.business-panel.business-background {
  background: url("../images2026/business-background.png") center/cover no-repeat, #101342;
}

.business-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 20, 68, 0.86) 0%, rgba(66, 33, 104, 0.38) 45%, rgba(18, 19, 60, 0.74) 100%),
    radial-gradient(circle at 24% 18%, rgba(34, 211, 238, 0.12), transparent 32%);
}

.business-inner {
  display: grid;
  grid-template-rows: auto 1fr;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: min(60vh, 600px);
  margin-top: 0;
  perspective: 1200px;
}

.business-panel .section-inner {
  padding-top: clamp(92px, 11vh, 136px);
}

.business-card {
  position: relative;
  min-width: 0;
  min-height: 360px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: flex 0.45s ease, transform 0.45s ease;
}

.business-card strong {
  font-size: clamp(18px, 1.45vw, 38px);
}

.business-card span {
  font-size: clamp(18px, 1.45vw, 22px);
  color: #A09CA8;
}


.business-card:nth-child(2)::before,
.business-card:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(26, 47, 130, 0.25), rgba(48, 16, 82, 0.76));
}

.business-card:hover {
  z-index: 3;
  transform: translateY(-10px) rotateY(-3deg);
}

.business-card:hover::before {
  background: linear-gradient(180deg, rgba(107, 33, 168, 0.28), rgba(13, 12, 47, 0.52));
}

.business-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.55s ease;
}

.business-card:hover .business-bg {
  transform: scale(1.12);
}

.business-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(25px, 5vw, 80px);
}

.business-content img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.business-content h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 32px);
  font-weight: 500;
}

.business-content h3::after {
  display: block;
  width: 32px;
  height: 3px;
  margin: 22px 0;
  content: "";
  background: #fff;
}

.business-content p {
  /* width: min(260px, 100%); */
  margin: 0;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.business-more-link {
  align-items: center;
  margin-top: clamp(40px, 6vw, 76px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.business-card:hover .business-more-link {
  opacity: 1;
  transform: translateY(0);
}

.business-more-link img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

#business .section-inner,#news .section-inner,#profile .section-inner {
  width: 100%;
  padding-left: clamp(50px, 11vh, 240px);
}

#news .section-inner {
  padding-right: 40px;
}

.business-content strong{
  font-size: clamp(18px, 2vw, 36px);
  color: #fff;
}

.business-card:hover .business-content p {
  opacity: 0.86;
  transform: translateY(0);
}

.business-content span {
  position: absolute;
  bottom: 34px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
}

#profile .section-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.profile-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 3vw, 50px);
  align-items: stretch;
  height: 100%;
}

.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.profile-copy > p {
  margin: 28px 0 0;
  color: #4e5361;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.1;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  min-width: 118px;
  margin-top: 44px;
  padding: 0 22px;
  border-radius: 19px;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(90deg, #4B0D77, #8a2de2);
  box-shadow: 0 12px 24px rgba(107, 33, 168, 0.26);
  gap:10px;
}

.profile-visual {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(2vw);
}

.profile-visual::before {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 6%;
  width: 54%;
  height: 44%;
  content: "";
  background: rgba(107, 33, 168, 0.1);
  filter: blur(36px);
}

.profile-visual img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
  min-height: 0;
  padding: clamp(78px, 10vh, 100px) clamp(24px, 6vw, 100px) 0;
  color: #fff;
  background:
    url("../images2026/footer-background.png") center/cover no-repeat;
  background-color: #4B0D77;
}

.footer-top,
.site-footer,
.copyright {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: min(1680px, calc(100vw - 240px));
  margin: 0 auto clamp(44px, 7vh, 82px);
  padding-bottom: clamp(28px, 4vh, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-top p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-top h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 52px);
  font-weight: 500;
}

.footer-top a {
  flex: 0 0 auto;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(44px, 8vw, 120px);
  width: min(1680px, calc(100vw - 240px));
  margin: 0 auto;
}

.footer-brand > img:first-child {
  width: 126px;
}

.qr {
  width: 90px;
  margin-top: 44px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.socials span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(26px, 4vw, 60px);
}

.footer-links h3 {
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
}

.footer-links h3::before {
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.45);
  content: "|";
}

.footer-links a {
  display: block;
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.45;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  width: min(1680px, calc(100vw - 240px));
  margin: clamp(34px, 6vh, 72px) auto 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.panel.active .reveal {
  opacity: 1;
  transform: translateY(0);
}

.panel.hash-ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

.panel.active .reveal:nth-child(2),
.panel.active .business-card:nth-child(2) {
  transition-delay: 0.12s;
}

.panel.active .business-card:nth-child(3) {
  transition-delay: 0.22s;
}

.panel.active .business-card:nth-child(4) {
  transition-delay: 0.32s;
}
@media (max-width: 1400px) {
  .news-side .news-item.hidden {
    display: none;
  }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.4%, -1.2%, 0); }
}

@keyframes arrowDown {
  0% { opacity: 0; transform: translate(-50%, 0) rotate(45deg); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 20px) rotate(45deg); }
}

/* 1280px及以上：4个business-card显示在同一行 */
@media (min-width: 1280px) {
  .business-grid {
    grid-template-columns: repeat(4, 1fr);
    height: min(60vh, 600px);
    gap: clamp(20px, 2vw, 32px);
    perspective: 1200px;
  }

  .business-card {
    min-height: 360px;
    transform-style: preserve-3d;
  }
}

@media (max-width: 1279px) {
  .site-header {
    padding: 0 clamp(18px, 4vw, 80px);
  }

  .nav {
    gap: clamp(16px, 2vw, 32px);
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .nLi h5 a {
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .section-inner {
    width: min(100vw - 80px, 1200px);
  }

  #business .section-inner,
  #news .section-inner,
  #profile .section-inner {
    padding-left: clamp(24px, 4vw, 80px);
  }

  .panel.map-panel .map-header {
    width: min(100vw - 80px, 1200px);
  }

  .site-footer {
    width: min(100vw - 80px, 1200px);
  }

  .copyright {
    width: min(100vw - 80px, 1200px);
  }

  #business .section-inner {
    width: min(100vw - 40px, 1100px);
    padding-left: clamp(16px, 2vw, 32px);
  }

  .panel {
    min-height: 100vh;
    height: 100vh;
  }

  .contact-panel {
    min-height: 0;
    height: auto;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: clamp(16px, 2vw, 24px);
    perspective: none;
  }

  .business-card {
    min-height: clamp(80px, 14vw, 120px);
    transform-style: flat;
    overflow: visible;
  }

  .business-card::before {
    background: linear-gradient(135deg, rgba(107, 33, 168, 0.2), rgba(13, 12, 47, 0.4)) !important;
  }

  

  @media (max-height: 900px) {
    .business-card {
      min-height: clamp(80px, 14vw, 120px);
    }

    .business-content {
      flex-direction: row;
      align-items: center;
      text-align: left;
      padding: clamp(16px, 2vw, 24px);
      gap: clamp(12px, 2vw, 20px);
    }

    .business-content img {
      width: clamp(40px, 8vw, 60px);
      height: clamp(40px, 8vw, 60px);
    }

    .business-content h3 {
      font-size: clamp(16px, 1.2vw, 18px);
    }

    .business-content p {
      font-size: clamp(14px, 0.9vw, 18px);
      line-height: 1.5;
      margin-top: 4px;
    }

    .business-text {
      align-items: flex-start;
    }

    .business-more-link {
      margin-top: 0;
    }
  }

  @media (min-height: 901px) {
    .business-card {
      min-height: clamp(160px, 22vw, 200px);
    }

    .business-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: clamp(20px, 3vw, 32px);
      gap: clamp(10px, 1.5vw, 16px);
    }

    .business-content img {
      width: clamp(50px, 10vw, 80px);
      height: clamp(50px, 10vw, 80px);
    }

    .business-content h3 {
      font-size: clamp(16px, 1.3vw, 18px);
    }

    .business-content p {
      font-size: clamp(14px, 1vw, 18px);
      line-height: 1.6;
      margin-top: 0;
    }

    .business-text {
      align-items: center;
    }

    .business-more-link {
      margin-top: 8px;
    }
  }

  .business-more-link img {
    width: clamp(30px, 4vw, 42px);
    height: clamp(30px, 4vw, 42px);
  }

  .business-content span {
    display: none;
  }

  .business-content p {
    opacity: 0.86;
    transform: none;
  }

  .business-more-link {
    opacity: 1;
    transform: none;
  }

  .business-bg {
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  #news .section-inner,
  #business .section-inner,
  #profile .section-inner {
    width: min(100vw - 40px, 1100px);
    margin: 0 auto;
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
  }

  #news .section-heading,
  #business .section-heading,
  #profile .section-heading {
    text-align: center;
  }

  #news .section-heading,
  #profile .section-heading {
    width: 100%;
    align-self: stretch;
  }

  /* 让 #profile 的标题距离顶部与 #business 一致 */
  #profile .section-inner {
    padding-top: clamp(92px, 11vh, 136px);
  }

  #profile .profile-copy {
    justify-content: flex-start;
    padding-top: 0;
  }

  #news .section-heading::after,
  #business .section-heading::after,
  #profile .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .news-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .news-tabs {
    justify-content: flex-end;
    padding-right: clamp(16px, 2vw, 32px);
    width: 100%;
  }

  .news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: clamp(16px, 2vw, 24px);
    overflow: visible;
    padding-bottom: 12px;
    margin-top: clamp(24px, 3vh, 40px);
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
  }

  .news-layout::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex: none;
    min-width: 0;
    max-width: none;
    width: auto;
  }

  /* news-side 跨满 .news-layout 两列，内部再 grid 2 列展示 news-item */
  .news-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: clamp(16px, 2vw, 24px);
    min-height: auto;
  }

  .news-side .news-item {
    flex: none;
    min-width: 0;
    max-width: none;
    width: auto;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 18px 38px rgba(53, 31, 78, 0.14);
    overflow: hidden;
    border-bottom: none;
    padding: 0;
    grid-template-columns: none;
  }

  .news-side .news-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .news-side .news-item-copy {
    padding: 16px 20px;
    min-height: 90px;
    flex: 1;
    justify-content: space-between;
  }

  .news-side .news-item-copy > span {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #27203c;
  }

  .news-side .news-item-copy .news-meta {
    font-size: 12px;
    margin-top: 10px;
    color: #898391;
  }

  .news-side .news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 54px rgba(53, 31, 78, 0.2);
  }

  .news-side .news-item.hidden {
    display: none;
  }

  .news-face-default img {
    aspect-ratio: 4 / 3;
  }

  .news-face-default .news-copy {
    min-height: 90px;
    padding: 16px 20px;
  }

  .news-face-default h3 {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.6;
  }

  .news-face-default .news-meta {
    font-size: 12px;
    margin-top: 10px;
  }
  .business-content h3::after {
  margin: 22px 10px;
}

  .site-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
  }

  .footer-brand .socials {
    justify-content: flex-start;
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
  }
}

@media (max-width: 767px) {
  body {
    height: auto;
    overflow: auto;
  }

  .fullpage {
    position: static;
    height: auto;
    overflow: visible;
    touch-action: pan-y;
  }

  .fullpage-inner {
    position: static;
    width: 100%;
    height: auto;
  }

  .panel {
    min-height: 0;
    height: auto;
  }

  .contact-panel {
    min-height: 0;
    height: auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 62px;
    padding: 0 18px;
    background: rgba(28, 15, 62, 0.7);
    backdrop-filter: blur(16px);
  }

  .brand {
    width: 104px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    height: calc(100vh - 62px);
    background: rgba(17, 26, 69, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    z-index: 55;
  }

  .site-header.light .main-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 30px 20px;
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .nLi h5 a {
    font-size: clamp(14px, 1.2vw, 18px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
  }

  .site-header.light .nLi h5 a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .nLi:last-child h5 a {
    border-bottom: none;
  }

  /* 移动端二级菜单改为内嵌展开 */
  .sub {
    position: static;
    min-width: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nLi:hover .sub {
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
  }

  .nLi.open .sub {
    visibility: visible;
    height: auto;
    pointer-events: auto;
  }

  .sub h6 a {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header.light .sub h6 a {
    color: rgba(39, 32, 60, 0.72);
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }

  .sub h6 a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
  }

  .search-button {
    display: none;
  }

  .section-dots {
    display: none;
  }

  .section-inner {
    width: min(100vw - 36px, 720px);
    padding-top: 86px;
    padding-bottom: 56px;
  }

  #news .section-inner {
    padding-left: clamp(16px, 2vw, 32px);
  }

  .news-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2vw, 20px);
    margin-top: clamp(24px, 3vh, 40px);
  }

  .news-card {
    min-height: auto;
  }

  .news-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(14px, 2vw, 20px);
  }

  .news-side .news-item {
    flex-direction: column;
    background: #fff;
    box-shadow: 0 18px 38px rgba(53, 31, 78, 0.14);
    border-bottom: none;
    padding: 0;
    grid-template-columns: none;
  }

  .news-side .news-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .news-side .news-item-copy {
    flex: 1;
    padding: 14px 16px;
    justify-content: space-between;
    text-align: left;
  }

  .news-side .news-item-copy > span {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #27203c;
    text-align: left;
  }

  .news-side .news-item-copy .news-meta {
    font-size: 11px;
    margin-top: 10px;
    color: #898391;
    text-align: left;
  }
  .news-tabs button, .news-tabs a {
    font-size: 18px;
  }

  .news-side .news-item.hidden {
    display: block;
  }
  .business-content p {
    width: 100%;
  }
  #map {
    display: none;
  }
  .contact-panel {
    background: none;
    background-color: #4B0D77;
  }

  .news-face-default img {
    aspect-ratio: 4 / 3;
  }

  .news-face-default .news-copy {
    min-height: 100px;
    padding: 14px 16px;
  }

  .news-face-default h3 {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
  }

  .news-face-default .news-meta {
    font-size: 11px;
    margin-top: 10px;
  }

  .news-face-detail {
    display: none;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 18px;
  }

  .business-content h3::after{
    margin: 22px auto;
  }

  .business-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .business-card {
    min-height: 250px;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .profile-visual {
    transform: none;
  }

  .contact-panel {
    padding: 40px 18px 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand .socials {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 40px);
  }

  #news .section-inner,
  #business .section-inner,
  #profile .section-inner {
    width: 100%;
    padding: 45px 12px 56px;
  }

  #news .section-heading,
  #business .section-heading,
  #profile .section-heading {
    width: 100%;
    text-align: center;
  }

  #news .section-heading::after,
  #business .section-heading::after,
  #profile .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) and (max-width: 849px) {
  #news .section-inner,
  #business .section-inner,
  #profile .section-inner {
    width: min(100vw - 36px, 760px);
    margin: 0 auto;
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
  }

  #news .section-heading,
  #business .section-heading,
  #profile .section-heading {
    text-align: center;
  }

  #news .section-heading::after,
  #business .section-heading::after,
  #profile .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .news-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .news-tabs {
    justify-content: flex-end;
    padding-right: clamp(16px, 2vw, 32px);
    width: 100%;
  }

  .news-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: clamp(14px, 2vw, 20px);
    margin-top: clamp(24px, 3vh, 40px);
    padding-left: clamp(16px, 2vw, 32px);
    padding-right: clamp(16px, 2vw, 32px);
  }

  .news-card {
    min-height: auto;
  }

  .news-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: clamp(14px, 2vw, 20px);
    min-height: auto;
  }

  .news-side .news-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 18px 38px rgba(53, 31, 78, 0.14);
    border-bottom: none;
    padding: 0;
    grid-template-columns: none;
  }

  .news-side .news-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .news-side .news-item-copy {
    flex: 1;
    padding: 14px 16px;
    min-height: 100px;
    justify-content: space-between;
    text-align: left;
  }

  .news-side .news-item-copy > span {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #27203c;
    text-align: left;
  }

  .news-side .news-item-copy .news-meta {
    font-size: 11px;
    margin-top: 10px;
    color: #898391;
    text-align: left;
  }

  .news-side .news-item.hidden {
    display: none;
  }

  .news-face-default img {
    aspect-ratio: 4 / 3;
  }

  .news-face-default .news-copy {
    min-height: 100px;
    padding: 14px 16px;
  }

  .news-face-default h3 {
    font-size: clamp(12px, 1vw, 14px);
    line-height: 1.5;
  }

  .news-face-default .news-meta {
    font-size: 11px;
    margin-top: 10px;
  }
}

@media (max-width: 676px) {
  body {
    overflow: auto;
    height: auto;
  }

  .fullpage {
    position: static;
    height: auto;
    overflow: visible;
  }

  .fullpage-inner {
    position: static;
    transform: none;
    height: auto;
  }

  .panel {
    position: relative;
    min-height: auto;
    height: auto;
    overflow: visible;
  }

  .hero-panel {
    min-height: 100vh;
    height: 100vh;
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }

  .hero-content {
    padding-top: 40px;
  }

  .section-inner {
    width: calc(100vw - 32px);
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
  }

  .section-heading {
    text-align: center;
  }

  .section-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .news-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .news-tabs {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 16px;
  }

  .news-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .news-card {
    min-height: auto;
  }

  .news-card:nth-child(n+3) {
    display: block;
  }

  .news-card:nth-child(n+4) {
    display: block;
  }

  .news-card:nth-child(n+5) {
    display: block;
  }

  .news-side {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-face-default img {
    aspect-ratio: 4 / 3;
  }

  .news-face-default .news-copy {
    min-height: 100px;
    padding: 14px 16px;
  }

  .news-face-default h3 {
    font-size: 14px;
    line-height: 1.5;
  }

  .news-face-default .news-meta {
    font-size: 11px;
    margin-top: 10px;
  }

  .business-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .business-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .business-text {
    align-items: center;
  }
  .footer-links a{
    font-size: 14px;
  }
}

@media (min-width: 767px) and (max-width: 900px) {
  body {
    height: 100%;
    overflow: auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 62px;
    padding: 0 18px;
    background: rgba(28, 15, 62, 0.7);
    backdrop-filter: blur(16px);
  }

  .brand {
    width: 104px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    height: calc(100vh - 62px);
    background: rgba(17, 26, 69, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
    z-index: 55;
  }

  .site-header.light .main-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 30px 20px;
    font-size: clamp(14px, 1.2vw, 18px);
  }

  .nLi h5 a {
    font-size: clamp(14px, 1.2vw, 18px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: space-between;
  }

  .site-header.light .nLi h5 a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .nLi:last-child h5 a {
    border-bottom: none;
  }

  /* 移动端二级菜单内嵌展开 */
  .sub {
    position: static;
    min-width: auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nLi:hover .sub {
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
  }

  .nLi.open .sub {
    visibility: visible;
    height: auto;
    pointer-events: auto;
  }

  .sub h6 a {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-header.light .sub h6 a {
    color: rgba(39, 32, 60, 0.72);
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }

  .sub h6 a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.06);
  }

  .search-button {
    display: none;
  }

  .section-dots {
    display: none;
  }

  .fullpage {
    position: fixed;
    height: 100vh;
    overflow: hidden;
  }

  .fullpage-inner {
    position: absolute;
    width: 100%;
    height: auto;
  }

  .panel {
    min-height: 100vh;
    height: 100vh;
  }

  .contact-panel {
    min-height: 0;
    height: auto;
  }

  .section-inner {
    width: min(100vw - 36px, 720px);
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 56px;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 40px);
    gap: 20px;
  }

  .site-footer {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 4vw, 40px);
  }

  .footer-links h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 13px;
    margin: 10px 0;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .news-tabs {
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 18px;
  }

  .business-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .business-card {
    min-height: 300px;
  }

  .profile-visual {
    transform: none;
  }

  .profile-visual img {
    max-height: none;
  }


  .stat-item {
    padding: 12px 20px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .contact-panel {
    height: auto;
    min-height: 0;
    padding: 82px 18px 0;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    max-width: 9em;
    margin: 0 auto;
    line-height: 1.28;
  }

  .hero-content p {
    max-width: 22em;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.8;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 232px;
  }

  .business-content {
    padding: 24px;
  }

  .business-content span {
    left: 24px;
    bottom: 22px;
  }

  .feature-news {
    padding: 26px;
  }


  .city-label {
    font-size: 26px;
  }

  .footer-links {
    gap: 8px 22%;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 0 16px;
    gap: 12px;
  }

  .nLi h5 a {
    font-size: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    justify-content: space-between;
  }

  .site-header.light .nLi h5 a {
    border-bottom-color: rgba(0, 0, 0, 0.1);
  }

  .nLi:last-child h5 a {
    border-bottom: none;
  }

  .menu-toggle {
    display: flex;
  }

  .search-container {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 0 12px;
  }

  .brand {
    width: 90px;
  }

  .nav {
    gap: 0;
  }

  .nLi h5 a {
    font-size: 13px;
  }

  .section-inner {
    width: calc(100vw - 28px);
  }

  .footer-top h2 {
    font-size: 22px;
    line-height: 1.35;
  }
}

/* 手机端导航仅展示首页、热点新闻、业务板块，并隐藏下划线指示器 */
@media (max-width: 768px) {
  .nav .nLi:nth-child(2),   /* 关于我们 */
  .nav .nLi:nth-child(5),   /* 社会责任 */
  .nav .nLi:nth-child(6) {  /* 联系我们 */
    display: none;
  }

  .nLi h5 a::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
