/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000; /* 整体背景黑色 */
  color: #fff;
  line-height: 1.6;
}

/* 顶部通栏海报样式 */
.top-banner {
  width: 100%;
  overflow: hidden;
  background-color: #000; /* 背景色与网站整体协调 */
}

.banner-img {
  width: 100%;
  height: 200px;
  max-height: 300px; /* 限制最大高度 */
  object-fit: cover; /* 保持比例填充容器 */
  display: block; /* 去除图片底部间隙 */
  transition: opacity 0.3s ease;
}

.banner-img:hover {
  opacity: 0.9; /* hover效果增强交互感 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .banner-img {
    max-height: 200px; /* 移动端适当减小高度 */
  }
}



/* 导航栏样式 */
.navbar {
  background: linear-gradient(90deg, 
  rgba(41, 101, 182, 0.7),  /* 第一个颜色带70%透明度 */
  rgba(38, 38, 38, 0.7)     /* 第二个颜色带70%透明度 */
);;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  z-index: 999;
  height: 60px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  
}

.navbar .container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between; /* 左右布局，logo居左，菜单居右 */
}

/* 汉堡菜单按钮样式 */
.menu-toggle {
  display: none; /* 桌面端隐藏 */
  color: #fff;
  font-size: 28px; /* 增大图标，便于点击 */
  cursor: pointer;
  position: absolute; /* 相对于容器绝对定位 */
  top: 50%; /* 垂直居中 */
   /* 靠右对齐 */
  transform: translateY(-50%); /* 精确垂直居中 */
  z-index: 100; /* 确保在菜单上方 */
}

.navbar a {
  font-size: 20px;
  color: #fff; /* 白色文字 */
  text-decoration: none;
  margin: 0 8px;
}

.logo {
  display: flex; 
  gap: 10px;
  align-items: center; 
  z-index: 100;
}

.logo-text {
  font-size: 18px; 
  font-weight: bold; 
  margin-bottom: 1px;
}

.logo img {
  max-height: 32px; 
  margin-bottom: 1px;
}


.nav-links {
  display: flex;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00ffff; 
}


/* Home 区域样式 */
.home-section {
  min-height: 75vh;
  background: url(images/background.webp) no-repeat center center / cover;
  padding: 50px 40px 60px 40px;
  position: relative;
  justify-content: center;
  color: #fff;
}

.home-content {
    max-width: 800px; 
    text-align: center; 
    padding-top: 40px; 
    margin:0 auto;
  }

.main-title {
  font-size: 1rem;
  line-height: 0.2;
  margin: 60px auto 45px ;
  text-align: center;
}

.main-title span {
  color: #0af2e6;
  white-space: nowrap;
  }


.home-desc {
  font-size: 1.6rem;
  line-height: 2.5;
  margin: 50px auto 30px;
  font-style:italic;
  padding-left: 0px;
  text-align: center;
}

.home-desc span {
  /* 基础文字放大加粗 */
  font-size: 1.8rem; /* 进一步放大（比原来的1.7rem更大） */
  font-weight: 600; /* 超粗体，强化突出 */
  color: #0af2e6; /* 保留原有主题色 */
  white-space: nowrap;

  /* 艺术化效果：文字阴影增强立体感 */
  text-shadow: 
    0 0 5px rgba(10, 242, 230, 0.5), /* 内发光效果 */
    0 0 10px rgba(10, 242, 230, 0.3), /* 外发光扩散 */
    1px 1px 3px rgba(0, 0, 0, 0.3); /* 轻微投影增加层次 */

  /* 可选：添加倾斜或拉伸（根据设计风格调整） */
  transform: skew(-2deg); /* 轻微倾斜，更有动感 */
  display: inline-block; /* 确保transform生效 */

  /* 过渡动画：hover时增强效果 */
  transition: all 0.3s ease;
}

/* 鼠标悬停时进一步强化（可选） */
.home-desc span:hover {
  text-shadow: 
    0 0 8px rgba(10, 242, 230, 0.8),
    0 0 15px rgba(10, 242, 230, 0.5),
    2px 2px 5px rgba(0, 0, 0, 0.4);
  transform: skew(-2deg) scale(1.05); /* 轻微放大 */
}

