/* ========== Reset & Base ========== */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
  --primary: #6C5CE7;
  --primary-light: #A29BFE;
  --primary-dark: #4834D4;
  --accent: #8F00FF;
  --accent2: #7F5AF0;
  --bg-dark: #FFFFFF;
  --bg-darker: #F7F9FB;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #15181C;
  --text-secondary: rgba(21, 24, 28, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --border-color: rgba(255, 255, 255, 0.08);
  --gradient-1: linear-gradient(135deg, #6C5CE7, #00D2FF);
  --gradient-2: linear-gradient(135deg, #7F5AF0, #2CB67D);
  --gradient-3: linear-gradient(135deg, #E040FB, #6C5CE7);
  --shadow-glow: 0 0 40px rgba(108, 92, 231, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}
html {
	scroll-behavior: smooth;
	font-size: 16px;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
	background-color: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}
ul, ol {
	list-style: none;
}
img {
	max-width: 100%;
	display: block;
}
.container {
	max-width: var(--max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}
/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
}
h1 {
	font-size: 3.5rem;
}
h2 {
	font-size: 2.5rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}
h5 {
	font-size: 1.1rem;
}
h6 {
	font-size: 1rem;
}
.section-header {
	text-align: center;
	margin-bottom: 60px;
}
.section-header .label {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 16px;
}
.section-header h2 {
	margin-bottom: 16px;
}
.section-header p {
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.1rem;
}
.gradient-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.label {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--accent);
}
/* ========== Buttons ========== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: var(--transition);
	text-align: center;
	justify-content: center;
}
.btn-primary {
	background: var(--gradient-1);
	color: #fff;
	box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}
.btn-outline {
	background: transparent;
	color: var(--text-primary);
	border: 1px solid var(--border-color);
}
.btn-outline:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.1);
}
.btn-sm {
	padding: 10px 24px;
	font-size: 0.9rem;
}
/* ========== Header / Navigation ========== */
/* 导航栏基础样式 */
#pc-header {
  z-index: 10;
  width: 100%;
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  transition: all 0.3s ease;
  /* 防止横向滚动 */
  max-width: 100vw;
  overflow-x: hidden;
}

#pc-header.flex {
  background: #fff;
  color: #333;
}

#pc-header.flex .navbar {
  background: #fff !important;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03) !important;
}

#pc-header .navbar {
  height: 100%;
  /* 防止横向滚动 */
  max-width: 100vw;
  overflow-x: hidden;
}

#pc-header .container-layout {
  /*width: 1200px;*/
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  /* 防止横向滚动 */
  overflow-x: hidden;
  box-sizing: border-box;
}

#pc-header .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  /* 防止横向滚动 */
  max-width: 100%;
  overflow-x: hidden;
}

/* Logo样式 */
#pc-header .logo {
  float: left;
  display: flex;
  align-items: center;
}

#pc-header .logo a {
  display: flex;
  align-items: center;
  height: 68px;
  text-decoration: none;
}

#pc-header .logo img {
  height: 60px;
  width: 180px;
  object-fit: contain;
}


/* 导航菜单样式 */
#pc-header .nav {
  float: right;
  display: flex;
  align-items: center;
}

#pc-header .nav-menu {
  float: left;
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-right: 20px;
}

#pc-header .nav-menu > li {
  position: relative;
  float: left;
}

#pc-header .nav-menu > li > a {
  display: flex;
  padding: 0 20px;
  line-height: 68px;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  color: #1A2233;
  text-decoration: none;
  transition: color 0.2s ease;
  /* 从0.3s减少到0.2s，只过渡颜色 */
  position: relative;
  gap: 5px;
}

#pc-header .nav-menu > li > a > i {
  position: absolute;
  top: 34px;
  right: 5px;
  background: url(/public/geo/template/ico_jt4.png) no-repeat 50%;
  display: block;
  width: 12px;
  height: 4px;
}

/* 导航链接悬停效果 */
#pc-header .nav-menu > li.on > a,
#pc-header .nav-menu > li:hover > a,
#pc-header .nav-menu > li.active > a {

  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}

#pc-header .nav-menu > li > a:before {
  transition: width 0.2s ease;
  /* 从0.3s减少到0.2s */
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  height: 2px;
  width: 0;
  transform: translate(-50%);
  border-radius: 2px;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
}

#pc-header .nav-menu > li.active > a:before,
#pc-header .nav-menu > li.on > a:before,
#pc-header .nav-menu > li:hover > a:before {
  width: 32px;
}

/* 下拉菜单样式 */
#pc-header .nav-menu .drop-menu {
  position: absolute !important;
  background: #fff !important;
  width: 164px !important;
  border-radius: 9px !important;
  z-index: 2 !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) scaleY(0.8) translateY(-20px) !important;
  transform-origin: top center !important;
  opacity: 0 !important;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  /* 从0.4s减少到0.25s */
  pointer-events: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
  min-width: 164px !important;
  padding: 8px 0 !important;
  display: block !important;
}

#pc-header .nav-menu > li:hover .drop-menu {
  transform: translateX(-50%) scaleY(1) translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#pc-header .drop-menu li {
  text-align: center;
  padding: 0;
}

#pc-header .drop-menu li a {
  padding: 12px 20px !important;
  font-size: 14px !important;
  color: #333 !important;
  display: block !important;
  text-align: center !important;
  transition: color 0.2s ease !important;
  /* 从0.3s减少到0.2s，只过渡颜色 */
  text-decoration: none !important;
  position: relative !important;
  width: 100% !important;
  background: none !important;
}

#pc-header .drop-menu li a:hover {
  color: #2538FF !important;
  background: none !important;
}

#pc-header .drop-menu li a:after {
  transition: width 0.2s ease;
  /* 从0.3s减少到0.2s */
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  height: 2px;
  width: 0;
  transform: translate(-50%);
  border-radius: 2px;
  background-color: #2538FF;
}

#pc-header .drop-menu li a:hover:after {
  width: 32px;
}

/* 联系电话样式 */
#pc-header .tel {
  float: left;
  margin: 0 0 0 55px;
  line-height: 68px;
  display: flex;
  width: 270px;
  justify-content: space-between;
  align-items: center;
}

#pc-header .tel a {
  color: #15181C;
  display: flex;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
}

#pc-header .tel-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  animation: phonePulse 2s ease-in-out infinite;
}

#pc-header .online-consultation {
  width: 72px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 8px;
  opacity: 1;

  font-family: Alibaba PuHuiTi 3.0;
  font-size: 12px;
  font-weight: 500;

  color: #FFFFFF;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  cursor: pointer;
}

/* 动画效果 */
@keyframes phonePulse {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.1);
  }

  100% {
      transform: scale(1);
  }
}

/* 移动端汉堡菜单按钮 */
#pc-header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

#pc-header .mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

#pc-header .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#pc-header .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

#pc-header .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端遮罩层 */
.mobile-nav-mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.25s ease;
  /* 从0.3s减少到0.25s */
  pointer-events: none;
}

.mobile-nav-mask.active {
  opacity: 1;
  pointer-events: auto;
  display: block !important;
}

/* 移动端导航菜单 */
.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.25s ease;
  /* 从0.3s减少到0.25s，只过渡right属性 */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  right: 0;
  display: block !important;
}

.mobile-nav-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px 0 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* 移动端关闭按钮 - 移到顶部 */
.mobile-nav-close {
  position: relative;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.3s ease;
  z-index: 20;
  margin: 15px 0 0 auto;
}

.mobile-nav-close:hover {
  color: #333;
  background: #e9ecef;
  transform: scale(1.1);
}

