.product-list-container {
  min-height: calc(100vh - 300px);
}

.product-list-container .product-banner {
  max-height: 420px;
  height: 420px;
  width: 100%;
  background-image: url("../imgs/product-banner.png");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-list-container .product-list-content {
  padding-top: 48px;
  padding-bottom: 69px;
  padding-left: 100px;
  padding-right: 100px;
  background-color: #fff;
}

.product-list-container .pl-menus {
  background: #F4F6FF;
  width: 210px;
  min-width: 180px;
  min-height: 400px;
  padding-top: 28px;
}

.product-list-container .pl-menus a {
  color: #333;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-list-container .pl-menus a:visited {
  color: #333;
}

.product-list-container .pl-menus a:hover {
  color: #275CF1;
}

.product-list-container .pl-menus span {
  display: inline-block;
  padding: 8px;
}

.product-list-container .pl-menu-item {
  font-size: 16px;
  color: #333333;
  height: 60px;
}

.product-list-container .pl-menu-item span {
  pointer-events: none;
}

.product-list-container .pl-menu-item.active span {
  color: #275CF1;
  border-bottom: 2px solid #275CF1;
}

.product-list-container .pl-menu-item + .pl-menu-item {
  margin-top: 10px;
}

.product-list-container .pl-item {
  cursor: pointer;
  width: 450px;
  margin-right: 12px;
  margin-bottom: 12px;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.14);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.14);
}

.product-list-container .pl-item .img-container {
  width: 100%;
  height: 290px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#323750), to(#4A5985));
  background-image: linear-gradient(180deg, #323750 0%, #4A5985 100%);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-list-container .pl-item .img-container .hot-mark {
  position: absolute;
  top: 0;
  right: -1px;
  width: 58px;
  height: auto;
  z-index: 10;
}

.product-list-container .pl-item .img-container .mark {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}

.product-list-container .pl-item .img-container .product {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

.product-list-container .pl-item .pl-text {
  padding: 5px;
}

.product-list-container .pl-item .title {
  font-size: 16px;
  color: #333333;
  letter-spacing: 2.66px;
  font-weight: bold;
  width: 100%;
}

.product-list-container .pl-item .desc {
  font-size: 14px;
  color: #999999;
  letter-spacing: 2.33px;
  text-align: justify;
  line-height: 20px;
  height: 80px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 1500px) {
  .product-list-container .pl-item {
    width: 300px;
  }
  .product-list-container .pl-item .img-container {
    height: 200px;
  }
}
/*# sourceMappingURL=product-list.css.map */