.clearfix {
  display: block;
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}
.link-default {
  text-decoration: none;
  outline: none;
}
.hide {
  opacity: 0;
  visibility: hidden;
}
.show {
  opacity: 1;
  visibility: visible;
}
/** animate **/
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.scaleRotateAnimateDisplay {
  -webkit-transform: scale(1) rotate(180deg);
  -moz-transform: scale(1) rotate(180deg);
  -o-transform: scale(1) rotate(180deg);
  transform: scale(1) rotate(180deg);
}
.scaleRotateAnimateDisplayN {
  -webkit-transform: scale(0) rotate(0deg);
  -moz-transform: scale(0) rotate(0deg);
  -o-transform: scale(0) rotate(0deg);
  transform: scale(0) rotate(0deg);
}
.opacityDisplay {
  opacity: 0;
  visibility: hidden;
}
.couponBg {
  background: #ffbd27;
  background: -moz-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: -webkit-linear-gradient(top, #ffbd27 0%, #ff6d00 99%);
  background: linear-gradient(to bottom, #ffbd27 0%, #ff6d00 99%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffbd27', endColorstr='#ff6d00', GradientType=0);
}
.material_checkbox {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.material_checkbox .checkbox {
  position: relative;
  cursor: pointer;
  margin-right: 8px;
  border-radius: 0;
}
.material_checkbox .checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #363636;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.material_checkbox .checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #f2f2f2;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}
.material_checkbox .checkbox:checked:before {
  height: 6px;
  border-color: #ffbd27;
  border-top-style: none;
  border-right-style: none;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.material_radio input[type="radio"] {
  display: none;
}
.material_radio input[type="radio"] + label {
  cursor: pointer;
}
.material_radio input[type="radio"] + label::before {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #363636;
  border: 0px solid #363636;
  font-size: 0;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"] + label::after {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  content: "";
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #363636;
  position: absolute;
  bottom: 10px;
  left: 10px;
  transform: translate(-50%, 50%);
}
.material_radio input[type="radio"]:checked + label::before {
  background-color: transparent;
  width: 16px;
  height: 16px;
  border-width: 2px;
}
.material_radio input[type="radio"]:checked + label::after {
  width: 8px;
  height: 8px;
}
.noScrollRow {
  /* Works on Firefox */
  scrollbar-width: 0;
  scrollbar-color: transparent;
  /* Works on Chrome, Edge, and Safari */
}
.noScrollRow::-webkit-scrollbar {
  height: 0px;
}
.noScrollRow::-webkit-scrollbar-track {
  background: transparent;
}
.noScrollRow::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.op_coupon_w:before {
  opacity: 1 !important;
  visibility: visible !important;
}
.op_coupon_w .coupon_content {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.op_coupon_w .coupon_use_content {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transform: translateY(0) !important;
  -moz-transform: translateY(0) !important;
  -o-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
/***** 酷碰券下載視窗 *****/
#coupon_windows {
  display: none;
  position: fixed;
  width: 100vw;
  /* height: 120%; */
  height: 100vh;
  /* top: -55px; */
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
}
#coupon_windows:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
body #coupon_windows .coupon_content {
  position: absolute;
  background: rgba(255, 255, 255);
  width: 400px;
  height: 670px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .icon {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #363636;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .icon:hover {
  color: rgb(255, 189, 39);
}
#coupon_windows .coupon_content header {
  border-bottom: 1px solid #363636;
  color: #363636;
  font-size: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 15px;
  width: calc(100% - 40px);
  height: 41px;
  margin-top: 10px;

}
#coupon_windows .coupon_content .canvas {
  background-size: cover;
  background: #FFFFFF;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 5px;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: calc(100% - 20px);
  height: 535px;
  gap: 24px;
  isolation: isolate;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow-y: scroll;
}
#coupon_windows .coupon_content .canvas::-webkit-scrollbar {
  width:5px;
  height: 200px;
  background: #FFFFFF;
  right: 5px;
  top: 0px;
  display: block;
  overflow: auto;
}
#coupon_windows .coupon_content .canvas::-webkit-scrollbar-thumb {
  background: rgba(153, 153, 153, 0.6);
  border-radius: 20px;
  height: 1px;
}


#coupon_windows .coupon_content .canvas .card {
  float: left;
  position: relative;
}
#coupon_windows .coupon_content .canvas .card_left {
  padding: 10px 10px 10px 0;
  width: 95%;
  height: 340px;
  box-sizing: border-box;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  gap: 5px;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .market_logo {
  width: 150px;
  margin-bottom: 15px;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .market_title {
  width: 100%;
  height: 63px;
  margin-bottom: 24px;
  font-size: 18px;
  flex-grow: 0;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .market_remind {
  font-size: 12px;
  width: 100%;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .value {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  color: rgb(255, 189, 39);
  text-align: center;
  flex-grow: 1;
  width: 100%;
  font-size: 30px;
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .value .coupon_primary_price {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  font-size: 30px;
  flex-grow: 1;
  /* width: 100%; */
}
#coupon_windows .coupon_content .canvas .card_left .coupon_info .use_remind {
  width: 100%;
  height: 20px;
  color: #FFBD27;
  flex: none;
  order: 4;
  font-size: 14px;
  align-self: stretch;
  flex-grow: 0;
  text-align: center;
}
#coupon_windows .coupon_content .canvas .card_right {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#coupon_windows .coupon_content .canvas .card_right .coupon_info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  height: 220px;
  border-top: 2px dashed rgba(153, 153, 153, 0.5);
  padding-top: 15px;
  box-sizing: border-box;
  gap: 5px;
  line-height: 14px;
}

#coupon_windows .coupon_content .canvas .card_right .coupon_info .how_to_use {
  font-size: 12px;
  width: 100%;
}
#coupon_windows .coupon_content .canvas .card_right .coupon_info .how_to_use .market_vendor {
  color: rgb(255, 189, 39);
  font-size: 18px;
  width: 100%;
  line-height: 21px;
  margin-bottom:5px;
}
#coupon_windows .coupon_content .canvas .card_right .coupon_info .how_to_use .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#coupon_windows .coupon_content .canvas .card_right .coupon_info .how_to_use .item h3 {
  flex-shrink: 0;
}
#coupon_windows .coupon_content .canvas .card_right .coupon_info .how_to_use .item div {
  flex-grow: 1;
}
/* #coupon_windows .coupon_content .copy_canvas {
  position: absolute;
  top: 88px;
  width: 99%;
  z-index: 1;
} */
/* #coupon_windows .coupon_content .canvas.print {
  background: url('../images/coupon/n_coupon_pbg_1920.png') no-repeat;
} */
#coupon_windows .coupon_content .canvas.print .card_right .coupon_info .value #exchange_price {
  display: none;
}

