/* 轮播图样式 */
.media {
  position: relative;
  /* height: 10.8rem; */
  background: #000;
}
.media .swiper, .media .swiper-slide {
  width: 100%;
  height: 100%;
}
.media .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.media .swiper-slide .video {
  width: 100%;
  /* height: 100vh; */
  /* aspect-ratio: 1280 / 720; */
  object-fit: cover;
}

/* 视频加载动画容器 */
.video-loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.video-loading-container.loaded {
  opacity: 0;
  pointer-events: none;
}

/* 视频加载动画 - 旋转圆圈 */
.video-loading-spinner {
  width: 0.5rem;
  height: 0.5rem;
  border: 0.04rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #0096FF;
  border-radius: 50%;
  animation: video-spinner-rotate 1s linear infinite;
}

@keyframes video-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .video-loading-spinner {
    width: 0.6rem;
    height: 0.6rem;
    border-width: 0.05rem;
  }
}
.swiper-button-prev.custom, .swiper-button-next.custom {
  color: #fff;
}
.swiper-button-prev.custom:after, .swiper-button-next.custom:after {
  font-size: 0.4rem;
}
.swiper-button-prev.custom {
  left: 0.71rem;
}
.swiper-button-next.custom {
  right: 0.71rem;
}
.swiper-pagination.custom {
  width: calc(100% - 4.08rem);
  right: 4.08rem;
  bottom: 0.32rem;
  text-align: right;
}
.swiper-pagination.custom .swiper-pagination-bullet {
  width: 0.14rem;
  height: 0.14rem;
  background: #FBFBF7;
  box-shadow: 0rem 0.01rem 0.08rem 0rem rgba(0,0,0,0.25);
  border-radius: 50%;
  opacity: 1;
}
.swiper-pagination.custom .swiper-pagination-bullet-active {
  background: #0096FF;
}
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  z-index: 10;
}
.media-overlay-two {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 1rem;
  background: linear-gradient( 180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 100%);
  z-index: 10;
}

.banner-action {
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 0.4rem;
  transform: translateX(-50%);
  z-index: 1;
  /* cursor: pointer; */
  animation: banner-action-bounce 1.5s ease-in-out infinite;
}

/* banner-action 上下浮动动画 */
@keyframes banner-action-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.15rem);
  }
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .media-overlay {
    height: 1.6rem;
    background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0.6) 52.63%, rgba(255,255,255,0) 100%);
  }
  .media-overlay-two {
    display: none;
  }
  .swiper-button-prev.custom, .swiper-button-next.custom {
    display: none;
  }
  .banner-action {
    display: none;
  }
  .swiper-pagination.custom {
    width: calc(100% - 0.63rem);
    right: 0.63rem;
    bottom: 0.1rem;
    text-align: right;
    display: flex;
    align-items: flex-end;
    justify-content: right;
  }
  .swiper-pagination.custom .swiper-pagination-bullet {
    width: 0.18rem;
    height: 0.18rem;
    background: #FBFBF7;
    box-shadow: 0rem 0.03rem 0.1rem 0rem rgba(0,0,0,0.25);
  }
  .swiper-pagination.custom .swiper-pagination-bullet-active {
    background: #0096FF;
  }
}

/* 统计区域样式 */
.statistics-section {
  padding: 1rem 0;
  background: #F4F8FA;
}

/* 企业介绍 */
.statistics-intro {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.24rem;
  text-align: justify;
  margin-bottom: 0.9rem;
}

/* 主要数据统计 */
.statistics-main {
  display: flex;
  gap: 0.24rem;
  margin-bottom: 0.16rem;
}

.stat-card-main {
  flex: 1;
  height: 2.34rem;
  padding: 0.32rem;
  box-sizing: border-box;
}
.stat-card-main .stat-label {
  margin-top: 0.62rem;
  width: 2.2rem;
  font-weight: 400;
  font-size: 0.2rem;
  color: #FFFFFF;
  line-height: 0.28rem;
  text-align: left;
  transition: all 0.3s ease;
}

