.home-banner {
  position: relative;
  width: 100%;
  height: 800px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #545456;
}
.home-banner__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.home-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-banner__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-banner__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 35px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.home-banner__text {
  width: 90%;
  max-width: 740px;
}
.home-banner__title {
  font-weight: bold;
  color: #ffffff;
}
.home-banner__description {
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  line-height: 36px;
  margin-top: 30px;
}
.home-banner__button {
  margin-top: 30px;
  max-width: 320px;
}

.home-banner__stats {
  width: 100%;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
.home-banner__stats::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: #f8f8f8;
}
.home-banner__stats-list {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.home-banner__stats-item {
  width: calc(100% / 4);
  padding: 10px 0px;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.35);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 25px 15px;
  box-sizing: border-box;
}
.home-banner__stats-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 130px solid #f8f8f8;
  border-right: 130px solid transparent;
  z-index: 1;
}
/* 左下角浅灰三角 */
.home-banner__stats-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  /* 调整px数值控制三角大小 */
  border-top: 130px solid #eeeeee;
  border-right: 130px solid transparent;
  z-index: 1;
}
.home-banner__stats-item:nth-child(even)::after {
  border-top: 130px solid #94a3b8;
}
.home-banner__stats-number {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(35, 24, 21, 0.35);
  border-radius: 50%;
  font-weight: bold;
  font-size: 26px;
  color: #3b82f6;
  text-align: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.home-banner__stats-title {
  font-weight: bold;
  font-size: 18px;
  color: #1e293b;
  line-height: 24px;
  position: relative;
  z-index: 2;
}

.home-services {
  width: 100%;
  padding: 50px 0 70px;
  box-sizing: border-box;
}
.home-services__content {
  width: 100%;
}
.home-services__title {
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}
.home-services__description {
  width: 90%;
  max-width: 1321px;
  margin: 0 auto;
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  text-align: center;
  margin-bottom: 50px;
}
.home-services__content {
  width: 100%;
  position: relative;
}
.home-services__swiper-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-services__swiper-wrapper .my-swiper {
  width: 100%;
  height: auto;
}
.home-services__swiper-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: auto;
}
.home-services__swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-services__swiper-item {
  width: 100%;
  max-width: 460px;
  height: 100%;
}
.home-services__swiper-item-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 300px;
  box-sizing: border-box;
}
.home-services__swiper-item-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: #f8f8f8;
  border-radius: 40px;
}
.home-services__swiper-item-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-services__swiper-wrapper .swiper-slide:nth-child(1) .home-services__swiper-item-image {
  top: 40px;
}
.home-services__swiper-wrapper .swiper-slide:nth-child(7) .home-services__swiper-item-image {
  top: 55px;
}
.home-services__swiper-wrapper .swiper-slide:nth-child(8) .home-services__swiper-item-image {
  top: 10px;
}
.home-services__swiper-item-image img {
  width: auto;
  height: auto;
  object-fit: contain;
}
.home-services__swiper-item-info {
  width: 100%;
  height: 100%;
  padding: 15px 30px 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-services__swiper-item-title {
  font-weight: bold;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 10px;
}
.home-services__swiper-item-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.home-services__swiper-item-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.home-services__swiper-item-details-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.home-services__swiper-item-details-item img {
  width: 19px;
  height: auto;
  object-fit: contain;
  margin-top: 10px;
}
.home-services__swiper-item-details-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 24px;
}
.home-services__swiper-item-link {
  width: 100%;
  max-width: 320px;
  height: 50px;
  line-height: 50px;
  background: #3b82f6;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.home-services__swiper-wrapper .swiper-button-prev,
.home-services__swiper-wrapper .swiper-button-next {
  width: 70px;
  height: 70px;
  background: #94a3b8;
  border-radius: 10px;
  opacity: 1;
}
.home-services__swiper-wrapper .swiper-button-prev:hover,
.home-services__swiper-wrapper .swiper-button-next:hover {
  background: #3b82f6;
}
.home-services__swiper-wrapper .swiper-button-prev::after,
.home-services__swiper-wrapper .swiper-button-next::after {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}
.home-services__swiper-wrapper .swiper-button-prev:hover::after,
.home-services__swiper-wrapper .swiper-button-next:hover::after {
  color: #fff;
}
.home-services__swiper-wrapper .swiper-button-prev {
  top: calc(50% - 15px);
  left: -120px !important;
  z-index: 10;
}
.home-services__swiper-wrapper .swiper-button-next {
  top: calc(50% - 15px);
  right: -120px !important;
  z-index: 10;
}
.home-services__swiper-wrapper .swiper-button-prev.services-swiper-button-disabled,
.home-services__swiper-wrapper .swiper-button-next.services-swiper-button-disabled {
  opacity: 1;
  pointer-events: none;
}
.home-services__swiper-wrapper .services-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #cccccc;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 1;
  display: inline-block;
  cursor: pointer;
}
.home-services__swiper-wrapper .services-pagination-bullet-active {
  background: #3b82f6;
}
.home-services__swiper-wrapper .swiper-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}