#coupon_windows .coupon_content .member_has_coupon {
  display: flex;
  background: #C4C4C4;
  color: #FFFFFF;
  cursor: default;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  /* margin: 8px auto 15px; */
  padding: 10px;
  text-decoration: none;
  margin: 6px 12px;
  justify-content: center;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .coupon_download_btn {
  display: flex;
  background: rgb(255, 189, 39);
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  /* margin: 24px auto 15px; */
  padding: 10px;
  text-decoration: none;
  margin: 6px 12px;
  justify-content: center;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .coupon_download_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_content .coupon_use_btn {
  display: block;
  background: rgb(255, 189, 39);
  width: 150px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin: 8px auto 15px;
  padding: 10px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .coupon_use_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_content .login_or_signup_btn {
  display: block;
  background: rgb(255, 189, 39);
  width: max-content;
  width: 100% !important;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  height: 45px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-radius: 1.5rem;
}
#coupon_windows .coupon_content .login_or_signup_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_content .coupon_share_list {
  position: absolute;
  text-align: center;
  padding: 10px;
  bottom: 0;
  left: 0;
  right: 0;
}
#coupon_windows .coupon_content .coupon_share_list .item {
  display: inline-block;
  font-size: 24px;
  margin: auto 5px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_content .coupon_share_list .item:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#coupon_windows .coupon_content .coupon_share_list .item:first-child {
  color: #4267b2;
}
#coupon_windows .coupon_content .coupon_share_list .item:nth-child(2) {
  color: #00b900;
}
#coupon_windows .coupon_content .coupon_share_list .item:nth-child(3) {
  color: #1AAD19;
}
#coupon_windows .coupon_content .coupon_share_list .item:last-child {
  color: #59267c;
}
#coupon_windows .coupon_use_content {
  position: absolute;
  /* background: rgba(255, 255, 255, 0.9); */
  background: rgba(255, 255, 255);
  width: 400px;
  height: 670px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 5px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#coupon_windows .coupon_use_content .icon {
  position: absolute;
  /* top: 26.5px;
  right: 15px; */
  /* top: 10px;
  right: 10px; */
  top: 18px;
  right: 18px;
  /* color: rgb(0, 0, 0); */
  color: #363636;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .icon:hover {
  color: rgb(255, 189, 39);
}
#coupon_windows .coupon_use_content header {
  border-bottom: 1px solid #363636;
  color: #363636;
  font-size: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 15px;
  width: calc(100% - 40px);
  height: 41px;
  margin-top: 10px;
}
#coupon_windows .coupon_use_content .canvas {
  background-size: cover;
  background: #FFFFFF;
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  margin: auto;
  margin-bottom: 15px;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: calc(100% - 20px);
  height: 580px;
  /* gap: 24px; */
  gap: 18px;
  isolation: isolate;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow-y: scroll;
}
#coupon_windows .coupon_use_content .canvas::-webkit-scrollbar {
  width:5px;
  height: 200px;
  background: #FFFFFF;
  right: 5px;
  top: 0px;
  display: block;
  overflow: auto;
}
#coupon_windows .coupon_use_content .canvas::-webkit-scrollbar-thumb {
  background: rgba(153, 153, 153, 0.6);
  border-radius: 20px;
}


