
/* 导航 */

/* ========== 新增Logo标语样式 ========== */
.homeNav__logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-slogan {
  font-size: 16px;
  color: #303133;
  font-weight: 500;
  white-space: nowrap;
}

/* ========== 最终修复：居中 + 鼠标进入不消失 ========== */
.homeNav {
  position: relative;
  z-index: 999;
}

/* 关键：让下拉父容器继承定位 */
.nav-dropdown {
  display: inline-block;
  position: static !important;
}

.nav-dropdown .homeNav__link {
  display: inline-block;
  padding: 0 12px;
  height: 60px;
  line-height: 60px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-dropdown:hover .homeNav__link {
  color: #4080ff;
}

/* 弹窗永久居中 */
.dropdown-menu {
  position: absolute !important;
  top: 60px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 24px;
  min-width: 1100px;
  display: none;
  z-index: 9999 !important;
  box-sizing: border-box;
}

/* 核心：鼠标在按钮/弹窗上时，永久显示 */
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block !important;
}

/* 列布局 */
.dropdown-col-group {
  display: flex;
  gap: 24px;
}
.dropdown-col {
  flex: 1;
  min-width: 160px;
}
.dropdown-col--ad {
  flex: 0 0 220px;
}

/* 标题样式 */
.dropdown-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.num-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4080ff, #7b61ff);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  margin-right: 8px;
}
.col-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}

/* 菜单项 */
.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.dropdown-item:hover {
  color: #4080ff;
}
.new-tag {
  display: inline-block;
  padding: 2px 6px;
  background: #ff4d4f;
  color: #fff;
  font-size: 11px;
  border-radius: 4px;
  margin-left: 8px;
}

/* 广告图片不溢出 */
.ad-item {
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
}
.ad-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .logo-slogan {
    display: none;
  }
  .dropdown-menu {
    position: static !important;
    min-width: auto;
    box-shadow: none;
    padding: 0;
    transform: none !important;
  }
  .dropdown-col-group {
    flex-direction: column;
    gap: 16px;
  }
  .dropdown-col--ad {
    display: none;
  }
}




/*hero*/
.homeHero {
  /* ✅ 顶部渐变 + 底部纯白 完美匹配你的截图 */
  background: linear-gradient(180deg, #fff 0%, #e8e8ff 50%, #ffffff 100%) !important;
  background-color: #ffffff !important;
  padding: 100px 20px 60px !important;
  overflow: hidden !important;
  position: relative !important;
}

/* 淡网格纹理（保留质感） */
.homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(220,220,255,0.3) 1px, transparent 1px),
    linear-gradient(90deg,rgba(220,220,255,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  display: block !important;
  pointer-events: none;
}
.homeHero::after {
  display: none !important;
}

.homeHero__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.homeHero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.homeHero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.homeHero__badge svg {
  width: 16px;
  height: 16px;
}
.homeHero__title {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #1a1a2e;
}
.text-blue {
  color: #2563eb;
}
.text-purple {
  color: #7c3aed;
}
.homeHero__desc {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.6;
}
.homeHero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

/* 按钮样式 */
.btn-primary {
  background: linear-gradient(90deg, #f56c6c7a 0%, #409eff52 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(64, 128, 255, 0.2);
  border: none;
}
.btn-secondary {
  background: white;
  color: #333;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary::after {
  content: '+';
  font-size: 20px;
  line-height: 1;
  color: #666;
  font-weight: 700;
}

.homeHero__stats {
  display: flex;
  gap: 40px;
}
.stat-item {
  text-align: center;
}
.stat-val {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
  color: #2563eb;
}
.stat-label {
  font-size: 14px;
  color: #64748b;
}

.homeHero__card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(64, 128, 255, 0.08);
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
}
.card-list {
  margin-bottom: 0;
  flex-shrink: 0;
}
.card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.card-item:nth-child(1) .card-icon {
  background: #2563eb;
}
.card-item:nth-child(2) .card-icon {
  background: #eff6ff;
  color: #2563eb;
}
.card-item:nth-child(3) .card-icon {
  background: #f5f3ff;
  color: #7c3aed;
}
/* ✅【修复】第4个图标样式，现在必显示 */
.card-item:nth-child(4) .card-icon {
  background: #f0efff;
  color: #7c3aed;
}
.card-icon svg {
  width: 20px;
  height: 20px;
}
.card-title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a2e;
}
.card-sub {
  font-size: 12px;
  color: #64748b;
}