.mobile-nav-close:active {
  transform: scale(0.95);
}

/* 移动端咨询区域 - 移到菜单下方 */
.mobile-consult-section {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.mobile-consult-section .consult-title {
  display: none;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
}

.mobile-consult-section .consult-button {
  width: 200px;
  height: 34px;
  line-height: 34px;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  border: 1px solid #2538FF;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-consult-section .consult-button:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 66, 60, 0.3);
}

.mobile-consult-section .consult-button .icon {
  width: 20px;
  height: 20px;
  background-size: contain;
}

.mobile-consult-section .tel-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.mobile-consult-section .tel-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  color: #15181C;
  font-size: 14px;
  margin-left: 16px;
}

.mobile-consult-section .tel-item .icon {
  width: 16px;
  height: 16px;
  background: url(/public/geo/template/nav-tel.png) no-repeat center;
  background-size: contain;
}

.mobile-consult-section .tel-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* 移动端底部信息区域 */
.mobile-footer-section {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  background: #f8f9fa;
}

.mobile-footer-section .company-address {
  text-align: center;
  margin-bottom: 20px;
}

.mobile-footer-section .company-address h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.mobile-footer-section .company-address p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.mobile-footer-section .qr-codes {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.mobile-footer-section .mqr-item {
  text-align: center;
  flex: 1;
}

.mobile-footer-section .mqr-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #e9ecef;
}

.mobile-footer-section .mqr-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* 移除原有的移动端电话区域样式 */
.mobile-tel-section {
  display: none;
}

/* 移动端菜单样式调整 */
.mobile-nav-menu {
  display: block;
  /* 显示移动端菜单 */
  padding: 0 0 4px 0;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 0 20px 0;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
  /* 从0.3s减少到0.2s，只过渡必要属性 */
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #2538FF;
  background-color: #f8f9fa;
}

.mobile-drop-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  display: none;
}

.mobile-drop-menu.active {
  display: block;
}

.mobile-drop-item {
  border-top: 1px solid #e9ecef;
}

.mobile-drop-link {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, background-color 0.2s ease;
  /* 从0.3s减少到0.2s，只过渡必要属性 */
}

.mobile-drop-link:hover,
.mobile-drop-link:active {
  color: #2538FF;
  background-color: #e9ecef;
}

.mobile-drop-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #999;
  transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-drop-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* 移除不再使用的移动端菜单样式 */

/* 响应式设计 */
@media (max-width: 1024px) {
  #pc-header .nav-menu {
      display: flex !important;
      /* 恢复桌面端菜单显示 */
  }

  #pc-header .mobile-menu-toggle {
      display: none !important;
      /* 隐藏移动端菜单按钮 */
  }

  #pc-header .container-layout {
      width: 100%;
      max-width: 100%;
      padding: 0 16px;
      box-sizing: border-box;
  }

  #pc-header .tel,
  #pc-header .searchBar,
  #pc-header .shopBar,
  .log-in {
      display: none !important;
  }

  #pc-header .line {
      justify-content: space-between;
      max-width: 100%;
      overflow-x: hidden;
  }

  #pc-header .logo {
      flex: 1;
      max-width: 100%;
      overflow-x: hidden;
  }

  #pc-header .nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      max-width: 100%;
      overflow-x: hidden;
  }

  #pc-header {
      height: 60px !important;
      max-width: 100vw;
      overflow-x: hidden;
  }

  #pc-header .logo a {
      height: 60px;
  }

  #pc-header .logo img {
      height: 50px;
      max-width: 100%;
      object-fit: contain;
  }

  body {
      padding-top: 60px !important;
      /* 防止横向滚动 */
      max-width: 100vw;
      overflow-x: hidden;
  }

  #pc-header .nav-tag {
      margin-left: 10px;
  }

  #pc-header .nav-tag-bg {
      width: 100px;
      height: 24px;
  }

  #pc-header .nav-tag-text {
      width: 80px;
      height: 16px;
  }
}

/* 移动端菜单显示断点 */
@media (max-width: 768px) {
  #pc-header .nav-menu {
      display: none !important;
      /* 在768px以下隐藏桌面端菜单 */
  }

  #pc-header .mobile-menu-toggle {
      display: flex !important;
      /* 在768px以下显示移动端菜单按钮 */
  }

  .mobile-nav-mask.active {
      display: block !important;
  }

  .mobile-nav.active {
      display: block !important;
  }

  /* 确保移动端不会出现横向滚动 */
  html,
  body {
      max-width: 100vw;
      overflow-x: hidden;
  }

  #pc-header {
      max-width: 100vw;
      overflow-x: hidden;
      background-color: #fff;
  }

  #pc-header .container-layout {
      max-width: 100%;
      overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  #pc-header .container-layout {
      padding: 0 16px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
  }

  #pc-header .logo img {
      height: 40px;
      max-width: 100%;
      object-fit: contain;
  }

  #pc-header .nav-tag {
      margin-left: 8px;
  }

  #pc-header .nav-tag-bg {
      width: 90px;
      height: 22px;
  }

  #pc-header .nav-tag-text {
      width: 70px;
      height: 14px;
  }
}