#coupon_windows .coupon_use_content .canvas .card {
  float: left;
  position: relative;
}
#coupon_windows .coupon_use_content .canvas .card_left {
  padding: 10px 10px 10px 0;
  width: 95%;
  /* height: 340px; */
  box-sizing: border-box;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  gap: 5px;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .market_logo {
  width: 150px;
  margin-bottom: 15px;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .market_title {
  width: 100%;
  margin-bottom: 24px;
  font-size: 18px;
  flex-grow: 0;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .second_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  margin: auto;
  margin-bottom: 24px;
  color: #FFBD27;
  word-break: break-all;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .market_remind {
  font-size: 12px;
  width: 100%;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .value {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  color: rgb(255, 189, 39);
  text-align: center;
  flex-grow: 1;
  width: 100%;
  font-size: 30px;
}

#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .scan_qr_code {
  margin: auto;
  width: 150px;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .scan_qr_code img{
  width: 100%;
  height: 100%;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info span {
  font-size: 12px;
  line-height: 17px;
  color: #363636;
  margin: auto;
  display: inline-block;
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .serialNo {
  display: inline-block;
  font-size: 12px;
  line-height: 17px;
  color: #363636;
  /* margin: auto; */
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .value .coupon_primary_price {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  font-size: 30px;
  flex-grow: 1;
  /* width: 100%; */
}
#coupon_windows .coupon_use_content .canvas .card_left .coupon_info .use_remind {
  width: 100%;
  height: 20px;
  color: #FFBD27;
  flex: none;
  order: 4;
  font-size: 14px;
  align-self: stretch;
  flex-grow: 0;
  text-align: center;
}
#coupon_windows .coupon_use_content .canvas .card_right {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  height: 220px;
  border-top: 2px dashed rgba(153, 153, 153, 0.5);
  padding-top: 15px;
  box-sizing: border-box;
  gap: 5px;
  line-height: 14px;
}

#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use {
  font-size: 12px;
  width: 100%;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .market_vendor {
  color: rgb(255, 189, 39);
  font-size: 18px;
  width: 100%;
  line-height: 21px;
  margin-bottom:5px;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item h3 {
  flex-shrink: 0;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item div {
  flex-grow: 1;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item .addr_icon {
  margin-right: 6px;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item .coin_img {
  color: #FFBD27;
}
#coupon_windows .coupon_use_content .canvas .card_right .coupon_info .how_to_use .item img{
  width: 12px;
  height: 12px;
  margin-right: 4px;
}
/* #coupon_windows .coupon_use_content .copy_canvas {
  position: absolute;
  top: 88px;
  width: 99%;
  z-index: 1;
} */
/* #coupon_windows .coupon_use_content .canvas.print {
  background: url('../images/coupon/n_coupon_pbg_1920.png') no-repeat;
} */
#coupon_windows .coupon_use_content .canvas.print .card_right .coupon_info .value #exchange_price {
  display: none;
}

#coupon_windows .coupon_use_content .member_has_coupon {
  display: flex;
  background: #c4c4c45c;
  /* width: 150px; */
  color: #FFFFFF;
  cursor: default;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin: 8px auto 15px;
  padding: 10px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .coupon_download_btn {
  display: flex;
  background: rgb(255, 189, 39);
  width: 152px;
  justify-content: center;
  /* width: 200px; */
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  /* margin: 24px auto 15px; */
  margin: 10px auto 5px;
  padding: 10px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .coupon_download_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_use_content .coupon_use_btn {
  display: block;
  background: rgb(255, 189, 39);
  width: 150px;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin: 8px auto 15px;
  padding: 10px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .coupon_use_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_use_content .login_or_signup_btn {
  display: block;
  background: rgb(255, 189, 39);
  width: max-content;
  max-width: 90%;
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  margin: 15px auto;
  padding: 10px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .login_or_signup_btn:hover {
  background: rgb(255, 234, 0);
}
#coupon_windows .coupon_use_content .coupon_share_list {
  position: absolute;
  text-align: center;
  padding: 10px;
  bottom: 0;
  left: 0;
  right: 0;
}
#coupon_windows .coupon_use_content .coupon_share_list .item {
  display: inline-block;
  font-size: 24px;
  margin: auto 5px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#coupon_windows .coupon_use_content .coupon_share_list .item:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
#coupon_windows .coupon_use_content .coupon_share_list .item:first-child {
  color: #4267b2;
}
#coupon_windows .coupon_use_content .coupon_share_list .item:nth-child(2) {
  color: #00b900;
}
#coupon_windows .coupon_use_content .coupon_share_list .item:nth-child(3) {
  color: #1AAD19;
}
#coupon_windows .coupon_use_content .coupon_share_list .item:last-child {
  color: #59267c;
}
