.product-card {
    height: 100%;
    box-sizing: border-box;
  background-color: #6556a4;
  color: white;
  border-radius:  1vw;
  /*border-top-left-radius:  1vw;*/
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
}
.product-image {
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
}
.product-image-text {
  color: #f9a51b;
  padding-right: 1vw;
  /* width: 60%; */
  flex: 1;
}
.product-image-text-title {
  font-size: 1.4em;
  font-weight: 600;
}
.product-image-text-desc {
  font-size: 1.2em;
  margin-top: 0.5vw;
  color: white;
}
.product-image-content {
  padding: 0.4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f6ab00;
  border-radius: 1vw;
}
.product-image-content-img {
  width: 20vw;
  height: 13.35vw;
  border-radius: 1vw;
  background-image: url("../../img/product/jstz.png");
  background-size: 100% 100%;
  background-position: center;
  position: relative;
}
.product-image-content-price {
  position: absolute;
  color: #ff6200;
  bottom: 0.5vw;
  right: 0.5vw;
}
.product-dule {
  margin-top: 1vw;
}