/*
---------------------------------------------
Products Center
---------------------------------------------
*/
.page-heading .banner-box {
  height: 320px;
  background-image: url("../images/products-center/banner.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-heading .banner-box .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-heading .banner-box .container .inner-content {
  display: block;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}
.page-heading .banner-box .container .inner-content h2 {
  font-size: 58px;
  font-weight: 600;
}
.page-heading .banner-box .container .inner-content .desc {
  font-size: 24px;
}
#products .products-box {
  padding: 30px 0;
}
#products .products-box .product-title {
  border-left: 4px solid #0073c0;
  margin-bottom: 30px;
  display: flex;
 justify-content: space-between;
}
#products .products-box .product-title .title {
  font-size: 22px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #000;
  padding-left: 8px;
  width:90%;
}
#products .products-box .product-title a {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #000;
  }
#products .products-box .item {
  margin-bottom: 30px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  width: 100%;
  min-height: 450px;
  position: relative;
}
#products .products-box .item .title {
  font-size: 16px;
  font-family: MicrosoftYaHei;
  font-weight: 400;
  color: #0e0e0e;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#products .products-box .item img {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-55%, -50%);
  padding: 40px;
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  overflow: hidden;
}
#products .products-box .item:hover {
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.12);
}
@media (max-width: 1200px) {
  #products .products-box .item {
    min-height: 280px;
  }
  #products .products-box .item img {
    max-height: 220px;
  }
}
@media (max-width: 767px) {
  #products .products-box .row .col-lg-4,
  .col-md-4,
  .col-sm-6 {
    padding-right: 30px;
    padding-left: 30px;
  }
  #products .products-box .item {
    min-height: 350px;
  }
  #products .products-box .item img {
    width: 85%;
    padding: 40px;
    max-height: 300px;
  }
}
