/* 移除2560px缩放系统 */

/* 移除缩放系统 */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

/* 小屏幕优化 - 移除缩放相关 */
@media screen and (max-width: 768px) {
  /* 小屏幕样式 */
}

@media screen and (max-width: 480px) {
  /* 超小屏幕样式 */
}

.bat-banner,
.home-content {
  background-color: var(--white-bg);
}

/* 为bat-c添加独立样式，确保在所有缩放级别下都显示正确背景色 */
.bat-c {
  background-color: #fdfdf8 !important;
}

/* 黑暗模式下覆盖为深色背景 */
html[theme="black"] .bat-c {
  background-color: #161a1b !important;
}

/* 全局元素缩放规则 */
* {
  box-sizing: border-box;
}

/* 所有文本元素响应式缩放 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  /* 完全删除字体缩放规则，让元素保持自然大小 */
}

/* 标题元素 - 删除缩放规则，保持自然大小 */
h1 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

h2 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

h3 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

h4 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

h5 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

h6 {
  /* 删除字体大小设置，让浏览器使用默认大小 */
}

/* 响应式图片和媒体元素 */
img,
video,
svg,
canvas,
picture {}

/* 确保容器宽度正确 */
.container,
.wrapper,
.main-content,
.content,
.page {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
}

/* 响应式间距系统 */
.section-padding {
  padding: calc(60px * var(--scale-ratio-clamp)) calc(40px * var(--scale-ratio-clamp));
}

/* 通用间距类 */
.margin-sm {
  margin: calc(8px * var(--scale-ratio-clamp));
}

.margin-md {
  margin: calc(16px * var(--scale-ratio-clamp));
}

.margin-lg {
  margin: calc(24px * var(--scale-ratio-clamp));
}

.margin-xl {
  margin: calc(32px * var(--scale-ratio-clamp));
}

.padding-sm {
  padding: calc(8px * var(--scale-ratio-clamp));
}

.padding-md {
  padding: calc(16px * var(--scale-ratio-clamp));
}

.padding-lg {
  padding: calc(24px * var(--scale-ratio-clamp));
}

.padding-xl {
  padding: calc(32px * var(--scale-ratio-clamp));
}

/* 按钮和交互元素缩放 */
button,
.btn,
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-size: calc(1rem * var(--scale-ratio-clamp));
  padding: calc(8px * var(--scale-ratio-clamp)) calc(16px * var(--scale-ratio-clamp));
  min-height: calc(36px * var(--scale-ratio-clamp));
}

/* 输入框缩放 */
input,
textarea,
select {
  font-size: calc(1rem * var(--scale-ratio-clamp));
  padding: calc(8px * var(--scale-ratio-clamp));
  min-height: calc(36px * var(--scale-ratio-clamp));
}

/* 边框宽度缩放 */
.border,
.border-sm,
.border-md,
.border-lg {
  border-width: calc(1px * var(--scale-ratio-clamp));
}

/* 圆角缩放 */
.rounded,
.rounded-sm {
  border-radius: calc(4px * var(--scale-ratio-clamp));
}

.rounded-md {
  border-radius: calc(8px * var(--scale-ratio-clamp));
}

.rounded-lg {
  border-radius: calc(16px * var(--scale-ratio-clamp));
}

.rounded-xl {
  border-radius: calc(24px * var(--scale-ratio-clamp));
}

.bat-banner {
  color: var(--font-main-color);
}

.banner-des {
  font-weight: 400;
  margin: 12px 0 36px 0;
}

.banner-left {
  padding-left: 160px;
  /* 统一的左侧padding，避免在不同屏幕尺寸下布局跳跃 */
}

.banner-left>img {
  margin-bottom: 26px;
}

.banner-btn {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px 0px 0px 0px;
}

.banner-share {
  font-size: 20px;
  font-weight: 500;
  width: 218px;
  height: 72px;
  border-radius: 42px;
  position: relative;
  color: var(--font-white-color);
}

.banner-share-bg {
  background-color: var(--theme-color);
  box-shadow: 0px 9px 9px 0px rgba(38, 32, 96, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 218px;
  height: 72px;
  border-radius: 36px;
  z-index: 1;
  transition: all 0.2s;
}

.banner-share-ctn {
  position: relative;
  z-index: 2;
}

.banner-share span {
  margin-left: 13px;
  cursor: pointer;
}

.banner-share:hover>.banner-share-bg {
  box-shadow: 0px 15px 12px 0px rgba(38, 32, 96, 0.2);
  border-radius: 42px;
}

/*.banner-share:hover{transform:scale(1.06, 1.06);}*/
.banner-share:hover>.banner-share-bg {
  transform: scale(1.08, 1.2);
}

.banner-share:active {
  color: var(--font-white-color);
}

.banner-share:active>.banner-share-bg {
  background-color: rgba(1, 95, 246, 1);
}

.banner-dld {
  font-weight: bold;
  font-size: 16px;
  line-height: 128%;
}

.banner-dld a {
  text-decoration: underline;
  cursor: pointer;
}

.banner-dld a:hover {
  color: var(--theme-color);
}

.banner-dld>span {
  font-size: 16px;
  line-height: 160%;
  font-weight: 500;
  margin-right: 4px;
}

.banner-right {
  position: relative;
  width: 820px;
  height: 720px;
}

.banner-web {
  font-weight: 400;
  font-size: 12px;
  margin-left: 56px;
}

.banner-web a {
  margin-left: 10px;
  text-decoration: none;
}

.home-detail {
  width: 1392px;
  padding-left: 38px;
}

.home-content {
  color: var(--font-main-color);
}

.detaile-title {
  text-align: center;
  margin-bottom: 63px;
}

.detaile-title h1 {
  font-size: 46px;
}

.detaile-title p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 30px;
}

