.banner {
  width: 100%;
  height: 628px;
  position: relative;
  background-image: url("../img/product/banner.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: "Alibaba PuHuiTi";
  /* margin-top: 72px; */
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 62%,
    rgba(0, 0, 0, 0) 100%
  );
}
.banner-text {
  width: 509px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  position: absolute;
  top: 40%;
  left: 20%;
  color: rgba(255, 255, 255, 1);
  font-size: 54px;
  font-weight: 900;
  line-height: 120%;
}
.banner-text p {
  font-size: 24px;
  line-height: 180%;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
}
.table {
  height: 105px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  line-height: 105px;
  font-size: 24px;
  color: #171717;
  gap: 160px;
}
.table .tab {
  cursor: pointer;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
}
.table .tab.active {
  position: relative;
}
.table .tab.active::after {
  content: "";
  width: 170px;
  height: 10px;
  background-color: #0047ff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.products,
.services {
  display: none;
}
.products {
  background: #f3f3f3;
  padding-bottom: 50px;
}
.products.active,
.services.active {
  display: block;
}
.product-box {
  width: 1200px;
  padding-top: 58px;
  margin: 0 auto;
}
.product-box h2 {
  color: #171717;
  font-family: "Alibaba PuHuiTi";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.mt58 {
  margin-top: 58px;
}
.product-content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.product-item {
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 17%;
  padding: 40px;
}
.product-item a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.product-img {
  height: 200px;
  margin-bottom: 58px;
  transition: transform 0.3s ease;
}
.product-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.company-bottom-logo img {
  width: 100%;
  transition: transform 0.3s ease;
}
.product-item:hover .product-img {
  transform: scale(1.2); /* 图片放大 1.2 倍 */
}
.product-text {
  font-size: 16px;
  color: #171717;
  line-height: 2em;
  text-align: center;
}
.product-price {
  font-size: 20px;
  color: #171717;
  font-weight: 700;
  line-height: 2em;
}
.product-detail {
  width: 1240px;
  margin: 0 auto;
  margin-top: 100px;
  font-family: "Alibaba PuHuiTi";
}
.product-detail-title {
  font-size: 14px;
  color: #171717;
  line-height: 24px;
  margin-top: 36px;
}
.product-detail-title a {
  color: #171717;
}
.product-detail-title img {
  width: 24px;
  height: 24px;
}
.product-detail-content {
  display: flex;
  gap: 68px;
  margin-top: 30px;
  margin-bottom: 180px;
}
.product-detail-img {
  width: 240px;
  /* height: 500px; */
}
.product-detail-img img {
  width: 100%;
}
.product-img-list {
  display: flex;
  gap: 26px;
}
.product-img-list-item {
  width: 110px;
  height: 110px;
  border: 1px solid #e8ecf3;
  cursor: pointer;
}
.product-img-list-item.active {
  border-color: #0047ff;
}
.product-img-list-item img {
  width: 100%;
}
.product-detail-name {
  font-size: 24px;
  color: #171717;
  margin-bottom: 36px;
}
.product-detail-us {
  width: 156px;
  height: 52px;
  padding: 16px 24px;
  color: #fff;
  background-color: #0047ff;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
  box-sizing: border-box;
  position: relative;
  overflow: hidden; /* 隐藏超出部分 */
  text-align: center; /* 居中文本 */
  line-height: 20px;
  text-decoration: none; /* 移除下划线 */
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.product-detail-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%; /* 初始位置在右侧 */
  width: 100%;
  height: 100%;
  background-color: #000; /* 鼠标悬浮时的背景色 */
  transition: left 0.4s ease-in-out; /* 平滑过渡动画 */
  z-index: 0;
}

.product-detail-us:hover::before {
  left: 0; /* 鼠标悬浮时从右侧滑入 */
}

.product-detail-us span,
.product-detail-us {
  position: relative;
  z-index: 2; /* 确保文本位于背景之上 */
}
.product-detail-price {
  font-size: 36px;
  color: #0047ff;
  font-weight: 700;
  margin-bottom: 36px;
}
.product-detail-right-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8ecf3;
  padding-bottom: 32px;
  margin-bottom: 32px;
  gap: 24px;
}
.product-detail-right-item img {
  width: 58px;
  height: 58px;
  gap: 24px;
}
.product-detail-label {
  color: #919ba5;
  font-size: 16px;
  line-height: 30px;
}
.product-detail-value {
  color: #171717;
  font-size: 16px;
  line-height: 30px;
}
.service1 {
  background: #f9f9f9;
  padding-top: 70px;
}
.service1-content {
  width: 1240px;
  margin: 0 auto;
}
.service1-title {
  position: relative;
  height: 70px;
  padding-top: 20px;
  background-image: url("../img/Union.png");
  background-repeat: no-repeat;
  background-size: 50% 50%;
}
.service1-title::after {
  content: "";
  width: 62px;
  height: 6px;
  background-color: #0047ff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.service1-bold {
  font-size: 40px;
  color: #171717;
  font-weight: 700;
  margin-right: 30px;
}
.service1-normal {
  font-size: 16px;
  line-height: 30px;
}
.service1-center {
  display: flex;
  align-items: center;
  margin-top: 68px;
}
.service1-center-left {
  width: 734px;
  height: 366px;
}
.service1-mobile-img {
  display: none;
}
.service1-center-right {
  position: relative;
  background-color: #fff;
  padding: 36px 52px 37px 136px;
  transform: translateX(-50px);
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
}
.service1-center-left-title {
  color: #171717;
  font-size: 32px;
  font-weight: 700;
}
.service1-center-left-text {
  color: #171717;
  font-size: 16px;
  line-height: 30px;
}
.service1-center-right img {
  position: absolute;
  top: 30%;
  left: -27px;
}
.down {
  display: none;
}
.service2 {
  background-color: #fff;
  height: 400px;
  position: relative;
  margin-top: 84px;
}
.service2-img {
  width: 1240px;
  margin: 0 auto;
  position: relative;
}
.service2-img .service2-img-pc {
  display: inline-block;
}
.service2-img .service2-img-mobile {
  display: none;
}
.service2-img .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 16, 58, 0.4);
}
.service2-content {
  width: 1000px;
  margin: 0 auto;
  background-color: #0047ff;
  color: #fff;
  padding: 17px 0 27px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.service2-title {
  font-size: 32px;
  font-weight: 700;
}
.service2-text {
  font-size: 16px;
  line-height: 2em;
}
.service3 {
  height: 630px;
  background-color: #f9f9f9;
}
.service3-content {
  width: 1240px;
  margin: 0 auto;
  position: relative;
}
.service3-left {
  position: absolute;
  top: 304px;
  left: 56px;
  z-index: 2;
}
.service3-left-content {
  padding: 49px 82px 50px 70px;
  color: #171717;
  background-color: #fff;
  font-size: 16px;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.service3-left-content-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 2em;
}
.service3-right-pc {
  width: 734px;
  height: 348px;
  position: absolute;
  left: 42%;
  top: 200px;
}
.service3-right-pc img {
  width: 100%;
  height: 100%;
}
.service3-right-mobile {
  display: none;
}
.service4,
.service5 {
  background-color: #fff;
  margin-bottom: 50px;
}
.service4-content,
.service5-content {
  width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #171717;
  line-height: 2em;
  font-size: 32px;
  font-weight: 700;
}
.service4-left-pc {
  width: 50%;
  height: 330px;
}
.service4-left-pc img {
  width: 100%;
  height: 100%;
}
.service4-left-mobile {
  display: none;
}
.service4-right {
  padding-left: 90px;
  position: relative;
}
.service4-text {
  font-size: 16px;
  font-weight: normal;
}
.service4-right img {
  position: absolute;
  top: 0;
  right: 0;
}
.service-left {
  padding: 56px;
  width: 50%;
  flex: none;
  color: #fff;
  background-color: #171717;
}
.service5-mobile-img {
  display: none;
}
.service5-right {
  width: 50%;
  height: 310px;
}
.service5-right img {
  width: 100%;
  height: 100%;
}
.service5-text {
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .banner {
    background-position: 50% 0;
    background-size: auto;
  }
  .banner-text {
    width: unset;
    font-size: 40px;
    left: 20px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }
  .banner-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
  }
  .table {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
  }
  .table .tab.active::after {
    height: 4px;
  }
  .product-box h2 {
    font-size: 20px;
  }
  .product-box {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  .product-item {
    padding: 45px 24px 24px 24px;
    width: 46%;
    box-sizing: border-box;
  }
  .product-text {
    font-size: 12px;
  }
  .product-price {
    font-size: 14px;
  }
  .down {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
  }
  .down img {
    width: 100%;
  }
  .service1 {
    padding-top: unset;
  }
  .service1-content,
  .service2-img,
  .service2-content,
  .service3-content,
  .service4-content,
  .service5-content {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  .service1-title {
    height: unset;
    padding-top: unset;
    padding-bottom: 16px;
  }
  .service1-bold {
    font-size: 16px;
    display: block;
    line-height: 4em;
  }
  .service1-title::after {
    bottom: unset;
    top: 52px;
  }
  .service1-normal {
    font-size: 12px;
    line-height: 2em;
  }
  .service1-center {
    display: block;
  }
  .service1-center-left {
    display: none;
  }
  .service1-mobile-img {
    display: block;
    width: 100%;
  }
  .service1-mobile-img img {
    width: 100%;
  }
  .service2 {
    height: 350px;
    background-color: unset;
  }
  .service2 .down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .service3 {
    height: unset;
  }
  .service3-right-pc {
    width: 100%;
    height: unset;
  }

  .service3-right-pc img {
    width: 100%;
  }
  .service3-right-mobile {
    display: none;
  }
  .service2-img .service2-img-pc {
    display: none;
  }
  .service2-img .service2-img-mobile {
    display: inline-block;
  }
  .service2-img img {
    width: 100%;
  }
  .service1-center-right {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .service1-center-left-title {
    font-size: 16px;
  }
  .service1-center-left-text {
    font-size: 12px;
  }
  .service1-center-right img {
    /* width: 76px; */
    left: 10px;
  }
  .service2-content {
    top: 168px;
    width: 95%;
  }
  .service2-title {
    font-size: 16px;
  }
  .service2-text {
    font-size: 12px;
  }
  .service3-left {
    position: unset;
  }
  .service3-right-pc {
    width: 100%;
    height: unset;
    display: none;
    position: unset;
  }

  .service3-right-pc img {
    width: 100%;
  }
  .service3-right-mobile {
    display: block;
  }
  .service3-left-content-title {
    font-size: 16px;
  }
  .service3-left-content-text {
    font-size: 12px;
  }
  .service3-left-content {
    padding: 16px;
  }
  .service4-content,
  .service5-content {
    display: unset;
    font-size: 16px;
  }
  .service4-left-pc {
    width: 100%;
    height: unset;
    display: none;
  }
  .service4-left-mobile {
    width: 100%;
    height: unset;
    display: block;
  }
  .service4-right {
    padding-left: 0px;
    padding-top: 40px;
  }
  .service4-text {
    font-size: 12px;
  }
  .service4-right img {
    top: 10px;
    right: 20px;
  }
  .service4,
  .service5 {
    margin-bottom: -40px;
    padding: 20px;
  }
  .service5-mobile-img {
    display: block;
    width: 100%;
  }
  .service5-mobile-img img {
    width: 100%;
  }
  .service5-right {
    display: none;
  }
  .service-left {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  .service5-text {
    font-size: 12px;
  }
  .product-detail {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  .product-detail-title {
    margin: 0;
  }
  .product-detail-title a {
    color: #171717;
  }
  .product-detail-content {
    display: unset;
  }
  .product-detail-img {
    width: 100%;
    height: unset;
  }
  .product-img-list-item {
    height: unset;
    width: 20%;
  }
  .product-detail-name {
    font-size: 16px;
    margin-top: 24px;
  }
  .product-detail-price {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .product-detail-right-item img {
    width: 24px;
    height: 24px;
  }
  .product-detail-right-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .product-detail-label,
  .product-detail-value {
    font-size: 14px;
  }
}
