.product-tag-root {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-tag-root .container {
  width: 1200px;
  padding: 48px 0;
}
.product-tag-root .container .title {
  font-size: 28px;
  line-height: 30px;
  font-weight: bold;
  color: #0a005a;
  margin-bottom: 48px;
  text-align: center;
}
.product-tag-root .container .tag-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-tag-root .container .tag-row .tag-item {
  height: 114px;
  width: 180px;
  border-radius: 10px;
  background-color: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}
.product-tag-root .container .tag-row .tag-item:hover {
  color: white;
  background-color: #e97d26;
}
.product-tag-root .container .tag-row .tag-item:hover .icon {
  filter: drop-shadow(36px 0 white);
  left: -36px;
  position: absolute;
}
.product-tag-root .container .tag-row .tag-item.current {
  position: relative;
  color: white;
  background-color: #e97d26;
}
.product-tag-root .container .tag-row .tag-item.current .icon {
  filter: drop-shadow(36px 0 white);
  left: -36px;
  position: absolute;
}
.product-tag-root .container .tag-row .tag-item.current::after {
  content: "";
  height: 30px;
  width: 30px;
  background-color: #e97d26;
  border-radius: 5px;
  position: absolute;
  bottom: -12px;
  transform: rotate(45deg);
}
.product-tag-root .container .tag-row .tag-item .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 36px;
  width: 36px;
  margin-bottom: 15px;
}
.product-tag-root .container .tag-row .tag-item .icon {
  height: 36px;
  width: 36px;
  pointer-events: none;
}

/*# sourceMappingURL=product_tag.css.map */
