body {
  margin: 0;
  padding: 0;
}

.fade-up {
  transform: translate(0, 20px);
  opacity: 0;
}

/* banner和面包屑 start */
.banner-intro {
  width: 100%;
  height: 290px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  background-image: url('../../img/newWebsite/product-banner.png');
}

.banner-intro .main {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.local-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 58px;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.local-nav {
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

/* banner和面包屑 end */

.product-container {
  background: #FFFFFF;
}

/* 分类 start */
.product-category {
  width: 1200px;
  margin: 0 auto;
  padding: 84px 0 64px;
}

.category-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  color: #292929;
  margin-bottom: 48px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
}

.product-item {
  width: 380px;
  height: 386px;
  background: #FFFFFF;
  border-radius: 12px;
  box-sizing: border-box;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.8s ease;
  text-decoration: none;
}

.product-item:hover {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.product-item:hover .product-img {
  transform: scale(1.3);
}

.product-item:hover .product-label {
  color: #3875F6;
}

.product-item .image-container {
  width: 380px;
  height: 214px;
  overflow: hidden;
}

.image-container .image-background {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
}

.image-container .image-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(10px);
  /* 对背景图做模糊 */
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  filter: brightness(1.2);
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  transition: all 0.8s ease;
}

.product-detail {
  padding: 24px 15px 24px 24px;
}

.product-label {
  font-family: AlibabaPuHuiTi;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #292929;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.8s ease;
}

.product-content {
  height: 48px;
  margin: 12px 0;
  font-family: AlibabaPuHuiTi;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #646464;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  transition: color 0.8s ease;
}

.product-btn {
  font-family: AlibabaPuHuiTi;
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
  color: #3875F6;
}

/* 分类 end */

/* 合作客户 start */
.cooperation-container {
  width: 100%;
  height: 642px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('../../img/newWebsite/copperation.png');
}