.tv-up {
    position: relative;
    top: -13px; /* 根据需要调整数值 */
}


.btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
/* Buy Now 按钮样式 */
.buy-now-btn {
  padding: 12px 24px;
  margin: 0;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background-color: #0ac0b8;
  transition: background-color 0.3s ease; /* 保留背景色过渡，与浮动效果互补 */
}

/* Buy Now 按钮 hover 时触发浮动 */
.buy-now-btn:hover {
  background-color: #09a098; /* 原有背景色变化保留 */
  animation: floatBtn 0.8s ease-in-out; /* 调用浮动动画，单次执行 */
}

/* Download 按钮样式 */
.download-btn {
  padding: 12px 24px;
  margin: 0;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background-color: #2965b6;
  transition: background-color 0.3s ease; /* 保留背景色过渡 */
}

/* Download 按钮 hover 时触发浮动 */
.download-btn:hover {
  background-color: #1e5499; /* 原有背景色变化保留（可按需调整颜色） */
  animation: floatBtn 0.8s ease-in-out; /* 调用相同动画，效果统一 */
}

.buy-now-btn,
.download-btn {
  padding: 12px 24px;
  margin: 0;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.buy-now-btn {
  background-color: #0ac0b8;
}

.download-btn {
  background-color: #2965b6;
}







/* 功能页整体样式 */
.features-section {
  background-color: #f8f9fa; /* 浅灰色背景 */
  padding: 80px 20px;
}

/* 容器样式 */
.features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 标题区域样式 */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-header h2 {
  font-size: 2.5rem;
  color: #212529; /* 黑色标题 */
  margin-bottom: 15px;
}

.features-header p {
  font-size: 1.1rem;
  color: #6c757d; /* 灰色描述 */
  max-width: 700px;
  margin: 0 auto;
}

/* 功能项网格布局 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 三列布局 */
  gap: 30px;
}

/* 单个功能项样式（白底黑字） */
.feature-item {
  background-color: #fff; /* 白色卡片背景 */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

/* 图标样式 */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #0ac0b8; /* 图标颜色 */
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

/* 功能项标题和描述 */
.feature-item h3 {
  color: #212529; /* 黑色标题 */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: #6c757d; /* 灰色描述 */
  line-height: 1.6;
}


/* Plans页面 */
.plan-section {
  min-height: 75vh;
  background: url(images/background2.png) no-repeat center center / cover;
  padding: 50px 40px 60px 40px;
  position: relative;
  justify-content: center;
  color: #fff;
}

.home-content {
    max-width: 800px; 
    text-align: center; 
    padding-top: 40px; 
    margin:0 auto;
  }

.main-title {
  font-size: 2.8rem;
  line-height: 1.8;
  margin: 60px auto 45px ;
  text-align: center;
}

.main-title span {
  color: #0af2e6;
  white-space: nowrap;
  }


.home-desc {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: -50px auto 30px;
  font-style:italic;
  padding-left: 0px;
  text-align: center;
}

.tv-up {
    position: relative;
    top: -13px; /* 根据需要调整数值 */
}


.btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.buy-now-btn,
.download-btn {
  padding: 12px 24px;
  margin: 0;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

.buy-now-btn {
  background-color: #0ac0b8;
}

.download-btn {
  background-color: #2965b6;
}






/* 新增内容区域（背景图覆盖整个区域） */
.new-content-section {
  padding: 100px 20px; 
  background: url("images/background3.png") no-repeat center center; 
  background-size: cover; 
  position: relative;
}

/* 可选：添加半透明遮罩，增强文字可读性（如果背景图较亮） */
.new-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); 
  z-index: 1; /* 遮罩在背景图上方，文字下方 */
}

/* 内容容器（限制最大宽度 + 居中） */
.new-content-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; /* 确保文字在遮罩上方 */
  z-index: 2;
}

/* 文字区域（靠左排列 + 间距控制） */
.new-text-wrapper {
  max-width: 700px; 
  color: #000; 
  padding: 20px; 
}

.new-text-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 40px; /* 标题与列表的间距 */
  line-height: 1.4;
}

