.productViewContainer {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: top 0.2s ease-out;
  -moz-transition: top 0.2s ease-out;
  -webkit-transition: top 0.2s ease-out;
  -o-transition: top 0.2s ease-out;
}

.productViewTopImg {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.productViewTopImg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.figureBackground {
  z-index: 1;
  top: 1.1rem;
  right: -5px;
}

.productSlide .productViewContainer {
  width: calc(100% - 20px);
  display: block;
  float: unset;
  margin: 0 auto;
}

.secondImg {
  opacity: 0;
  position: absolute !important;
  left: 0;
  top: 0;
}

.productViewContainer:hover .secondImg {
  opacity: 1;
}

.productViewContainer:hover .firstImg {
  opacity: 0;
}

.productViewTop {
  overflow: hidden;
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition-property: opacity;
  transition-duration: 0.3s;
}

.productViewBottom {
  height: auto;
  min-height: 105px;
  overflow: hidden;
  width: 100%;
  text-align: left;
  position: relative;
}

.productViewImage {
  height: 100%;
  width: 100%;
}

.productViewName {
  position: relative;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  font-weight: 600;
  height: 27px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  width: calc(100% - 31px);
  float: left;
}

.productViewPrice {
  display: flex;
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
  font-size: 1.5rem;
  height: 26px;
  font-weight: 300;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}

.badgeContainer {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15%;
  gap: 10px;
}

.badgeFile {
  position: relative;
  width: 100%;
}

.oldPrice {
  position: relative;
  margin-right: 1.4rem;
  color: var(--base);
  opacity: 0.7;
  font-size: 1.2rem;
}

.oldPrice:before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  right: 0;
  border-top: 2px solid;
  border-color: inherit;
  color: var(--base);
}

.bankPrice {
  position: relative;
  float: left;
  width: auto;
  margin-right: 1rem;
  height: auto;
  overflow: visible;
  font-size: 1.5rem;
  display: flex;
  font-weight: 300;
  flex-wrap: wrap;
  flex-direction: row;
}

.bankPriceRow {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 11px;
  margin-right: 15px;
}

.bankPriceRow.bankRow1 .bankPriceImg {
  top: -1px;
}

.bankPriceImg {
  position: relative;
  height: 23px;
  margin-right: 0.5rem;
}

.bankPriceText {
  position: relative;
  float: left;
}

.transferText {
  margin-left: 0;
}

.bankPriceText.bank4 {
  margin-top: 3px;
  color: #e5221c;
}

.bankPriceText.bank1 {
  color: var(--orange);
}

.bankPriceText.bank12 {
  color: #000;
}

.bankRow1 {
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .productViewContainer {
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    margin-bottom: 2rem;
  }

  .productViewImage {
    height: auto;
  }

  .productViewName {
    margin-left: 0;
  }

  .productViewPrice {
    margin-left: 0;
  }

  .productViewBottom {
    height: auto;
    min-height: 0;
  }

  .bankPriceImg {
    height: 18px;
    width: auto;
  }

  img.bankPriceImg {
    width: auto;
  }

  .bankPriceRow {
    height: 26px;
  }
}