.stat-card {
  width: 2.9rem;
  height: 2.34rem;
  padding: 0.32rem;
  background: #FFFFFF;
  box-sizing: border-box;
  transition: all 0.3s ease;
  /* cursor: pointer; */
}

/* PC端统计卡片悬停效果 */
@media screen and (min-width: 768px) {
  .stat-card.stat-card-blue:hover {
    background: #FFFFFF;
  }
  .stat-card.stat-card-blue:hover .stat-number,
  .stat-card.stat-card-blue:hover .stat-unit {
    color: #3066F8;
  }
  .stat-card.stat-card-blue:hover .stat-label {
    color: #666;
  }
  .stat-card:hover {
    background: #0096FF;
  }
  
  .stat-card:hover .stat-number,
  .stat-card:hover .stat-unit {
    color: #FFFFFF;
  }
  
  .stat-card:hover .stat-desc {
    color: #FFFFFF;
  }

  .competition-item:hover {
    background: #0096FF;
  }

  .competition-item:hover .competition-number,
  .competition-item:hover .competition-unit,
  .competition-item:hover .competition-label,
  .competition-item:hover .competition-dots {
    color: #FFFFFF;
  }
}

.stat-card-blue {
  background: linear-gradient( 45deg, #3066F8 0%, #0096FF 100%);
}

.stat-number {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  font-weight: 800;
  font-size: 0.8rem;
  line-height: 0.8rem;
  color: #0096FF;
  text-align: left;
  transition: all 0.3s ease;
}

.stat-card-blue .stat-number {
  color: #fff;
}

.stat-unit {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  font-weight: 800;
  font-size: 0.36rem;
  line-height: 0.36rem;
  color: #0096FF;
  text-align: left;
  font-weight: 400;
  margin-left: 0.16rem;
  transition: all 0.3s ease;
}

.stat-card .stat-desc {
  margin-top: 0.34rem;
  font-weight: 400;
  font-size: 0.2rem;
  color: #666666;
  line-height: 0.28rem;
  text-align: left;
}

.stat-card-blue .stat-label {
  color: #fff;
}

.stat-card-blue .stat-unit {
  color: #fff;
}

/* 竞赛成绩统计 */
.statistics-competition {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.16rem;
}

.competition-item {
  padding: 0.1rem 0.24rem;
  background: rgba(0, 150, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.competition-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 150, 255, 0.05);
}

.competition-number {
  font-size: 0.42rem;
  font-weight: 800;
  color: #0096FF;
  margin-bottom: 0.16rem;
  text-align: left;
}
.competition-number .count-number {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
}

.competition-unit {
  font-size: 0.2rem;
  line-height: 0.42rem;
  font-weight: 400;
  margin-left: 0.02rem;
}

.competition-label {
  margin-top: 0.16rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  line-height: 0.2rem;
  text-align: left;
}

.competition-dots {
  font-size: 0.4rem;
  color: #0096FF;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

/* 数据截止时间 */
.statistics-footer {
  font-weight: 400;
  font-size: 0.12rem;
  color: #666666;
  line-height: 0.17rem;
  text-align: right;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .statistics-section {
    padding: 0.96rem 0.33rem 0.49rem;
  }
  
  .statistics-intro {
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    line-height: 0.4rem;
    text-align: justify;
    margin-bottom: 1rem;
  }

  .statistics-main {
    display: flex;
    flex-wrap: wrap;
    gap: 0.24rem;
    margin-bottom: 0.24rem;
  }

  .stat-card.stat-card-main {
    width: 100% !important;
    height: 2.92rem;
    padding: 0.4rem;
    box-sizing: border-box;
  }
  .stat-card-main .stat-label {
    margin-top: 0.79rem;
    width: 100%;
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.33rem;
    text-align: left;
  }
  .stat-card-main .stat-number {
    font-family: PingFangSC, PingFang SC;
    display: flex;
    align-items: center;
    font-size: 0.62rem;
  }
  .stat-card-main .stat-number .count-number {
    font-size: 1rem;
    margin-right: 0.1rem;
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  }

  .stat-card-main .stat-unit {
    align-self: flex-end;
    margin-bottom: 0.1rem;
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-size: 0.45rem;
  }

  .stat-card {
    width: 3.3rem;
    height: 2.54rem;
    padding: 0.4rem;
    background: #FFFFFF;
    box-sizing: border-box;
  }
  
  .stat-card-blue {
    background: linear-gradient( 45deg, #3066F8 0%, #0096FF 100%);
  }

  .stat-card:not(.stat-card-main) .stat-number .count-number {
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-weight: 800;
    font-size: 0.86rem;
    color: #0096FF;
    line-height: 0.86rem;
    text-align: left;
  }

  .stat-card-blue .stat-number {
    color: #fff;
  }

  .stat-card:not(.stat-card-main) .stat-unit {
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-weight: 800;
    font-size: 0.45rem;
    line-height: 0.45rem;
    color: #0096FF;
    text-align: left;
    font-weight: 400;
    margin-left: 0.1rem;
  }

  .stat-card:not(.stat-card-main) .stat-desc {
    margin-top: 0.22rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 0.24rem;
    color: #666666;
    line-height: 0.33rem;
    text-align: left;
  }

  .stat-card-blue .stat-label {
    color: #fff;
  }

  .stat-card-blue .stat-unit {
    color: #fff;
  }
  
  /* 竞赛成绩统计 */
  .statistics-competition {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.24rem;
    margin-bottom: 0.24rem;
  }

  .competition-item {
    padding: 0.2rem 0.2rem;
    background: rgba(0, 150, 255, 0.05);
    text-align: center;
  }

  .competition-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 150, 255, 0.05);
  }

  .competition-number {
    font-size: 0.42rem;
    font-weight: 800;
    color: #0096FF;
    margin-bottom: 0.16rem;
    text-align: left;
  }
  .competition-number .count-number {
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-weight: 800;
    font-size: 0.52rem;
    color: #0096FF;
    line-height: 0.52rem;
    text-align: left;
  }

  .competition-unit {
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-weight: 800;
    font-size: 0.24rem;
    color: #0096FF;
    line-height: 0.28rem;
    text-align: left;
  }

  .competition-label {
    margin-top: 0.14rem;
    font-weight: 400;
    font-size: 0.2rem;
    color: #666666;
    line-height: 0.28rem;
    text-align: left;
  }

  .competition-dots {
    font-size: 0.46rem;
    color: #0096FF;
    font-weight: 700;
    letter-spacing: 0.04rem;
  }

  /* 数据截止时间 */
  .statistics-footer {
    margin-top: 0.24rem;
    font-weight: 400;
    font-size: 0.2rem;
    color: #666666;
    line-height: 0.28rem;
    text-align: right;
  }
}

/* 品牌介绍区域 */
.brand-section {
  padding: 1rem 0;
  background: #fff;
}

/* 品牌介绍文字 */
.brand-intro-text {
  margin-bottom: 0.9rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.24rem;
  text-align: justify;
}

/* 品牌卡片 */
.brand-item {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 0.56rem;
  background: #fff;
  overflow: hidden;
}
.brand-item-right {
  justify-content: flex-end;
}

.brand-item:last-child {
  margin-bottom: 0;
}

.brand-image {
  width: 5.64rem;
  height: 2.9rem;
}

.brand-image img {
  width: 100%;
  height: 100%;
  display: block;
  background: #DDDFE2;
  object-fit: cover;
}

.brand-content {
  position: absolute;
  left: 5.32rem;
  top: 0.32rem;
  width: 6.68rem;
  height: 2.26rem;
  border: 0.02rem solid #0096FF;
  padding: 0.24rem 0.32rem 0 0.64rem;
  background: transparent;
  box-sizing: border-box;
}

.brand-item-right .brand-content {
  left: 0;
  padding: 0.24rem 0.64rem 0 0.32rem;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.24rem;
}

.brand-logo {
  width: 1.51rem;
}

.brand-more {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.14rem;
  color: #999999;
  line-height: 0.2rem;
  text-align: center;
  text-decoration: none;
}

.brand-more img {
  width: 0.06rem;
  display: block;
  margin-left: 0.08rem;
}

.brand-desc {
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
  line-height: 0.24rem;
  text-align: justify;
}

.brand-desc:last-child {
  margin-bottom: 0;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .brand-section {
    padding: 1rem 0;
  }
  
  .brand-section .module-max {
    padding: 0 0.33rem;
  }
  
  .brand-intro-text {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    line-height: 0.4rem;
    text-align: justify;
  }
  
  /* 品牌卡片 */
  .brand-item {
    display: block;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: none;
  }
  .brand-item-right {
    justify-content: center;
  }

  .brand-item:last-child {
    margin-bottom: 0;
  }

  .brand-image {
    width: 6.84rem;
    height: 3.52rem;
  }

  .brand-image img {
    width: 100%;
    height: 100%;
    display: block;
    background: #DDDFE2;
    object-fit: cover;
  }

  .brand-content {
    position: absolute;
    left: 0.24rem;
    top: 3.12rem;
    width: 6.36rem;
    min-height: 4.5rem;
    border: 0.04rem solid #0096FF;
    padding: 0.64rem 0.36rem 0.6rem;
    margin: 0;
    background: transparent;
    box-sizing: border-box;
  }

  .brand-item-right .brand-content {
    left: 0.24rem;
    padding: 0.64rem 0.36rem 0.6rem;
  }

  .brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.24rem;
  }

  .brand-logo {
    width: 2rem;
  }

  .brand-more {
    font-weight: 400;
    font-size: 0.24rem;
    color: #999999;
    line-height: 0.33rem;
    text-align: center;
  }

  .brand-more img {
    width: 0.11rem;
    display: block;
    margin-left: 0.08rem;
  }

  .brand-desc {
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    line-height: 0.4rem;
    text-align: justify;
  }

  .brand-desc:last-child {
    margin-bottom: 0;
  }
}

