/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f7fa;
  overflow-x: hidden;
}

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

ul,
li {
  list-style: none;
}

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

/* 容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== 主导航条 ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
  z-index: 1000;
  transition: all 0.3s ease;
}

/* .header.scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
} */

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* 导航菜单 */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  margin: 0 40px;
  margin-left: 60px;
  /* 完全移除 overflow 限制，允许下拉菜单显示 */
  /* 注意: overflow-x 和 overflow-y 不能同时使用 auto 和 visible */
  /* 浏览器会强制将 visible 转换为 auto，导致下拉菜单被裁剪 */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item a {
  display: block;
  padding: 24px 10.5px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item a::after {
  /* 蓝色滑动条已移除 */
}

.nav-item:hover a {
  color: #1e6fff;
}

.nav-item.active a {
  color: #1e6fff;
  font-weight: 500;
}

/* ==================== 一级导航下拉菜单 ==================== */
/* PC端样式 - 完全复刻三级导航的实现 */
.main-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* 隐藏时不接收鼠标事件 */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

/* PC端悬停显示 */
@media screen and (min-width: 1025px) {
  .nav-item.has-main-dropdown:hover .main-nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* 显示时恢复鼠标事件 */
    transform: translateX(-50%) translateY(0);
  }
}

/* 一级导航列表 */
.main-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav-item {
  position: relative;
}

/* ==================== 样式模式1: 左侧icon,右侧title+desc ==================== */
.main-nav-style-1 .main-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 12px;
  transition: all 0.2s ease;
  color: #333;
}

.main-nav-style-1 .main-nav-link:hover {
  background-color: #f3f7ff;
}

.main-nav-style-1 .main-nav-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f8ff 0%, #e8f0ff 100%);
  border-radius: 8px;
}

.main-nav-style-1 .main-nav-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.main-nav-style-1 .main-nav-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.main-nav-style-1 .main-nav-title {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

.main-nav-style-1 .main-nav-desc {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
}

.main-nav-style-1 .main-nav-link:hover .main-nav-title {
  color: #1e6fff;
}

.main-nav-style-1 .main-nav-link:hover .main-nav-icon {
  background: linear-gradient(135deg, #1e6fff 0%, #4a8fff 100%);
}

.main-nav-style-1 .main-nav-link:hover .main-nav-icon img {
  filter: brightness(0) invert(1);
}

/* ==================== 样式模式2: 只显示title ==================== */
.main-nav-style-2 .main-nav-link {
  display: block;
  padding: 10px 24px;
  color: #333;
  transition: all 0.2s ease;
  position: relative;
}

.main-nav-style-2 .main-nav-link:hover {
  background-color: #f3f7ff;
  color: #1e6fff;
  padding-left: 28px;
}

.main-nav-style-2 .main-nav-title {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  /* 默认黑色 */
  white-space: nowrap;
}

.main-nav-style-2 .main-nav-link:hover .main-nav-title {
  color: #1e6fff;
  /* 鼠标悬浮时变蓝色 */
}

.main-nav-style-2 .main-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 16px;
  background: linear-gradient(180deg, #1e6fff 0%, #4a8fff 100%);
  transition: width 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.main-nav-style-2 .main-nav-link:hover::before {
  width: 3px;
}

/* 右侧操作区 */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.phone-icon {
  width: 22px;
  height: 22px;
}

.phone-number {
  font-size: 15px;
  color: #3975ff;
  font-weight: 500;
}

/* 按钮基础样式 */
.btn-trial {
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
}

/* 描边按钮 - 免费试用 */
.btn-trial.btn-outline {
  background: #fff;
  color: #333;
  border: 1px solid #d8d8d8;
  box-shadow: none;
}

.btn-trial.btn-outline:hover {
  border-color: #1e6fff;
  color: #1e6fff;
  background: #f5f8ff;
}

/* 主要按钮 - 产品演示 */
.btn-trial.btn-primary {
  background: linear-gradient(135deg, #1e6fff 0%, #4a8fff 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(30, 111, 255, 0.3);
}

.btn-trial.btn-primary:hover {
  background: linear-gradient(135deg, #0d5fef 0%, #3a7fef 100%);
  box-shadow: 0 4px 12px rgba(30, 111, 255, 0.4);
  transform: translateY(-2px);
}

.btn-trial.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(30, 111, 255, 0.3);
}

/* ==================== 二级导航 ==================== */
.sub-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #edf1f6;
  border-bottom: 1px solid #e5e7eb;
  z-index: 999;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); */
  transition: all 0.3s ease;
}

.sub-nav-wrapper {
  display: flex;
  align-items: center;
  height: 56px;
}

/* 二级导航标题 */
.sub-nav-title {
  width: 200px;
}

.sub-nav-title h2 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  white-space: nowrap;
}

/* 二级导航列表 */
.sub-nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
}