@media (max-width: 480px) {
  #pc-header .container-layout {
      padding: 0 12px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
  }

  #pc-header .logo img {
      height: 40px;
      max-width: 100%;
      object-fit: contain;
  }

  #pc-header .mobile-menu-toggle {
      width: 24px;
      height: 18px;
  }

  #pc-header .mobile-menu-toggle span {
      height: 2px;
  }

  #pc-header .nav-tag {
      margin-left: 6px;
  }

  #pc-header .nav-tag-bg {
      width: 80px;
      height: 20px;
  }

  #pc-header .nav-tag-text {
      width: 60px;
      height: 12px;
  }

  .mobile-nav {
      width: 260px;
      max-width: 90vw;
      right: -260px;
  }

  .mobile-nav-content {
      padding: 0px 12px 20px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section {
      padding: 15px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .consult-title {
      font-size: 16px;
      margin-bottom: 20px;
  }

  .mobile-consult-section .consult-button {
      width: 180px;
      max-width: 100%;
      height: 34px;
      line-height: 34px;
      font-size: 15px;
      margin-bottom: 20px;
  }

  .mobile-consult-section .tel-info {
      gap: 12px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .tel-item {
      font-size: 13px;
  }

  .mobile-footer-section {
      padding: 15px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-footer-section .company-address h4 {
      font-size: 15px;
  }

  .mobile-footer-section .company-address p {
      font-size: 13px;
  }

  .mobile-footer-section .mqr-item img {
      width: 70px;
      height: 70px;
      max-width: 100%;
  }

  .mobile-footer-section .mqr-item p {
      font-size: 11px;
  }

  .mobile-nav-close {
      right: 12px;
      width: 28px;
      height: 28px;
      font-size: 14px;
  }
}

@media (max-width: 360px) {
  #pc-header .container-layout {
      padding: 0 8px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
  }

  #pc-header .logo img {
      height: 36px;
      max-width: 100%;
      object-fit: contain;
  }

  #pc-header .mobile-menu-toggle {
      width: 22px;
      height: 16px;
  }

  #pc-header .mobile-menu-toggle span {
      height: 1.5px;
  }

  #pc-header .nav-tag {
      margin-left: 4px;
  }

  #pc-header .nav-tag-bg {
      width: 70px;
      height: 18px;
  }

  #pc-header .nav-tag-text {
      width: 50px;
      height: 10px;
  }

  .mobile-nav {
      width: 240px;
      max-width: 85vw;
      right: -240px;
  }

  .mobile-nav-content {
      padding: 0px 8px 20px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section {
      padding: 12px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .consult-title {
      font-size: 15px;
      margin-bottom: 18px;
  }

  .mobile-consult-section .consult-button {
      width: 160px;
      max-width: 100%;
      height: 34px;
      line-height: 34px;
      font-size: 14px;
      margin-bottom: 18px;
  }

  .mobile-consult-section .tel-info {
      gap: 10px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .tel-item {
      font-size: 12px;
  }

  .mobile-footer-section {
      padding: 12px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-footer-section .company-address h4 {
      font-size: 14px;
  }

  .mobile-footer-section .company-address p {
      font-size: 12px;
  }

  .mobile-footer-section .mqr-item img {
      width: 60px;
      height: 60px;
      max-width: 100%;
  }

  .mobile-footer-section .mqr-item p {
      font-size: 10px;
  }

  .mobile-nav-close {
      top: 10px;
      right: 10px;
      width: 24px;
      height: 24px;
      font-size: 12px;
  }
}

@media (max-width: 320px) {
  #pc-header .container-layout {
      padding: 0 6px;
      max-width: 100%;
      box-sizing: border-box;
      overflow-x: hidden;
  }

  #pc-header .logo img {
      height: 30px;
      max-width: 100%;
      object-fit: contain;
  }

  #pc-header .mobile-menu-toggle {
      width: 20px;
      height: 14px;
  }

  #pc-header .mobile-menu-toggle span {
      height: 1px;
  }

  #pc-header .nav-tag {
      margin-left: 3px;
  }

  #pc-header .nav-tag-bg {
      width: 60px;
      height: 16px;
  }

  #pc-header .nav-tag-text {
      width: 45px;
      height: 9px;
  }

  .mobile-nav {
      width: 220px;
      max-width: 80vw;
      right: -220px;
  }

  .mobile-nav-content {
      padding: 0px 6px 20px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section {
      padding: 10px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .consult-title {
      font-size: 14px;
      margin-bottom: 15px;
  }

  .mobile-consult-section .consult-button {
      width: 140px;
      max-width: 100%;
      height: 30px;
      line-height: 30px;
      font-size: 13px;
      margin-bottom: 15px;
  }

  .mobile-consult-section .tel-info {
      gap: 8px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-consult-section .tel-item {
      font-size: 11px;
  }

  .mobile-footer-section {
      padding: 10px;
      max-width: 100%;
      overflow-x: hidden;
  }

  .mobile-footer-section .company-address h4 {
      font-size: 13px;
  }

  .mobile-footer-section .company-address p {
      font-size: 11px;
  }

  .mobile-footer-section .mqr-item img {
      width: 50px;
      height: 50px;
      max-width: 100%;
  }

  .mobile-footer-section .mqr-item p {
      font-size: 9px;
  }

  .mobile-nav-close {
      top: 8px;
      right: 8px;
      width: 22px;
      height: 22px;
      font-size: 11px;
  }
}

/* 页面内容上边距 */
body {
  padding-top: 68px;
  transition: padding-top 0.3s ease;
  /* 防止横向滚动 */
  max-width: 100vw;
  overflow-x: hidden;
}

/* 锚链接偏移修复 - 解决固定导航栏遮挡问题 */
html {
  scroll-behavior: smooth;
  /* 添加平滑滚动效果 */
  scroll-padding-top: 68px;
  /* 桌面端导航栏高度 + 缓冲 */
  /* 防止横向滚动 */
  max-width: 100vw;
  overflow-x: hidden;
}

.head-phone {
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  /* 黑 */
  color: #15181C;
}

.head-phone img {
  width: 24px;
  height: 24px;

}


.user-login {
  border-radius: 8px;
  opacity: 1;

  background: #FFFFFF;

  box-sizing: border-box;
  /* 渐变 */
  border: 1px solid #8F00FF;
  padding: 4px 14px;
  margin-left: 20px;
}

.user-login a {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* 登录后头像样式 */
.user-login.logged {
  border: none;
  padding: 0;
  background: transparent;
  height: 68px;
  /* 与导航高度一致，避免出现滚动条 */
  display: flex;
  align-items: center;
}

/* 确保导航区域不产生内部滚动条 */
#pc-header .nav,
#pc-header .nav-menu,
#pc-header .nav-menu > li,
#pc-header .user-login {
  overflow: visible !important;
}

.user-menu {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 1px solid #e9ecef; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.user-dropdown {
  position: fixed;
  right: calc((100vw - 1200px) / 2);
  top: 60px;
  /* 下拉从导航底部展开，避免与header重叠产生滚动条 */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
  min-width: 120px;
  display: none;
  z-index: 1000;
  /* 提高层级，避免被盖住 */
  padding: 6px 0;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown-item {
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  white-space: nowrap;
}

.user-dropdown-item:hover {
  background: #F7F9FE;
  color: #2538FF;
}

/* 移动端锚链接偏移调整 */
@media (max-width: 768px) {
  html {
      scroll-padding-top: 72px;
      /* 移动端导航栏高度60px + 12px缓冲 */
      /* 防止横向滚动 */
      max-width: 100vw;
      overflow-x: hidden;
  }

  body {
      padding-top: 60px !important;
      /* 防止横向滚动 */
      max-width: 100vw;
      overflow-x: hidden;
  }
}
/* Body scroll lock when menu open */
body.menu-open {
	overflow: hidden;
}
/* ========== Page Banner (Inner Pages) ========== */
.page-banner {
	position: relative;
	padding: 160px 0 80px;
	text-align: center;
	overflow: hidden;
	background: var(--bg-darker);
}
.page-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 30% 50%, rgba(108, 92, 231, 0.12) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(0, 210, 255, 0.08) 0%, transparent 50%);
	animation: rotateBg 20s linear infinite;
}
.page-banner .container {
	position: relative;
	z-index: 2;
}
.page-banner h1 {
	font-size: 3rem;
	margin-bottom: 16px;
}
.page-banner p {
	color: var(--text-secondary);
	font-size: 1.15rem;
	max-width: 600px;
	margin: 0 auto;
}
.page-banner .breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
	color: var(--text-muted);
	font-size: 0.9rem;
}
.page-banner .breadcrumb a:hover {
	color: var(--accent);
}
.page-banner .breadcrumb .separator {
	color: var(--text-muted);
}
/* ========== Hero Section (Homepage) ========== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}
.hero canvas, .hero .particles-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 20% 50%, rgba(108, 92, 231, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
	z-index: 1;
}
.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
}
.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 24px;
	line-height: 1.1;
}
.hero-content p {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.hero-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-top: 80px;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max-width);
	padding: 0 24px;
	flex-wrap: wrap;
}
.hero-stats .stat-item {
	text-align: center;
}
.hero-stats .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}
.hero-stats .stat-label {
	font-size: 0.9rem;
	color: var(--text-muted);
}
/* ========== Cards ========== */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 36px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), transparent);
	opacity: 0;
	transition: var(--transition);
	pointer-events: none;
}
.card:hover {
	transform: translateY(-8px);
	background: var(--bg-card-hover);
	border-color: rgba(108, 92, 231, 0.3);
	box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15), 0 0 40px rgba(108, 92, 231, 0.05);
}
.card:hover::before {
	opacity: 1;
}
.card-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 24px;
	position: relative;
	z-index: 1;
}
.card-icon img, .card-icon svg {
	width: 28px;
	height: 28px;
}
.card h3 {
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}
.card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}
/* Feature Card */
.feature-card {
	text-align: center;
	padding: 48px 32px;
}
.feature-card .card-icon {
	margin: 0 auto 24px;
}
/* Service Card */
.service-card {
	padding: 40px 32px;
}
.service-card .card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
}
.service-card .card-link:hover {
	gap: 10px;
}
/* Case Card */
.case-card {
	padding: 0;
	overflow: hidden;
}
.case-card .case-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.case-card .case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.case-card:hover .case-image img {
	transform: scale(1.05);
}
.case-card .case-content {
	padding: 28px;
}
.case-card .case-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
/* News Card */
.news-card {
	padding: 0;
	overflow: hidden;
}
.news-card .news-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.news-card .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}
.news-card:hover .news-image img {
	transform: scale(1.05);
}
.news-card .news-content {
	padding: 24px;
}
.news-card .news-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 0.85rem;
	color: var(--text-muted);
}
.news-card .news-content h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news-card .news-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* Team Card */
.team-card {
	text-align: center;
	padding: 40px 24px;
}
.team-card .team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	border: 3px solid transparent;
	background-image: var(--gradient-1);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	position: relative;
}
.team-card .team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.team-card .team-name {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.team-card .team-role {
	font-size: 0.85rem;
	color: var(--accent);
	margin-bottom: 12px;
}
.team-card .team-desc {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 16px;
}
.team-card .team-social {
	display: flex;
	justify-content: center;
	gap: 12px;
}
.team-card .team-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	color: var(--text-secondary);
}
.team-card .team-social a:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.15);
	color: var(--primary-light);
}
/* ========== Grid Layouts ========== */
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* ========== Sections ========== */
section {
	padding: 100px 0;
	position: relative;
}
.section-alt {
	background: var(--bg-darker);
}
.section-alt::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.section-alt::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
/* Stats Section */
.stats-section {
	padding: 80px 0;
	background: var(--bg-darker);
	position: relative;
	overflow: hidden;
}
.stats-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.06) 0%, transparent 50%);
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	position: relative;
	z-index: 1;
}
.stat-box {
	text-align: center;
	padding: 32px 16px;
}
.stat-box .stat-number {
	font-size: 3rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}