/* 发展历程区域 */
.history-section {
  padding: 1rem 0;
  background: url('../assets/index/history-bg.jpg') no-repeat center center;
  background-size: cover;
}

.history-container {
  margin: 0 auto;
}

.history-section-title {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  font-weight: 800;
  font-size: 0.48rem;
  color: #FFFFFF;
  line-height: 0.48rem;
  letter-spacing: 0.06rem;
  text-align: center;
  margin-bottom: 0.88rem;
}

.history-swiper {
  position: relative;
  padding-bottom: 1rem;
  overflow: hidden;
}

.history-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history-year .year-img {
  height: 2rem;
  display: block;
}

.history-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.77rem;
  width: calc(100% - 1.8rem);
  margin: 0 auto;
  margin-top: -0.3rem;
}

/* 无图片时内容居中 */
.history-content--no-image {
  justify-content: center;
}

.history-content--no-image .history-text {
  text-align: center;
  max-width: 80%;
}

.history-content--no-image .history-title {
  text-align: center;
}

.history-image {
  width: 4.66rem;
  height: 3rem;
  box-shadow: 0rem 0.15rem 0.35rem 0rem rgba(0,0,0,0.15);
  overflow: hidden;
  flex-shrink: 0;
}

.history-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #DDDFE2;
}