.new-text-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-text-wrapper li {
  font-size: 1rem;
  margin-bottom: 30px; /* 列表项之间的间距 */
  line-height: 1.8; /* 行高，避免文字拥挤 */
  padding-left: 5px; /* 左内边距，增加呼吸感 */
}



/* 下载安装板块整体样式 */
.download-install-section {
  background-color: #f8f9fa; /* 白色背景 */
  padding: 80px 20px;
  text-align: center;
  color: #212529; /* 黑色文字 */
}

.download-install-container {
  max-width: 1200px;
  margin: 0 auto;
}

.download-install-container h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.download-install-container p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 40px;
}

.download-install-container h3 {
  font-size: 1.8rem;
  color: #0ac0b8;
  margin: 40px 0 20px;
}

/* 移动端步骤卡片布局 */
.mobile-steps-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.step-card {
  flex: 1;
  min-width:220px;
  max-width: 280px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card img {
  width: 100%;
  height: auto;
  display: block;
}

.step-card h4 {
  font-size: 1.2rem;
  padding: 15px;
  margin: 0;
  background-color: #f1f1f1;
}

.step-card p {
  padding: 0 15px 15px;
  margin: 0;
  font-size: 0.9rem;
  color: #495057;
}

/* 下载APK按钮样式 */
.download-apk-btn {
  display: inline-flex;
  align-items: center; /* 垂直居中（图标和文字对齐） */
  justify-content: center; /* 新增：水平居中（按钮内所有内容居中） */
  background-color: #0ac0b8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 300px; /* 保持之前的宽度设置 */
}

.download-apk-btn i {
  margin-right: 8px;
}

.download-apk-btn:hover {
  background-color: #09a098;
}

/* 新增：顶部按钮容器样式（上下排列） */
.download-buttons-top {
  display: flex;
  flex-direction: column; /* 垂直排列按钮 */
  gap: 25px; /* 按钮之间的间距 */
  align-items: center; /* 按钮水平居中 */
  margin: 40px 0 60px; /* 与上方文本的间距 + 与下方步骤区域的间距 */
}



/* TV设备步骤卡片布局 */
.tv-steps-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* TV下载按钮样式 */
.download-tv-btn {
  display: inline-flex;
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 新增：水平居中 */
  background-color: #0ac0b8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 300px; /* 保持之前的宽度设置 */
}

.download-tv-btn i {
  margin-right: 8px;
}

.download-tv-btn:hover {
  background-color: #0855b0;
}





/* Plans 区域样式 */
.plans-section {
background: #0ac0b8; 
padding: 50px 0;
}

.plans-container {
width: 90%;
max-width: 1400px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
text-align: center;
}

.plans-title {
width: 100%;
max-width: 600px; 
height: auto;
display: block;
}

.plans-subtitle {
font-size: 18px;
color: #fff; 
font-weight: 300;
margin-bottom: 30px;
}

/* 卡片容器样式（合并重复定义） */
.plans-cards {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap; /* 统一使用wrap，移除overflow-x */
width: 100%;
padding: 20px 0;
white-space:nowrap;

}

/* 链接容器样式 */
.plan-card-link {
  text-decoration: none;
  width: calc(25% - 15px); 
  min-width: 200px; 
  transition: all 0.3s ease;
  display: inline-block;
}

.plan-card {
width: 100%;
overflow: hidden;
}

.plan-card img {
width: 100%;
height: auto;
display: block;
}

.plan-card-link:hover {
transform: translateY(-8px);
}


/* 经销商板块整体样式 */
.reseller-section {
  background-image: url("images/background2.png"); /* 替换为你的背景图路径 */
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  background-attachment: fixed;
  min-height: 100vh;
  padding: 12vh 5vh 20px;
  color: #000000;  
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 容器居中 + 内容限制宽度 */
.reseller-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2vh 0;
  margin-left: 60px;
  box-sizing: border-box;
}

.reseller-container h2 {
  font-size: clamp(2.5rem, 6vw, 4rem); /* 最小2rem，最大3rem，按5vw比例缩放 */
  margin-bottom: 3vh; /* 间距随高度缩放 */
  line-height: 1.2;
}

.reseller-container p {
  font-size: clamp(1.2rem, 3vw, 1.5rem); /* 最小1rem，最大1.2rem，按2vw缩放 */
  margin-bottom: 4vh; /* 间距随高度缩放 */
  opacity: 0.9;
}



.reseller-card p {
  font-size: clamp(1.2rem, 3vw, 1.5rem); 
}

.reseller-card .reseller-list {
  /* 保留默认小圆点 */
  list-style-type: disc;
  /* 调整小圆点与文本的距离 */
  padding-left: 20px;
  /* 调整列表与上下文本的间距 */
  margin: 15px 0;
}

.reseller-card .reseller-list li {
  /* 确保文本样式与其他内容一致 */
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #000000;
  margin-bottom: 8px; /* 两个小圆点文本之间的间距 */
  line-height: 1.5;
}

/* 按钮基础样式 */
.contact-btn {
  display: inline-flex;
  align-items: center;
  background-color: #0ac0b8;
  color: #ffffff;
  padding: clamp(12px, 2vh, 16px) clamp(30px, 6vw, 40px);
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin: 3vh 0;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  transition: background-color 0.3s ease; /* 背景色过渡 */
  transform: translateY(0); /* 初始位置重置 */
}

/* 鼠标悬停时触发浮动动画 */
.contact-btn:hover {
  
  animation: floatBtn 2s ease-in-out infinite; /* 调用浮动动画，2秒循环一次 */
}

.contact-btn i {
  margin-right: 8px;
}


 /* FAQ 区域样式 */
 .faq-section {

  min-height: 100vh;
  background-color: #ffffff;
  display: flex;
  padding:100px 20px 50px;
  align-items: center;
  justify-content: center;
}

.faq-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex:1;
}