.stat-box .stat-label {
	font-size: 0.95rem;
	color: var(--text-secondary);
}
/* CTA Section */
.cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 210, 255, 0.1));
}
.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at 30% 50%, rgba(108, 92, 231, 0.2) 0%, transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
}
.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 700px;
	margin: 0 auto;
}
.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.cta-content p {
	color: var(--text-secondary);
	font-size: 1.15rem;
	margin-bottom: 36px;
}
.cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
/* ========== Timeline ========== */
.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}
.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary), var(--accent));
	opacity: 0.3;
}
.timeline-item {
	position: relative;
	width: 50%;
	padding: 0 40px 60px;
}
.timeline-item:nth-child(odd) {
	left: 0;
	text-align: right;
	padding-right: 60px;
	padding-left: 0;
}
.timeline-item:nth-child(even) {
	left: 50%;
	text-align: left;
	padding-left: 60px;
	padding-right: 0;
}
.timeline-item::before {
	content: '';
	position: absolute;
	top: 8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--gradient-1);
	box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
	z-index: 1;
}
.timeline-item:nth-child(odd)::before {
	right: -8px;
}
.timeline-item:nth-child(even)::before {
	left: -8px;
}
.timeline-item .timeline-year {
	font-size: 1.1rem;
	font-weight: 700;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 8px;
}
.timeline-item h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
}
.timeline-item p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}
/* ========== Form ========== */
.form-group {
	margin-bottom: 24px;
}
.form-group label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-secondary);
}
.form-control {
	width: 100%;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	color: var(--text-primary);
	font-size: 1rem;
	font-family: inherit;
	transition: var(--transition);
	outline: none;
}
 .form-control::placeholder {
 color: var(--text-muted);
}
.form-control:focus {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.05);
	box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}
textarea.form-control {
	min-height: 140px;
	resize: vertical;
	line-height: 1.6;
}
select.form-control {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
select.form-control option {
	background: #1a1e3a;
	color: var(--text-primary);
	padding: 10px;
}

/* ========== Custom Scrollbar ========== */
::-webkit-scrollbar {
 width: 6px;
 height: 6px;
}

::-webkit-scrollbar-track {
 background: rgba(255, 255, 255, 0.03);
 border-radius: 3px;
}

::-webkit-scrollbar-thumb {
 background: rgba(108, 92, 231, 0.35);
 border-radius: 3px;
 transition: background 0.2s;
}

::-webkit-scrollbar-thumb:hover {
 background: rgba(108, 92, 231, 0.6);
}

::-webkit-scrollbar-corner {
 background: transparent;
}
* {
	scrollbar-width: thin;
	scrollbar-color: rgba(108, 92, 231, 0.35) rgba(255, 255, 255, 0.03);
}
/* ========== Footer ========== */
.footer {
  color: #b6b6b6;
	background: #1A1A1A;
	padding: 80px 0 0;
	position: relative;
}
.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 60px;
}
.footer-brand p {
	font-size: 0.95rem;
	margin-top: 16px;
	line-height: 1.7;
	max-width: 300px;
}
.footer-col h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: #fff;
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-links a {
	color: #b6b6b6;
	font-size: 0.9rem;
	transition: var(--transition);
}
.footer-links a:hover {
	color: #fff;
	padding-left: 4px;
}
.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1rem;
	transition: var(--transition);
}
.footer-social a:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.15);
	color: var(--primary-light);
	transform: translateY(-2px);
}
/* WeChat QR Code Popup */
.footer-social .wechat-wrap {
	position: relative;
}
.footer-social .wechat-qr {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	pointer-events: none;
	width: 164px;
	min-width: 164px;
}
.footer-social .wechat-qr::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
}
.footer-social .wechat-qr img {
	width: 140px;
	height: 140px;
	display: block;
	border-radius: 6px;
}
.footer-social .wechat-qr p {
	text-align: center;
	font-size: 0.75rem;
	color: #666;
	margin-top: 8px;
	max-width: none;
	line-height: 1.4;
}
.footer-social .wechat-wrap:hover .wechat-qr {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
/* 小红书 SVG 图标 */
.icon-xiaohongshu {
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: -0.125em;
}
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--text-secondary);
	font-size: 0.9rem;
}
.footer-contact li i {
	color: var(--accent);
	margin-top: 4px;
}
.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding: 24px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.footer-bottom p {
	color: var(--text-muted);
	font-size: 0.85rem;
}
.footer-bottom-links {
	display: flex;
	gap: 24px;
}
.footer-bottom-links a {
	color: var(--text-muted);
	font-size: 0.85rem;
}
.footer-bottom-links a:hover {
	color: var(--accent);
}
/* ========== Back to Top Button ========== */
.back-to-top {
	position: fixed;
	bottom: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient-1);
	color: #fff;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 900;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--transition);
	box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(108, 92, 231, 0.6);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(40px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
 @keyframes fadeIn {
 from {
opacity: 0;
}
to {
	opacity: 1;
}
}
 @keyframes float {
 0%, 100% {
transform: translateY(0);
}
 50% {
transform: translateY(-15px);
}
}
 @keyframes pulse {
 0%, 100% {
 box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.4);
}
 50% {
 box-shadow: 0 0 0 20px rgba(108, 92, 231, 0);
}
}
 @keyframes rotateBg {
 from {
transform: rotate(0deg);
}
to {
	transform: rotate(360deg);
}
}
/* Scroll Trigger Animation */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0);
}
.animate-on-scroll:nth-child(2) {
	transition-delay: 0.1s;
}
.animate-on-scroll:nth-child(3) {
	transition-delay: 0.2s;
}
.animate-on-scroll:nth-child(4) {
	transition-delay: 0.3s;
}
.animate-on-scroll:nth-child(5) {
	transition-delay: 0.4s;
}
.animate-on-scroll:nth-child(6) {
	transition-delay: 0.5s;
}
/* ========== Utilities ========== */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-60 {
	margin-bottom: 60px;
}
.mt-20 {
	margin-top: 20px;
}
.mt-40 {
	margin-top: 40px;
}
.mt-60 {
	margin-top: 60px;
}
.tag {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 50px;
	background: rgba(108, 92, 231, 0.15);
	color: var(--primary-light);
	border: 1px solid rgba(108, 92, 231, 0.2);
}
a.tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 14px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 50px;
	background: var(--gradient-1);
	color: #fff;
}
.badge-outline {
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--primary-light);
}