.history-text {
  flex: 1;
  color: #fff;
}

.history-title {
  font-weight: 600;
  font-size: 0.36rem;
  color: #FFFFFF;
  line-height: 0.36rem;
  text-align: left;
  margin-bottom: 0.38rem;
}

.history-desc {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  line-height: 0.3rem;
  text-align: justify;
}

/* 左右箭头 */
.history-prev,
.history-next {
  color: #fff;
}

.history-prev:after,
.history-next:after {
  font-size: 0.4rem;
}

/* 当前年份样式 */
.history-year .year-current {
  filter: brightness(1.2);
}

/* 分页器样式 - 横线条 */
.swiper-pagination.history-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  /* gap: 0.08rem; */
}

.swiper-pagination.history-pagination .swiper-pagination-bullet {
  width: 0.25rem;
  height: 0.07rem;
  background: rgba(216, 216, 216, 0.25);
  border-radius: 0.04rem;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 2px;
}

.swiper-pagination.history-pagination .swiper-pagination-bullet-active {
  background: #D8D8D8;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .history-section {
    padding: 1rem 0 2.3rem;
  }
  
  .history-section-title {
    font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
    font-weight: 800;
    font-size: 0.6rem;
    color: #FFFFFF;
    line-height: 0.6rem;
    text-align: center;
    margin-bottom: 0.55rem;
  }
  .history-swiper {
    padding-bottom: 0;
    overflow: unset;
  }
  
  .history-year .year-img {
    height: 2rem;
  }
  
  .history-content {
    width: calc(100% - 1.6rem);
    flex-direction: column;
    gap: 0.4rem;
    margin-top: -0.5rem;
  }

  /* 移动端无图片时内容居中 */
  .history-content--no-image {
    justify-content: center;
  }

  .history-content--no-image .history-text {
    text-align: center;
    max-width: 100%;
  }

  .history-content--no-image .history-title {
    text-align: center;
  }
  
  .history-image {
    /* width: 100%; */
    width: 5rem;
    height: 3rem;
  }
  
  .history-title {
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 0.36rem;
    color: #FFFFFF;
    line-height: 0.36rem;
    text-align: center;
  }
  
  .history-desc {
    font-weight: 400;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.4rem;
    text-align: justify;
  }
  
  .history-prev,
  .history-next {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.3rem;
  }
  
  .history-prev:after,
  .history-next:after {
    font-size: 0.3rem;
  }

  .swiper-pagination.history-pagination {
    bottom: -1rem;
  }
  
  .history-pagination {
    /* gap: 0.08rem; */
    padding: 0.12rem 0.16rem;
    box-sizing: border-box;
  }
}

