.products {
  width: 100%;
}

.products .container {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  height: auto;
}
.products .crumbs {
  padding-bottom: 2.0833vw!important;
}
.products .container .product-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 一行三列 */
  grid-gap: 0;
}
.products .container .product-list-more {
  display: none;
}
.products .container .product-list .product-item .animation-fill {
  animation-fill-mode: backwards!important;
}

.products .container .product-list .product-item-box {
  width: 100%;
  display: block;
}
.products .container .product-list .product-item {
  box-sizing: border-box;
  /* 确保内边距和边框不会增加宽度 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.0833vw;
  border: 0.0521vw solid #9FA0A0;
  cursor: pointer;
  margin-right: -0.0521vw;
  margin-bottom: -0.0521vw;
  background-color: #fff;
}
.products .container .product-list .product-item .product-item-info {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.products .container .product-list .product-item .product-item-title {
  max-width: 20.8333vw;
  color: #231815;
  /* Heading7-S-24 */
  font-family: Montserrat;
  font-size: 1.25vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  opacity: 0;
}

.products .container .product-list .product-item .product-item-img {
  width: 12.5vw;
  height: 12.5vw;
  margin: 4.1667vw auto;
  opacity: 0;
}

.products .container .product-list .product-item .product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.3s;
}

.products .container .product-list .product-item:hover {
  /* background: rgba(0, 0, 0, 0.1) */
}
.products .container .product-list .product-item:hover .product-item-img img {
  transform: scale(1.2);
}
.products .container .product-list .product-item .product-item-view {
  text-align: center;
}

.products .container .product-list .product-item:hover .product-item-view span {
 background-color: #3A66FB;
 color: #fff;
 border-color: #3A66FB;
}

.products .container .product-list .product-item .product-item-view span {
  height: auto;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  border-radius: 5.2083vw;
  border: 0.0521vw solid #231815;
  padding: 0.4167vw 2.0833vw;
  color: #231815;
  /* Large2-S-16 */
  font-family: Montserrat;
  font-size: 0.8333vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  /* 150% */
}
.products .container .product-list .product-item .product-item-view .iconfont {
  display: none;
}
.technology {
  margin-top: 6.25vw;
  padding-bottom: 4.1667vw;
}

.technology .technology-top {
  padding-bottom: 1.25vw;
  border-bottom: 0.0521vw solid rgba(35, 24, 21, 0.10);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.technology .technology-top .technology-title {
  color: #231815;
  /* H2-60 */
  font-family: Montserrat;
  font-size: 3.125vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  
}

.technology .technology-top .view-all {
  margin-top: 0.5208vw;
  display: flex;
  font-size: 1.25vw;
  color: #231815;
}

.technology .technology-top .view-all .view-all-txt {
  /* Large2-S-16 */
  font-family: Montserrat;
  font-size: 0.8333vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  /* 150% */
}
.technology .technology-top .view-all .iconfont {
  font-size: 1.25vw;
  line-height: normal;
}
.technology .technology-top .view-all:hover {
  color: #3A66FB;
}

.technology .technology-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 一行三列 */
  grid-gap: 0.7292vw;
  padding-top: 1.5625vw;
}
.technology .technology-list-view {
  display: none;
}
/* technology-list 动画效果 */
.technology-animation1 {
  animation: productTxtAnimation .8s 0.06s forwards cubic-bezier(0,0,0.5,1);
}

.technology-animation2 {
  animation: productTxtAnimation .8s 0.12s forwards cubic-bezier(0,0,0.5,1);
}

.technology-animation3 {
  animation: productTxtAnimation .8s 0.18s forwards cubic-bezier(0,0,0.5,1);
}

.technology-animation4 {
  animation: productTxtAnimation .8s 0.24s forwards cubic-bezier(0,0,0.5,1);
}

.technology .technology-list .technology-item {
  box-sizing: border-box;
  /* 确保内边距和边框不会增加宽度 */
  display: flex;
  flex-direction: column;
  cursor: pointer;
  opacity: 0;
}

.technology .technology-list .technology-item:hover .technology-item-img img {
  transform: scale(1.1);
}
.technology .technology-list .technology-item:hover .technology-item-desc span {
  color: #3A66FB;
}
.technology .technology-list .technology-item .technology-item-img {
  width: 100%;
  height: 10.4167vw;
  border: 0;
  overflow: hidden;
}

.technology .technology-list .technology-item .technology-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  transition: all 0.3s;
}

.technology .technology-list .technology-item .technology-item-desc {
  width: 100%;
  padding: 1.25vw 0.8333vw;
  background-color: #FAFAFA;
}