.faq-title {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

.faq-accordion {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid #000000;
}

.faq-question {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  text-align: left;
  padding: 20px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "▼";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  background-color: #fffefe;
}

.faq-answer {
  background-color: #fffefe;
  color: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 20px;
  line-height: 1.8;
}

.faq-content h3 {
  color: #0ac0b8;
  margin-top: 0;
}

.faq-content p {
  margin: 10px 0;
}

.faq-content ul {
  margin-left: 20px;
  list-style: disc;
}

.faq-answer.open {
  max-height: none; /* 足够大的高度容纳内容 */
  transition: max-height 0.5s ease-in;
}

.faq-answer.open + .faq-question::after {
  transform: rotate(180deg);
}

/* 新增页脚样式 */
.custom-footer {
  margin: auto;
  background-color: #111; 
  color: #fff; 
  text-align: center; 
  padding: 20px 0; 
}

.footer-content p {
  margin: 0; 
  line-height: 1.6; 
}


/* 统一完整的手机端样式（屏幕宽度 ≤ 768px） */
@media (max-width: 768px) {
  /* 1. 导航栏与汉堡菜单 */
  .menu-toggle {
    display: block !important;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 9999;
    width: 30px;
    height: 30px;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    margin: 5px 0;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 20px;
    width: 110px;
    height: auto;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9998;
  }

  .nav-links.show {
    display: flex !important;
  }

  .nav-links a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    width: 100%;
  }

  /* 2. Home 区域（核心间距调整） */
  .home-section {
    min-height: 60vh;
    padding: 80px 20px 40px; 
  }

  .home-content .main-title {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.6; 
    margin: 20px auto 20px; 
  }

  .home-content .home-desc {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin: 0 auto 20px; /* 文本与按钮间距增大到50px */
  }

  .tv-up {
    position: relative;
    top: -9px;
  }

  .btn-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    gap: 25px; /* 按钮之间间距增大到25px */
    padding: 0;
  }

  .buy-now-btn,
  .download-btn {
    padding: 12px 20px;
    text-align: center;
    width: 180px; /* 按钮加宽提升点击体验 */
    margin: 0;
  }

  /* 3. Features 功能区域 */
  .features-grid {
    grid-template-columns: 1fr; /* 单列布局 */
  }

  .features-header h2 {
    font-size: 2rem; /* 缩小标题字号 */
  }

  /* 4. Plans 套餐区域 */
  .plan-section {
    padding: 50px 20px; /* 统一内边距 */
  }

  .plans-cards {
    justify-content: center;
  }

  .plan-card-link {
    width: 45%; /* 每行2张卡片 */
    min-width: 160px; /* 最小宽度限制 */
  }

  /* 5. 新增内容区域（new-content-section） */
  .new-content-section {
    padding: 60px 15px; /* 减小内边距 */
  }

  .main-title {
    font-size: 1.45rem;
    line-height: 1.6;
  }


  .new-text-wrapper h2 {
    font-size: 1.46rem;
    margin-bottom: 25px;
  }


  .new-text-wrapper li {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* 6. 下载安装区域（download-install-section） */
  .download-install-container h2 {
    font-size: 2rem;
  }

  .download-install-container h3 {
    font-size: 1.5rem;
  }

  .step-card {
    min-width: 100%; /* 单列显示步骤卡片 */
  }

  /* 7. TV 设备步骤区域 */
  .mobile-steps-cards,  /* 这里添加逗号！ */
  .tv-steps-cards {
    flex-wrap: wrap; /* 允许换行，实现纵向排列 */
    overflow-x: visible; /* 移除PC端的横向滚动，避免移动端出现滚动条 */
    gap: 15px; /* 移动端缩小卡片间距，更紧凑 */
  }

  /* 8. 分割线区域（divider2） */
  .divider2 h2 {
    font-size: 1.5rem;
    white-space: nowrap; /* 避免标题换行 */
  }

  .floating-help-btn {
    bottom: 30px; 
    right: 15px; 
    padding: 10px 14px;
    font-size: 14px; 
  }

  .floating-help-btn i {
    font-size: 16px; /* 图标同步缩小 */
  }
}