/* 企业荣誉区域 */
.honor-section {
  padding: 1rem 0;
  background: url('../assets/index/enterpriseHonor-bg-pc.jpg') no-repeat center center;
  background-size: cover;
}

.honor-container {
  margin: 0 auto;
}

.honor-section-title {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  font-weight: 800;
  font-size: 0.48rem;
  color: #0096FF;
  line-height: 0.48rem;
  letter-spacing: 0.06rem;
  text-align: center;
  margin-bottom: 1rem;
}

.honor-swiper {
  position: relative;
  padding-bottom: 1rem;
}

.honor-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.honor-year {
  width: 6.8rem;
}

.honor-year img {
  width: 100%;
  display: block;
}

.honor-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 1.8rem);
  margin: 0 auto;
  margin-top: -0.3rem;
}

.honor-left {
  flex: 1;
}

.honor-title {
  font-weight: 600;
  font-size: 0.36rem;
  color: #0096FF;
  line-height: 0.36rem;
  text-align: left;
  margin-bottom: 0.38rem;
}

.honor-desc {
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
  line-height: 0.3rem;
  text-align: justify;
}

.honor-right {
  width: 5rem;
}

.honor-right img {
  width: 100%;
  display: block;
}


/* 左右箭头 */
.honor-prev:after,
.honor-next:after {
  color: rgba(193, 193, 193, 0.5);
  font-size: 0.4rem;
}

/* 分页器样式 - 横线条 */
.swiper-pagination.honor-pagination {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.08rem;
  width: 3rem;
}

.swiper-pagination.honor-pagination .swiper-pagination-bullet {
  width: 0.97rem;
  height: 0.07rem;
  background: rgba(216, 216, 216, 0.75);
  border-radius: 0.04rem;
  transition: all 0.3s ease;
}

.swiper-pagination.honor-pagination .swiper-pagination-bullet-active {
  background: #D8D8D8;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .honor-section {
    padding: 1rem 0;
    background: url('../assets/index/enterpriseHonor-bg-mobile.jpg') no-repeat center center;
    background-size: cover;
    min-height: auto;
  }
  
  .honor-section-title {
    font-size: 0.6rem;
    line-height: 0.6rem;
    margin-bottom: 0.17rem;
  }
  
  .honor-year img {
    height: 2rem;
  }

  .honor-swiper {
    padding-bottom: 0;
    overflow: unset;
  }
  
  .honor-content {
    flex-direction: column;
    gap: 0.4rem;
    margin-top: -0.5rem;
  }
  .honor-content-img {
    height: 3rem;
  }
  .honor-content-img img {
    height: 100%;
    display: block;
  }
  .honor-content-text {
    width: 6.14rem;
    margin: 0 auto;
  }
  .honor-content-text .honor-title {
    font-weight: 600;
    font-size: 0.36rem;
    color: #0096FF;
    line-height: 0.36rem;
    text-align: center;
  }
  .honor-content-text .honor-desc {
    font-size: 0.24rem;
    line-height: 0.4rem;
    text-align: justify;
  }

  .honor-prev,
  .honor-next {
    width: 0.4rem;
    height: 0.4rem;
    font-size: 0.3rem;
  }
  
  .honor-prev:after,
  .honor-next:after {
    font-size: 0.3rem;
  }
  .swiper-pagination.honor-pagination {
    bottom: -0.5rem;
  }
}