img.banner-img-2 {
  position: absolute;
  width: 820px;
  height: 720px;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s;
}

img.banner-img-1 {
  width: 820px;
  height: 720px;
  opacity: 1;
  transition: opacity 1s;
}

.banner-right:hover>img.banner-img-2 {
  opacity: 1;
}

.banner-right:hover>img.banner-img-1 {
  opacity: 0;
}

.bat-grid>div img {
  cursor: pointer;
}

.bat-view-img {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  /*background-color:rgba(255, 255, 255, 0.7); border-radius:10px; box-shadow:0 0 20px rgba(0, 0, 0, 0.1);*/
}

.bat-swiper-container {
  max-width: 100%;
  min-width: 760px;
  min-height: 760px;
  width: 760px;
  height: 800px;
  backdrop-filter: blur(10px);
  background-color: var(--swiper-bg);
  border-radius: 10px;
  box-shadow: var(--swiper-shadow);
  padding: 20px 20px 40px 20px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-slide h3 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  color: var(--theme-color);
}

.swiper-button-next,
.swiper-button-prev {
  transition: all 0.1s;
  color: var(--font-black-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 30px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2, 1.2);
  color: var(--theme-color);
}

.bat-swiper-button-next,
.bat-swiper-button-prev {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30px;
}

.bat-swiper-button-next {
  right: 0;
}

.bat-swiper-button-prev {
  left: 0;
}

.bat-scpiyao {
  margin-right: 30px;
  position: relative;
}

@media screen and (min-width: 1000px) {
  .bat-grid {
    display: grid;
    grid-template-columns: repeat(4, 308px);
    grid-gap: 30px;
    grid-template-rows: repeat(2, 300px);
    justify-content: center;
    margin: 0 auto;
  }

  .bat-grid>div {
    background-color: transparent;
    text-align: center;
    width: 308px;
    height: 300px;
    border-radius: 32px;
    border: 1px solid var(--grid-border);
    padding-top: 36px;
    padding-right: 34px;
    padding-bottom: 36px;
    padding-left: 34px;
    transition: all 0.3s;
    color: var(--font-main-color);
  }

  .bat-grid>div:hover {}

  .bat-grid>div h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 132%;
    color: var(--font-dark-text);
    margin-top: 30px;
    width: 240px;
    height: 26px;
  }

  .bat-grid>div img {
    width: 72px;
    height: 72px;
  }

  /* bat-grid-icon图标居中样式 */
  .bat-grid-icon {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  p.bat-grid-des {
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--font-dark-text);
    width: 240px;
    height: 90px;
  }

  .bat-grid-subtitle {
    margin-top: 20px;
  }

  .bat-grid-subtitle>span {
    background-color: var(--grid-hover-bg);
    color: var(--theme-color);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .bat-grid-more {
    margin-top: 40px;
    color: var(--theme-color);
  }

  .bat-grid-more a {
    background-color: var(--white-bg);
    border: 1px solid var(--theme-color);
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 40px;
  }

  .bat-grid>div:hover>.bat-grid-more>a {
    background-color: var(--theme-color);
    color: var(--font-white-color);
  }

  .fc-box {
    display: grid;
    grid-template-columns: auto auto auto auto;
    width: 1320px;
    height: 144px;
    border-radius: 24px;
    border: 1px solid var(--grid-border);
    padding: 36px 76px;
    margin: 0px 0 72px 0px;
    color: var(--font-main-color);
    background-color: var(--fc-box-bg);
    gap: 20px;
  }

  .fc-items {
    height: 72px;
    opacity: 1;
  }

  .fc-item-icon {
    position: relative;
    display: inline-block;
  }

  .hot-badge {
    position: absolute;
    top: 0px;
    left: 38px;
    width: 46px;
    height: 22px;
    border-radius: 24px;
    padding: 3px 11px;
    background: linear-gradient(288.98deg, #ff0000 14.16%, #ff960a 87.02%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: var(--font-white-color);
  }

  .new-badge {
    position: absolute;
    top: 0px;
    left: 41px;
    width: 49px;
    height: 22px;
    border-radius: 24px;
    padding-top: 3px;
    padding-right: 11px;
    padding-bottom: 3px;
    padding-left: 11px;
    background: linear-gradient(288.98deg, #32be6e 14.16%, #39d97d 87.02%);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    line-height: 130%;
    text-align: center;
    color: var(--font-white-color);
  }

  .feature-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    width: fit-content;
    height: 26px;
    opacity: 1;
    white-space: nowrap;
  }

  .feature-icon {
    margin-right: 16px;
    flex-shrink: 0;
  }

  .feature-title h3 {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
    margin: 0;
  }

  .m-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .fc-item-ctn {
    padding-left: 30px;
  }

  .fc-item-ctn h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 132%;
    letter-spacing: 0px;
    white-space: nowrap;
  }

  .fc-item-ctn p {
    font-weight: 400;
    font-size: 18px;
    line-height: 132%;
    letter-spacing: 0px;
  }

  .fc-item-ctn p {
    font-size: 18px;
  }

  .bat-grid>div:hover>.bat-grid-more>button {
    background-color: var(--theme-color);
    color: var(--font-white-color);
  }
}

