.banner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pc-banner {
  display: block;
}

.banner .swiper {
  width: 100% !important;
}

.mobile-banner {
  display: none;
}

.banner .swiper-slide {
  width: 100%;
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
}

.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.banner .swiper-slide-active img {
  animation: changeScale 1 6s ease-out forwards;
}

.banner .title {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 15%;
  z-index: 2;
  text-align: center;
  color: #fff;
  transition-duration: 3s;
}
.banner .swiper-slide-active .title {
  bottom: 25%;
}
.banner .title h2 {
  font-size: 3.875rem;
  line-height: 5rem;
  margin-bottom: 3.5rem;
  font-weight: normal;
  text-shadow: 0px -2px 4px #525252;
  font-family: "simli";
}

.banner .pText {
  font-size: 1.375rem;
  line-height: 2.25rem;
  margin-bottom: 3.5rem;
}

.banBtn {
  width: 14.375rem;
  border-radius: 0.625rem;
  text-align: center;
  line-height: 3.5rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  background-image: linear-gradient(to right, #6eae1b, #87bd43);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
}

.banBtn .iconfont {
  font-size: 1.875rem;
  margin-left: 0.5rem;
  transition-duration: 0.5s;
}

.banBtn:hover .iconfont {
  margin-left: 0.7rem;
}

.banBtn:hover {
  color: #fff;
}

.banner .swiper-pagination {
  bottom: 3.375rem !important;
}

.banner .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  background: #fff;
  opacity: 1;
  margin: 0 0.75rem !important;
}

.banner .swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background: none !important;
}

/* 自定义分页容器定位到底部偏左，和截图位置匹配 */
.custom-pagination {
  position: absolute;
  left: 0;
  bottom: 1.375rem;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* 分页项基础 */
.custom-pagination-item {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  position: relative;
  /* 移除text-indent，改用透明度隐藏文字 */
  text-indent: 0;
}

/* 非激活：纯白实心小圆 */
.custom-pagination-item:not(.active) {
  background: #ffffff;
  width: 0.625rem;
  height: 0.625rem;
  /* 替换text-indent，文字透明隐藏，不破坏元素点击区域 */
  color: transparent;
}

/* 激活项：空心圆环 + 数字 */
/* .custom-pagination-item.active {
	border: .1875rem solid rgba(255, 255, 255, 0.5);
	background: transparent;
} */

.ring-animate::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1875rem solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}

.custom-pagination-item.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.1875rem solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  border-bottom-color: #fff;
  border-left-color: #fff;
  box-sizing: border-box;
  animation: ringSpin 5s ease-out forwards;
}

@keyframes ringSpin {
  0% {
    transform: rotate(0deg);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }

  100% {
    transform: rotate(360deg);
    border-top-color: #fff;
    border-right-color: #fff;
    border-bottom-color: #fff;
    border-left-color: #fff;
  }
}

.HomeAbout {
  width: 100%;
  background: #f2f8ff;
  padding: 9.0625rem 0 7.1875rem 0;
}

.HomeBit {
  width: 100%;
  text-align: center;
  position: relative;
}

.HomeBit h2 {
  text-align: center;
  font-size: 3rem;
  color: #333333;
  line-height: 5.25rem;
  display: table;
  margin: 0 auto;
}

