/**
 * 首屏banner
 */
.section-banner {
  background-size: cover;
  /* 图片覆盖整个区域，不拉伸变形 */
  background-position: center;
  /* 居中裁剪 */
  background-repeat: no-repeat;
  /* 定义波纹动画的关键帧 */
}
.section-banner .fp-overflow {
  height: 100%;
}
.section-banner .section-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.section-banner .section-wrap .left {
  flex: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner .section-wrap .left .section-banner-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-banner .section-wrap .left h3 {
  font-size: 56px;
}
.section-banner .section-wrap .left .section-banner-slogan {
  display: flex;
  align-items: start;
  gap: 20px;
  font-size: 72px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.section-banner .section-wrap .left .section-banner-slogan span {
  color: var(--color-brand);
}
.section-banner .section-wrap .right {
  flex: 1;
  height: 100%;
  margin-left: 20px;
  background-size: contain;
}
.section-banner .section-wrap .right .earth-wrap {
  height: 100%;
}
.section-banner .section-wrap .right .earth {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.section-banner .section-wrap .right .earth .earth-bg {
  width: 100%;
  height: 100%;
  background: url("/images/img/earth-ring.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: bg-rotateLoop 30s linear infinite;
}
.section-banner .section-wrap .right .earth .earth-img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  position: relative;
}
.section-banner .section-wrap .right .earth .earth-img > img {
  width: 100%;
  height: 100%;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point {
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background-color: var(--color-brand);
  border: 2px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  border-radius: 50%;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point:before {
  content: "";
  /* 必须有 content 才能显示伪元素 */
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--color-brand);
  animation: dot-animation 2s infinite;
  /* 启动动画，持续2秒，无限循环 */
  pointer-events: none;
  /* 防止波纹影响鼠标交互 */
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -88px;
  padding: 6px;
  background-color: var(--color-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  margin-right: 10px;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info .dot-info-content {
  flex: 1;
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info .dot-info-content .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info .dot-info-content .desc {
  white-space: nowrap;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point .dot-info::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 1;
  /* 设置边框宽度，决定三角形的大小 */
  border-left: 10px solid transparent;
  /* 左边框为透明 */
  border-right: 10px solid transparent;
  /* 右边框为透明 */
  border-top: 14px solid #fff;
  /* 顶边框为黑色，形成向下的尖角 */
  /* 注意：底边框没有设置，或者默认为透明 */
}
.section-banner .section-wrap .right .earth .earth-img .dot .dot-center-point:hover .dot-info {
  display: flex;
}
@keyframes dot-animation {
  from {
    /* 动画开始状态 */
    width: 0;
    height: 0;
    opacity: 1;
  }
  to {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}
@keyframes bg-rotateLoop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circleRun {
  to {
    stroke-dashoffset: 0;
  }
}
.section-banner .rotate-circle circle {
  animation: circleRun 8s linear infinite;
}
/**
 * 介绍
 */
.section-introduction {
  background-color: #265ac7;
}
.section-introduction .fp-overflow {
  height: 100%;
}
.section-introduction .section-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  background-image: url("../images/img/index-introduction-bg.png");
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}
.section-introduction .introduction-content {
  flex: 1;
  box-sizing: border-box;
  color: var(--color-white);
}
.section-introduction .introduction-content .title {
  font-size: 48px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.section-introduction .introduction-content .desc {
  max-width: 50%;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 28px;
}
.section-introduction .introduction-content .data {
  max-width: 50%;
  display: flex;
  margin-bottom: 40px;
  gap: 20px;
}
.section-introduction .introduction-content .data .item {
  flex: 1;
  font-size: 18px;
}
.section-introduction .introduction-content .data .num {
  font-size: 56px;
  font-weight: 700;
}
.section-introduction .introduction-content .data .num span {
  font-size: 24px;
}
.section-services {
  background-color: #f5f5f5;
}
.section-services .fp-overflow {
  height: 100%;
}
.section-services .section-wrap {
  height: 100%;
  position: relative;
}
.section-services .services-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.section-services .services-bg .item {
  float: left;
  width: 12.5%;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: end;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.section-services .services-bg .item .bg {
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-services .services-bg .item:nth-child(1) {
  width: 50%;
}
.section-services .services-bg .item:nth-child(1) .bg {
  background-size: cover;
  background-position-x: 0;
}
.section-services .services-bg .item:nth-child(2) .bg {
  background-position-x: 62.5%;
}
.section-services .services-bg .item:nth-child(3) .bg {
  background-position-x: 75%;
}
.section-services .services-bg .item:nth-child(4) .bg {
  background-position-x: 87.5%;
}
.section-services .services-bg .item:nth-child(5) .bg {
  background-position-x: 100%;
}
.section-services .services-bg .item.active {
  width: 100%;
  animation: bgZoomIn 5s forwards;
}
.section-services .services-bg .item.hidden {
  width: 0%;
}
@keyframes bgZoomIn {
  from {
    transform: scale(1);
    /* 原始大小 */
  }
  to {
    transform: scale(1.1);
    /* 放大到 1.5 倍 */
  }
}
.section-services .services-content {
  overflow: hidden;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.section-services .services-content .item {
  float: left;
  width: 12.5%;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: end;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.section-services .services-content .item:first-child {
  width: 50%;
  align-items: center;
}
.section-services .services-content .item:first-child .item-content .title {
  font-size: 48px;
  font-weight: 700;
}
.section-services .services-content .item:first-child .item-content .desc {
  display: block;
}
.section-services .services-content .item:first-child .item-content .more {
  display: block;
}
.section-services .services-content .item:nth-child(2) .bg {
  background-position-x: 62.5%;
}
.section-services .services-content .item:nth-child(3) .bg {
  background-position-x: 75%;
}
.section-services .services-content .item:nth-child(4) .bg {
  background-position-x: 87.5%;
}
.section-services .services-content .item:nth-child(5) .bg {
  background-position-x: 100%;
}
.section-services .services-content .item.active {
  opacity: 1;
}
.section-services .services-content .item.hidden {
  opacity: 0;
  visibility: hidden;
}
.section-services .services-content .item-content {
  position: relative;
  padding: 20px;
  z-index: 10;
}
.section-services .services-content .item-content .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}
.section-services .services-content .item-content .icon img {
  width: 100%;
  height: 100%;
}
.section-services .services-content .item-content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.section-services .services-content .item-content .desc {
  display: none;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 40px;
}
.section-services .services-content .item-content .more .arrow {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.section-cases {
  background-size: cover;
  background-position: center;
  background-image: url("../images/img/index-cases-bg.png");
  /* 处理循环模式下的 duplicate slides */
}
.section-cases .fp-overflow {
  height: 100%;
}
.section-cases .section-wrap {
  height: 100%;
}
.section-cases .cases-content {
  height: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-cases .left {
  flex: 1;
  max-width: 32%;
  overflow: hidden;
}
.section-cases .left .title {
  font-size: 48px;
  color: var(--color-white);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-cases .left .desc {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 40px;
  color: var(--color-text-secondary);
}
.section-cases .left .more {
  margin-bottom: 40px;
}
.section-cases .left .pointer {
  display: flex;
  gap: 30px;
}
.section-cases .right {
  flex: 1;
  max-width: 68%;
  overflow: hidden;
}
.section-cases .case-item {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  box-sizing: border-box;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}
.section-cases .case-item .text {
  padding: 10%;
}
.section-cases .case-item .text .title {
  font-size: 24px;
  line-height: 24px;
  color: var(--color-text-primary);
  font-weight: 700;
  transition: color 0.3s ease-in-out;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-cases .case-item .text .tag {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-text-secondary);
  background-image: url("../images/icon/square-red.png");
  background-size: 10px 10px;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 20px;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}
.section-cases .case-item .text .data {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-secondary);
  transition: color 0.3s ease-in-out;
}
.section-cases .case-item .text .data > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-cases .case-item:hover {
  background-color: var(--color-brand);
}
.section-cases .case-item:hover .text .title {
  color: var(--color-white);
}
.section-cases .case-item:hover .text .tag {
  color: var(--color-white);
  background-image: url("../images/icon/square-white.png");
}
.section-cases .case-item:hover .text .data {
  color: var(--color-white);
}
.section-cases .swiper-slide {
  transform: scale(0.8);
  /* 默认缩小 */
  transform-origin: bottom left;
  transition: transform 0.3s ease-in-out;
}
.section-cases .swiper-slide-active,
.section-cases .swiper-slide-next,
.section-cases .swiper-slide-duplicate-active,
.section-cases .swiper-slide-duplicate-next {
  transform: scale(1);
}
.section-honor {
  background-size: cover;
  background-position: center;
  background-image: url("../images/img/index-honor-bg.jpg");
}
.section-honor .fp-overflow {
  height: 100%;
}
.section-honor .section-wrap {
  height: 100%;
}
.section-honor .honor-content {
  height: 100%;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.section-honor .left {
  flex: 1;
  max-width: 30%;
  overflow: hidden;
}
.section-honor .left .title {
  font-size: 48px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 20px;
}
.section-honor .left .desc {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 40px;
  color: var(--color-white);
}
.section-honor .left .data {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.section-honor .left .data .item {
  width: calc(50% - 5px);
  flex: 1;
  max-width: 50%;
  min-width: calc(50% - 5px);
  position: relative;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
  font-size: 16px;
  border-radius: 10px;
}
.section-honor .left .data .item .item-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.section-honor .left .data .item:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
}
.section-honor .left .data .item:hover,
.section-honor .left .data .item.active {
  background: rgba(0, 0, 0, 0.2);
}
.section-honor .right {
  flex: 1;
  margin-left: 40px;
  max-width: 70%;
  height: auto;
  overflow: hidden;
  display: flex;
  position: relative;
  align-self: center;
}
.section-honor .right .preview {
  flex: 1;
  position: relative;
  margin-right: 30px;
}
.section-honor .right .preview::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 134%;
}
.section-honor .right .preview img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.section-honor .right .list {
  flex: 1;
  width: 54%;
  min-width: 54%;
  display: flex;
  height: auto;
  align-items: flex-end;
}
.section-honor .right .list .honor-wrap{
  width: 100%;
  display: none;
  height: auto;
  gap: 20px;
  align-items: flex-end;
}
.section-honor .right .list .honor-wrap.active{
    display: flex;
}
.section-honor .right .list .item {
  position: relative;
  width: 25%;
}
.section-honor .right .list .item::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 134%;
}
.section-honor .right .list .item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.section-honor .right .preview-info {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  padding: 20px;
}
.section-honor .right .preview-info .label {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.section-honor .right .preview-info .desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
  opacity: 0.8;
}
.section-news {
  background-size: cover;
  background-position: center;
  background-image: url("../images/img/index-news-bg.jpg");
  background-repeat: no-repeat;
}
.section-news .fp-overflow {
  height: 100%;
}
.section-news .section-wrap {
  height: 100%;
}
.section-news .news-content {
  height: 100%;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.section-news .title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}
.section-news .news-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.section-news .news-wrap .arrow {
  flex-shrink: 0;
}
.section-news .news-wrap .swiper {
  flex: 1;
  overflow: hidden;
  margin: 0 20px;
}
.section-news .new-item {
  cursor: pointer;
}
.section-news .new-item .img-item img {
  transition: transform 0.3s ease-in-out;
}
.section-news .new-item .date {
  margin-bottom: 20px;
}
.section-news .new-item .date .month {
  font-size: 24px;
  line-height: 24px;
  color: var(--color-text-secondary);
}
.section-news .new-item .date .day {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.section-news .new-item .text {
  padding: 20px 0;
}
.section-news .new-item .text .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .new-item .text .desc {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .new-item:hover .img-item img {
  transform: scale(1.1);
}
.section-news .new-item:hover .text .name {
  color: var(--color-brand);
}
.fullpage-menu {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.fullpage-menu .fullpage-menu-item {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.fullpage-menu .fullpage-menu-item .dot {
  width: 12px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fullpage-menu .fullpage-menu-item .dot::after {
  content: "";
  width: 4px;
  height: 4px;
  display: block;
  background-color: var(--color-text-primary);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.fullpage-menu .fullpage-menu-item .menu-name {
  display: none;
  color: var(--color-text-primary);
}
.fullpage-menu .fullpage-menu-item.active .dot::after {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid var(--color-text-primary);
}
.fullpage-menu .fullpage-menu-item.active .menu-name {
  display: block;
}
.fullpage-menu.fullpage-menu-white .fullpage-menu-item .dot::after {
  background: var(--color-white);
}
.fullpage-menu.fullpage-menu-white .fullpage-menu-item .menu-name {
  color: var(--color-white);
}
.fullpage-menu.fullpage-menu-white .fullpage-menu-item.active .dot::after {
  background: transparent;
  border: 1px solid var(--color-white);
}
@media (max-width: 1670px) {
  .section-banner .section-wrap .left h3 {
    font-size: 48px;
  }
  .section-banner .section-wrap .left .section-banner-slogan {
    font-size: 60px;
  }
}
@media (max-width: 1440px) {
  .section-banner .section-wrap .left h3 {
    font-size: 36px;
  }
  .section-banner .section-wrap .left .section-banner-slogan {
    font-size: 40px;
  }
  .section-banner .section-wrap .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-banner .section-wrap .right .earth-wrap {
    height: 80%;
  }
}
@media (max-width: 1200px) {
  .section-banner .section-wrap .left .section-banner-text {
    gap: 10px;
  }
  .section-banner .section-wrap .left h3 {
    font-size: 28px;
  }
  .section-banner .section-wrap .left .section-banner-slogan {
    font-size: 36px;
  }
  .section-banner .section-wrap .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-banner .section-wrap .right .earth-wrap {
    height: 70%;
  }
  .section-introduction .section-wrap {
    background-size: auto 80%;
  }
  .section-introduction .introduction-content .title {
    font-size: 38px;
  }
  .section-introduction .introduction-content .data .num {
    font-size: 42px;
  }
  .section-introduction .introduction-content .data .label {
    font-size: 16px;
  }
  .section-services .services-content .item .item-content {
    padding: 20px 0px;
  }
  .section-services .services-content .item:first-child .item-content {
    padding: 40px;
  }
  .section-services .services-content .item:first-child .item-content .title {
    font-size: 38px;
  }
  .section-services .services-content .item-content .icon {
    width: 30px;
    height: 30px;
  }
  .section-services .services-content .item-content .title {
    font-size: 20px;
  }
  .section-cases .left .title {
    font-size: 38px;
  }
  .section-cases .case-item .text {
    padding: 5%;
  }
  .section-cases .case-item .text .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section-cases .case-item .text .tag {
    margin-bottom: 10px;
  }
  .section-honor .left .title {
    font-size: 38px;
  }
  .section-news .title {
    font-size: 38px;
  }
  .section-news .new-item .date {
    margin-bottom: 10px;
  }
  .section-news .new-item .date .month {
    font-size: 18px;
  }
  .section-news .new-item .date .day {
    font-size: 30px;
  }
  .section-news .new-item .text {
    padding: 12px 0;
  }
}
@media (max-width: 992px) {
  .fullpage-menu {
    display: none;
  }
  .section-banner .section-wrap {
    align-items: start;
  }
  .section-banner .section-wrap .left {
    position: relative;
    z-index: 1;
    justify-content: start;
    align-items: start;
    padding: 150px 10% 0;
  }
  .section-banner .section-wrap .left .section-banner-text {
    gap: 10px;
  }
  .section-banner .section-wrap .left h3 {
    font-size: 28px;
  }
  .section-banner .section-wrap .left .section-banner-slogan {
    font-size: 36px;
  }
  .section-banner .section-wrap .right {
    position: absolute;
    right: -10%;
    bottom: -20%;
  }
  .section-banner .section-wrap .right .earth-wrap {
    height: 80%;
  }
  .section-introduction .section-wrap {
    background-size: auto 80%;
    background-position: center 230%;
  }
  .section-introduction .introduction-content {
    transform: translateY(-20%);
  }
  .section-introduction .introduction-content .desc {
    max-width: 100%;
  }
  .section-introduction .introduction-content .title {
    font-size: 30px;
  }
  .section-introduction .introduction-content .data {
    max-width: 100%;
  }
  .section-introduction .introduction-content .data .num {
    font-size: 30px;
  }
  .section-introduction .introduction-content .data .label {
    font-size: 14px;
  }
  .section-services .services-content {
    flex-direction: column;
  }
  .section-services .services-bg {
    flex-direction: column;
  }
  .section-services .services-bg .item:nth-child(1) {
    width: 100%;
    height: 50%;
  }
  .section-services .services-bg .item:nth-child(2) {
    width: 100%;
    height: 12.5%;
  }
  .section-services .services-bg .item:nth-child(2) .bg {
    background-position-x: 0;
    background-position-y: 62.5%;
  }
  .section-services .services-bg .item:nth-child(3) {
    width: 100%;
    height: 12.5%;
  }
  .section-services .services-bg .item:nth-child(3) .bg {
    background-position-x: 0;
    background-position-y: 75%;
  }
  .section-services .services-bg .item:nth-child(4) {
    width: 100%;
    height: 12.5%;
  }
  .section-services .services-bg .item:nth-child(4) .bg {
    background-position-x: 0;
    background-position-y: 87.5%;
  }
  .section-services .services-bg .item:nth-child(5) {
    width: 100%;
    height: 12.5%;
  }
  .section-services .services-bg .item:nth-child(5) .bg {
    background-position-x: 0;
    background-position-y: 100%;
  }
  .section-services .services-bg .item.active {
    height: 100%;
  }
  .section-services .services-bg .item.hidden {
    height: 0%;
  }
  .section-services .services-content .item {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .section-services .services-content .item:nth-child(1) {
    height: 50%;
    width: 100%;
  }
  .section-services .services-content .item:nth-child(1) .item-content .title {
    margin-left: 0;
    font-size: 30px;
    margin-bottom: 10px;
  }
  .section-services .services-content .item:nth-child(1) .item-content .desc {
    margin-bottom: 20px;
  }
  .section-services .services-content .item:nth-child(2) {
    height: 12.5%;
  }
  .section-services .services-content .item:nth-child(3) {
    height: 12.5%;
  }
  .section-services .services-content .item:nth-child(4) {
    height: 12.5%;
  }
  .section-services .services-content .item:nth-child(5) {
    height: 12.5%;
  }
  .section-services .services-content .item .item-content {
    padding: 0px 20px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .section-services .services-content .item .item-content .title {
    flex: 1;
    margin-right: auto;
  }
  .section-services .services-content .item:first-child .item-content {
    width: 100%;
    padding: 40px;
    display: block !important;
  }
  .section-services .services-content .item-content .icon {
    width: 30px;
    height: 30px;
    margin-bottom: 0;
  }
  .section-services .services-content .item-content .title {
    font-size: 20px;
    margin-bottom: 0;
    margin-left: 20px;
    flex: 1;
    margin-right: auto;
  }
  .section-cases .cases-content {
    flex-direction: column;
  }
  .section-cases .left {
    width: 100%;
    max-width: 100%;
    padding-top: 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    flex-shrink: 0;
    flex: none;
  }
  .section-cases .left .title {
    font-size: 30px;
  }
  .section-cases .left .desc {
    margin-bottom: 10px;
  }
  .section-cases .left .pointer {
    display: none;
  }
  .section-cases .right {
    width: 100%;
    max-width: 100%;
  }
  .section-cases .case-item .text {
    padding: 5%;
  }
  .section-cases .case-item .text .title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .section-cases .case-item .text .tag {
    margin-bottom: 10px;
  }
  .section-cases .swiper-slide {
    transform: scale(1);
    transform-origin: center;
  }
  .section-cases .swiper-slide-active {
    transform: scale(1);
  }
  .section-cases .swiper-slide-next,
  .section-cases .swiper-slide-duplicate-next {
    transform: scale(1);
  }
  .section-honor .honor-content {
    flex-direction: column;
    padding: 0 20px;
  }
  .section-honor .left {
    width: 100%;
    max-width: 100%;
    align-items: start;
    justify-content: end;
    flex-direction: column;
    display: flex;
  }
  .section-honor .left .title {
    font-size: 30px;
  }
  .section-honor .left .data {
    width: 100%;
    margin: 0 auto;
    gap: 30px;
  }
  .section-honor .left .data .item {
    width: calc(25% - 30px);
    max-width: 25%;
    min-width: calc(25% - 30px);
    padding: 10px 0;
  }
  .section-honor .left .data .item:before {
    display: none;
  }
  .section-honor .left .data .item .item-wrap {
    position: relative;
    gap: 10px;
  }
  .section-honor .right {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .section-honor .right .preview {
    display: none;
  }
  .section-honor .right .preview-info {
    display: none;
  }
  .section-honor .right .list {
    width: 100%;
    min-width: 100%;
    align-items: center;
  }
  .section-news .news-content {
    padding: 0;
  }
  .section-news .title {
    font-size: 30px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .section-news .new-item .date .month {
    font-size: 18px;
  }
  .section-news .new-item .date .day {
    font-size: 30px;
  }
  .section-news .new-item .text {
    background-color: var(--color-white);
    padding: 10px;
  }
  .section-news .arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-banner .section-wrap .left {
    padding: 150px 10% 0;
  }
  .section-banner .section-wrap .left h3 {
    font-size: 24px;
  }
  .section-banner .section-wrap .left .section-banner-slogan {
    font-size: 30px;
  }
  .section-banner .section-wrap .right {
    right: -20%;
    bottom: -20%;
  }
  .section-banner .section-wrap .right .earth-wrap {
    height: 70%;
  }
  .section-cases .cases-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .section-cases .cases-content .left {
    flex: none;
    padding-top: 0;
  }
  .section-cases .cases-content .left .title {
    font-size: 26px;
  }
  .section-cases .cases-content .right {
    flex: none;
    height: auto;
  }
  .section-cases .case-item .text .title {
    font-size: 16px;
  }
  .section-cases .case-item .text .tag {
    font-size: 14px;
  }
  .section-cases .case-item .text .data {
    font-size: 14px;
  }
  .section-honor .honor-content {
    padding: 0 20px;
    align-items: center;
    justify-content: center;
  }
  .section-honor .left {
    flex: none;
    margin-bottom: 30px;
    padding-top: 0;
  }
  .section-honor .left .title {
    font-size: 26px;
  }
  .section-honor .left .desc {
    margin-bottom: 10px;
  }
  .section-honor .right {
    flex: none;
  }
  .section-news .title {
    margin-bottom: 40px;
    font-size: 26px;
  }
  .section-news .new-item .date .month {
    font-size: 16px;
  }
  .section-news .new-item .date .day {
    font-size: 26px;
  }
  .section-news .new-item .text {
    padding: 10px;
  }
}