.technology .technology-list .technology-item .technology-item-desc span {
  max-width: 16.4583vw;
  display: inline-block;
  color: #231815;
  /* Heading7-S-24 */
  font-family: Montserrat;
  font-size: 1.25vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  /* 150% */
  
}


@media screen and (max-width: 1440px) {
  .crumbs {
    padding-top: 1.6667vw;
  }
  .products .container .product-list .product-item .product-item-img {
    width: 12.5vw;
    height: 12.5vw;
    margin: 2.7778vw auto;
  }
  .technology .technology-list .technology-item .technology-item-img {
    height: 10.0694vw;
  }
  .technology .technology-list .technology-item .technology-item-desc span {
    max-width: 15.6944vw;
  }
  .technology .technology-list .technology-item .technology-item-desc {
    height: 5.8333vw;
  }
}
@media screen and (max-width: 768px) {
  .crumbs {
    padding-top: 2.1333vw;
  }
  .products .container .product-list {
    width: 100%;
    height: auto;
    max-height: 150.6667vw;
    overflow: hidden;
    grid-template-columns: repeat(2, 1fr);
    
  }
  .products .container .product-list-more {
    display: flex;
  }
  .products .container .product-list .product-item {
    width: 100%;
    height: 50.4vw;
    padding: 4.2667vw;
    margin-right: -0.266vw;
    margin-bottom: -0.266vw;
  }
  .products .container .product-list .product-item:last-child {
    margin-bottom: 0;
  }
  .products .container .product-list .product-item:nth-child(even) {
    border-left: 0;
  }
  .products .container .product-list .product-item .product-item-title {
    font-size: 3.7333vw;
    max-width: 34.9333vw;
  }
  .products .container .product-list .product-item .product-item-img {
    width: 21.3333vw;
    height: 21.3333vw;
    margin: 0 auto;
    margin-bottom: 4.2667vw;
  }
  .products .container .product-list .product-item .product-item-view {
    display: flex;
    justify-content: center;
    /* align-items: center; */
  }
  .products .container .product-list .product-item .product-item-view span {
    font-size: 3.2vw;
    height: 4.8vw;
    border: 0;
    padding: 0;
  }
  .products .container .product-list .product-item:hover .product-item-view span {
    color: #231815;
    border: 0;
    background-color: unset;
  }
  .products .container .product-list .product-item:hover .product-item-view i {
    color: #231815;
  }
  .products .container .product-list .product-item .product-item-view .iconfont {
    display: block;
    font-size: 4.2667vw;
    line-height: normal;
    width: 4.2667vw;
    height: 4.2667vw;
    margin-left: 1.0667vw;
  }
  .technology {
    margin-top: 21.3333vw;
    text-align: center;
    padding-bottom: 21.3333vw;
  }
  .technology .technology-top .technology-title {
    font-size: 8.5333vw;
  }
  .technology .technology-top .view-all {
    display: none;
  }
  .technology .technology-top {
    border: 0;
    padding-bottom: 6.4vw;
  }
  .technology .technology-list {
    padding-top: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.1333vw;
  }
  .technology .technology-list .technology-item .technology-item-img {
    width: 100%;
    height: 23.7333vw;
  }
  .technology .technology-list .technology-item .technology-item-desc span {
    max-width: 38.1333vw;
    font-size: 3.7333vw;
    text-align: left;
  }
  .technology .technology-list .technology-item .technology-item-desc {
    height: 14.4vw;
    padding: 4.2667vw 2.1333vw;
  }
  .technology .technology-list-view {
    display: flex;
    width: 27.7333vw;
    height: 9.0667vw;
    margin: 0 auto;
    margin-top: 6.4vw;
    padding: 2.1333vw 4.2667vw;
    border: 0.2667vw solid #231815;
    border-radius: 6.4vw;
  }
  .technology .technology-list-view span {
    color:#231815;
    text-align: center;
    /* Small-12-S */
    font-family: "Montserrat-SemiBold" !important;
    font-size: 3.2vw;
    font-style: normal;
    line-height: 150%; /* 150% */
  }
  .technology .technology-list-view .iconfont {
    display: flex;
    color:#fff;
    background: #3A66FB;
    border-radius: 50%;
    width: 4.2667vw;
    height: 4.2667vw;
    justify-content: center;
    align-items: center;
    margin-left: 1.0667vw;
    line-height: 4.2667vw;
    font-size: 4.2666vw;
  }
  .technology-list .technology-item:nth-child(n+7) {
    display: none;
  }
  .products .crumbs {
    padding-bottom: 10.6667vw!important;
  }
  .technology .technology-list .technology-item:hover .technology-item-desc span {
   color: #231815;
  }
}