/* 新增按钮区域样式 */
.button-container {
  width: 416px;
  height: 102px;
  transform: rotate(0deg);
  opacity: 1;
  padding: 24px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-wrapper {
  display: flex;
  gap: 48px;
  align-items: center;
}

.download-btn {
  font-size: 16px;
  font-weight: 500;
  width: 160px;
  height: 56px;
  border-radius: 36px;
  position: relative;
  color: var(--font-white-color);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  overflow: visible;
}

.download-btn-bg {
  background-color: var(--theme-color);
  box-shadow: 0px 6px 6px 0px var(--shadow-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 56px;
  border-radius: 28px;
  z-index: 0;
  transition: all 0.2s;
}

.download-btn-ctn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.download-btn:hover>.download-btn-bg {
  transform: scale(1.08, 1.2);
  box-shadow: 0px 12px 9px 0px var(--shadow-color);
  border-radius: 33.6px;
}

/* 确保按钮长按（active状态）时文字颜色保持白色 */
.download-btn:active,
.download-btn:active span,
.learn-more-btn:active,
.learn-more-btn:active span,
.security-btn:active,
.security-btn:active span {
  color: var(--font-white-color);
}

.learn-more-btn {
  font-size: 16px;
  font-weight: 500;
  width: 160px;
  height: 56px;
  border-radius: 36px;
  position: relative;
  color: var(--theme-color);
  border: 2px solid var(--theme-color);
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  overflow: visible;
}

.learn-more-btn-bg {
  background-color: var(--card-bg);
  position: absolute;

  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 28px;
  z-index: 0;
  transition: all 0.2s;
}

.learn-more-btn-ctn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.learn-more-btn:hover {
  color: var(--font-white-color);
}

.learn-more-btn:hover>.learn-more-btn-bg {
  transform: scale(1.0625, 1.2143);
  background-color: var(--theme-color);
  box-shadow: 0px 12px 9px 0px var(--shadow-color);
  border-radius: 33.6px;
}

.learn-more-btn:hover>.learn-more-btn-ctn .arrow-icon {
  filter: brightness(0) invert(1);
}

.apple-icon {
  width: 24px;
  height: 24px;
  transform: rotate(0deg);
  opacity: 1;
  margin-right: 12px;
  position: relative;
  left: 3.01px;
}

.arrow-icon {
  margin-left: 0;
}

/* 新区域按钮箭头 */
.security-btn-ctn .arrow-icon {
  filter: brightness(0) invert(1);
}

/* 新增区域样式 */
.new-section {
  width: 1320px;
  height: 724px;
  padding: 100px 75px 100px 100px;
  gap: 78px;
  opacity: 1;
  border-radius: 48px;
  background:
    linear-gradient(0deg, var(--gradient-bg1), var(--gradient-bg1)),
    linear-gradient(0deg, var(--gradient-bg2), var(--gradient-bg2));
  margin: 60px auto;
}

.new-section-content {
  display: flex;
  align-items: center;
  gap: 64px;
  width: 120%;
  height: 100%;
}

.new-section-text {
  width: 582px;
  height: 524px;
  opacity: 1;
  color: var(--font-light-text);
  display: flex;
  flex-direction: column;
}

/* 透明背景区域文本容器 */
.new-section[style*="background: transparent"] .new-section-text {
  height: auto;
  justify-content: center;
}

/* 透明背景区域内容容器 */
.new-section[style*="background: transparent"] {
  height: auto;
  padding: 50px 75px;
}

/* 透明背景区域文字颜色 */
.new-section[style*="background: transparent"] .new-section-text {
  color: var(--font-dark-text);
}

.new-section[style*="background: transparent"] .text-title {
  color: var(--font-dark-text);
}

.new-section[style*="background: transparent"] .text-box-2 p {
  color: var(--font-dark-text);
}

.new-section[style*="background: transparent"] .text-box-3 p {
  color: var(--font-dark-text);
}

/* 第一个框：蝙蝠密钥安全 */
.text-box-1 {
  width: 358px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 1;
  margin-bottom: 20px;
}

.lock-icon {
  width: 40px;
  height: 40px;
  opacity: 1;
}

.text-title {
  width: 302px;
  height: 26px;
  gap: 10px;
  opacity: 1;
  font-weight: 500;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
}

/* 第二个框：安全防护描述 */
.text-box-2 {
  gap: 10px;
  opacity: 1;
}

.text-box-2 p {
  font-weight: 600;
  font-size: 46px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0;
  white-space: pre-line;
}

/* 第三个框：详细描述 */
.text-box-3 {
  opacity: 1;

  white-space: pre-line;
}

.text-box-3 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0;
}

/* 第四个框：支持内容标题 */
.text-box-4 {
  width: 142px;
  height: 26px;
  gap: 10px;
  opacity: 1;
  margin-bottom: 20px;
}

.text-box-4 p {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0;
  white-space: nowrap;
}

/* 第五个框：支持内容列表 */
.text-box-5 {
  height: auto;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  margin-bottom: 26px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.support-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
  color: var(--font-light-text);
}

/* 第六个框：按钮 */
.text-box-6 {
  margin-top: 26px;
}

/* 透明背景区域按钮间距 */
.new-section[style*="background: transparent"] .text-box-6 {
  margin-top: 16px;
}

/* 按钮样式 */
.security-btn {
  font-size: 16px;
  font-weight: 500;
  width: 260px;
  height: 56px;
  border-radius: 36px;
  position: relative;
  color: var(--font-light-text);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  overflow: visible;
}

.security-btn-bg {
  background-color: var(--theme-color);
  box-shadow: 0px 6px 6px 0px var(--shadow-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 56px;
  border-radius: 28px;
  z-index: 0;
  transition: all 0.2s;
}

.security-btn-ctn {
  position: relative;
  z-index: 2;
  width: 188px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.security-btn:hover>.security-btn-bg {
  transform: scale(1.0625, 1.2143);
  box-shadow: 0px 12px 9px 0px var(--shadow-color);
  border-radius: 36px;
}

.new-section-image {
  width: 512px;
  height: 291px;
  opacity: 1;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
}

.new-section-image img {
  width: 512px;
  height: 291px;
  opacity: 1;
  transform: rotate(0deg);
}

/* 透明背景区域图片尺寸 */
.new-section[style*="background: transparent"] .new-section-image {
  width: 590px;
  height: 512px;
}

.new-section[style*="background: transparent"] .new-section-image img {
  width: 590px;
  height: 512px;
}

/* 标题不换行 */
.text-title {
  white-space: nowrap;
}

/* 调整行间距 */
.text-box-1 {
  margin-bottom: 20px;
}

.text-box-2 {
  margin-bottom: 8px;
}

.text-box-3 {}

/* 评论展示区域 */
.reviews-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background-color: var(--reviews-bg);
  padding: 62px 0 92px 0;
}

/* 标题区域 */
.reviews-title {
  text-align: center;
}

.reviews-title h2 {
  height: 61px;
  font-weight: 600;
  font-size: 46px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-dark-text);
  margin: 0 auto 24px;
  white-space: nowrap;
}

.reviews-title p {
  height: 26px;
  font-weight: 400;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-dark-text);
  margin: 0 auto;
  white-space: nowrap;
}

