.coupon {
  font-size: 0.8em;
  /*couponCommon*/
  /*couponCategory*/
  /*couponBrands*/
}
.couponItem_container {
  position: relative;
  z-index: 1;
  width: 96%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .couponItem_container {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .couponItem_container {
    width: 98%;
  }
}
.couponItem_container > div {
  width: 33.3%;
  flex-shrink: 0;
  padding: 0 0.5em 1em;
}
@media screen and (max-width: 576px) {
  .couponItem_container > div {
    width: 50%;
    padding: 0 0.3em 1em;
  }
}
.couponItem_container > div > div {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(186, 123, 0, 0.2);
}
@media screen and (max-width: 576px) {
  .couponItem_container > div > div {
    /* display: grid;
    grid-template-columns: 1fr 3.5em;
    grid-template-rows: repeat(2, auto); */
  }
}
.coupon_type {
  font-size: 1em;
  font-weight: bold;
}
.coupon_name {
  display: flex;
  align-items: center;
  padding: 0 0.5em;
}
.coupon_name p {
  font-size: 1.2em;
  word-wrap: break-word;
  display: -webkit-box;
  text-overflow: clip;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-y: hidden;
  color: var(--primary-color);
  font-weight: 700;
}
.coupon_price {
  font-size: 2.2em;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 700;
}
.coupon_price b {
  font-size: 180%;
  font-weight: 700;
}
.coupon_limited {
  font-size: 1.25em;
  font-weight: bold;
}
.coupon_period {
  font-size: 0.85em;
}
.coupon_products {
  text-decoration: underline;
  cursor: pointer;
  color: var(--primary-color);
  transition: ease-in-out 0.2s;
}
@media (hover: hover) {
  .coupon_products:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 1024px) {
  .coupon_products span {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .coupon_products {
    color: #fff;
  }
}

.coupon_btn {
  font-size: 1.22em;
  font-weight: bold;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  padding: 0.2em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.3em;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}
@media (hover: hover) {
  .coupon_btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 576px) {
  .coupon_btn {
    border-radius: 0;
    padding: 0;
  }
}
@media screen and (max-width: 576px) {
  .coupon_hd {
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 768px) {
    .coupon_btn img {
        width: 2vw;
    }
} 
@media screen and (max-width: 576px) {
    .coupon_btn img {
        width: 5vw;
    }
} 

.coupon_bd {
  position: relative;
  padding: 0.5em;
}
.coupon_bd:before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: #f6aa69;
  border-radius: 20px;
  bottom: -0.5em;
  left: -0.5em;
}
.coupon_bd:after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: #f6aa69;
  border-radius: 20px;
  bottom: -0.5em;
  right: -0.5em;
}
@media screen and (max-width: 576px) {
  .coupon_bd {
    grid-area: 2/1/3/2;
  }
  .coupon_bd:before {
    display: none;
  }
  .coupon_bd:after {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .coupon_ft {
    position: relative;
  }
  .coupon_ft:before {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-color: #f6aa69;
    border-radius: 20px;
    top: -0.5em;
    left: -0.5em;
  }
  .coupon_ft:after {
    content: "";
    position: absolute;
    width: 1em;
    height: 1em;
    background-color: #f6aa69;
    border-radius: 20px;
    top: -0.5em;
    right: -0.5em;
  }
}
.couponCommon_item {
  --primary-color: #0c938b;
}
.couponCommon_item .coupon_hd {
  border-bottom: var(--primary-color) 1px dashed;
  display: flex;
  height: 4.2em;
  align-items: stretch;
}
.couponCommon_item .coupon_ft {
  border-top: var(--primary-color) 1px dashed;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.8em 0;
}
@media screen and (max-width: 576px) {
  .couponCommon_item .coupon_ft {
    background-color: var(--primary-color);
  }
}
.couponCommon_item .coupon_type {
  color: #fff;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  width: 2.4em;
  padding: 0 0.7em;
}
.couponCommon_item .coupon_name {
  color: var(--primary-color);
  background-color: #d8faf4;
}
.couponCommon_item .coupon_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
}
.couponCommon_item .coupon_price {
  color: var(--primary-color);
}
.couponCommon_item .coupon_btn {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 576px) {
  .couponCommon_item .coupon_btn {
    letter-spacing: 0;
  }
}
.couponCategory_item {
  --primary-color: #4f65a5;
}
.couponCategory_item .coupon_hd {
  display: flex;
  height: 4.2em;
  align-items: stretch;
}
.couponCategory_item .coupon_ft {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.8em 0.4em 0.8em;
  background-color: #e3e0e5;
}
@media screen and (max-width: 576px) {
  .couponCategory_item .coupon_ft {
    border-top: var(--primary-color) 1px dashed;
    background-color: var(--primary-color);
  }
}
.couponCategory_item .coupon_type {
  color: #fff;
  display: flex;
  align-items: center;
  width: 2.4em;
  padding: 0 0.78em;
  position: relative;
  z-index: 1;
}
.couponCategory_item .coupon_type::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.3em;
  left: 0.4em;
  background-color: var(--primary-color);
  z-index: -1;
}
.couponCategory_item .coupon_type::before {
  content: "";
  position: absolute;
  bottom: -0.12em;
  left: 0.4em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 1em 0;
  border-color: var(--primary-color) transparent transparent;
  z-index: -1;
}
.couponCategory_item .coupon_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  padding: 1.6em 0.5em;
  z-index: 1;
}
.couponCategory_item .coupon_price {
  color: #fff;
}
.couponCategory_item .coupon_price:after {
  content: "";
  background-image: url(../images/icon_couponDot.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 80%;
  background-color: var(--primary-color);
  border-radius: 0.4em;
  top: 0.2em;
  right: 1em;
  bottom: 0.4em;
  left: 1em;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .couponCategory_item .coupon_price:after {
    right: 0.2em;
    left: 0.2em;
  }
}
.couponCategory_item .coupon_limited {
  color: #fff;
}
.couponCategory_item .coupon_period {
  color: #fff;
}
.couponCategory_item .coupon_btn {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 576px) {
  .couponCategory_item .coupon_btn {
    letter-spacing: 0;
  }
}
.couponBrands_item {
  --primary-color: #4f4463;
}
.couponBrands_item .coupon_hd {
  display: flex;
  height: 4.2em;
  align-items: stretch;
}
.couponBrands_item .coupon_ft {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0.8em 0.4em 0.8em;
  background-color: #e3e0e5;
}
@media screen and (max-width: 576px) {
  .couponBrands_item .coupon_ft {
    border-top: var(--primary-color) 1px dashed;
    background-color: var(--primary-color);
  }
}
.couponBrands_item .coupon_type {
  color: #fff;
  display: flex;
  align-items: center;
  width: 2.4em;
  padding: 0 0.78em;
  position: relative;
  z-index: 1;
}
.couponBrands_item .coupon_type::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.3em;
  left: 0.4em;
  background-color: var(--primary-color);
  z-index: -1;
}
.couponBrands_item .coupon_type::before {
  content: "";
  position: absolute;
  bottom: -0.12em;
  left: 0.4em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5em 1em 0;
  border-color: var(--primary-color) transparent transparent;
  z-index: -1;
}
.couponBrands_item .coupon_bd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  padding: 1.6em 0.5em;
  z-index: 1;
}
.couponBrands_item .coupon_price {
  color: #fff;
}
.couponBrands_item .coupon_price:after {
  content: "";
  background-image: url(../images/icon_couponDot.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 80%;
  background-color: var(--primary-color);
  border-radius: 0.4em;
  top: 0.2em;
  right: 1em;
  bottom: 0.4em;
  left: 1em;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .couponBrands_item .coupon_price:after {
    right: 0.2em;
    left: 0.2em;
  }
}
.couponBrands_item .coupon_limited {
  color: #fff;
}
.couponBrands_item .coupon_period {
  color: #fff;
  font-size: 0.8em;
}
.couponBrands_item .coupon_btn {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 576px) {
  .couponBrands_item .coupon_btn {
    letter-spacing: 0;
  }
}/*# sourceMappingURL=coupon.css.map */