/* 核心变量 - 对齐velocidrone深色科技风 */
:root {
  --bg-primary: #111111;
  --bg-secondary: #1a1a1a;
  --bg-card: #222222;
  --accent: #0099ff;
  --accent-hover: #0077cc;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --border: #333333;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* 新增html样式 + 优化body样式，解决背景漏白、衔接问题 */
html {
  background-color: var(--bg-primary); /* 给html设置深色背景，防止滚动漏白 */
  height: 100%; /* 确保html高度铺满视口 */
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0; /* 清除默认边距 */
  padding: 0; /* 清除默认内边距 */
  background-attachment: fixed; /* 固定背景，滚动时不偏移 */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏 - 极简风格匹配velocidrone */
.navbar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 新增：VelociDrone品牌图标样式 */
.velocidrone-logo {
  width: 118px; /* 适配导航栏高度 */
  height: 50px;
  object-fit: contain; /* 保持图片比例 */
  display: inline-block;
}

.logo i {
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.active {
  color: var(--accent);
}

/* 英雄区 - 全屏视觉冲击（velocidrone核心特征）- 优化背景渐变衔接 */
.hero {
  height: 91vh;
  display: flex;
  align-items: center;
  /* 修改背景渐变，让蓝色渐变更淡，深色占比更高，与整体背景衔接自然 */
  background: linear-gradient(135deg, rgba(0,153,255,0.05) 0%, rgba(0,0,0,0.9) 70%), var(--bg-primary);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  z-index: 20; /* 提升内容层级，确保按钮不被遮挡 */
  position: relative; /* 确保z-index生效 */
  text-align: left;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  text-align: left;
}

/* 按钮样式 - 匹配velocidrone的突出CTA */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  position: relative; /* 确保按钮层级 */
  z-index: 30; /* 按钮层级最高 */
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--accent);
  margin-left: 15px;
}

.btn-secondary:hover {
  background-color: rgba(0,153,255,0.1);
}

/* 立即购买按钮样式 */
.btn-buy {
  background-color: #FF4400;
}

.btn-buy:hover {
  background-color: #E63E00;
}

/* 软件下载按钮样式 */
.btn-download {
  background-color: #0099ff;
}

.btn-download:hover {
  background-color: #0077cc;
}

/* 查看教程按钮样式 */
.btn-tutorial {
  background-color: #34C759;
}

.btn-tutorial:hover {
  background-color: #2DB24E;
}

/* 在线咨询按钮样式 */
.btn-consult {
  background-color: #FF9500;
}

.btn-consult:hover {
  background-color: #E68600;
}

/* 网盘下载按钮样式 */
.btn-baidu {
  background-color: #2D84FF;
}

.btn-baidu:hover {
  background-color: #1A73E8;
}

.btn-quark {
  background-color: #34C759;
}

.btn-quark:hover {
  background-color: #2DB24E;
}

/* 购买按钮样式 */
.btn-taobao {
  background-color: #FF4400;
}

.btn-taobao:hover {
  background-color: #E63E00;
}

.btn-wechat {
  background-color: #07C160;
}

.btn-wechat:hover {
  background-color: #06B356;
}

/* 咨询按钮样式 */
.btn-pre-sale {
  background-color: #FF9500;
}

.btn-pre-sale:hover {
  background-color: #E68600;
}

.btn-after-sale {
  background-color: #5856D6;
}

.btn-after-sale:hover {
  background-color: #4A48C9;
}

/* 交流群按钮样式 */
.btn-group-chat {
  background-color: #7CB305;
}

.btn-group-chat:hover {
  background-color: #6A9904;
}

/* 官方通道按钮样式 */
.btn-official {
  background-color: #0099ff;
}

.btn-official:hover {
  background-color: #0077cc;
}

/* 新增：系统分类按钮样式（与原风格统一，区分不同系统） */
.btn-windows {
  background-color: #0078D7; /* Windows专属蓝 */
}

.btn-windows:hover {
  background-color: #0067B8;
}

.btn-apple-linux {
  background-color: #34C759; /* 苹果+Linux专属绿，与原风格协调 */
}

.btn-apple-linux:hover {
  background-color: #2DB24E;
}

/* 装饰元素 - 三张图片错位叠放效果（720×404像素）- 优化背景防漏白 */
.hero-decoration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  z-index: 10; /* 降低装饰层层级，低于内容和按钮 */
  padding: 20px;
  opacity: 1; /* 降低透明度，进一步弱化遮挡 */
}

.decor-item {
  position: absolute;
  border-radius: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.6) contrast(1.1); /* 降低亮度，更贴合深色背景 */
  opacity: 0.2; /* 略降低透明度，减少视觉干扰 */
  width: 720px;
  height: 404px;
  max-width: 100%;
  z-index: 10; /* 装饰元素层级统一降低 */
  /* 调整位置，避免覆盖左侧按钮区域 */
  right: -50px;
  background-color: rgba(0, 0, 0, 0.5); /* 补充默认背景色，防止图片加载失败漏白 */
}