/* ========== Responsive: 1024px Tablet ========== */
@media (max-width: 1024px) {
h1 {
	font-size: 2.8rem;
}
h2 {
	font-size: 2rem;
}
.grid-4 {
	grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
	grid-template-columns: repeat(2, 1fr);
}
.hero-content h1 {
	font-size: 3rem;
}
.hero-stats {
	gap: 40px;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.timeline-item {
	padding: 0 30px 40px;
}
.timeline-item:nth-child(odd) {
	padding-right: 40px;
}
.timeline-item:nth-child(even) {
	padding-left: 40px;
}
}

/* ========== Responsive: 768px Mobile ========== */
@media (max-width: 768px) {
html {
	font-size: 15px;
}
h1 {
	font-size: 2.2rem;
}
h2 {
	font-size: 1.75rem;
}
h3 {
	font-size: 1.3rem;
}
section {
	padding: 70px 0;
}
.container {
	padding: 0 16px;
}
/* Navigation - Hamburger Menu */
.menu-toggle {
	display: flex;
}
.nav-close {
	display: flex;
}
.nav-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: rgba(6, 9, 24, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 80px 32px 40px;
	gap: 0;
	transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
	border-left: 1px solid var(--border-color);
	overflow-y: auto;
}
.nav-menu.active {
	right: 0;
}
.nav-menu a {
	font-size: 1.1rem;
	padding: 14px 0;
	width: 100%;
	border-bottom: 1px solid var(--border-color);
}
.nav-actions .btn {
	display: none;
}
/* Hero Mobile */
.hero {
	min-height: 90vh;
}
.hero-content h1 {
	font-size: 2.2rem;
}
.hero-content p {
	font-size: 1.05rem;
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 50px;
}
.hero-stats .stat-number {
	font-size: 2rem;
}
.hero-buttons {
	flex-direction: column;
	align-items: center;
}
/* Grids Mobile */
.grid-2, .grid-3, .grid-4 {
	grid-template-columns: 1fr;
}
.stats-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.stat-box .stat-number {
	font-size: 2.2rem;
}
/* Page Banner Mobile */
.page-banner {
	padding: 130px 0 60px;
}
.page-banner h1 {
	font-size: 2rem;
}
/* Timeline Mobile - Single Column */
.timeline::before {
	left: 20px;
}
.timeline-item {
	width: 100%;
	padding: 0 0 40px 50px;
}
.timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
	left: 0;
	text-align: left;
	padding-left: 50px;
	padding-right: 0;
}
.timeline-item:nth-child(odd)::before, .timeline-item:nth-child(even)::before {
	left: 12px;
	right: auto;
}
/* Footer Mobile */
.footer-grid {
	grid-template-columns: 1fr;
	gap: 32px;
}
.footer-bottom {
	flex-direction: column;
	text-align: center;
}
.footer-bottom-links {
	justify-content: center;
}
/* CTA Mobile */
.cta-content h2 {
	font-size: 1.8rem;
}
.section-header {
	margin-bottom: 40px;
}
}

/* ========== Responsive: 480px Small Screen ========== */
@media (max-width: 480px) {
html {
	font-size: 14px;
}
h1 {
	font-size: 1.9rem;
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.15rem;
}
section {
	padding: 50px 0;
}
.container {
	padding: 0 12px;
}
.hero {
	min-height: 85vh;
	padding-top: 70px;
}
.hero-content h1 {
	font-size: 1.9rem;
}
.hero-content p {
	font-size: 0.95rem;
}
.btn {
	padding: 12px 24px;
	font-size: 0.9rem;
	width: 100%;
}
.btn-sm {
	padding: 8px 18px;
	font-size: 0.85rem;
	width: auto;
}
.card {
	padding: 24px;
}
.feature-card {
	padding: 32px 20px;
}
.stats-grid {
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.stat-box .stat-number {
	font-size: 1.8rem;
}
.page-banner {
	padding: 110px 0 50px;
}
.page-banner h1 {
	font-size: 1.7rem;
}
.cta-content h2 {
	font-size: 1.5rem;
}
.cta-content p {
	font-size: 1rem;
}
.timeline-item {
	padding-left: 40px;
}
.timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
	padding-left: 40px;
}
.footer {
	padding: 50px 0 0;
}
.footer-grid {
	gap: 24px;
}
.team-card .team-avatar {
	width: 80px;
	height: 80px;
}
.nav-menu {
	width: 100%;
	right: -100%;
}
.nav-menu.active {
	right: 0;
}
.back-to-top {
	bottom: 20px;
	right: 20px;
	width: 42px;
	height: 42px;
	font-size: 1rem;
}
}

/* ========== Touch Device Fixes ========== */
@media (hover: none) and (pointer: coarse) {
.card:hover {
	transform: none;
	box-shadow: none;
}
.card:active {
	transform: translateY(-4px);
	background: var(--bg-card-hover);
	border-color: rgba(108, 92, 231, 0.3);
}
.btn-primary:hover {
	transform: none;
}
.btn-primary:active {
	transform: translateY(-2px);
}
}
/* ========== Clickable Tags ========== */
.news-filter .tag, .case-filter .tag {
	cursor: pointer;
	user-select: none;
	transition: var(--transition);
}
.news-filter .tag:hover, .case-filter .tag:hover {
	background: rgba(108, 92, 231, 0.25);
}
.news-filter .tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}

/* ========== Partner Scroll ========== */
@keyframes partnerScroll {
 0% {
transform: translateX(0);
}
 100% {
transform: translateX(-50%);
}
}
.partner-scroll-wrapper:hover .partner-scroll-track {
	animation-play-state: paused;
}
.partner-scroll-wrapper.dragging .partner-scroll-track {
	animation-play-state: paused;
}
.partner-scroll-wrapper.dragging {
	cursor: grabbing;
}
/* News Page Specific Styles */
.news-filter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}
.news-filter .tag {
	cursor: pointer;
	padding: 8px 20px;
	font-size: 0.85rem;
	transition: var(--transition);
}
.news-filter .tag:hover, .news-filter .tag.active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.featured-news {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-bottom: 60px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	overflow: hidden;
	transition: var(--transition);
}
.featured-news:hover {
	border-color: rgba(108, 92, 231, 0.3);
	box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}