.card-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 0;
  align-self: center;
}
.card-qr img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}
.qr-text {
  font-size: 20px;
  line-height: 1.3;
  color: #64748b;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

/* 👇👇👇 底部服务 —— 单独加可调整背景色 👇👇👇 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 24px 20px !important;
  border-top: 1px solid #f5f7fa;
  /* ✅ 单独背景色（可自由修改） */
  background: #f8f9ff !important;
  border-radius: 16px !important;
  margin-top: 20px !important;
}
.service-item {
  display: flex;
  gap: 12px;
  position: relative;
}
.service-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background-color: #e5e7eb;
}
.service-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}
.service-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.service-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

/* 响应式 */
@media (max-width: 992px) {
  .homeHero__layout {
    grid-template-columns: 1fr;
  }
  .homeHero__card {
    flex-direction: column;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .homeHero__title {
    font-size: 36px;
  }
  .homeHero__stats {
    flex-direction: column;
    gap: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* 热门应用体验 */
/* 全局隔离：本板块所有元素默认无边框 */
.app-showcase-section * {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  outline: none !important;
  box-sizing: border-box;
}

.app-showcase-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #7c3aed05 0%, #e8f0ff80 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.app-showcase-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.app-showcase-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 36px;
  align-items: start;
}
.app-showcase-left {
  max-width: 420px;
}

/* 左侧标题、按钮 */
.app-showcase-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}
.app-showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #4080ff 0%, #7b61ff 100%);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 24px;
}

/* 数据卡片 */
.stats-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.stat-card {
  flex: 1;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  border: 1px solid rgba(64,128,255,0.1) !important;
}
.stat-number {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: #666;
}

/* 流程模块 */
.process-section {
  margin-bottom: 24px;
}
.process-title {
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(64,128,255,0.1) !important;
}
.process-steps {
  display: flex;
  gap: 8px;
}
.step-item {
  flex: 1;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(64,128,255,0.1) !important;
}
.step-check {
  color: #4080ff;
  font-weight: bold;
}
.step-text {
  font-size: 13px;
}

