* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

.nav {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  overflow: hidden;
}

.icon .logo {
  width: 5rem;
  height: 5rem;
}

.icon .title {
  font-size: 2rem;
  line-height: 6rem;
}

.nav--scrolled {
  box-shadow: 0 4px 6px -1px rgba(65, 64, 64, 0.1),
    0 2px 4px -1px rgba(139, 138, 138, 0.06);
  z-index: 100;
}

.nav-link {
  color: #121212;
  font-size: 1.5rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #121212;
}

.mid {
  padding-top: 8rem;
}

.mid .slgan-warp {
  height: 8rem;
  line-height: 8rem;
}

.mid .slgan-warp .slgan {
  font-size: 3rem;
  font-weight: 900;
  width: 100%;
  text-align: center;
}


/* 基础按钮样式 */
.btn {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  margin: 10px 0;
  border-radius: 16px;
  text-decoration: none;
  min-width: 200px;
  transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* 图标样式 */
.icon {
  font-size: 32px;
  margin-right: 12px;
}

/* Banner 基础样式 */
.hero-banner {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  /* 隐藏超出部分 */
  display: flex;
  align-items: center;
}



/* 滚动列容器 */
.scroll-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /*justify-content: space-around;*/
  gap: 20px;
  z-index: 4;
  padding: 0 20px;
}

/* 单个滚动列 */
.scroll-column {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 滚动动画：向下滚动 */
@keyframes scroll-down {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* 滚动动画：向上滚动（交错感） */
@keyframes scroll-up {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scroll-down 30s linear infinite;
}

/* 反向滚动效果 */
.scroll-track-reverse {
  animation: scroll-up 25s linear infinite;
}

/* 图片样式 */
.app-screenshot {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); */
  transition: transform 0.3s;
}

/* 响应式调整 */
@media (max-width: 968px) {

  .scroll-column:nth-child(3),
  .scroll-column:nth-child(4) {
    display: none;
  }
}


/* 文字排版 */
.text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.small-text {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.large-text {
  font-size: 19px;
  font-weight: 600;
}

/* 风格 1：深色按钮 */
.btn-dark {
  background-color: #121212;
  color: white;
}


.download-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.dropdown-menu {
  width: 80%;
}

.iconfont {
  font-size: 2rem !important;
}

.b {
  width: 100%;
  /* height: 500px; */
}

.introduce {
  /* background-color: rgb(248, 250, 252); */
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.introduce2 {
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  padding-top: 10rem;
  padding-bottom: 12rem;
}

.footer {
  height: 3rem;
  font-size: 1.3rem;
}

.beian {
  text-align: center;
}