/* 第一张图：左下角，最大尺寸 */
.decor-item-1 {
  background-image: url('../img/bg-vs.jpg'); /* 路径调整：相对CSS文件的上级目录 */
  bottom: 20px;
  left: 20px;
  transform: scale(0.85);
}

/* 第二张图：右上角，中等尺寸，错位覆盖第一张 */
.decor-item-2 {
  background-image: url('../img/bg-track.png'); /* 路径调整 */
  top: 40px;
  right: 40px;
  transform: scale(0.75);
}

/* 第三张图：中间偏右，中等尺寸，错位覆盖前两张 */
.decor-item-3 {
  background-image: url('../img/bg-racing.jpg'); /* 路径调整 */
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%) scale(0.8);
}

/* 购买模块样式 - 保持背景衔接，无视觉断层 */
.purchase-section {
  padding: 60px 0;
  background-color: var(--bg-secondary); /* 与主背景浅一度，形成层次，无断层 */
  position: relative;
  z-index: 20; /* 确保购买模块不被装饰元素遮挡 */
}

.purchase-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.purchase-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.purchase-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.purchase-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
}

/* 淘宝LOGO图标样式优化 */
.taobao-icon {
  color: #FF4400; /* 淘宝橙 */
  font-size: 52px; /* 略大一点突出品牌 */
}

.purchase-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.purchase-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

.price-info {
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.price-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 5px;
}
/* 淘宝图片样式（替换原图标样式） */
.taobao-img {
  width: 64px; /* 与原图标尺寸一致，保持布局 */
  height: 64px;
  object-fit: contain; /* 保持图片比例，不拉伸 */
  display: block;
  margin: 0 auto; /* 居中对齐 */
}

/* 新增：官方通道模块样式 - 优化为四栏目一行展示 */
.official-section {
  padding: 80px 0;
  position: relative;
  z-index: 20;
}

.official-cards {
  display: grid;
  /* 核心修改：指定4列等宽布局，最小宽度250px，确保宽屏一行容纳4个卡片，间距20px更紧凑 */
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
}

.official-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px 20px; /* 微调内边距，适配窄卡片，避免内容溢出 */
  text-align: center;
  transition: var(--transition);
}

.official-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.official-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
}

.official-website-icon {
  color: #0099ff; /* 官网-蓝色 */
}

.official-support-icon {
  color: #FF9500; /* 售后-橙色 */
}

.official-download-icon {
  color: #34C759; /* 下载-绿色 */
}

.official-reset-icon {
  color: #5856D6; /* 重置-紫色 */
}

.official-title {
  font-size: 22px; /* 微调字体大小，适配窄卡片 */
  margin-bottom: 15px;
  font-weight: 600;
}

.official-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 14px; /* 微调字体大小，适配窄卡片，避免内容换行过多 */
}

/* 模拟器下载区域 - 核心优化：按系统分类 */
.simulator-download {
  padding: 80px 0;
  position: relative;
  z-index: 20;
}

/* 新增：系统分类卡片布局（替换原有网格，保持原风格） */
.system-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.system-category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  padding: 30px;
}

.system-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.system-category-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.system-category-header h3 {
  font-size: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.system-category-header .system-tag {
  font-size: 14px;
  color: var(--accent);
  background-color: rgba(0, 153, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 10px;
}

.system-category-body {
  margin-bottom: 25px;
}

.system-category-body p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.system-feature-list {
  list-style: none;
  margin-bottom: 20px;
}

.system-feature-list li {
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.system-feature-list li i {
  color: var(--accent);
  font-size: 12px;
}

/* 教程下载区域 - 精简版 - 保持背景衔接，无视觉断层 */
.tutorial-download {
  padding: 80px 0;
  background-color: var(--bg-secondary); /* 与购买模块背景一致，形成交替层次 */
  position: relative;
  z-index: 20;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  margin: 15px auto 0;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tutorial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.tutorial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.tutorial-card-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.tutorial-card-header h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.tutorial-card-header .type {
  color: var(--accent);
  font-size: 14px;
}

.tutorial-card-body {
  padding: 20px;
}

.tutorial-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-secondary);
}

.tutorial-card-body p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 14px;
}

/* 下载选项样式（保留原风格，适配新分类） */
.download-options {
  margin-top: 20px;
}

.download-section {
  margin-bottom: 15px;
}

.download-section-title {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 25;
}

/* 在线咨询模块样式 - 保持背景衔接，无视觉断层 */
.consult-section {
  padding: 80px 0;
  background-color: var(--bg-secondary); /* 与购买模块背景一致，形成交替层次 */
  position: relative;
  z-index: 20;
}

.consult-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.consult-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.consult-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.consult-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: auto;
}