/* 高管团队区域 */
.management-section {
  padding: 1rem 0;
  background: #F4F8FA;
}

.management-container {
  margin: 0 auto;
}

.management-section-title {
  font-family: SourceHanSerifHeavy, SourceHanSerifHeavy;
  font-weight: 800;
  font-size: 0.48rem;
  color: #0096FF;
  line-height: 0.48rem;
  letter-spacing: 0.06rem;
  text-align: center;
  margin-bottom: 1rem;
}

/* PC端上2下3布局 */
.management-top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.24rem;
  margin-bottom: 0.24rem;
  max-width: calc((100% - 0.24rem) / 3 * 2 + 0.24rem);
  margin-left: auto;
  margin-right: auto;
}

.management-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.24rem;
}

.management-card {
  position: relative;
  background: #fff;
  /* overflow: hidden; */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.management-card:hover {
  /* transform: translateY(-0.04rem); */
  /* box-shadow: 0 0.08rem 0.24rem rgba(0, 0, 0, 0.1); */
}

.management-image {
  width: 100%;
  height: 2.55rem;
  background: #DDDFE2;
  overflow: hidden;
}

.management-image img {
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.management-name {
  position: absolute;
  top: 2.28rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.2rem;
  height: 0.55rem;
  line-height: 0.55rem;
  margin: 0 auto;
  background: linear-gradient( 225deg, #3066F8 0%, #0096FF 100%);
  font-weight: 600;
  font-size: 0.24rem;
  color: #FFFFFF;
  text-align: center;
}

.management-title {
  width: 100%;
  height: 0.94rem;
  background: #FFFFFF;
  font-weight: 600;
  font-size: 0.18rem;
  line-height: 1.2rem;
  color: #333333;
  text-align: center;
}

/* 高管详情弹窗 */
.management-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.management-modal-mask.show {
  opacity: 1;
}

.management-modal {
  position: relative;
  width: 12rem;
  background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%);
  box-shadow: 0rem 0.3rem 0.35rem 0rem rgba(0,0,0,0.2);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.management-modal-mask.show .management-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 0.2rem;
  height: 0.2rem;
  cursor: pointer;
  z-index: 10;
}

.modal-close img {
  width: 100%;
  height: 100%;
  display: block;
}

.modal-content {
  display: flex;
  height: 4.3rem;
}

.modal-left {
  background: url('../assets/index/introduction-bg-pc.jpg') no-repeat center center;
  background-size: cover;
  flex: 1;
  padding: 0.86rem 0.4rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.modal-intro-item {
  display: flex;
  gap: 0.16rem;
}

.modal-intro-icon {
  width: 0.2rem;
  height: 0.16rem;
  flex-shrink: 0;
  margin-top: 0.04rem;
  display: block;
}

.modal-intro-text {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.24rem;
  flex: 1;
}

.modal-right {
  width: 5.36rem;
}

.modal-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* PC端高管悬停tooltip */
.management-tooltip {
  position: absolute;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  pointer-events: none;
}

.management-tooltip.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tooltip-content {
  display: flex;
  width: 12rem;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.95) 100%);
  box-shadow: 0rem 0.2rem 0.3rem 0rem rgba(0,0,0,0.15);
  overflow: hidden;
}

.tooltip-left {
  background: url('../assets/index/introduction-bg-pc.jpg') no-repeat center center;
  background-size: cover;
  flex: 1;
  padding: 0.6rem 0.4rem;
  display: block;
  max-height: 4.3rem;
  overflow-y: scroll;
  box-sizing: border-box;
}

.tooltip-left .modal-intro-item {
  margin-bottom: 0.2rem;
}

.tooltip-left .modal-intro-item:last-child {
  margin-bottom: 0;
}

.tooltip-right {
  /* width: 5.36rem; */
  height: 4.3rem;
}

.tooltip-image {
  /* width: 100%; */
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 移动端适配 */
@media screen and (max-width: 767px) {
  .management-section {
    padding: 1rem 0;
  }
  
  .management-container {
    padding: 0 0.33rem;
  }
  
  .management-section-title {
    font-size: 0.6rem;
    line-height: 0.6rem;
    margin-bottom: 1rem;
  }
  
  /* 移动端 1+2+2 布局 */
  .management-first-row {
    display: flex;
    justify-content: center;
    margin-bottom: 0.24rem;
  }
  
  .management-first-row .management-card {
    width: 100%;
  }

  .management-first-row .management-card .management-name {
    width: 6.36rem;
  }
  .management-first-row .management-card .management-title {
    width: 6.84rem;
  }
  
  .management-second-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.16rem;
    margin-bottom: 0.24rem;
  }
  
  .management-third-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem;
  }
  
  /* 隐藏PC端的行 */
  .management-top-row,
  .management-bottom-row {
    display: none;
  }
  
  .management-image {
    height: 2.55rem;
    background: #DDDFE2;
    text-align: center;
  }

  .management-image img {
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0 auto;
  }
  
  .management-name {
    top: 2.29rem;
    width: 2.82rem;
    height: 0.52rem;
    line-height: 0.52rem;
    background: linear-gradient( 225deg, #3066F8 0%, #0096FF 100%);
    font-weight: 600;
    font-size: 0.28rem;
    color: #FFFFFF;
    text-align: center;
  }
  
  .management-title {
    width: 100%;
    height: 1rem;
    padding-top: 0.52rem;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 0.24rem;
    color: #333333;
    line-height: 0.24rem;
    text-align: center;
    box-sizing: border-box;
  }
  
  /* 移动端弹窗竖屏展示 */
  .management-modal-mask {
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .management-modal-mask.mobile {
    align-items: center;
  }
  
  .management-modal-mask.mobile .management-modal {
    position: relative;
    width: 5.36rem;
    background: #fff;
    box-shadow: 0rem 0.3rem 0.35rem 0rem rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: unset;
  }
  
  .management-modal-mask.mobile.show .management-modal {
    transform: scale(1);
  }
  
  /* 移动端弹窗头部 */
  .management-modal-mask.mobile .modal-header {
    width: 100%;
    height: 4.3rem;
    background: #DDDFE2;
  }
  
  .management-modal-mask.mobile .modal-header-image {
    height: 100%;
    object-fit: cover;
  }
  
  /* 移动端弹窗内容 */
  .management-modal-mask.mobile .modal-body {
    padding: 0.4rem;
    background: #fff;
  }
  
  .management-modal-mask.mobile .modal-intro-item {
    display: flex;
    align-items: flex-start;
    gap: 0.11rem;
    margin-bottom: 0.16rem;
  }
  
  .management-modal-mask.mobile .modal-intro-item:last-child {
    margin-bottom: 0;
  }
  
  .management-modal-mask.mobile .modal-intro-icon {
    width: 0.2rem;
    height: 0.16rem;
    display: block;
    margin-top: 0.14rem;
  }
  
  .management-modal-mask.mobile .modal-intro-text {
    flex: 1;
    font-weight: 400;
    font-size: 0.24rem;
    color: #666666;
    line-height: 0.36rem;
    text-align: justify;
  }
  
  /* 移动端关闭按钮 */
  .management-modal-mask.mobile .modal-close.modal-close-mobile {
    position: absolute;
    top: unset;
    bottom: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.48rem;
    height: 0.48rem;
    cursor: pointer;
  }
  
  .management-modal-mask.mobile .modal-close img {
    width: 100%;
    height: 100%;
    display: block;
  }
}