.featured-news .featured-image {
	width: 100%;
	height: 100%;
	min-height: 360px;
	background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 210, 255, 0.15));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.featured-news .featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-news .featured-content {
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.featured-news .featured-content .tag {
	align-self: flex-start;
	margin-bottom: 16px;
}
.featured-news .featured-content h2 {
	font-size: 1.75rem;
	margin-bottom: 16px;
	line-height: 1.4;
}
.featured-news .featured-content p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 24px;
}
.featured-news .featured-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--text-muted);
	font-size: 0.85rem;
	margin-bottom: 24px;
}
.featured-news .read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.95rem;
}
.featured-news .read-more:hover {
	gap: 12px;
}
.news-card .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-card .read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
}
.news-card .read-more:hover {
	gap: 10px;
}
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 60px;
}
.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-size: 0.9rem;
	font-weight: 600;
	transition: var(--transition);
}
.pagination a:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.1);
	color: var(--text-primary);
}
.pagination .active {
	background: var(--gradient-1);
	color: #fff;
	border-color: transparent;
}
.pagination .prev, .pagination .next {
	width: auto;
	padding: 0 16px;
	gap: 6px;
}
 @media (max-width: 768px) {
.featured-news {
	grid-template-columns: 1fr;
}
.featured-news .featured-image {
	min-height: 220px;
}
.featured-news .featured-content {
	padding: 28px 24px;
}
.featured-news .featured-content h2 {
	font-size: 1.35rem;
}
}
/* News Detail Styles */
.article-header {
	max-width: 800px;
	margin: 0 auto 40px;
}
.article-header .tag {
	margin-bottom: 16px;
	display: inline-block;
}
.article-header h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
.article-meta {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--text-muted);
	font-size: 0.9rem;
	flex-wrap: wrap;
}
.article-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.article-cover {
	max-width: 900px;
	margin: 0 auto 48px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
}
.article-cover img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}
.article-body {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 2;
}
.article-body h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 48px 0 20px;
}
.article-body h3 {
	font-size: 1.25rem;
	color: var(--text-primary);
	margin: 36px 0 16px;
}
.article-body p {
	margin-bottom: 20px;
}
.article-body blockquote {
	border-left: 3px solid var(--primary);
	padding: 16px 24px;
	margin: 32px 0;
	background: rgba(108, 92, 231, 0.06);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--text-primary);
	font-style: italic;
}
.article-body ul, .article-body ol {
	padding-left: 24px;
	margin-bottom: 20px;
}
.article-body li {
	margin-bottom: 10px;
	list-style: disc;
}
.article-body ol li {
	list-style: decimal;
}
.article-body img {
	width: 100%;
	border-radius: var(--radius-sm);
	margin: 24px 0;
}
.article-tags {
	max-width: 800px;
	margin: 48px auto 0;
	padding-top: 32px;
	border-top: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.article-tags span.label-text {
	color: var(--text-muted);
	font-size: 0.9rem;
}
.article-share {
	max-width: 800px;
	margin: 24px auto 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.article-share span {
	color: var(--text-muted);
	font-size: 0.9rem;
}
.article-share a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	font-size: 1rem;
	transition: var(--transition);
}
.article-share a:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: rgba(108, 92, 231, 0.1);
}
.article-share .wechat-wrap {
	position: relative;
}
.article-share .wechat-wrap a {
	cursor: pointer;
}
.article-share .wechat-qr {
	position: absolute;
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: #fff;
	border-radius: 12px;
	padding: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 10;
	pointer-events: none;
	width: 164px;
	min-width: 164px;
}
.article-share .wechat-qr::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #fff;
}
.article-share .wechat-qr img {
	width: 140px;
	height: 140px;
	display: block;
	border-radius: 6px;
}
.article-share .wechat-qr p {
	text-align: center;
	font-size: 0.75rem;
	color: #666;
	margin-top: 8px;
	max-width: none;
	line-height: 1.4;
}
.article-share .wechat-wrap:hover .wechat-qr {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
/* Article Navigation */
.article-nav {
	max-width: 800px;
	margin: 60px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.article-nav a {
	display: block;
	padding: 24px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.article-nav a:hover {
	border-color: rgba(108, 92, 231, 0.3);
	background: var(--bg-card-hover);
}
.article-nav .nav-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.article-nav .nav-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	line-height: 1.4;
}
.article-nav .next-article {
	text-align: right;
}
.article-nav .next-article .nav-label {
	justify-content: flex-end;
}
/* Related News */
.related-news {
	padding: 100px 0;
}
 @media (max-width: 768px) {
.article-header h1 {
	font-size: 1.75rem;
}
.article-cover img {
	height: 240px;
}
.article-body {
	font-size: 1rem;
}
.article-nav {
	grid-template-columns: 1fr;
}
.article-nav .next-article {
	text-align: left;
}
.article-nav .next-article .nav-label {
	justify-content: flex-start;
}
}
.apply-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.apply-modal-overlay.active {
	display: flex;
}
.apply-modal {
	background: var(--bg-darker);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 40px;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	animation: modalFadeIn 0.3s ease;
}
 @keyframes modalFadeIn {
 from {
opacity: 0;
transform: translateY(20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
.apply-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background: transparent;
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	z-index: 1;
}
.apply-modal-close:hover {
	border-color: var(--primary);
	color: var(--text-primary);
	background: rgba(108, 92, 231, 0.15);
}
.apply-modal-header {
	margin-bottom: 28px;
}
.apply-modal-header h3 {
	font-size: 1.4rem;
}
 @media (max-width: 480px) {
.apply-modal {
	padding: 28px 20px;
}
}
/* Contact Page Specific Styles */
.contact-cards .card {
	text-align: center;
}
.contact-cards .card-icon {
	margin: 0 auto 24px;
}
.contact-cards .card h3 {
	margin-bottom: 8px;
}
.contact-cards .card p {
	color: var(--text-secondary);
	font-size: 0.95rem;
}
.contact-form-section {
	padding: 100px 0;
}
.contact-form-wrapper .card {
	padding: 40px;
}
.map-placeholder {
	width: 100%;
	height: 260px;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	font-size: 1rem;
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}
.map-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.map-placeholder i {
	font-size: 2.5rem;
	margin-right: 12px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.office-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.office-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.office-item:hover {
	border-color: rgba(108,92,231,0.3);
	background: var(--bg-card-hover);
}
.office-item .office-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--gradient-1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
}
.office-item .office-info h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}
.office-item .office-info p {
	color: var(--text-secondary);
	font-size: 0.85rem;
}
/* FAQ Styles */
.faq-section {
	padding: 100px 0;
}
.faq-list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.faq-list details {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
	overflow: hidden;
}
.faq-list details[open] {
	border-color: rgba(108,92,231,0.3);
	background: var(--bg-card-hover);
}
.faq-list details summary {
	padding: 20px 24px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--text-primary);
	transition: var(--transition);
}
 .faq-list details summary::-webkit-details-marker {
 display: none;
}
.faq-list details summary::after {
	content: '\f078';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.8rem;
	color: var(--text-muted);
	transition: transform 0.3s ease;
}
.faq-list details[open] summary::after {
	transform: rotate(180deg);
}
.faq-list details .faq-answer {
	padding: 0 24px 20px;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
}
.legal-content {
	max-width: 860px;
	margin: 0 auto;
}
.legal-nav {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
	justify-content: center;
	flex-wrap: wrap;
}
.legal-nav a {
	padding: 12px 28px;
	border-radius: 50px;
	border: 1px solid var(--border-color);
	color: var(--text-secondary);
	font-weight: 600;
	font-size: 0.95rem;
	transition: var(--transition);
}
.legal-nav a:hover {
	border-color: var(--primary);
	background: rgba(108, 92, 231, 0.1);
	color: var(--text-primary);
}
.legal-section {
	margin-bottom: 80px;
}
.legal-section h2 {
	font-size: 2rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.legal-section h2 i {
	font-size: 1.5rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.legal-section .update-date {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 36px;
}
.legal-section h3 {
	font-size: 1.25rem;
	margin: 36px 0 16px;
	color: var(--text-primary);
}
.legal-section p {
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 16px;
	font-size: 1rem;
}
.legal-section ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.legal-section ul li {
	color: var(--text-secondary);
	line-height: 1.9;
	margin-bottom: 8px;
	list-style: disc;
}
.legal-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--border-color), transparent);
	margin: 80px 0;
}
 @media (max-width: 768px) {
.legal-section h2 {
	font-size: 1.5rem;
}
.legal-section h3 {
	font-size: 1.1rem;
}
}
/* Case Detail Styles */
.case-overview {
	padding: 80px 0;
}
.case-overview-header {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: center;
}
.case-overview-header .badge {
	margin-bottom: 16px;
	display: inline-block;
}
.case-overview-header h1 {
	font-size: 2.5rem;
	line-height: 1.3;
	margin-bottom: 20px;
}
.case-overview-header p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.8;
}
.case-cover {
	max-width: 1000px;
	margin: 0 auto 60px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border-color);
}
.case-cover img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	display: block;
}
/* Key Metrics */
.case-metrics {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 900px;
	margin: 0 auto 80px;
}
.case-metric-item {
	text-align: center;
	padding: 32px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}
