﻿.gdcard {
  display: flex;
  font-size: 14px;
  flex-direction: column
}
.gdcard:hover h2 {
  color: #fe5a58
}
.gdcard:hover .gdcard-img {
  transform: scale(1.05)
}
.gdcard-img {
  border-radius: 4px;
  padding-top: 100%;
  width: 100%;
  transition: transform .2s;
  background-size: contain
}
.gdcard-img img{
   width: 188.5px;

}
.gdcard-info {
  display: flex;
  flex-direction: column
}
.gdcard h2 {
  font-weight: 600;
  color: #1f1f1f;
  height: 38px;
  margin-top: 8px
}
.gdcard-price {
  color: #fe5a58;
  white-space: nowrap;
  line-height: 28px;
  margin-top: 3px
}
.gdcard-price em {
  color: #999;
  text-decoration: line-through
}
.gdcard-discount {
  font-size: 12px;
  color: #fe5a58
}
.gdcard-discount:after {
  content: "条优惠";
  color: #1f1f1f
}
.gdcard-name {
  font-size: 12px;
  color: #999
}
.gdcard.small {
  flex-direction: row;
  justify-content: space-between
}
.gdcard.small:hover .gdcard-img {
  transform: unset
}
.gdcard.small h2 {
  font-size: 14px;
  height: 34px;
  line-height: 17px;
  margin-top: unset
}
.gdcard.small .gdcard-img {
  height: 96px;
  width: 96px;
  padding-top: unset
}
.gdcard.small .gdcard-info {
  justify-content: space-between;
  width: calc(100% - 112px);
  height: 96px;
  padding: 5px 0;
  box-sizing: border-box
}
.gdcard.small .gdcard-price {
  line-height: unset;
  margin-top: 12x
}