.sub-nav-item {
  position: relative;
}

.sub-nav-item > a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  color: #666;
  font-weight: 400;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

/* 二级导航激活状态 */
.sub-nav-item.active > a {
  color: #1e6fff;
  font-weight: 500;
}

.sub-nav-item.active > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e6fff 0%, #4a8fff 100%);
}

/* 二级导航悬停效果 */
.sub-nav-item:hover > a {
  color: #1e6fff;
}

/* ==================== 三级导航下拉菜单 ==================== */
/* PC端样式 */
.third-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

/* PC端悬停显示 */
@media screen and (min-width: 1025px) {
  .sub-nav-item.has-dropdown:hover .third-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* 三级导航列表 */
.third-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.third-nav-item {
  position: relative;
}

.third-nav-item a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  color: #333;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.third-nav-item a:hover {
  background-color: #f3f7ff;
  color: #1e6fff;
  padding-left: 28px;
}

.third-nav-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 16px;
  background: linear-gradient(180deg, #1e6fff 0%, #4a8fff 100%);
  transition: width 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.third-nav-item a:hover::before {
  width: 3px;
}

/* 主内容区域 */
.main-content {
  margin-top: 126px;
  /* 70px (主导航) + 56px (二级导航) */
  min-height: calc(100vh - 126px);
}

.lead-sidebar {
  position: fixed;
  right: 0px;
  top: 40%;
  transform: translateY(-50%);
  /* background-color: #fff; */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.lead-sidebar .lead-item-primary {
  width: 58px;
  height: 73px;
}

.lead-sidebar .lead-item-primary img {
  width: 100%;
  height: 100%;
}
.lead-sidebar .lead-bottom {
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 15px 5px;
  gap: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 58px;
  height: 222px;
  margin-top: 10px;
}
.lead-sidebar .lead-bottom .lead-item {
  font-size: 12px;
}
.lead-sidebar .lead-bottom .lead-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.lead-sidebar .lead-bottom .lead-icon img {
  width: 23px;
  height: 23px;
}
.lead-sidebar .lead-bottom .lead-label {
  color: #8a9095;
}

.lead-sidebar .lead-item-wechat {
  position: relative;
  text-decoration: none;
}

.lead-sidebar .lead-item-phone {
  position: relative;
  text-decoration: none;
}

.lead-sidebar .lead-wechat-popup,
.lead-sidebar .lead-phone-popup {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.16);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1002;
}

.lead-sidebar .lead-wechat-popup {
  width: 196px;
  padding: 20px 18px 18px;
}

.lead-sidebar .lead-phone-popup {
  min-width: 168px;
  padding: 18px 22px;
}

.lead-sidebar .lead-wechat-popup::after,
.lead-sidebar .lead-phone-popup::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 4px -4px 8px rgba(15, 23, 42, 0.04);
}

.lead-sidebar .lead-wechat-popup-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #4a5568;
  line-height: 1.3;
}

.lead-sidebar .lead-phone-popup-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 400;
  color: #8a9095;
  line-height: 1.3;
}

