/* main {

  position: relative;
  background: url('../img/bg-main.png');

  width: 100%;

  background-repeat: no-repeat;
} */

main {
  /* width: 100%; */
  /* 容器宽度占满父容器 */
  /* padding-top: 53.33%; */
  /* 模拟宽高比（1920:1024） */
  position: relative;
  /* 创建相对定位上下文 */
  background-image: url('../img/bg-main.png');
  /* 替换为你的图片路径 */
  background-size: cover;
  /* 覆盖整个容器 */
  /* background-position: center; */
  /* 图片居中 */
  background-repeat: no-repeat;
  /* 禁止平铺 */
  /* background-color: #f0f0f0; */
  background-color: #fff;
  /* 可选：备用背景颜色 */
  /* height: 320rem; */
  /* display: flex; */
  position: relative;

}


.header-main {
  width: 100%;

  position: absolute;
  padding: 1.25rem 0;
  z-index: 1000;
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12.5rem;
}

@media only screen and (max-width: 768px) {
  /*  and (max-width: 991px),
only screen and (max-width: 767px) */
  .container {
    padding: 0 2rem;
  }
}

.nav-menu {
  display: flex;
  list-style-type: none;
  gap: 3.5rem;
align-items: center;

}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-item-lang {
  color: #2c2b01;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 1.25rem 5rem;
  border-radius: 1.875rem;
  background-color: #ffee00;
  margin-left: 50px;
}

/* .active {
  color: #C6F806;
} */

.nav-menus-wrapper ul {
  margin: 0;
}





.hidden {
  display: none;
}

.container-1 {
  width: 100%;
  /* 容器宽度占满父容器 */
  /* padding-top: 53.33%; */
  /* 模拟宽高比（1920:1024） */
  position: relative;
  /* 创建相对定位上下文 */
  background-image: url('../img/bg-header-1.png');
  /* 替换为你的图片路径 */
  /* background-size: cover; */
  /* 覆盖整个容器 */
  background-position: center;
  /* 图片居中 */
  background-repeat: no-repeat;
  /* 禁止平铺 */
  background-color: #f0f0f0;
  /* 可选：备用背景颜色 */
  height: 64rem;
  display: flex;
}

.container-2 {
    width: 100%;
  /* 容器宽度占满父容器 */
  /* padding-top: 53.33%; */
  /* 模拟宽高比（1920:1024） */
  position: relative;
  /* 创建相对定位上下文 */
  background-image: url('../img/bg-header-1.png');
  /* 替换为你的图片路径 */
  /* background-size: cover; */
  /* 覆盖整个容器 */
  background-position: center;
  /* 图片居中 */
  background-repeat: no-repeat;
  /* 禁止平铺 */
  background-color: #f0f0f0;
  /* 可选：备用背景颜色 */
  height: 64rem;
  display: flex;
}

.content {
  width: 40%;
  display: flex;
  justify-content: space-between;
  margin: 18.875rem 12.5rem 16.875rem 12.5rem;

}

.content-left {
  display: flex;
  flex-direction: column;
  gap: 4.25rem;
}

.content-left p {
  color: #fff;
  font-size: 4.875rem;
  margin: 0;
}

.container-2 .content-left p{
  color: #fff;
  font-size: 3.875rem;
  margin: 0;
}

.content-left span {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2rem;
}



.image_1,
.image_2,
.image_3,
.image_4,
.image_5,
.image_6 {
  position: absolute;
}


.content-right{
  z-index: 0;
}
/* 初始状态：所有图片都隐藏在下方 */
.content-right img {
  opacity: 0;
  /* 隐藏图片 */
  transform: translateY(6.25rem);
  /* 向下偏移 50px */
  transition: all 0.8s ease-out;
  /* 平滑过渡效果 */
}

/* 动画效果：图片从下方缓缓出现 */
.content-right img.animate {
  opacity: 1;
  /* 显示图片 */
  transform: translateY(0);
  /* 回到原始位置 */
}

.image_1 {
  width: 33.5625rem;
  height: 45.6875rem;
  top: 8.625rem;
  right: 14.6875rem;
  z-index: 1;
}

.image_2 {
  width: 38rem;
  height: 35.375rem;
  top: 18.9375rem;
  right: 12.5rem;
  z-index: 0;
}

.image_3 {
  width: 24.4375rem;
  height: 22.8125rem;
  top: 32.75rem;
  right: 37.6875rem;
  z-index: 2;
}

.image_4 {
  width: 19.25rem;
  height: 7.875rem;
  top: 22.8125rem;
  right: 36.5rem;
  z-index: 3;
}

.image_5 {
  width: 8.8125rem;
  height: 4.3125rem;
  top: 22.8125rem;
  right: 17.375rem;
  z-index: 5;
}

.image_6 {
  width: 52.1875rem;
  height: 47.0625rem;
  top: 9.625rem;
  right: 3.375rem;
  z-index: 5;
}