.case-metric-item:hover {
	border-color: rgba(108, 92, 231, 0.3);
	background: var(--bg-card-hover);
}
.case-metric-value {
	font-size: 2.2rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 8px;
}
.case-metric-label {
	font-size: 0.9rem;
	color: var(--text-muted);
}
/* Case Content */
.case-content-section {
	padding: 80px 0;
}
.case-body {
	max-width: 800px;
	margin: 0 auto;
	color: var(--text-secondary);
	font-size: 1.05rem;
	line-height: 2;
}
.case-body h2 {
	font-size: 1.5rem;
	color: var(--text-primary);
	margin: 48px 0 20px;
	padding-left: 16px;
	border-left: 3px solid var(--primary);
}
.case-body h3 {
	font-size: 1.2rem;
	color: var(--text-primary);
	margin: 32px 0 14px;
}
.case-body p {
	margin-bottom: 20px;
}
.case-body ul {
	padding-left: 24px;
	margin-bottom: 20px;
}
.case-body li {
	margin-bottom: 10px;
	list-style: disc;
}
.case-body img {
	width: 100%;
	border-radius: var(--radius-sm);
	margin: 28px 0;
}
/* Info Card */
.case-info-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 36px;
	margin: 40px 0;
}
.case-info-card h4 {
	font-size: 1.1rem;
	margin-bottom: 20px;
	color: var(--text-primary);
}
.case-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.case-info-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.case-info-item i {
	color: var(--primary-light);
	margin-top: 4px;
	flex-shrink: 0;
}
.case-info-item .info-label {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 2px;
}
.case-info-item .info-value {
	font-size: 0.95rem;
	color: var(--text-primary);
	font-weight: 500;
}
/* Testimonial */
.case-testimonial {
	max-width: 800px;
	margin: 60px auto;
	padding: 40px;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	position: relative;
}
.case-testimonial .quote-icon {
	font-size: 2rem;
	color: var(--primary-light);
	opacity: 0.3;
	margin-bottom: 16px;
}
.case-testimonial p {
	font-size: 1.05rem;
	line-height: 1.9;
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-style: italic;
}
.case-testimonial .testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.case-testimonial .testimonial-author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}
.case-testimonial .author-name {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-primary);
}
.case-testimonial .author-role {
	font-size: 0.85rem;
	color: var(--text-muted);
}
 @media (max-width: 768px) {
.case-overview-header h1 {
	font-size: 1.75rem;
}
.case-cover img {
	height: 240px;
}
.case-metrics {
	grid-template-columns: repeat(2, 1fr);
}
.case-metric-value {
	font-size: 1.8rem;
}
.case-info-grid {
	grid-template-columns: 1fr;
}
.case-body {
	font-size: 1rem;
}
}






/* Banner模块样式 */
.news-banner-section {
  padding: 120px 0 80px;
  background: url(../images/z_01.png) no-repeat center center;
  background-size: cover;
  position: relative;
}

.news-banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.news-banner-title h1 {
  font-family: 'AlibabaPuHuiTi';
  font-size: 36px;
  font-weight: 500;
  color: #1A2233;
  margin: 0;
  line-height: 1.4;
  margin-bottom: 30px;
}
.highlight {
  display: inline-block;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-left: 200px;
}

.news-banner-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 240, 240, 0.3) 0%, rgba(245, 245, 245, 0.1) 100%);
  z-index: -1;
}

/* 主要内容区域样式 */
.news-main-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.news-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* 左侧文章列表样式 */
.news-articles-column {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  border: 1px solid transparent;
  word-wrap: break-word;
  word-break: break-word;
}

.article-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.22) !important;
  border: 1px solid #2538FF !important;
}

.article-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 20px;
}

.article-title {
  font-size: 16px;
  font-weight: 600;
  color: #1A2233;
  margin: 0 0 15px 0;
  line-height: 1.4;
  min-height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-word;
}