/* 超小屏幕适配（≤480px，补充适配） */
@media (max-width: 480px) {
  .plan-card-link {
    width: 80%; /* 超小屏单张卡片居中 */
    margin: 0 auto;
  }
}

/* 全局浮动动画关键帧（已有则保留，无则添加） */
@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px); /* 浮动高度，可调整为5-10px */
  }
  100% {
    transform: translateY(0);
  }
  
}

/* 下载APK按钮样式（移动端按钮） */
.download-apk-btn {
  display: inline-flex;
  align-items: center;
  background-color: #0ac0b8;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease; /* 保留背景色过渡 */
  /* 默认状态无动画，仅hover时触发 */
}

/* 鼠标悬浮时添加浮动动画 */
.download-apk-btn:hover {
  background-color: #09a098;
  animation: floatBtn 0.8s ease-in-out; /* 单次动画，时长0.8s */
}

.download-apk-btn i {
  margin-right: 8px;
}

/* TV下载按钮样式 */
.download-tv-btn {
  display: inline-flex;
  align-items: center;
  background-color: #0a66d2; /* 蓝色按钮 */
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease; /* 保留背景色过渡 */
  /* 默认状态无动画，仅hover时触发 */
}

/* 鼠标悬浮时添加浮动动画 */
.download-tv-btn:hover {
  background-color: #0855b0;
  animation: floatBtn 0.8s ease-in-out; /* 单次动画，与移动端同步 */
}

.download-tv-btn i {
  margin-right: 8px;
}

/* 浮动帮助按钮样式 */
.floating-help-btn {
  /* 布局与定位 */
  position: fixed; /* 固定定位，随滚动移动 */
  right: 30px; /* 距离右侧30px */
  bottom: 30px; /* 距离底部30px */
  z-index: 9999; /* 确保在其他内容上方 */

  
  /* 按钮样式 */
  display: inline-flex;
  align-items: center;
  gap: 10px; /* 图标与文字间距 */
  background-color: #72fc4c; /* 背景色 */
  color: #fff; /* 白色文字 */
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px; /* 圆角 */
  text-decoration: none; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); 
  
  /* 动画与过渡 */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* 鼠标悬浮效果（可选，增强交互） */
.floating-help-btn:hover {
  transform: translateY(-3px); /* 轻微上浮 */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); /* 阴影加深 */
}