/* 轮播容器 */
.reviews-carousel-container {
  width: 100%;
  max-width: 1300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* 轮播内容 */
.reviews-carousel {
  width: 1300px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

/* 左右渐变区域 */
.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 210px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(to right,
      var(--reviews-bg) 0%,
      rgba(240, 240, 236, 0) 100%);
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(to left,
      var(--reviews-bg) 0%,
      rgba(240, 240, 236, 0) 100%);
}

.reviews-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

/* 评论卡片 */
.review-card {
  width: 420px;
  height: 455px;
  padding: 45px 40px;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* 评论图标 */
.review-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

/* 评论标题 */
.review-title {
  width: 340px;
  height: 26px;
  font-weight: 600;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-dark-text);
  margin: 0 0 10px 0;
}

/* 评分星星 */
.review-rating {
  display: flex;
  gap: 8px;
  margin: 0px 0 20px 0;
  height: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.star {
  width: 18.75px;
  height: 18.31px;
  display: inline-block;
  background: url("../svg/Star.svg") no-repeat center center;
  background-size: contain;
}

/* 数字评分显示 */
.review-rating-number {
  font-weight: 600;
  font-size: 16px;
  color: var(--font-dark-text);
  margin-left: 8px;
}

/* 评论描述 */
.review-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-dark-text);
  margin: 0 0 auto 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 158px;
}

/* 评论作者 */
.review-author {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-dark-text);
  margin: 0;
}

.author-time {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0px;
  color: #8d8d8d;
  margin: 0;
}

/* 轮播箭头 */
.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--arrow-bg);
  border: 1px solid var(--arrow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--font-black-color);
  transition: all 0.3s ease;
}

