/* 导航菜单样式 */
.navigation-menu {
  position: sticky;
  top: 0;
  background: #F6F6F6;
  z-index: 1000;
  padding: 20px 0;
}

.navigation-menu .nav {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation-menu .nav-item {
  margin: 0 10px;
}

.navigation-menu .nav-link {
  color: #29293A;
  font-weight: 500;
  /* padding: 10px 20px; */
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navigation-menu .nav-link:hover {
  /* background: #f8f9fa; */
  color: #1472ff;
  text-decoration: none;
}

.navigation-menu .nav-link.active {
  color: #1472ff;
}

.content-section {
  padding: 50px 0;
  min-height: 500px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background: #F6F6F6;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #29293A;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.section-content1 {
  .about-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: #3666D4;
  }

  .about-content {
    font-weight: 300;
    font-size: 0.875rem;
    color: #29293A;
  }

  .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .number-content {
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .number {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 54px;
    color: #29293A;
  }

  .number-unit {
    font-weight: 700;
    font-size: 40px;
    color: #29293A;
    margin-bottom: 5px;
  }

   .number-content::after {
    content: "2";
    position: absolute;
    top: 10px;
    right: 40px;
    color: #29293A;
    font-size: 27px;
    font-weight: bold;
  } 

  .number-content3::after {
    right: 60px;
  }

  .number-content4::after {
    right: 80px;
  }
}

.section-content2 {
  .text-center {
    margin-top: 80px;
    position: relative;

    img {
      width: 100%;
      height: auto;
    }

    .content-list {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;

      .content-item {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding: 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;

        .content-title {
          font-size: 18px;
          font-weight: 600;
          color: #fff;
          margin-bottom: 10px;
          transition: transform 0.3s ease;
          position: absolute;
          bottom: 30px;
          left: 50%;
          transform: translateX(-50%);
        }

        .content-description {
          font-size: 14px;
          color: #666;
          opacity: 0;
          transition: opacity 0.3s ease;
          position: absolute;
          bottom: 80px;
          left: 50%;
          transform: translateX(-50%);
          width: 80%;
        }

        &:hover {
          background-color: rgba(20, 144, 255, 0.85);

          .content-description {
            opacity: 1;
            color: white;
          }
        }
      }
    }
  }
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.navigation-menu .nav-item {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navigation-menu .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 38px;
  background-color: #ddd;
}

.navigation-menu .nav-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navigation-menu .nav-link:hover {
  /* background-color: #1472ff; */
  color: #1472ff;
}

.navigation-menu .nav-link.active {
  /* background-color: #1472ff; */
  color: #1472ff;
}

@media (max-width: 768px) {
  .navigation-menu .nav-item {
    width: 150px;
    height: 50px;
  }

  .navigation-menu .nav-item:not(:last-child)::after {
    height: 30px;
  }

  .navigation-menu .nav-link {
    font-size: 14px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .section-content2 .text-center .content-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .section-content2 .text-center .content-list .content-item .content-title {
    font-size: 16px;
    bottom: 20px;
  }

  .section-content2 .text-center .content-list .content-item .content-description {
    font-size: 12px;
    bottom: 60px;
  }
}

@media (max-width: 576px) {
  .section-content2 .text-center .content-list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }

  .section-content2 .text-center .content-list .content-item {
    padding: 15px;
  }

  .section-content2 .text-center .content-list .content-item .content-title {
    font-size: 14px;
    bottom: 15px;
  }

  .section-content2 .text-center .content-list .content-item .content-description {
    font-size: 11px;
    bottom: 50px;
  }
}

/* 企业价值观横向排列样式 */
.section-content3 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content3.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-content3-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.section-content3-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  /* background: #f8f9fa; */
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.section-content3.animate .section-content3-item {
  opacity: 1;
  transform: translateY(0);
}

.section-content3.animate .section-content3-item:nth-child(1) { transition-delay: 0.1s; }
.section-content3.animate .section-content3-item:nth-child(2) { transition-delay: 0.2s; }
.section-content3.animate .section-content3-item:nth-child(3) { transition-delay: 0.3s; }
.section-content3.animate .section-content3-item:nth-child(4) { transition-delay: 0.4s; }
.section-content3.animate .section-content3-item:nth-child(5) { transition-delay: 0.5s; }

/* .section-content3-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    } */

.section-content3-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.section-content3-item-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-content3-item-content {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .section-content3-list {
    justify-content: center;
  }

  .section-content3-item {
    min-width: 250px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .section-content3-list {
    flex-direction: column;
    align-items: center;
  }

  .section-content3-item {
    width: 100%;
    max-width: 350px;
    margin-bottom: 20px;
  }
}

/* section-content6 左右布局样式 */
.section-content6 {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 300px;
}

.section-content6 img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

/* 团队列表一排显示5个成员样式 */
.section-content6-team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.section-content6-team-item {
  flex: 0 0 calc(20% - 16px); /* 16px 是考虑间距的调整值 */
  text-align: center;
  margin-bottom: 40px;
}

.section-content6-team-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.section-content6-team-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.section-content6-team-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .section-content6-team-item {
    flex: 0 0 calc(25% - 15px); /* 调整为4列 */
  }
}

@media (max-width: 992px) {
  .section-content6-team-item {
    flex: 0 0 calc(33.333% - 13px); /* 调整为3列 */
  }
}

@media (max-width: 768px) {
  .section-content6-team-item {
    flex: 0 0 calc(50% - 10px); /* 调整为2列 */
  }
}

@media (max-width: 576px) {
  .section-content6-team-item {
    flex: 0 0 100%; /* 调整为1列 */
  }
  
  .section-content6-team-item img {
    width: 120px;
    height: 120px;
  }
}

.section-content6-title {
  font-size: 1.5rem;
  color: #29293A;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-content6-category {
  margin-top: 50px;
}

.section-content6-content {
  flex: 1;
  padding: 40px 80px 40px 40px;
}

.section-content6-desc {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

.section-content6-desc:last-child {
  font-size: 1rem;
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .section-content6 {
    flex-direction: column;
    gap: 30px;
  }

  .section-content6 img {
    width: 100%;
    max-width: 500px;
  }

  .section-content6-content {
    width: 100%;
    padding: 0;
  }

  .section-content6-desc {
    font-size: 15px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .section-content6 {
    padding: 20px 0;
  }

  .section-content6 img {
    max-width: 100%;
  }

  .section-content6-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 标签页横向布局样式 */
.section-content4-desc {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #29293A;
}

.section-content4-tab {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 100px;
  border-bottom: 1px solid #E5E5EA;
}

.section-content4-tab-item {
  /* padding: 12px 24px;
      background: #f8f9fa;
      border: 2px solid #e9ecef;
      border-radius: 8px; */
  padding-bottom: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #666;
  user-select: none;
}

.section-content4-tab-item:hover {
  /* background: #e9ecef;
      transform: translateY(-2px); */
}

.section-content4-tab-item.active {
  border-bottom: 4px solid #1472ff;
  /* background: #007bff;
      color: white;
      border-color: #007bff;
      box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3); */
}

/* 内容列表样式 */
.section-content4-list {
  position: relative;
}

.section-content4-item {
  display: none;
  /* align-items: center;
      gap: 30px;
      padding: 20px; */
  background: #fff;
  /* border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  animation: fadeIn 0.5s ease-in-out;
}

/* 滚动显示动画 */
.section-content4 {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.section-content4.animate {
  opacity: 1;
}

/* 图片和文字从两边滑入动画 */
.section-content4-item img {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content4-item-content {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content4.animate .section-content4-item.active img {
  opacity: 1;
  transform: translateX(0);
}

.section-content4.animate .section-content4-item.active .section-content4-item-content {
  opacity: 1;
  transform: translateX(0);
}

.section-content4-item.active {
  display: flex;
}

.section-content4-item img {
  width: 50%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.section-content4-item-content {
  flex: 1;
  background-color: #F6F6F6;
  padding-top: 50px;
  padding-left: 80px;
  padding-right: 80px;
}

.section-content4-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.section-content4-item-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .section-content4-tab {
    gap: 10px;
  }

  .section-content4-tab-item {
    padding: 10px 16px;
    font-size: 14px;
  }

  .section-content4-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .section-content4-item img {
    width: 80px;
    height: 80px;
  }

  .section-content4-item-title {
    font-size: 18px;
  }

  .section-content4-item-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-content4-tab {
    flex-direction: column;
    align-items: center;
  }

  .section-content4-tab-item {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
}

/* 认证许可模块动画 */
.section-content5 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content5.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-content5-desc {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #29293A;
}

/* CEO寄语模块动画 */
.section-content6 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-content6.animate {
  opacity: 1;
  transform: translateY(0);
}

/* CEO寄语图片和文字从两边滑入 */
.section-content6-img {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease 0.2s;
}

.section-content6-content {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease 0.4s;
}

.section-content6.animate .section-content6-img {
  opacity: 1;
  transform: translateX(0);
}

.section-content6.animate .section-content6-content {
  opacity: 1;
  transform: translateX(0);
}

.section-content5-content {
  margin-bottom: 50px;
  font-size: 0.875rem;
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

/* 团队部分样式 - 无动画 */
.section-content6-team {
  opacity: 1;
  transform: translateY(0);
}

/* 团队成员样式 - 无动画 */
.section-content6-team-item {
  opacity: 1;
  transform: translateY(0);
}

/* 为每个团队成员添加不同的延迟 */
.section-content6-team.animate .section-content6-team-item:nth-child(1) {
  transition-delay: 0.1s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(2) {
  transition-delay: 0.2s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(3) {
  transition-delay: 0.3s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(4) {
  transition-delay: 0.4s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(5) {
  transition-delay: 0.5s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(6) {
  transition-delay: 0.6s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(7) {
  transition-delay: 0.7s;
}

.section-content6-team.animate .section-content6-team-item:nth-child(8) {
  transition-delay: 0.8s;
}