/* 用户评价轮播 */
.review-card {
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(64,128,255,0.1) !important;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4080ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.review-stars {
  color: #ffb400;
}
.review-slider {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.review-text {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.review-text.active {
  opacity: 1;
}
.review-author {
  font-size: 14px;
  color: #666;
  margin: 10px 0 16px 0;
}
.review-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
}
.dot.active {
  background: #4080ff;
}

/* 右侧主容器 */
.app-showcase-right {
  display: flex;
  flex-direction: column;
}

/* 服务项核心样式：类名已重命名，彻底隔离全局样式 */
.custom-service-item {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  position: relative;
}
/* 单独控制分割横线：伪元素，仅底部横线，颜色/位置完全独立 */
.custom-service-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #E5E7EB; /* 横线颜色单独定义，不受全局影响 */
}
/* 最后一项取消底部横线 */
.custom-service-item:last-child::after {
  display: none;
}
/* 顶部第一个服务项间距微调 */
.custom-service-item.fixed-top {
  padding-top: 0;
  margin-bottom: 8px;
}

/* 内容与图片样式 */
.custom-service-content {
  display: flex;
  flex-direction: column;
}
.custom-service-image {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.custom-service-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.custom-service-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.custom-service-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.custom-service-tag {
  font-size: 12px;
  color: #666;
  background: #f0f4ff;
  padding: 2px 8px;
  border-radius: 4px;
}
.custom-service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 移动端适配 */
@media (max-width: 992px) {
  .app-showcase-layout {
    grid-template-columns: 1fr;
  }
  .stats-cards, .process-steps {
    flex-direction: column;
  }
}
/* 🔒 强制保持链接样式不变：无下划线、无颜色变化 */
.custom-service-title-link,
.custom-service-image-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  cursor: pointer !important;}
  

/* 完整论文服务体系 */
.paper-service-system {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff 0%, #ffffff 50%, #ffd6e024 100%);
  position: relative;
  overflow: hidden;
}
.paper-service-system::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(220,220,255,0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,220,255,0.2) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.paper-service-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.paper-service-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* 左侧导航 */
.paper-service-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.paper-service-nav .nav-item {
  margin-bottom: 8px;
}
.paper-service-nav .nav-link {
  display: block;
  padding: 12px 16px;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.paper-service-nav .nav-item.active .nav-link,
.paper-service-nav .nav-link:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

/* 右侧整体外框 */
.paper-service-right {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(200, 220, 255, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}
.paper-service-right .service-content {
  display: none;
}
.paper-service-right .service-content.active {
  display: block;
}

/* 上部分 三个独立卡片 */
.top-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.top-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(220, 220, 255, 0.5);
  backdrop-filter: blur(10px);
}

/* 下部分 整体大卡片 */
.bottom-big-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(220, 220, 255, 0.5);
  backdrop-filter: blur(10px);
}
.big-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* 下方条目：超链接 + 悬浮底色 */
.big-card-item {
  display: block;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.big-card-item:hover {
  background-color: rgba(37, 99, 235, 0.08);
}
.big-card-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.big-card-item .tag {
  font-size: 12px;
  padding: 2px 8px;
  background: rgba(123, 97, 255, 0.1);
  color: #7b61ff;
  border-radius: 4px;
  font-weight: 500;
}
.big-card-item .item-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* 通用卡片样式（其他导航项） */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(220, 220, 255, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}
.card-title-row h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-title-row .tag {
  font-size: 12px;
  padding: 2px 8px;
  background: rgba(123, 97, 255, 0.1);
  color: #7b61ff;
  border-radius: 4px;
  font-weight: 500;
}
.card-desc {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.5;
}
.card-actions {
  display: flex;
  gap: 12px;
}
.btn-detect {
  background: linear-gradient(90deg, #f56c6c85 0%, #c4a1ff63 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}
.btn-detect:hover {
  opacity: 0.9;
}
.btn-try, .btn-detail {
  background: white;
  color: #333;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.btn-try:hover, .btn-detail:hover {
  background: #f8fafc;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .paper-service-layout {
    grid-template-columns: 1fr;
  }
  .paper-service-left .paper-service-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .paper-service-nav .nav-item {
    margin-bottom: 0;
    margin-right: 8px;
    flex-shrink: 0;
  }
  .top-cards-row, .big-card-grid, .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .top-cards-row, .big-card-grid, .service-card-grid {
    grid-template-columns: 1fr;
  }
  .paper-service-right {
    padding: 16px;
  }
  .bottom-big-card {
    padding: 16px;
  }
}




/* 最新资讯 */
.case-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.case-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* 核心不规则网格布局 */
.case-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 24px;
}

/* 卡片基础样式 */
.case-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #eef4ff;
  color: #2563eb;
  font-size: 12px;
  border-radius: 4px;
  width: fit-content;
}

.card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-logo img {
  height: 24px;
  width: auto;
}

.card-logo span {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}

.card-text p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

.card-footer {
  font-size: 12px;
  color: #64748b;
  margin-top: 12px;
}

.card-img {
  border-radius: 12px;
  overflow: hidden;
  margin-top: auto;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 卡片1：左上方大卡片 */
.case-card--large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.case-card--large .card-img {
  height: 200px;
}

/* 卡片2：右上方上卡片 */
.case-card--right-top {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.case-card--right-top .card-tag,
.case-card--right-top .card-logo,
.case-card--right-top .card-text {
  grid-column: 1 / 2;
}
.case-card--right-top .card-img--side {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  margin-top: 0;
}
.case-card--right-top .card-img--side img {
  height: 100%;
}

/* 卡片3：右上方中卡片 */
.case-card--right-middle {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 卡片4：右上方下卡片 */
.case-card--right-bottom {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}

/* 卡片5：左下方上卡片 */
.case-card--left-bottom {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

/* 卡片6：下方大卡片 */
.case-card--bottom-large {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.case-card--bottom-large .card-tag,
.case-card--bottom-large .card-text {
  grid-column: 1 / 2;
}
.case-card--bottom-large .card-img--right {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  margin-top: 0;
}
.case-card--bottom-large .card-img--right img {
  height: 100%;
}

/* 响应式适配 */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: 1fr 1fr;
  }
  .case-card--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .case-card--right-top {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
  .case-card--right-middle {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .case-card--right-bottom {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .case-card--left-bottom {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .case-card--bottom-large {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }
}

@media (max-width: 576px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
  }
  .case-card--right-top .card-img--side,
  .case-card--bottom-large .card-img--right {
    grid-column: auto;
    grid-row: auto;
    height: 150px;
  }
}





/* 1. footer底部 */
.footerAreaV2__grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 40px !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

/* 2. 列宽固定（保证换行） */
.footerAreaV2__col {
  flex: 0 0 120px !important;
}
.footerAreaV2__col--brand {
  flex: 0 0 280px !important;
}
.footerAreaV2__col--qrcode {
  flex: 0 0 200px !important;
}

/* 3. 文字强制换行 */
.footerAreaV2__aboutDesc,
.footerAreaV2__qrcodeDesc {
  word-wrap: break-word !important;
  white-space: normal !important;
}

/* 4. 主内容区：极致紧凑 */
.footerAreaV2__about {
  padding: 0;
  margin: 0;
}
.footerAreaV2__title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 4px !important; /* 标题下间距：4px */
}
.footerAreaV2__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footerAreaV2__links li {
  margin-bottom: 2px !important; /* 链接行距：2px，几乎贴在一起 */
}
.footerAreaV2__link {
  color: #999;
  text-decoration: none;
}
.footerAreaV2__link:hover {
  color: #fff;
}

/* 二维码区压缩 */
.footerAreaV2__qrcodeDesc {
  margin: 2px 0 !important;
}
.footerAreaV2__qrcodeWrap {
  margin: 4px 0 !important;
}
.footerAreaV2__qrcodeBox {
  width: 60px !important;
  height: 60px !important;
}
.footerAreaV2__qrcodeBox img {
  width: 52px !important;
  height: 52px !important;
}
.footerAreaV2__contact {
  color: #999;
  font-size: 14px;
  margin: 0;
}

/* 5. 底部版权：压到最窄（关键） */

.footerAreaV2__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px !important;
  font-size: 13px !important; /* 字体再小一点 */
  color: #999;
  line-height: 1.2 !important; /* 行高压缩 */
}
.footerAreaV2__bottomLinks .footerAreaV2__link {
  color: #999;
  margin-right: 12px !important;
}
.footerAreaV2__copyrightWrap {
  margin-top: 2px !important; /* 版权上间距：2px */
  width: 100%;
}
.footerAreaV2__copyright {
  margin: 0;
  font-size: 14px !important;
  line-height: 1.2 !important;
}

/* 链接颜色 */
.footerAreaV2__link--blue {
  color: #409eff;
}
.footerAreaV2__link--purple {
  color: #9b59b6;
}
.footerAreaV2__link--pink {
  color: #ff69b4;
}





/* 常见问题 - 折叠精简版 */
.faq-wrap {
  width: 100%;
  padding: 40px 0;
  background: #f8faff;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-head {
  text-align: center;
  margin-bottom: 30px;
}
.faq-tag {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(90deg, #4080ff, #7b61ff);
  color: #fff;
  font-size: 13px;
  border-radius: 30px;
  margin-bottom: 8px;
}
.faq-main-title {
  font-size: 36px;
  color: #1a1a2e;
  font-weight: 700;
  margin: 0 0 6px;
}
.faq-sub-desc {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* 布局 */
.faq-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-col {
  flex: 1;
  min-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 卡片 */
.faq-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(64,128,255,0.06);
  overflow: hidden;
}
.faq-toggle {
  display: none;
}

/* 问题 */
.faq-question {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(90deg, #f0f6ff, #f5f2ff);
  cursor: pointer;
  user-select: none;
}
.q-icon {
  width: 24px;
  height: 24px;
  background: #4080ff;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}
.q-text {
  font-size: 15px;
  color: #1a1a2e;
  font-weight: 500;
}

/* 答案：隐藏 + 无图标 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 200px;
  padding: 12px 18px;
  border-top: 1px dashed #e8ebf2;
}

/* 移动端 */
@media (max-width: 768px) {
  .faq-row {
    flex-direction: column;
  }
  .faq-col {
    min-width: 100%;
  }
  .faq-main-title {
    font-size: 24px;
  }
  .faq-wrap {
    padding: 30px 0;
  }
}

/* 最新资讯卡片更多…… */
.card-more {
  display: inline-block;
  margin-left: 8px;
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
}
.card-more:hover {
  text-decoration: underline;
}

/* 客服代码 */
.kf{width:208px;position:fixed;right:-208px;/* 默认隐藏面板 */top:50%;transform:translateY(-50%);z-index:10;}

.kt-top{height:40px;line-height:40px;background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnykefu.png) 12px center no-repeat #023793;-ms-background-size:auto 20px;background-size:auto 20px;padding-left:46px;font-size:14px;color:#fff;}

.kt-top span:hover{transform:rotate(90deg);}

.kt-top span{width:18px;height:16px;float:right;position:relative;margin:10px 10px 0 0;cursor:pointer;transition:.5s;-webkit-transition:.5s;-moz-transition:.5s;-ms-transition:.5s;-o-transition:.5s;}

.kt-top span b{width:100%;height:2px;background:#fff;display:block;position:absolute;top:50%;left:0;}

.kt-top span b:first-child{transform:rotate(45deg);-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);}

.kt-top span b:last-child{transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);}

.kf .con{overflow:hidden;background:#fff;}

.kf .qq li{height:36px;line-height:36px;border-bottom:#f5f5f5 solid 1px;padding-left:16px;}

.kf .qq li a{height:36px!important;color:#666;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-decoration:initial;display:block;}

.kf .qq li a img{padding-right:6px;}

.kf .con h5{height:26px;line-height:26px;margin-top:12px;background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnylianxi.png) 16px center no-repeat;padding-left:45px;color:#666;font-size:14px;margin-bottom: 0;}

.kf .contact{margin-top:1px;height: auto;background-color: #fff;}

.kf .contact p{height:26px;line-height:26px;color:#666;font-size:14px;padding-left:22px;margin: 0;}

.kf .contact p:nth-child(2n){padding-left:32px;}

.kf .con h5.qr-icon{background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnyerweima.png) 16px center no-repeat;}

.kf .con .qr{margin-top:10px;padding-left:40px;}

.kf .con .qr img{width:110px;height:110px;}

.kf .backTop{width:100%;height:40px;margin-top:10px;background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnyhuidaodingbu.png) center center no-repeat #023793;background-size:18px auto;cursor:pointer;}

.kf-side{padding:18px 10px 10px;background:#023793;position:absolute;top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);left:-34px;cursor:pointer;}

.kf-side b{display:block;color:#fff;line-height:18px;font-size:14px;font-weight:400;}

.kf-side span.arrow{width:12px;height:12px;background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnyjt-1.png) no-repeat;-ms-background-size:auto 12px;background-size:auto 12px;display:block;margin-top:10px;}

.kf-side span.on{background:url(file:///C:/Users/Administrator/Desktop/freechachong/picture/qnyjt-2.png) no-repeat;-ms-background-size:auto 12px;background-size:auto 12px;}


/* 全局最简重置，只做基础规则 */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}
* {
  box-sizing: border-box;
}

/* 导航：固定置顶，纯原生样式，不加任何内外边距 */
.homeNav {
  width: 100%;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  margin: 0;
  padding: 0;
}

/* 背景图容器：原样不动 */
.g-header {
  background: url(static/images/index-head-cover.png) no-repeat center center;
  background-size: cover;
  padding-top: 60px;
  width: 100%;
  margin: 0;
}

/* 底部终极修复，完全独立，不受上方任何影响 */
.footerAreaV2 {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  float: none;
  position: static;
}
.footerAreaV2__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.footerAreaV2__bottomWrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