.carousel-arrow svg {
  stroke-width: 1;
}

.carousel-arrow:hover {
  background-color: var(--arrow-border);
  color: var(--arrow-bg);
}

.left-arrow {
  left: 105px;
  transform: translate(-50%, -50%);
}

.right-arrow {
  right: 105px;
  transform: translate(50%, -50%);
}

/* 新增区域样式 */
.new-secure-section {
  width: 100%;

  background-color: var(--gradient-bg1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 86px 0px;
  box-sizing: border-box;
}

.new-secure-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

/* 标题行 */
.secure-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px 0;
}

.secure-icon {
  width: 40px;
  height: 40px;
  opacity: 1;
}

.secure-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0;
}

/* 主标题 */
.secure-main-title {
  font-weight: 600;
  font-size: 46px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0 0 24px 0;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
}

/* 描述文字 */
.secure-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 132%;
  letter-spacing: 0px;
  color: var(--font-light-text);
  margin: 0 0 60px 0;
  text-align: center;
  max-width: 800px;
}

/* 按钮区域 */
.secure-button-container {
  width: 320px;

  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* 下载按钮 */
.secure-download-btn {
  width: 260px;
  height: 56px;
  border-radius: 36px;
  position: relative;
  color: var(--font-white-color);
  text-decoration: none;
  margin: 0 auto;
  cursor: pointer;
}

.secure-download-btn-bg {
  background-color: var(--theme-color);
  box-shadow: 0 6px 6px 0 var(--shadow-color);
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 56px;
  border-radius: 28px;
  z-index: 1;
  transition: all 0.2s;
}

.secure-download-btn-ctn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.secure-download-btn:hover>.secure-download-btn-bg {
  transform: scale(1.08, 1.2);
  box-shadow: 0px 12px 9px 0px var(--shadow-color);
  border-radius: 36px;
}

.secure-download-btn:active {
  background-color: transparent;
  color: var(--font-white-color);
}

.secure-download-btn:active .secure-download-btn-bg {
  background-color: var(--theme-color);
}

/* 防止移动端长按时的视觉变化 */
.secure-download-btn {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* 响应式设计 */
@media screen and (max-width: 999px) {
  .reviews-title h2 {
    width: 100%;
    height: auto;
    font-size: 32px;
  }

  .reviews-title p {
    width: 100%;
    height: auto;
    font-size: 16px;
  }

  .review-card {
    width: 100%;
    height: auto;
    padding: 45px 20px;
  }

  .reviews-wrapper {
    gap: 10px;
  }
}

@media screen and (min-width: 1720px) {
  .mobile {
    display: none;
  }

  .bat-home {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bat-c {
    width: 100%;
    background-color: var(--white-bg);
  }

  .bat-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 68px;
  }
}

@media screen and (min-width: 1480px) and (max-width: 1719px) {
  .mobile {
    display: none;
  }

  .bat-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 68px;
  }
}

@media screen and (min-width: 1260px) and (max-width: 1479px) {
  .mobile {
    display: none;
  }

  .banner-left h1 {
    font-size: 36px;
  }

  .banner-right,
  .banner-right img {}

  .bat-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 68px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1259px) {
  .mobile {
    display: none;
  }

  .banner-right,
  .banner-right img {}

  .bat-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 68px;
  }

  .bm-jt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 10px;
  }

  .bm-jt-left,
  .bm-jt-right {
    background-color: rgba(31, 45, 61, 0.11);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--theme-color);
  }

  .bm-jt-left>div,
  .bm-jt-right>div {
    width: 24px;
    height: 24px;
  }

  .bm-jt-left>div {
    transform: rotate(-90deg);
  }

  .bm-jt-right>div {
    transform: rotate(90deg);
  }

  .l-hid {
    opacity: 0;
  }

  .detaile-title.mobile {
    text-align: center;
    margin-bottom: 24px;
  }

  .detaile-title.mobile h1 {
    font-weight: 600;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
    margin: 0 0 10px 0;
  }

  .detaile-title.mobile p {
    font-weight: 400;
    font-size: 20px;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
    margin: 0 40px;
  }
}