.mobile-logo {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
  .mobile-logo {
    padding: 30px 27px;
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
  .mobile-logo img {
    width: 150px;
  }
}



.module {
  display: inline-block;
  width: 5.75rem;
  height: 21rem;
  border-radius: 1.5rem;
  background-color: #3b3b3b;
  color: white;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
}

.module-content {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.module5-title{
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.module5-title p{
  transform: rotate(-90deg);
  font-size: 1.625rem;
  /* font-weight: bold; */
  width: 18.75rem;
  margin: 0;
  white-space: nowrap;
}

.active .module-content {
  display: flex;
  opacity: 1;
}

.active {
  width: 21rem;
  height: 21rem;
  background-color: #fff;
  background-image: url('../img/bg_tab.png');
  /* 替换为你的图片路径 */
  background-size: cover;
  /* 覆盖整个容器 */
  background-position: center;
  /* 图片居中 */
  background-repeat: no-repeat;
  /* 禁止平铺 */
  /* 可选：备用背景颜色 */

}

.default .module-content {
  display: block;
  opacity: 1;
}

/* ---------------------modu1 */
/* Main Container */
.module-container {
  padding: 9.375rem 12.5rem 0 12.5rem;
}
.module-container-last{
  padding: 9.375rem 12.5rem 18rem 12.5rem;
} 

/* span 样式 */
.module-span {
  border-radius: 0.625rem;
  padding: 0.3125rem 0.9375rem;
  background-color: #E3E2FE;
  width: auto;
}

/* p 样式 (module6.title) */
.module-title {
  font-size: 3.5rem;
  color: #17012C;
  font-weight: 500;
}


/* Header Text with Gradient */
.gradient-text {
  background-image: linear-gradient(to right, #2F1CF2, #03A8B7);
  /* 渐变色 */
  -webkit-background-clip: text;
  /* 兼容 WebKit/Blink 内核 */
  background-clip: text;
  /* 标准属性 */
  color: transparent;
  /* 文字透明 */
  font-size: 1rem;
  /* 字体大小 */
  font-weight: bold;
  /* 加粗字体 */
  font-family: Arial, sans-serif;
  /* 字体样式 */
  display: inline-block;
  /* 确保文本正确渲染 */
  margin: 0;
}

.module6-article-container{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

/* Two-column Description */
.description-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15.625rem;
}

.description-container p:first-child {
  font-size: 3.5rem;
  color: #17012C;
  margin: 1.875rem 0;
  font-weight: bold;
  width: 70%;
}

.description-container p:last-child {
  font-size: 1.25rem;
  color: #575555;
  margin: 3.125rem 0;
  border-left: 1px solid #6A47ED;
  padding: 0 1.25rem;
  width: 30%;
}

/* Grid Items */
.grid-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125rem;
  margin-top: 3rem;
}

.grid-item {
  /* margin-top: 5.9375rem; */
  padding:  1.875rem;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px;
  border-radius: 1rem;
  cursor: pointer;  
}

.grid-item:hover{
  transform: scale(1.1);
  transition-duration: 0.2s;
}



.grid-item img {
  width: 4.5rem;
  height: 4.5rem;
  display: block;
}

.grid-item p{
  font-size: 1.5rem;
  color: #17012C;
  margin: 1rem 0 ;
  min-height: 3.75rem;
  font-weight: bold;
}

.grid-item span{
  font-size: 1rem;
  color: #575555;
  margin: 1.125rem 0 0 0;
}

.grid-image {
  /* margin-top: 2.8125rem; */
}

.grid-image img {
  width: 21rem;
  height: 20rem;
  display: block;
}

/* Centered Text */
.centered-text {
  margin-top: 3.125rem;
}

.centered-text p {
  font-size: 1.875rem;
  color: #17012C;
  text-align: center;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.125rem;
  padding: 2.8125rem 5.9375rem;
}

.brands-grid div {
  text-align: center;
}

/* Dynamic Stats Section */
.dynamic-stats-section {
  position: relative;
}

.moudle1-banner-image {
  width: 95rem;
  height: 48.125rem;
  display: block;
  margin-top: 7rem;
}

.dynamic-stats {
  position: absolute;
  bottom: 3.4375rem;
  display: flex;
  padding: 0 3.5rem;
  gap: 5rem;
}

.dynamic-stats div {
  text-align: center;
}

.dynamic-stats p.counter {
  font-size: 2.75rem;
  color: #fff;
  margin: 0;
  font-weight: bold;
}

.dynamic-stats p:last-child {
  font-size: 1.25rem;
  color: #fff;
  margin: 0.625rem 0 0 0;
}

.rotating-circle{
  transition-timing-function: ease-in-out; /* 更平滑的过渡效果 */
  backface-visibility: hidden; /* 改善性能 */
  transform-origin: center; /* 确保旋转中心点位于图片中心 */
  animation: spin 5s linear infinite; /* 调用动画并设置持续时间和效果 */
  width: 9.625rem;
  height:9.625rem;
  display: block;
  position: absolute;
  bottom: 9.9375rem;
  right: 3.375rem;
}

/* 定义动画 */
@keyframes spin {
  from {
      transform: rotate(0deg); /* 开始时旋转角度为0度 */
  }
  to {
      transform: rotate(360deg); /* 结束时旋转角度为360度 */
  }
}

/* module3 */
/* module3-header 样式 */
.module3-header {
  border-radius: 0.625rem;
  padding: 0.3125rem 0.9375rem;
  background-color: #E3E2FE;
  width: auto;
}

/* module3-title 样式 */
.module3-title {
  font-size: 3.5rem;
  color: #17012C;
  font-weight: 500;
}

/* module3-grid-container 样式 */
.module3-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.125rem;
}

/* module3-card 样式 */
.module3-card {
  border: 1px solid #DDE0E9;
  border-radius: 1.5rem;
  padding: 2.375rem 3.5rem 3.75rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
}
.module3-card:hover{
  transform: scale(1.1);
  transition-duration: 0.2s;
  box-shadow: #E3E2FE 0px 0px 0.625rem;
  border: 1px solid #fff;

}


/* module3-card-title 样式 */
.module3-card-title {
  margin: 0;
  font-size: 1.5625rem;
  color: #17012C;
  text-align: center;
}

/* module3-card-image 样式 */
.module3-card-image {
  width: 21.25rem;
  height: 16rem;
  margin-top: 3.125rem;
  /* border: 1px dotted #17012C; */
}

/* module3-card-description 样式 */
.module3-card-description {
  margin: 1.25rem 0 0 0;
  font-size: 1rem;
  color: #575555;
  max-width: 21.25rem;
  margin-bottom: 3rem;
  line-height: 1.5rem;
}

/* module3-banner 样式 */
.module3-banner {
  margin-top: 8.125rem;
  position: relative;
}

/* module3-banner-image 样式 */
.module3-banner-image {
  width: 95rem;
  height: 19.75rem;
}

/* module3-banner-content 样式 */
.module3-banner-content {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 3rem;
  width: 100%;
  height: 100%;
  justify-content: end;
  align-items: center;
  gap: 7rem;
}

/* module3-banner-text-box 样式 */
.module3-banner-text-box {
  width: 35%;
}

/* module3-banner-tag 样式 */
.module3-banner-tag {
  color: #000;
  font-size: 1rem;
  background-color: #ffee00;
  border-radius: 1.5rem;
  padding: 0.625rem 1.25rem;
}

/* module3-banner-title 样式 */
.module3-banner-title {
  font-size: 2.375rem;
  color: #fff;
}

/* module3-banner-side-text 样式 */
.module3-banner-side-text {
  margin-right: 8rem;
  width: 15%;
}

/* module5 */
/* 容器样式 */
.module-container {
  display: block;
}

.flex-container {
  display: flex;
  gap: 2.625rem;
}

.image-section {
  position: relative;
}

.main-image {
  width: 43.4375rem;
  height: 21rem;
  display: block;
}

.tag-section {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  max-width: 18.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 1.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 1.3125rem;
}

.description-section {
  position: absolute;
  bottom: 0;
  padding: 2rem;
}

.description {
  font-size: 2rem;
  color: #fff;
  margin: 0;
}

/* Tab 部分样式 */
.tab-section {
  display: flex;
  gap: 2.625rem;
}

.module {
  position: relative;
}

.module.active {
  /* 激活状态的样式 */
}

.module-title-section {
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.module-title-section  p{
  transform: rotate(-90deg);
  font-size: 1.625rem;
  /* font-weight: bold; */
  width: 18.75rem;
  margin: 0;
  white-space: nowrap;
}

.module-content {
  display: block;
}

.content-images {
  display: flex;
  justify-content: end;
  gap: 0.3125rem;
  padding: 1.25rem;
}

.content-image {
  width: 3rem;
  height: 3rem;
  display: block;
  border-radius: 0.5rem;
}

.content-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.25rem;
  gap: 0.5rem;
  text-align: start;
}

.content-text .title {
  margin: 0;
  font-size: 1.625rem;
}

.content-text .text {
  margin: 0;
  font-size: 1rem;
}


/* --- */
.container-logo {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: white;
  margin-bottom: 20px;
}

.scroll-box {
  display: flex;
  transition: transform 1s linear;
  width: calc(304px * 20);
  /* 让两组图片拼接 */
}

.row1 {
  display: flex;
  width: 50%;
}
.row2 {
  display: flex;
  width: 50%;
}

.row1 img {
  width: auto;
  height: 3.75rem;
  padding: 0.625rem;
  margin-right: 3.125rem;
}

.row2 img {
  width: auto;
  height: 3.75rem;
  padding: 0.625rem;
  margin-right: 3.125rem;
}


/* 分页点（pagination dots）改为白色 */
.swiper-pagination-bullet {
  background: white !important; /* 默认分页点颜色 */
  opacity: 0.5; /* 非激活状态透明度 */
}

.swiper-pagination-bullet-active {
  background: #C6F806 !important; /* 当前激活的分页点颜色 */
  opacity: 1; /* 激活状态不透明 */
}