.lead-sidebar .lead-phone-popup-num {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.lead-sidebar .lead-wechat-popup-qr {
  width: 148px;
  height: 148px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
}

.lead-sidebar .lead-wechat-popup-tip {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #4a5568;
}

.lead-sidebar .lead-item-wechat:hover .lead-wechat-popup,
.lead-sidebar .lead-item-wechat.is-open .lead-wechat-popup,
.lead-sidebar .lead-item-phone:hover .lead-phone-popup,
.lead-sidebar .lead-item-phone.is-open .lead-phone-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
  .lead-sidebar .lead-wechat-popup {
    right: calc(100% + 10px);
    width: 176px;
    padding: 16px 14px 14px;
  }

  .lead-sidebar .lead-phone-popup {
    right: calc(100% + 10px);
    min-width: 150px;
    padding: 14px 16px;
  }

  .lead-sidebar .lead-wechat-popup-qr {
    width: 128px;
    height: 128px;
  }
}

/* ==================== 移动端菜单 ==================== */
/* 汉堡菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* 移动端侧边栏 */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1005;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  right: 0;
}

/* 侧边栏头部 */
.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-sidebar-logo {
  height: 32px;
}

.mobile-sidebar-logo img {
  height: 100%;
  width: auto;
}

/* 关闭按钮 */
.mobile-sidebar-close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.mobile-sidebar-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #1e6fff;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
}

.mobile-sidebar-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-sidebar-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 侧边栏导航 */
.mobile-sidebar-nav {
  padding: 8px 0;
}

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

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: #f7f8fa;
}

.mobile-nav-item.active > .mobile-nav-link {
  color: #1e6fff;
}

/* 箭头图标 */
.mobile-nav-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-nav-arrow {
  transform: rotate(-135deg);
}

/* 子菜单 */
.mobile-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  background-color: #f7f8fa;
  transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-sub-menu {
  max-height: 500px;
}

.mobile-sub-menu li {
  border-bottom: 1px solid #e5e7eb;
}

.mobile-sub-menu li:last-child {
  border-bottom: none;
}