@media screen and (max-width: 999px) {
  .bat-home {
    background-color: var(--white-bg);
  }

  .banner-right {
    height: 365px;
    overflow: hidden;
  }

  .home-detail {
    padding-left: 0;
  }

  .banner-left {
    padding-left: 0px;
  }

  .m-bnr-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mb-banner-txt {
    text-align: center;
    padding-top: 30px;
  }

  .mb-title-box {
    width: 307px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mb-title-box h1 {
    font-size: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #006ffa 0%, #39d97d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 132%;
    display: block;
    text-indent: 9px;
  }

  .mb-title-box div[data-lang*="home_title_part"] {
    font-size: 30px;
    font-weight: 600;
    background: linear-gradient(90deg, #006ffa 0%, #39d97d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 132%;
    display: block;

    white-space: nowrap;
  }

  .mb-title-box div[data-lang="home_title_part2"] {
    margin-right: 18px;
  }

  .mb-title-box h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(90deg, #006ffa 0%, #39d97d 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
  }

  .mb-desc-box {
    margin: 10px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 240px;
  }

  .mb-desc-box p {
    font-size: 16px;
    font-weight: 400;
    color: var(--font-main-color);
    line-height: 160%;
    margin: 0;
    text-align: center;
    white-space: pre-line;
  }

  .banner-right {
    text-align: center;
    position: relative;
    width: 100%;
  }

  .banner-right .mobile.banner-img-1 {
    width: 410px;
    height: 360px;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    opacity: 0;
    transition: opacity 1s;
  }

  .banner-right .mobile.banner-img-2 {
    width: 410px;
    height: 360px;
    object-fit: contain;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    opacity: 1;
    transition: opacity 1s;
  }

  .banner-right:hover .mobile.banner-img-1 {
    opacity: 1;
  }

  .banner-right:hover .mobile.banner-img-2 {
    opacity: 0;
  }

  .banner-right>img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .banner-btn {
    margin-bottom: 30px;
    padding-right: 26px;
    margin-top: -46px;
  }

  .m-bnr-btn .banner-share {
    width: 218px;
    height: 72px;
    margin-top: 30px;
    margin-left: 24px;
  }

  .m-bnr-btn .banner-share-bg {
    width: 218px;
    height: 72px;
    border-radius: 36px;
  }

  .m-bnr-btn .banner-share-ctn {
    font-size: 18px;
  }

  .mb-dlds {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .mb-dlds a {
    background-color: rgba(172, 180, 185, 0.12);
    width: 120px;
    height: 50px;
    border-radius: 28px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 160%;
    color: rgba(38, 32, 96, 1);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mb-dlds>a:nth-child(2) {
    margin-left: 10px;
  }

  .home-content {
    padding: 0;
  }

  .detaile-title {
    margin-bottom: 20px;
  }

  .detaile-title.mobile h1 {
    white-space: pre-line;
  }

  .detaile-title.mobile p {
    white-space: pre-line;
  }

  .bat-grid,
  .mb-fc-box {
    padding: 15px 0px 10px 0px;
    display: grid;
    grid-gap: 30px;
    justify-content: center;
  }

  .bat-grid>div {
    text-align: center;
    width: 366px;
    height: 300px;
    opacity: 1;
    transform: rotate(0deg);
    border-radius: 32px;
    border: 1px solid rgba(173, 170, 178, 0.2);
    padding-top: 36px;
    padding-right: 34px;
    padding-bottom: 36px;
    padding-left: 34px;
    margin-top: 0;
    transition: all 0.3s;
    color: var(--font-main-color);
  }

  .bat-grid>div img {
    width: 72px;
    height: 72px;
    opacity: 1;
    transform: rotate(0deg);
  }

  .bat-grid-subtitle {
    margin-top: 20px;
  }

  .bat-grid-subtitle>span {
    background-color: #e8f3ff;
    color: var(--theme-color);
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 4px;
  }

  .bat-grid>div h4 {
    font-size: 20px;
    margin-top: 30px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    line-height: 132%;
    font-weight: 600;
  }

  p.bat-grid-des {
    margin-top: 10px;
    font-size: 16px;
    line-height: 160%;
    font-weight: 400;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .bat-grid-more {
    margin: 30px 0 20px 0;
    color: var(--theme-color);
  }

  .bat-grid-more a {
    background-color: rgba(253, 253, 248, 1);
    border: 1px solid var(--theme-color);
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 40px;
  }

  /* 隐藏移动端的button-container */
  .bat-layout .scroll-wrap .button-container {
    display: none;
  }

  .fc-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    width: 366px;
    height: 480px;
    border-radius: 24px;
    border: 1px solid rgba(0, 111, 250, 0.2);
    padding: 36px 24px;
    margin: 0px auto;
    color: var(--font-main-color);
    background-color: #006ffa0f;
    opacity: 1;
    transform: rotate(0deg);
  }

  .mw.fc-box h5 {
    font-size: 20px;
    line-height: 132%;
  }

  .fc-items {
    width: 100%;
    height: 72px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .fc-item-ctn {
    padding-left: 30px;
  }

  .fc-item-ctn p {
    margin-top: 3px;
    font-size: 18px;
    line-height: 132%;
  }

  .fc-items>img {
    width: 72px;
    height: 72px;
  }

  .fc-item-icon {
    position: relative;
    display: flex;
    align-items: center;
  }

  .fc-item-icon>img {
    width: 72px;
    height: 72px;
  }

  /* 移动端hot-badge和new-badge样式调整 */
  .hot-badge {
    position: absolute;
    top: 0px;
    right: -10px;
    width: 36px;
    height: 18px;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 10px;
    background: linear-gradient(288.98deg, #ff0000 14.16%, #ff960a 87.02%);
    color: var(--font-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .new-badge {
    position: absolute;
    top: 0px;
    right: -10px;
    width: 38px;
    height: 18px;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 10px;
    background: linear-gradient(288.98deg, #32be6e 14.16%, #39d97d 87.02%);
    color: var(--font-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }

  .bm-jt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 10px;
  }

  .bm-jt-left,
  .bm-jt-right {
    background-color: rgba(31, 45, 61, 0.11);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--theme-color);
  }

  .bm-jt-left>div,
  .bm-jt-right>div {
    width: 24px;
    height: 24px;
  }

  .bm-jt-left>div {
    transform: rotate(-90deg);
  }

  .bm-jt-right>div {
    transform: rotate(90deg);
  }

  .l-hid {
    opacity: 0;
  }

  .bat-swiper-container {
    padding: 0 0 30px 0;
  }

  .bat-swiper-container,
  .swiper-wrapper {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
  }

  .swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    flex-shrink: 0;
  }

  /* 新区域移动端适配 - 使用具体选择器提高优先级 */
  .bat-layout .scroll-wrap .new-section {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 60px 0;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    gap: 20px;
  }

  /* 针对带有background: transparent的新区域 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 60px 0;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* 透明背景新区域特殊网格布局 */
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .new-section-content {
    grid-template-areas:
      "text1"
      "text2"
      "image"
      "text3"
      "text6";
  }

  /* 新区域移动端布局 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section-content {
    display: grid;
    grid-template-areas:
      "text1"
      "text2"
      "image"
      "text3"
      "text4"
      "text5"
      "text6";
    gap: 20px;
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
  }

  /* 分配网格区域 */
  .text-box-1 {
    grid-area: text1;
  }

  .text-box-2 {
    grid-area: text2;
  }

  .new-section-image {
    grid-area: image;
  }

  .text-box-3 {
    grid-area: text3;
  }

  .text-box-4 {
    grid-area: text4;
  }

  .text-box-5 {
    grid-area: text5;
  }

  .text-box-6 {
    grid-area: text6;
  }

  .new-section-text {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: contents;
  }

  /* 确保所有text-box内容居中且不超出屏幕 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-1,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-3,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-4,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-5,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 0;
  }

  /* text-box-1调整：图标和文字同行显示 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-1 {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
  }

  /* text-box-2调整：特定布局 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-2 {
    /* width: 331px; */
    /* height: 244px; */
    gap: 10px;
    opacity: 1;
    transform: rotate(0deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 0;
  }

  /* 调整各个text-box的字体大小 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-1 p {
    font-size: 18px;
    line-height: 132%;
  }

  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-2 p {
    font-size: 40px;
    line-height: 132%;
  }

  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-3 p {
    font-size: 20px;
    line-height: 160%;
  }

  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-4 p {
    font-size: 16px;
    line-height: 160%;
  }

  .bat-layout .scroll-wrap .new-section .new-section-content .support-item span {
    font-size: 16px;
    line-height: 160%;
    max-width: 280px;
  }

  /* 确保text-box内的文字不超出 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-1 p,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-2 p,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-3 p,
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-4 p {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* 确保support-item内的文字不超出 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .support-item span {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 280px;
  }

  /* 图片样式 - 使用具体选择器提高优先级 */
  .bat-layout .scroll-wrap .new-section .new-section-content .new-section-image {
    margin: 10px 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 10px;
    order: 2;
  }

  .bat-layout .scroll-wrap .new-section .new-section-content .new-section-image img {
    display: block;
    margin: 0 auto;
    width: 338.0000305175781px;
    height: 192.3683624267578px;
    opacity: 1;
    object-fit: contain;
  }

  /* 透明背景新区域图片尺寸 - 移动端 */
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .new-section-content .new-section-image img {
    width: 390px;
    height: 338.0000305175781px;
    opacity: 1;
    transform: rotate(0deg);
  }

  /* 确保图片在text-box-2下方 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .new-section-text {
    order: 1;
  }

  /* 确保support-item内的元素一行显示且垂直居中 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .support-item {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    gap: 8px;
  }

  /* 确保support-item内的文字左对齐 */
  .bat-layout .scroll-wrap .new-section .new-section-content .support-item span {
    text-align: left;
  }

  /* 确保按钮文字为白色 - 使用具体选择器 */
  .bat-layout .scroll-wrap .new-section .new-section-content .security-btn-ctn span,
  .security-btn-ctn span {
    color: white;
  }

  /* 确保按钮容器背景色正确，文字为白色 */
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .security-btn-ctn span {
    color: white;
  }

  /* 确保按钮文字始终为白色 */
  .security-btn {
    color: white;
  }

  /* 确保按钮箭头图标颜色正确 */
  .security-btn .arrow-icon {
    fill: white;
  }

  /* 调整text-box-5的样式 - 整体居中，内部左对齐 */
  .bat-layout .scroll-wrap .new-section .new-section-content .text-box-5 {
    gap: 10px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  /* 第一个新区域（默认背景）文字为白色 - 使用具体选择器 */
  /* 不带style属性的新区域 */
  .bat-layout .scroll-wrap .new-section:not([style]) .text-title,
  .bat-layout .scroll-wrap .new-section:not([style]) .text-box-1 p,
  .bat-layout .scroll-wrap .new-section:not([style]) .text-box-2 p,
  .bat-layout .scroll-wrap .new-section:not([style]) .text-box-3 p,
  .bat-layout .scroll-wrap .new-section:not([style]) .text-box-4 p,
  .bat-layout .scroll-wrap .new-section:not([style]) .support-item span,
  .bat-layout .scroll-wrap .new-section:not([style]) .security-btn-ctn span,
  .bat-layout .scroll-wrap .new-section:not([style]) * {
    color: white;
  }

  /* 下面两个新区域（透明背景）文字样式 - 使用具体选择器 */
  /* 带有background: transparent的新区域 */
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .text-title,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .text-box-1 p,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .text-box-2 p,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .text-box-3 p,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .text-box-4 p,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .support-item span,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] .security-btn-ctn span,
  .bat-layout .scroll-wrap .new-section[style*="background: transparent"] * {
    text-align: center;
  }

  /* 图片和图标不受文字颜色影响 */
  .new-section img {
    color: inherit;
  }

  /* 调整各个text-box样式 */
  .text-box-1 {
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 20px;
    justify-content: center;
    padding: 0;
  }

  .text-box-2 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 0;
  }

  .text-box-2 p {
    font-size: 32px;
    line-height: 132%;
  }

  /* 图片适配 - 放在text-box-2下方 */
  .new-section-image {
    width: 100%;
    height: auto;
    margin: 20px 0;
    order: 0;
  }

  .new-section-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  /* 调整后续文字框位置 */
  .text-box-3 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 0;
  }

  .text-box-3 p {
    font-size: 16px;
    line-height: 160%;
  }

  .text-box-4 {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .text-box-5 {
    width: 100%;
    height: auto;
    margin-bottom: 26px;
    align-items: center;
  }

  .support-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    max-width: 100%;
  }

  /* 移动端图标和标题一行显示 */
  .feature-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto;
    width: fit-content;
    height: 26px;
    opacity: 1;
    white-space: nowrap;
  }

  .feature-title .feature-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .feature-title h3 {
    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
    margin: 0;
  }

  /* 移动端detaile-title样式调整 */
  .detaile-title.mobile {
    text-align: center;
    margin-bottom: 24px;
  }

  .detaile-title.mobile h1 {
    font-weight: 600;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
    margin: 24px 48px;
  }

  .detaile-title.mobile p {
    font-weight: 400;
    font-size: 20px;
    line-height: 132%;
    letter-spacing: 0px;
    color: var(--font-dark-text);
  }

  /* 确保移动端样式优先 */
  @media screen and (max-width: 999px) {

    /* 隐藏评论区域两侧的渐变阴影 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel::before,
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel::after {
      display: none;
    }

    /* 隐藏蝙蝠拥有数千万用户和描述文字在手机端的显示 */
    .bat-layout .scroll-wrap .reviews-section .reviews-title {
      display: none;
    }

    /* 将评论区域的背景色和上面的背景色保持一致 */
    .bat-layout .scroll-wrap .reviews-section {
      background-color: transparent;
      margin-bottom: 30px;
      padding: 0px;
    }

    /* 核心修改：为reviews-carousel添加左右17px的padding */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel {
      /* padding: 0 17px; */
    }

    /* 隐藏箭头 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel-container .carousel-arrow {
      display: none;
    }

    /* 确保轮播容器溢出隐藏 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel {
      overflow: hidden;
    }

    /* 改为垂直排列，禁用轮播效果 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel .reviews-wrapper {
      display: flex;
      flex-direction: column;
      transform: none;
      transition: none;
      gap: 30px;
      width: 100%;
    }

    /* 调整评论卡片样式 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel .reviews-wrapper .review-card {
      margin-right: 0;
      margin-bottom: 0;
      width: 300px;
      height: 450px;
      margin: 0 auto;
      flex-shrink: 0;
      flex-grow: 0;
    }

    /* 只显示前3条评论 */
    .bat-layout .scroll-wrap .reviews-section .reviews-carousel .reviews-wrapper .review-card:nth-child(n + 4) {
      display: none;
    }

    /* 调整secure-main-title样式 - 移动端 */
    .secure-main-title {
      width: 370px;
      font-weight: 600;
      font-size: 46px;
      line-height: 132%;
      letter-spacing: 0px;
      text-align: center;
      white-space: normal;
    }

    /* 调整secure-description样式 - 移动端 */
    .secure-description {
      width: 350px;

      opacity: 1;
      font-weight: 400;
      font-size: 20px;
      line-height: 132%;
      letter-spacing: 0px;
      text-align: center;
      margin: 0 0 30px 0;
    }

    /* 调整下载按钮文字样式 - 移动端 */
    .secure-download-btn-ctn span {
      font-weight: 500;
      font-size: 16px;
      line-height: 160%;
    }
  }
}