.home-process {
  width: 100%;
  padding: 70px 0;
  background: #f8f8f8;
}
.home-process__content {
  width: 95%;
  margin: 0 auto;
}
.home-process__title {
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 60px;
}
.home-process__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.home-process__item {
  width: calc(100% / 5 - 17px);
  min-width: 320px;
  background: #ffffff;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 35px 25px 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.home-process__item::before {
  position: absolute;
  content: '';
  top: -90px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: #94a3b8;
  border-radius: 50%;
}
.home-process__item-number {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 66px;
}
.home-process__item-number img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-process__item-icon {
  width: 100px;
}
.home-process__item-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-process__text {
  width: 100%;
  height: calc(100% - 110px);
  padding: 40px 0px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.home-process__item-title {
  font-weight: bold;
  color: #1e293b;
  text-align: left;
  min-height: 80px;
}
.home-process__item-description {
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  text-align: left;
}

.home-industries {
  width: 100%;
  padding: 70px 0 0;
  box-sizing: border-box;
  position: relative;
}
.home-industries__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-industries__background img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: contain;
}
.home-industries__top {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.home-industries__top-left {
  width: 60%;
  max-width: 624px;
}
.home-industries__title {
  font-weight: bold;
  color: #3b82f6;
  text-align: left;
  margin-bottom: 15px;
}
.home-industries__description {
  font-weight: 400;
  color: #fefefe;
  line-height: 30px;
  text-align: left;
}
.home-industries__top-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.home-industries__button {
  max-width: 360px;
}

.home-industries__content {
  width: 100%;
  position: relative;
  z-index: 1;
}
.home-industries__swiper-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.home-industries__swiper-wrapper .my-swiper {
  width: 100%;
  height: auto;
}
.home-industries__swiper-wrapper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  height: auto;
}
.home-industries__swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  box-sizing: border-box;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.home-industries__swiper-item {
  width: 100%;
  max-width: 340px;
  height: 100%;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}
.home-industries__swiper-item-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-industries__swiper-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(18, 18, 18, 0.5);
}
.home-industries__swiper-item:hover .home-industries__swiper-item-info {
  padding: 15px 15px 50px;
  background: #0f3460;
  border-radius: 20px 20px 0px 0px;
  box-sizing: border-box;
}
.home-industries__swiper-item-title {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  display: block;
}
.home-industries__swiper-item:hover .home-industries__swiper-item-title {
  display: none;
}
.home-industries__swiper-item-title-second {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  display: none;
}
.home-industries__swiper-item:hover .home-industries__swiper-item-title-second {
  display: block;
}
.home-industries__swiper-item-description {
  font-weight: 400;
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  margin-top: 10px;
  display: none;
}
.home-industries__swiper-item:hover .home-industries__swiper-item-description {
  display: block;
}
.home-industries__swiper-item-image {
  width: 100%;
  height: 100%;
}
.home-industries__swiper-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-industries__swiper-wrapper .swiper-button-prev,
.home-industries__swiper-wrapper .swiper-button-next {
  width: 60px;
  height: 60px;
  background: #94a3b8;
  border-radius: 50%;
  opacity: 1;
}
.home-industries__swiper-wrapper .swiper-button-prev:hover,
.home-industries__swiper-wrapper .swiper-button-next:hover {
  background: #3b82f6;
}
.home-industries__swiper-wrapper .swiper-button-prev::after,
.home-industries__swiper-wrapper .swiper-button-next::after {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
}
.home-industries__swiper-wrapper .swiper-button-prev:hover::after,
.home-industries__swiper-wrapper .swiper-button-next:hover::after {
  color: #fff;
}
.home-industries__swiper-wrapper .swiper-button-prev {
  top: calc(50% - 15px);
  left: -120px !important;
  z-index: 10;
}
.home-industries__swiper-wrapper .swiper-button-next {
  top: calc(50% - 15px);
  right: -120px !important;
  z-index: 10;
}
.home-industries__swiper-wrapper .swiper-button-prev.industries-swiper-button-disabled,
.home-industries__swiper-wrapper .swiper-button-next.industries-swiper-button-disabled {
  opacity: 1;
  pointer-events: none;
}
.home-industries__swiper-wrapper .industries-pagination-bullet {
  width: 16px;
  height: 16px;
  background: #cccccc;
  border-radius: 50%;
  margin: 0 6px;
  opacity: 1;
  display: inline-block;
  cursor: pointer;
}
.home-industries__swiper-wrapper .industries-pagination-bullet-active {
  background: #3b82f6;
}
.home-industries__swiper-wrapper .swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 20px;
}