.article-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-word;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-category {
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.article-date {
  font-size: 12px;
  color: #999;
}

/* 分页样式 */
.pagination-section {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
  font-size: 16px;
}

@media (max-width: 768px) {}
.pagination-links li {
  color: #666;
  font-weight: bold;
  display: inline-block;
  height: 40px;
  min-width: 40px;
  line-height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 6.25px;

}
.pagination-links .active {
  box-shadow: 0 4px 12px rgb(146 148 241);

  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.pagination-links .active a {
  color: #fff;
}
.pagination-links a:hover {

  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

}
.pagination-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.page-link {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-width: 40px;
  text-align: center;
}

.page-link:hover {
  border-color: #2538FF;
  color: #2538FF;
}

.page-link.active {
  background: #fef2f2;
  border-color: #2538FF;
  color: #2538FF;
}

.page-ellipsis {
  padding: 8px 12px;
  color: #999;
}

/* 上一篇下一篇样式 */
.article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  /* border-top: 1px solid #eee; */
}

.nav-item {
  display: flex;
  align-items: center;
  max-width: 45%;
  min-width: 300px;
  height: 48px;
  line-height: 48px;
  text-align: left;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(79, 70, 229, 0.1);
  transition: all 0.3s ease;
}

.nav-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-label {
  font-size: 14px;
  color: rgba(26, 34, 51, 0.7);
  /* margin-right: 16px; */
  display: block;
  padding-left: 16px;
  width: 100px;
}

.nav-title {
  font-size: 14px;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  text-decoration: none;
  line-height: 1.4;
  display: block;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}

.nav-title:hover {
  color: #2538FF;
}

/* 右侧侧边栏样式 */
.news-sidebar-column {
  width: 260px;
  flex-shrink: 0;
}

/* 作者资料样式 */
.sidebar-author-section {
  background: url(/public/geo/template/z_05.png) no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
}

.author-profile {
  padding: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-profile::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 40px;
  background: url(/public/geo/template/z_05.png) no-repeat center center;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.author-name {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.author-bio {
  height: 26px;
  line-height: 26px;
  width: 86px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  border: 0.5px solid #FFFFFF;
  border-radius: 20px;
}

.author-content {

  padding: 0 12px 12px 12px;
}

.author-description {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid #fff;
}

.scan-code-section {
  background: #fbf7ff;
  padding: 12px;
  border-radius: 12px;
  margin-top: 15px;
  position: relative;
}



.scan-code-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.scan-code-title {
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.scan-code-text {
  color: #1A2233;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}

.scan-code-text .highlight {
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: bold;
}

.qr-code-area {
  display: flex;
  justify-content: flex-end;
  margin-left: 6px;
}

.qr-code-placeholder {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* 热门文章样式 */
.sidebar-hot-articles {

  border-radius: 8px;

  margin-bottom: 30px;

}

.sidebar-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.title-icon {
  width: 4px;
  height: 16px;
  background: #2538FF;
  margin-right: 10px;
  border-radius: 2px;
}

.sidebar-section-title h3 {
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-left: 10px;
  margin: 0;
}

.hot-articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-article-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}



.article-number {

  color: #999;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

.hot-articles-list li:nth-child(1) .article-number {
  color: #2538FF;
}
.hot-articles-list li:nth-child(2) .article-number {
  color: #2538FF;
  opacity: 0.7;
}
.hot-articles-list li:nth-child(3) .article-number {
  color: #2538FF;
  opacity: 0.4;
}
.hot-article-item .article-title2 {
  flex: 1;
  font-size: 14px;
  color: #1A2233;
  text-decoration: none;
  line-height: 1.4;
  margin: 0;
  height: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hot-article-item .article-title2:hover {
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hot-article-item .article-date {
  font-size: 12px;
  color: #999;
  margin-left: 10px;
  flex-shrink: 0;
}

/* 推荐文章样式 */
.sidebar-recommended {

  border-radius: 8px;


}

.filter-boxs {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-boxs a {
  display: inline-block;
  background: #fff;
  border: 1px solid #2538FF;
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: 100px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 36px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;

}

.filter-boxs .active,
.filter-boxs a:hover {
  background: linear-gradient(270deg, #8F00FF 0%, #2538FF 100%);
  color: #fff;
  text-fill-color: aliceblue;
  -webkit-text-fill-color: aliceblue;

}



/* 响应式设计 */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;

  }

  .news-content-wrapper {
    gap: 30px;
  }

  .news-sidebar-column {
    width: 300px;
  }
}

@media (max-width: 992px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0;
  }

  .news-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .news-sidebar-column {
    width: 100%;
  }


}

@media (max-width: 768px) {
  .news-banner-section {
    padding: 30px 0;
    background-size: auto;
  }
  .news-banner-title h1 {
    width: 100%;
    padding: 0 20px;
    font-size: 40px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .highlight {
    margin-left: 40px;
    display: block;
  }

  .articles-grid {
    gap: 8px;
    margin-bottom: 20px;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding-right: 72px;
  }

  .article-card {
    min-height: auto;
    overflow: hidden;
    margin-bottom: 4px;

    width: calc(100% - 8px);
  }

  .article-image {
    height: 140px;
  }

  .article-content {
    padding: 15px;
  }

  .article-title {
    font-size: 14px;
    height: auto;
    line-height: 1.3;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
  }

  .article-description {
    font-size: 12px;
    height: auto;
    line-height: 1.4;
    margin-bottom: 15px;
    -webkit-line-clamp: 2;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .article-category {
    font-size: 11px;
    padding: 3px 8px;
  }

  .article-date {
    font-size: 11px;
  }

  .article-navigation {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
    padding: 0;
  }

  .nav-item {
    max-width: 96% !important;
    width: 96% !important;
    padding: 15px;
  }

  .nav-label {
    font-size: 12px;
    margin-bottom: 6px;
    width: 80px;
  }

  .nav-title {
    font-size: 13px;
    line-height: 1.3;
  }

  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .recommended-btn {
    font-size: 11px;
    padding: 6px 10px;
  }

  .pagination-section {
    flex-direction: column;
    gap: 20px;
    margin-right: 0;
    margin-bottom: 0px;
  }

  .pagination-links {
    gap: 6px;
  }

  .page-link {
    padding: 6px 10px;
    min-width: 36px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .news-banner-section {
    padding: 30px 0;
    background-size: auto;
  }

  .news-main-section {
    padding: 16px 0;
  }

  .news-banner-title h1 {
    font-size: 22px;
    line-height: 1.8;
    margin-top: 20px;
  }

  .articles-grid {
    padding: 0;
    gap: 8px;
  }

  .article-image {
    height: 160px;
  }

  .article-content {
    padding: 12px;
  }

  .article-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .article-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .article-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .recommended-btn {
    font-size: 10px;
    padding: 5px 8px;
    line-height: 1.1;
  }

  .sidebar-author-section {
    margin-bottom: 20px;
  }

  .author-profile {
    padding: 20px;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-name {
    font-size: 18px;
  }

  .author-bio {
    font-size: 13px;
  }

  .author-content {
    padding: 15px;
  }

  .scan-code-section {
    padding: 15px;
  }

  .scan-code-title {
    font-size: 16px;
  }

  .scan-code-text {
    font-size: 13px;
  }

  .qr-code-placeholder {
    width: 60px;
    height: 60px;
  }
}

/* 新闻详情页样式 */
.breadcrumb-section {
  background: #F7F9FB;
  padding: 15px 0;
  /* border-bottom: 1px solid #eee; */
}

.breadcrumb-nav {
  display: flex;
  align-items: center;

  font-size: 14px;
  color: #666;
}

.breadcrumb-nav .separator {
  color: #ccc;
}

.article-main-section {
  padding: 0 0 20px 0;
  background: #F7F9FB;
}

.article-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.article-content-column {
  flex: 1;
  max-width: calc(100% - 360px);
}

.article-header {
  margin-bottom: 30px;
}

.article-header .article-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A2233;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.article-header .article-meta {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  font-size: 14px;
  color: #666;
}

.article-header .article-category {
  color: #fff;
  font-weight: 500;
}

.article-header .article-separator {
  color: #999;
}

.article-header .article-date {
  color: #999;
}

.article-main-image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.article-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {

  line-height: 1.8;
  color: #1A2233;
}
.article-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.article-body p {
  margin: 0 0 20px 0;
  font-size: 16px;
  text-align: justify;
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* 底部咨询区域样式 */
.consultation-section {
  background: #2538FF;
  padding: 60px 0;
  color: #fff;
}

.consultation-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.consultation-text {
  flex: 1;
  max-width: 600px;
}

.consultation-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.consultation-subtitle {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.consultation-form {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.form-input {
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  min-width: 140px;
}

.form-input::placeholder {
  color: #999;
}

.submit-btn {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #a93226;
  transform: translateY(-2px);
}

/* 响应式设计 - 详情页 */
@media (max-width: 1200px) {
  .article-content-wrapper {
    gap: 30px;
  }

  .article-content-column {
    max-width: calc(100% - 320px);
  }
}

@media (max-width: 992px) {
  .article-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .article-content-column {
    max-width: 100%;
  }

  .consultation-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .consultation-form {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .article-header .article-title {
    font-size: 24px;
  }

  .article-body p {
    font-size: 15px;
  }

  .consultation-title {
    font-size: 22px;
  }

  .consultation-subtitle {
    font-size: 14px;
  }

  .consultation-form {
    flex-direction: column;
    width: 100%;
  }

  .form-input {
    width: 100%;
    min-width: auto;
  }

  .submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .article-main-section {
    padding: 0 0 20px 0;
  }

  .article-header .article-title {
    font-size: 20px;
  }

  .article-body p {
    font-size: 14px;
  }

  .consultation-section {
    padding: 40px 0;
  }

  .consultation-title {
    font-size: 18px;
  }

  .consultation-subtitle {
    font-size: 13px;
  }
}