.product-category-gallery {
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-category-gallery,
.product-category-gallery * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.product-category-gallery .item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 350px;
  background: #fff;
}
.product-category-gallery .item:hover .item-popover {
  opacity: 1;
}
.product-category-gallery .item .item-name {
  content: ' ';
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 78px;
  background: url("http://www.ekred.cn/storage/t1bg.png") no-repeat;
  position: absolute;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  line-height: 78px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.product-category-gallery .item .item-poster {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-category-gallery .item .item-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.product-category-gallery .item .item-popover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 500ms;
}
.product-category-gallery .item .item-popover:before {
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid #fff;
  content: ' ';
  display: block;
  position: absolute;
}
.product-category-gallery .item .item-popover h3 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
}
.product-category-gallery .item .item-popover span {
  font-size: 16px;
  margin-bottom: 24px;
}
.product-category-gallery .item .item-popover svg {
  width: 36px;
  height: 36px;
}
/*# sourceMappingURL=gallery-category.css.map */