.mobile-sub-menu a {
  display: block;
  padding: 12px 20px 12px 40px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mobile-sub-menu a:hover {
  background-color: #fff;
  color: #1e6fff;
  padding-left: 44px;
}

/* 遮罩层 */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==================== 页脚 ==================== */
.footer {
  background-color: #fff;
}

/* 页脚主区域 */
.footer-main {
  padding: 60px 0;
  border-bottom: 1px solid #e5e7eb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* 左侧菜单列 */
.footer-columns {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer-column {
  flex: 1;
  min-width: 140px;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #1e6fff;
}

/* 右侧咨询热线 */
.footer-contact {
  min-width: 200px;
  text-align: right;
}

.footer-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 8px;
}

.footer-phone-icon {
  width: 24px;
  height: 24px;
}

.footer-phone-label {
  font-size: 14px;
  color: #666;
}

.footer-phone-number {
  font-size: 18px;
  font-weight: 600;
  color: #3975ff;
  margin-bottom: 24px;
}

.footer-qrcode {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.qrcode-placeholder {
  width: 120px;
  height: 120px;
  margin-bottom: 12px;
}

.qrcode-image {
  width: 100%;
  height: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  object-fit: contain;
}

.qrcode-text {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* 热门链接和友情链接区域 */
.footer-links-section {
  background-color: #f7f8fa;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.footer-links-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-links-group:last-child {
  margin-bottom: 0;
}

.links-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  margin-right: 12px;
  padding-top: 2px;
}

.links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.links-list a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.links-list a:hover {
  color: #1e6fff;
}

/* 版权信息 */
.footer-copyright {
  background-color: #f7f8fa;
  padding: 20px 0;
}

/* PC端隐藏移动端底部导航 */
.mobile-bottom-nav {
  display: none;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-left,
.copyright-center,
.copyright-right {
  font-size: 12px;
  color: #999;
}

.links {
  display: flex;
  gap: 10px 20px;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.copyright-center {
  text-align: center;
}

.copyright-right a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-right a:hover {
  color: #1e6fff;
}

/* ==================== 页面大纲目录 ==================== */
.page-outline {
  position: fixed;
  left: -180px;
  top: 45%;
  max-width: 160px;
  min-width: 120px;
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s ease;
}

.page-outline.visible {
  left: 0;
  opacity: 1;
}

.outline-content {
  width: 100%;
}

.outline-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.outline-nav {
  width: 100%;
}

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

.outline-item {
  list-style: none;
  margin: 4px 0;
}

.outline-item:last-child {
  margin-bottom: 0;
}

.outline-link {
  display: block;
  font-size: 12px;
  color: #666;
  text-decoration: none;
  line-height: 1.6;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  /* 最多显示两行，超出省略 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}

.outline-link:hover {
  color: #1e6fff;
  background: #f5f8ff;
}

.outline-link:hover::before {
  background: #1e6fff;
  width: 6px;
  height: 6px;
}

.outline-link.active {
  color: #1e6fff;
  background: #f5f8ff;
  font-weight: 500;
}

.outline-link.active::before {
  background: #1e6fff;
  width: 6px;
  height: 6px;
}

/* 隐藏滚动条 */
.page-outline::-webkit-scrollbar {
  width: 4px;
}

.page-outline::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 2px;
}

.page-outline::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/* 响应式：屏幕宽度小于1400px时隐藏大纲 */
@media screen and (max-width: 1400px) {
  .page-outline {
    display: none;
  }
}

/* ==================== 响应式设计 ==================== */
@media screen and (max-width: 1024px) {
  .nav-list {
    gap: 32px;
  }

  /* 二级导航适配 */
  .sub-nav-list {
    gap: 32px;
  }

  .sub-nav-title {
    margin-right: 40px;
    width: 160px;
  }

  .sub-nav-title h2 {
    font-size: 16px;
  }

  .sub-nav-item > a {
    font-size: 14px;
  }

  /* 页脚适配 */
  .footer-columns {
    gap: 40px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media screen and (max-width: 1024px) {
  /* 主导航 */
  .nav-wrapper {
    height: 60px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* 显示汉堡菜单按钮 */
  .mobile-menu-btn {
    display: flex;
  }

  /* 移动端隐藏一级导航下拉菜单 */
  .main-nav-dropdown {
    display: none;
  }

  /* 二级导航 */
  .sub-nav {
    top: 60px;
    z-index: 1004;
    /* 移动端需要高于遮罩层,确保三级导航可见 */
  }

  .sub-nav-wrapper {
    height: 48px;
  }

  .sub-nav-title {
    margin-right: 20px;
    width: auto;
  }

  .sub-nav-title h2 {
    font-size: 15px;
  }

  .sub-nav-list {
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sub-nav-list::-webkit-scrollbar {
    display: none;
  }

  .sub-nav-item > a {
    font-size: 13px;
    padding: 14px 0;
  }

  /* 移动端三级导航 - 覆盖PC端样式 */
  .third-nav-dropdown {
    /* 重置PC端样式 */
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: auto;
    padding: 20px 0;
    border-radius: 16px 16px 0 0;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    /* 默认隐藏在底部 */
    transform: translateY(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* 显示状态 */
  .third-nav-dropdown.show {
    transform: translateY(0);
  }

  /* 移动端三级导航项样式 */
  .third-nav-item a {
    padding: 14px 20px;
    font-size: 15px;
    white-space: normal;
  }

  .third-nav-item a:hover {
    padding-left: 20px;
    background-color: #f7f8fa;
  }

  .third-nav-item a::before {
    display: none;
  }

  /* 三级导航遮罩层 */
  .third-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
  }

  .third-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  /* 主内容区域 */
  .main-content {
    margin-top: 108px;
    /* 60px (主导航) + 48px (二级导航) */
  }

  /* 页脚 */
  .footer-main {
    padding: 30px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 8px;
  }

  .footer-column {
    width: 100%;
    min-width: auto;
  }

  /* 移动端隐藏咨询热线 */
  .footer-contact {
    display: none;
  }

  .footer-phone {
    justify-content: center;
  }

  .footer-qrcode {
    align-items: center;
  }

  .footer-links-section {
    padding: 20px 0;
  }

  .footer-links-group {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .links-label {
    margin-bottom: 8px;
  }

  .links-list {
    gap: 8px 12px;
  }

  .copyright-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .copyright-left,
  .copyright-center,
  .copyright-right {
    font-size: 11px;
  }

  .footer-links li {
    margin-bottom: 12px;
    display: inline-block;
    margin-right: 15px;
  }

  /* 移动端底部固定导航栏 */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav .mobile-bottom-item {
    flex: 1;
    display: flex;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
  }

  .mobile-nav-item:active {
    background-color: #f5f5f5;
  }

  .mobile-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    stroke-width: 2;
  }

  .mobile-nav-label {
    font-size: 12px;
    font-weight: 500;
  }

  /* 给body添加底部padding，避免内容被导航栏遮挡 */
  body {
    padding-bottom: 60px;
  }

  .footer-copyright {
    text-align: center;
  }

  .copyright-content {
    text-align: center;
  }
}

/**共用地方**/

/*融合管理智慧与智能科技, 助力提升客户管理绩效*/
.zhihui-section {
  background-image: url("../images/zhihui.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0 150px;
  position: relative;
}
.zhihui-title {
  padding-bottom: 50px;
  font-family: MiSans;
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #333333;
}

.anniu {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .btn-customers {
    padding: 10px 32px;
    font-size: 15px;
    width: 100%;
    text-align: center;
  }
  .anniu {
    display: block;
    justify-content: initial;
    align-items: initial;
    gap: initial;
  }
  .btn-banner1 {
    margin-left: 0;
    margin-top: 20px;
  }
}

/* ==================== SRM页面 - 常见问题解答 ==================== */
.main-content .faq-section {
  background-color: #f7f7f7;
  padding: 60px 0;
}

.main-content .faq-section .faq-title {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 50px 0;
}

.main-content .faq-section .faq-list {
  max-width: 900px;
  margin: 0 auto 60px;
}

.main-content .faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.main-content .faq-section .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.main-content .faq-section .faq-question {
  display: flex;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  gap: 16px;
  transition: background-color 0.3s ease;
}

.main-content .faq-section .faq-question:hover {
  background-color: #fafafa;
}

.main-content .faq-section .faq-question-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.main-content .faq-section .faq-question-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
}

.main-content .faq-section .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
  transition: transform 0.3s ease;
}

.main-content .faq-section .faq-item.active .faq-toggle {
  transform: rotate(90deg);
}

.main-content .faq-section .faq-answer {
  padding: 0 28px 28px 72px;
  display: none;
  animation: faqFadeIn 0.3s ease;
}

.main-content .faq-section .faq-item.active .faq-answer {
  display: block;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content .faq-section .faq-answer-intro {
  font-size: 15px;
  color: #333;
  margin: 0 0 16px 0;
  line-height: 1.8;
}

.main-content .faq-section .faq-answer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-content .faq-section .faq-answer-list li {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 0;
}

.main-content .faq-section .faq-answer-list li:last-child {
  margin-bottom: 0;
}

.main-content .faq-section .faq-answer-list li strong {
  color: #333;
  font-weight: 600;
}

.main-content .faq-section .faq-footer {
  text-align: center;
}

.main-content .faq-section .faq-footer-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 30px 0;
}

.main-content .faq-section .btn-contact-expert {
  cursor: pointer;
  display: inline-block;
  padding: 10px 30px;
  background: #2164ff;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(33, 100, 255, 0.3);
}

.main-content .faq-section .btn-contact-expert:hover {
  background: #0d4fd9;
  box-shadow: 0 6px 16px rgba(33, 100, 255, 0.4);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .main-content .faq-section {
    padding: 30px 0;
  }

  .main-content .faq-section .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .main-content .faq-section .faq-list {
    margin-bottom: 40px;
  }

  .main-content .faq-section .faq-item {
    margin-bottom: 12px;
  }

  .main-content .faq-section .faq-question {
    padding: 20px 20px;
    gap: 12px;
  }

  .main-content .faq-section .faq-question-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .main-content .faq-section .faq-question-text {
    font-size: 16px;
  }

  .main-content .faq-section .faq-toggle {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .main-content .faq-section .faq-answer {
    padding: 0 20px 20px 56px;
  }

  .main-content .faq-section .faq-answer-intro,
  .main-content .faq-section .faq-answer-list li {
    font-size: 14px;
  }

  .main-content .faq-section .faq-footer-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .main-content .faq-section .btn-contact-expert {
    padding: 10px 32px;
    font-size: 15px;
    width: 100%;
  }
}

/* ==================== Banner区域 ==================== */
.main-content .banner-section.sub-banner-section .banner-section {
  padding: 0;
  margin: 0;
  background-color: #fff;
}


.main-content .banner-section.sub-banner-section .banner-bg-2 {
  background-image: url('../images/banner-bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 60px;
  position: relative;
}

.main-content .banner-section.sub-banner-section .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.main-content .banner-section.sub-banner-section .banner-left {
  flex: 1;
  max-width: 580px;
}

.main-content .banner-section.sub-banner-section .banner-title {
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 0 24px 0;
}
.main-content .banner-section.sub-banner-section .banner-title span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  padding-bottom: 10px;
}

.main-content .banner-section.sub-banner-section .banner-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 32px 0;
}

/* Banner按钮容器 */
.main-content .banner-section.sub-banner-section .banner-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-content .banner-section.sub-banner-section .btn-banner {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 主按钮：免费体验 */
.main-content .banner-section.sub-banner-section .btn-banner.btn-primary {
  background: linear-gradient(135deg, #1E6FFF 0%, #4A8FFF 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(30, 111, 255, 0.3);
}

.main-content .banner-section.sub-banner-section .btn-banner.btn-primary:hover {
  background: linear-gradient(135deg, #0D5FEF 0%, #3A7FEF 100%);
  box-shadow: 0 6px 16px rgba(30, 111, 255, 0.4);
  transform: translateY(-2px);
}

/* 次要按钮：下载白皮书 */
.main-content .banner-section.sub-banner-section .btn-banner.btn-outline {
  background: transparent;
  color: #1E6FFF;
  border: 2px solid #1E6FFF;
  box-shadow: none;
  padding: 10px 32px;
}

.main-content .banner-section.sub-banner-section .btn-banner.btn-outline:hover {
  background: #1E6FFF;
  color: #fff;
  border-color: #1E6FFF;
  transform: translateY(-2px);
}

.main-content .banner-section.sub-banner-section .banner-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-content .banner-section.sub-banner-section .banner-right img {
  max-width: 80%;
  height: auto;
}

/* ==================== 响应式设计 ==================== */
@media screen and (max-width: 768px) {
  .main-content .banner-section.sub-banner-section .banner-bg-2 {
      padding: 40px 0 40px;
  }

  .main-content .banner-section.sub-banner-section .banner-right img {
      max-width: 100%;
      width: 100%;
      border-radius: 8px;
  }

  .main-content .banner-section.sub-banner-section .banner-content {
      flex-direction: column;
      gap: 40px;
  }

  .main-content .banner-section.sub-banner-section .banner-left {
      max-width: 100%;
      text-align: center;
  }

  .main-content .banner-section.sub-banner-section .banner-title {
      font-size: 28px;
      margin-bottom: 16px;
  }

  .main-content .banner-section.sub-banner-section .banner-desc {
      font-size: 14px;
      margin-bottom: 24px;
  }

  /* 移动端按钮容器 */
  .main-content .banner-section.sub-banner-section .banner-buttons {
      flex-direction: column;
      gap: 12px;
      width: 100%;
  }

  .main-content .banner-section.sub-banner-section .btn-banner {
      padding: 10px 28px;
      font-size: 15px;
      width: 100%;
  }

  .main-content .banner-section.sub-banner-section .banner-right {
      width: 100%;
  }
}