.pre-sale-icon {
  color: #FF9500; /* 售前-橙色 */
}

.after-sale-icon {
  color: #5856D6; /* 售后-紫色 */
}

.group-chat-icon {
  color: #7CB305; /* 交流群-绿色 */
}

.consult-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.consult-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* 页脚 - 极简风格 */
.footer {
  background-color: var(--bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  margin-top: 50px;
  position: relative;
  z-index: 20;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  color: var(--text-secondary);
  font-size: 16px;
}

/* 弹窗样式（保留原风格，新增系统分类弹窗适配） */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--bg-card);
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 25px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--accent);
}

.modal-body {
  margin-bottom: 20px;
}

.modal-download-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-download-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background-color: var(--bg-secondary);
  border-radius: 4px;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.modal-download-link:hover {
  background-color: var(--accent);
  transform: translateX(5px);
}

/* 二维码弹窗样式优化 */
.qrcode-container {
  text-align: center;
  padding: 10px 0;
}

.qrcode-box {
  background-color: #fff;
  display: inline-block;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.qrcode-img {
  width: 200px;
  height: 200px;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.qrcode-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

/* 官方通道弹窗链接样式（适配系统分类弹窗） */
.modal-link-content {
  padding: 10px 0;
}

.modal-link-content p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.modal-official-link {
  display: block;
  width: 100%;
  padding: 12px 15px;
  background-color: var(--bg-secondary);
  border-radius: 4px;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  word-break: break-all;
  text-align: center;
}

.modal-official-link:hover {
  background-color: var(--accent);
  color: #fff;
}

/* 响应式适配 - 匹配velocidrone移动端体验，适配新系统分类 */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-decoration {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .section-title {
    font-size: 24px;
  }

  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-group .btn {
    margin-left: 0 !important;
  }

  /* 官方通道移动端适配：改为1列布局，保证移动端显示美观 */
  .official-cards {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }

  /* 系统分类移动端适配：1列布局 */
  .system-category-grid {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }

  /* 移动端导航栏品牌图标适配 */
  .velocidrone-logo {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 18px;
  }
}
/* ========== 新增：客服悬浮面板样式（适配深色科技风） ========== */
.fixed-right-box {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  z-index: 99; /* 低于弹窗，高于页面内容 */
  transition: all 0.3s ease;
}
.fixed-right-box .right-box-top {
  background: var(--bg-card); /* 适配深色卡片背景 */
  border: 1px solid var(--border); /* 增加边框，匹配网站风格 */
  border-radius: 63px 63px 4px 4px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.fixed-right-box .right-box-top > img {
  width: 90px;
  height: 90px;
  margin-top: 16px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,153,255,0.1); /* 浅蓝色阴影，适配科技风 */
  border: 6px solid rgba(0,153,255,0.1);
}
.fixed-right-box .right-box-top .text {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary); /* 适配次要文字颜色 */
  margin-top: 7px;
}
.fixed-right-box .right-box-top .text > img {
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.fixed-right-box .right-box-top .call {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-primary); /* 适配主要文字颜色 */
  margin: 6px 0 12px 0;
}
.fixed-right-box .right-box-qrcode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
  box-sizing: border-box;
  margin-top: 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.fixed-right-box .right-box-qrcode img {
  width: 100%;
}
.fixed-right-box .right-box-qrcode div {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 5px;
}
.fixed-right-box .right-box-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  padding: 8px 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
/* 鼠标悬浮高亮 */
.fixed-right-box .right-box-block:hover {
  background-color: rgba(0,153,255,0.1); /* 浅蓝色高亮，适配科技风 */
}
.fixed-right-box .right-box-block img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.fixed-right-box .delete-btn{
  position: absolute;
  color: var(--text-secondary); /* 适配次要文字颜色 */
  right: 2px;
  top: -4px;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.fixed-right-box .delete-btn:hover {
  color: #ff6700;
}

/* 收起后的迷你按钮 */
.kefu-fixed-thumb{
  position: fixed;
  right:40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: none;
  cursor: pointer;
  z-index: 100; /* 高于客服面板，低于弹窗 */
  transition: transform 0.2s ease;
}
.kefu-fixed-thumb:hover {
  transform: scale(1.05);
}
.kefu-fixed-thumb img{
  width: 36px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translateX(-50%) translateY(-50%);
}

/* 客服组件响应式适配 */
@media (max-width: 768px) {
  .fixed-right-box {
    width: 80px;
    right: 10px;
  }
  .fixed-right-box .right-box-top > img {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }
  .fixed-right-box .right-box-block {
    font-size: 12px;
    padding: 6px 4px;
  }
  .fixed-right-box .right-box-block img {
    width: 16px;
    height: 16px;
  }
  .kefu-fixed-thumb {
    right: 10px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .kefu-fixed-thumb img {
    width: 30px;
  }
}