.HomeBit .dw {
  width: 127px;
  height: 55px;
  position: absolute;
  top: -2.7rem;
  right: 28.5%;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.HomeBit .dw img {
  display: block;
  width: 100%;
}

.HomeBit .dw1 {
  width: 19.125rem;
  height: 2.6875rem;
  position: absolute;
  bottom: -2.6875rem;
  right: 28.5%;
}

/*  */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-swiper .swiper-slide {
  position: relative;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(24px, 5vw, 48px);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

/* 轮播指示器 */
.banner-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.ind-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff70;
  cursor: pointer;
  transition: all 0.3s;
}

/* 当前第一张样式：圆圈边框+数字 */
.ind-dot.active-first {
  background: transparent;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

.ind-dot.active {
  background-color: #fff;
}

.mod-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.75rem 0 1.875rem;
}

.title-left h2 {
  font-size: 1.75rem;
  color: #00796a;
  font-weight: 800;
}

.title-left p {
  font-size: 1.125rem;
  color: #aaaaaa;
  letter-spacing: 1px;
  display: flex;
  justify-content: left;
  align-items: center;
  opacity: 0.5;
}

.title-left p span {
  display: block;
  width: 2.875rem;
  height: 0.0625rem;
  background: #aaa;
  opacity: 0.6;
}

.more-btn {
  width: 9.875rem;
  text-align: center;
  border: 1px solid #e5e5e5;
  border-radius: 3.125rem;
  font-size: 1rem;
  color: #333;
  transition: 0.5s;
  line-height: 3.125rem;
  transition-duration: 0.5s;
}

.more-btn:hover {
  /* background-color: #0f7b57; */
  color: #fff;
  box-shadow: 1px 5px 5px #bce1dc;
  transform: translateY(-3px);
  color: #008a7a;
}

.business-wrap {
  padding-bottom: 6.25rem;
}

.business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.business-item {
  flex: 1;
  min-width: calc((100% - 120px) / 7);
  padding: 1.875rem 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 15.75rem;
}

.business-item:hover {
  box-shadow: 1px 5px 5px #bce1dc;
}

.biz-icon {
  width: 3.8125rem;
  height: 3.8125rem;
  transition: transform 0.3s ease;
}

.business-item:hover .biz-icon {
  transform: scaleX(-1);
  /* 水平翻转 */
}

.biz-name {
  font-size: 1.25rem;
  color: #111;
  font-weight: bold;
  margin-bottom: 8px;
}

.biz-desc {
  font-size: 0.9375rem;
  color: #777;
  line-height: 1.5rem;
}

/* 业务卡片响应式适配 */
@media (max-width: 1200px) {
  .business-item {
    min-width: calc((100% - 80px) / 5);
  }
}

@media (max-width: 992px) {
  .business-item {
    min-width: calc((100% - 60px) / 4);
  }
}

@media (max-width: 768px) {
  .business-item {
    min-width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 576px) {
  .business-item {
    min-width: calc((100% - 20px) / 2);
  }
}

.case-wrap {
  background: url(../images/case-bg.jpg) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 8rem;
  border-bottom: 1px solid #e6e9ec;
}

.case-swiper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px;
  position: relative;
}

.swiper-slide {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.slide-inner {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.slide-inner img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.swiper-slide:hover .slide-inner img {
  transform: scale(1.08);
}

.slide-name {
  width: 100%;
  padding: 10px 8px;
  font-size: 1.125rem;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
}

.caseBox {
  position: relative;
}

.caseBox .swiper-button-next,
.caseBox .swiper-button-prev {
  width: 3.875rem;
  height: 3.875rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #828282;
}

.caseBox .swiper-button-next::after,
.caseBox .swiper-button-prev::after {
  font-size: 1.625rem;
  font-weight: bold;
}

.caseBox .swiper-button-next:hover,
.caseBox .swiper-button-prev:hover {
  background-color: #0f7b57;
  color: #fff;
}

.caseBox .swiper-button-next {
  right: -1.875rem;
}

.caseBox .swiper-button-prev {
  left: -1.875rem;
}

.news-wrap {
  padding-bottom: 60px;
}

.news-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.news-swiper-box {
  width: 61%;
  overflow: hidden;
}

.news-swiper .news-slide-item {
  cursor: pointer;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-swiper .news-slide-item:hover {
  box-shadow: 1px 5px 5px #bce1dc;
}

.news-swiper .news-slide-item .pic {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.news-swiper .news-slide-item .pic img {
  width: 100%;
  display: block;
  transition-duration: 0.5s;
}

.news-swiper .news-slide-item:hover .pic img {
  transform: scale(1.1);
  opacity: 0.8;
}

.news-swiper .news-slide-item .neir {
  width: 100%;
  padding: 1.25rem;
}

.news-swiper .news-slide-item .neir h3 {
  font-size: 1.25rem;
  line-height: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-swiper .news-slide-item .neir .Text {
  font-size: 1rem;
  line-height: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0.625rem 0;
}

.news-swiper .news-slide-item .neir .time {
  font-size: 1.0625rem;
  color: #00796a;
}

.news-text-list {
  width: 37%;
  border: 1px solid #e3e3e3;
  padding: 0 1.5625rem;
}

.text-news-item {
  padding: 1.875rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 12px;
  position: relative;
  cursor: pointer;
}

.text-news-item:after {
  height: 1px;
  background: #0f7b57;
  position: absolute;
  content: "";
  left: 0;
  width: 0;
  bottom: -1px;
  transition-duration: 0.5s;
}

.text-news-item:hover:after {
  width: 100%;
}

.text-news-item:last-child {
  border-bottom: none;
}

.news-date {
  width: 5rem;
  text-align: center;
  flex-shrink: 0;
  margin-right: 0.9375rem;
}

.news-date .day {
  font-size: 2.5rem;
  color: #333333;
  font-weight: bold;
  line-height: 2.5rem;
}

.news-date .ym {
  font-size: 1.0625rem;
  line-height: 2rem;
  color: #333;
  opacity: 0.7;
}

.news-info p {
  font-size: 1.25rem;
  color: #777;
  line-height: 2.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .news-content {
    flex-direction: column;
  }

  .news-swiper-box,
  .news-text-list {
    width: 100%;
  }
}

.link-wrap {
  padding: 2.1875rem 0;
  background-color: #ebeff8;
}

.link-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.link-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-swiper .swiper-slide img {
  width: 100%;
  display: block;
  object-fit: contain;
}

.link-wrap .mod-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 30px;
}

@keyframes changeScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

@keyframes run {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(1.08);
  }

  75% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1366px) {
  .about-warp {
    width: 78%;
    margin: 0 auto;
  }

  .HomeAbout {
    padding-left: 13rem;
  }
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 1199px) {
}

@media only screen and (max-width: 996px) {
}

@media only screen and (max-width: 768px) {
  .banner .pText {
    font-size: 34px;
    margin-bottom: 26px;
  }

  .banner,
  .banner .swiper-slide {
    height: 40vh;
  }

  .banner .title {
    flex-wrap: wrap;
    top: 46%;
  }

  .banner .title img {
    width: auto;
    margin-right: 0;
  }

  .banner .title .text {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    display: none;
  }

  .banner .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto !important;
    bottom: 3%;
    right: 5%;
  }

  .banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    line-height: 24px;
    font-size: 15px;
  }

  .mod-title {
    padding: 20px 0 20px;
  }

  .more-btn {
    width: 120px;
    line-height: 30px;
    font-size: 12px;
  }

  .title-left h2 {
    font-size: 20px;
  }

  .slide-name {
    font-size: 12px;
  }

  .biz-icon {
    width: 40px;
    height: auto;
  }

  .title-left p {
    font-size: 14px;
  }

  .biz-name {
    font-size: 18px;
  }

  .biz-desc {
    font-size: 14px;
    line-height: 26px;
  }

  .caseBox .swiper-button-next,
  .caseBox .swiper-button-prev {
    width: 33px;
    height: 33px;
  }

  .news-swiper .news-slide-item .neir h3 {
    font-size: 18px;
    line-height: 32px;
  }

  .news-swiper .news-slide-item .neir .Text {
    font-size: 16px;
    line-height: 26px;
  }

  .news-swiper .news-slide-item .neir {
    padding: 10px;
  }

  .news-swiper .news-slide-item .neir .time {
    font-size: 15px;
  }

  .news-info p {
    font-size: 16px;
    line-height: 26px;
  }

  .news-date .day {
    font-size: 20px;
    line-height: 30px;
  }

  .news-date .ym {
    font-size: 14px;
    line-height: 24px;
  }

  .news-date {
    width: 80px;
  }

  .footer-left {
    width: 100%;
  }

  .footer {
    padding: 20px 0;
    font-size: 16px;
  }
}