.home-advantage {
  width: 100%;
  padding: 70px 0;
}
.home-advantage__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}
.home-advantage__title {
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
}
.home-advantage__description {
  width: 100%;
  max-width: 1091px;
  margin: 0 auto;
  font-weight: 400;
  color: #1e293b;
  line-height: 30px;
  margin-bottom: 40px;
  text-align: center;
}
.home-advantage__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px 40px;
}
.home-advantage__item {
  width: calc(100% / 2 - 20px);
  max-width: 620px;
  min-height: 420px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: 50px 35px;
  box-sizing: border-box;
}
.home-advantage__item-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-advantage__item-background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-advantage__item-title {
  width: 100%;
  font-weight: bold;
  color: #ffffff;
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home-advantage__item-description {
  width: 100%;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.home-certifications {
  width: 100%;
  padding: 70px 0;
  background: #f8f8f8;
}
.home-certifications__title {
  font-weight: bold;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}
.home-certifications__list {
  width: 98%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 8px;
}
.home-certifications__item {
  width: 297px;
  position: relative;
}
.home-certifications__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-certifications__item-title {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.home-free-quote {
  width: 100%;
  min-height: 400px;
  background: #545456;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-free-quote__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-free-quote__background > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-free-quote__content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.home-free-quote__title {
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}
.home-free-quote__button {
  max-width: 320px;
}

@media screen and (max-width: 760px) {
  .home-banner {
    height: auto;
  }
  .home-banner__content {
    justify-content: flex-start;
  }
  .home-banner__text {
    width: 100%;
  }

  .home-banner__stats {
    margin-top: 20px;
  }
  .home-banner__stats-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-banner__stats-item {
    width: 100%;
    max-width: 340px;
  }

  .home-services__swiper-wrapper .swiper-button-prev {
    left: -10px !important;
  }
  .home-services__swiper-wrapper .swiper-button-next {
    right: -10px !important;
  }

  .home-process__item {
    width: 100%;
    max-width: 400px;
  }

  .home-industries__background img {
    height: 400px;
    object-fit: cover;
  }
  .home-industries__top {
    flex-direction: column;
    gap: 20px;
  }
  .home-industries__top-left {
    width: 100%;
  }
  .home-industries__top-right {
    width: 100%;
    justify-content: center;
  }
  .home-industries__swiper-wrapper .swiper-button-prev {
    left: -10px !important;
  }
  .home-industries__swiper-wrapper .swiper-button-next {
    right: -10px !important;
  }

  .home-advantage__item {
    width: 100%;
  }
}

@media screen and (min-width: 760px) and (max-width: 1020px) {
  .home-banner {
    height: auto;
  }
  .home-banner__content {
    justify-content: flex-start;
  }
  .home-banner__text {
    width: 100%;
  }

  .home-banner__stats {
    margin-top: 20px;
  }
  .home-banner__stats-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-banner__stats-item {
    width: calc(50% - 10px);
    max-width: 340px;
  }

  .home-services__swiper-wrapper .swiper-button-prev {
    left: -10px !important;
  }
  .home-services__swiper-wrapper .swiper-button-next {
    right: -10px !important;
  }

  .home-process__item {
    width: calc(100% / 2 - 10px);
  }

  .home-industries__background img {
    height: 400px;
    object-fit: cover;
  }
  .home-industries__top {
    flex-direction: column;
    gap: 20px;
  }
  .home-industries__top-left {
    width: 100%;
  }
  .home-industries__top-right {
    width: 100%;
    justify-content: center;
  }
  .home-industries__swiper-wrapper .swiper-button-prev {
    left: -10px !important;
  }
  .home-industries__swiper-wrapper .swiper-button-next {
    right: -10px !important;
  }

  .home-advantage__item {
    width: 100%;
  }
}

@media screen and (min-width: 1020px) and (max-width: 1350px) {
  .home-banner__stats-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-banner__stats-item {
    width: calc(50% - 10px);
    max-width: 340px;
  }

  .home-services__swiper-wrapper .swiper-button-prev {
    left: -30px !important;
  }
  .home-services__swiper-wrapper .swiper-button-next {
    right: -30px !important;
  }

  .home-process__item {
    width: calc(100% / 3 - 17px);
  }

  .home-industries__swiper-wrapper .swiper-button-prev {
    left: -30px !important;
  }
  .home-industries__swiper-wrapper .swiper-button-next {
    right: -30px !important;
  }
}

@media screen and (min-width: 1350px) and (max-width: 1900px) {
  .home-services__swiper-wrapper .swiper-button-prev {
    left: -30px !important;
  }
  .home-services__swiper-wrapper .swiper-button-next {
    right: -30px !important;
  }

  .home-industries__swiper-wrapper .swiper-button-prev {
    left: -30px !important;
  }
  .home-industries__swiper-wrapper .swiper-button-next {
    right: -30px !important;
  }
}
