@charset "UTF-8";
@import 'reset.css';
/*------------------------------------*\
    內容變數
\*------------------------------------*/
.card-box {
  border-radius: 1rem;
  background-color: #FFFFFF;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .card-box {
    width: 100%;
    border-radius: 0.25rem;
  }
}

.card-box-s {
  border-radius: 1rem;
  background-color: #FFFFFF;
  padding: 0.75rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .card-box-s {
    width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 0;
  }
}

.card-box-no-radius {
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .card-box-no-radius {
    width: 100%;
  }
}

.card-box-no-pt {
  border-radius: 1rem;
  background-color: #FFFFFF;
  padding: 0 1rem 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .card-box-no-pt {
    border-radius: 0.25rem;
    width: 100%;
  }
}

.card-box-no-both {
  border-radius: 0;
  background-color: #FFFFFF;
  padding: 0 1rem 0.75rem 1rem;
}
@media screen and (max-width: 767px) {
  .card-box-no-both {
    width: 100%;
  }
}

body {
  line-height: 1;
  font-size: 16px/150%;
  font-family: "Nunito Sans", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: none;
}

/*------------------------------------*\
    layout
\*------------------------------------*/
.w-100 {
  width: 100%;
}

.frame-l {
  max-width: 1172px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .frame-l {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.frame-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .frame-flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .frame-flex {
    gap: 0;
  }
}

.frame-flex-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .frame-mobile-none {
    padding-left: 0;
    padding-right: 0;
  }
}

.frame-web-none {
  max-width: 1172px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .frame-web-none {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.d-flex-j-start-a-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.d-flex-j-start-a-end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.d-flex-j-start-a-stretch {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

.d-flex-j-around-a-center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.d-flex-j-between-a-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.d-flex-j-between-a-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.d-flex-j-between-a-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.d-flex-j-end-a-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.d-flex-a-start-j-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .d-flex-col-j-shart-a-center-m {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .d-flex-colre-j-shart-a-center-m {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.gap-05x {
  gap: 2px;
}

.gap-1x {
  gap: 0.25rem;
}

.gap-2x {
  gap: 0.5rem;
}

.gap-3x {
  gap: 0.75rem;
}

.gap-4x {
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .gap-0-m {
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .for-web {
    display: none;
  }
}

.for-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .for-mobile {
    display: block;
  }
}

.wrapper {
  background-color: #F7F8FA;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 1200px) {
  .wrapper {
    padding-bottom: 6.375rem;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-bottom: 5.75rem;
  }
}

.mt-3x {
  margin-top: 0.75rem;
}

.mb-2x {
  margin-bottom: 0.5rem;
}

.mb-3x {
  margin-bottom: 0.75rem;
}

.mb-4x {
  margin-bottom: 1rem;
}

.mb-5x {
  margin-bottom: 1.25rem;
}

.mb-6x {
  margin-bottom: 1.5rem;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.ml-4x {
  margin-left: 1rem;
}

.pt-x {
  padding-top: 0.25rem;
}

@media screen and (max-width: 767px) {
  .pt-0-m {
    padding-top: 0;
  }
}

.box-s {
  width: 25.875rem;
  flex: 0 0 auto;
}
@media screen and (max-width: 1200px) {
  .box-s {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .box-s {
    margin-bottom: 0;
    padding-bottom: 0.75rem;
  }
}

.box-m {
  flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
  .box-m {
    width: 100%;
  }
}

.box-s-other {
  width: 25.875rem;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .box-s-other {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .card-m {
    border-radius: 0;
  }
}

.card-box-for-mobile {
  padding: 1rem;
  background-color: #FFFFFF;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .card-box-for-mobile {
    padding: 0 1rem 0.75rem 1rem;
  }
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

/*------------------------------------*\
    footer
\*------------------------------------*/
footer {
  width: 100%;
  background-color: #4E5969;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
}
footer .discount-wrapper {
  background-color: #85F082;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #1D2129;
  display: none;
}
@media screen and (max-width: 767px) {
  footer .discount-wrapper {
    display: flex;
    padding: 0.5rem 1rem;
  }
}
footer .discount-wrapper .more {
  padding: 1px 0.5rem;
  gap: 0.5rem;
}
footer .discount-wrapper .more img {
  width: 1.25rem;
  height: 1.25rem;
}
footer .share-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  footer .share-wrapper {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
footer .btn-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  footer .btn-share {
    font-size: 0;
  }
}
footer .btn-share:hover {
  opacity: 0.8;
}
footer .btn-share:active {
  opacity: 0.6;
}

/*------------------------------------*\
    元件
\*------------------------------------*/
.back-box {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1D2129;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
}

.card-box-sticky {
  width: 25.875rem;
  background-color: #FFFFFF;
  padding: 1.5rem 1rem 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .card-box-sticky {
    width: 100%;
  }
}

.card-border-box {
  border: 1px solid #E5E6EB;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
  padding: 0.75rem 0.5rem;
}

@media screen and (max-width: 767px) {
  .title-alert-box {
    width: 100%;
  }
}
.title-alert-box .title-alert {
  padding: 1rem;
  background-color: #FFECE8;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #F53F3F;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.title-alert-box .title-alert a {
  color: #F53F3F;
}
.title-alert-box .title-alert a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert {
    width: 100%;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.title-alert-box .title-alert:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert:last-of-type {
    margin-bottom: 0.75rem;
  }
}
.title-alert-box .title-alert .tag-danger {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  padding: 2px 0.5rem;
  background-color: #F53F3F;
  border-radius: 2px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert .tag-danger {
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 0.1875rem 0.5rem;
  }
}
.title-alert-box .title-alert .tag-danger-second {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  padding: 1px 7px;
  border: 1px solid #FFFFFF;
  background-color: #F76560;
  border-radius: 2px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert .tag-danger-second {
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 0.1875rem 0.5rem;
  }
}
.title-alert-box .title-alert .serial-numaber {
  font-weight: 600;
}
.title-alert-box .title-alert .btn-copy {
  color: #4E5969;
}
.title-alert-box .title-alert-primary {
  padding: 1rem;
  background-color: #E8FFFB;
  border-radius: 0.25rem;
  color: #0AA5A8;
  font-size: 1rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert-primary {
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.title-alert-box .title-alert-primary:last-of-type {
  margin-bottom: 0;
}
.title-alert-box .title-alert-primary .tag-primary {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #FFFFFF;
  padding: 1px 7px;
  border: 1px solid #FFFFFF;
  background-color: #0AA5A8;
  border-radius: 2px;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .title-alert-box .title-alert-primary .tag-primary {
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 0.1875rem 0.5rem;
  }
}
.title-alert-box .title-alert-primary .serial-numaber {
  font-weight: 600;
}

.product-logo-box {
  border: 1px solid #E5E6EB;
  border-radius: 0.25rem;
  overflow: hidden;
}

.tag-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.tag-box .tag-light {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #4E5969;
  background-color: #F2F3F5;
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
}
.tag-box .tag-primary {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #FFFFFF;
  background-color: #67D764;
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
}
.tag-box .tag-deep {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #FFFFFF;
  background-color: #4E5969;
  border-radius: 2px;
  padding: 0.25rem 0.5rem;
}

.interval {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #808080;
  margin-bottom: 0.75rem;
}
.interval div:last-of-type {
  font-family: "Nunito Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .interval {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}

.p-percent-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito Sans", sans-serif;
}

.h3-title {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4E5969;
  margin-bottom: 0.75rem;
}

.h3-title-light {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #86909C;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .h3-title-light {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}

.para-short {
  position: relative;
}
.para-short .para {
  width: calc(100% - 3.75rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.para-short .d-flex-j-end-a-center.mb-5x {
  position: absolute;
  right: 0;
  top: 0;
}

.para {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4E5969;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .para {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}

.para-expand {
  padding-bottom: 2.5rem;
}

/*------------------------------------*\
    商品
\*------------------------------------*/
.product-box {
  max-width: 42.875rem;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  .product-box {
    max-width: 64.375rem;
  }
}
@media screen and (max-width: 1085px) {
  .product-box {
    max-width: 53.625rem;
  }
}
@media screen and (max-width: 912px) {
  .product-box {
    max-width: 43.25rem;
  }
}
@media screen and (max-width: 767px) {
  .product-box {
    max-width: 32.5rem;
    padding-bottom: 1rem;
    gap: 0.75rem;
  }
}
@media screen and (max-width: 550px) {
  .product-box {
    justify-content: center;
  }
}
.product-box .product {
  width: 10.3125rem;
  min-height: 17.1875rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .product-box .product {
    min-height: 16.3125rem;
  }
}
.product-box .product .img-box {
  width: 10.3125rem;
  height: 10.3125rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  border: 1px solid #E5E6EB;
  border-radius: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-box .product .img-box img {
  width: 100%;
  height: auto;
  transition: all 0.15s;
}
.product-box .product .img-box .limit {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  padding: 2px 0.25rem;
  background-color: #FFE8F1;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.product-box .product .img-box .limit img {
  width: 0.75rem;
  height: 0.75rem;
}
.product-box .product .img-box .limit img + div {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #F5319D;
  font-weight: 600;
}
.product-box .product .img-box .sold-box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.product-box .product .img-box .sold-box .sold {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #000000;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-box .product .img-box .end-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.product-box .product .img-box .end-box div {
  width: 1.625rem;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  z-index: 2;
}
.product-box .product .img-box .end-box div::after {
  content: "";
  display: inline-block;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.25rem;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.product-box .product h3 {
  position: relative;
}
.product-box .product h3 div:first-of-type {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #1D2129;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .product-box .product h3 div:first-of-type {
    margin-bottom: 0;
  }
}
.product-box .product h3 .tooltip {
  width: 100%;
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #FFFFFF;
  background-color: #1D2129;
  position: absolute;
  top: 2.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out 0.15s, visibility 0s linear 0.15s;
}
@media screen and (max-width: 767px) {
  .product-box .product h3 .tooltip {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.product-box .product h3 .tooltip:after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.25rem;
  background-image: url("/images/buy/icon-tooltip-angle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.product-box .product h3 .tooplip-for-web {
  display: none;
}
@media screen and (max-width: 767px) {
  .product-box .product h3 .tooplip-for-web {
    display: inline-block;
  }
}
.product-box .product h3:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
  pointer-events: auto;
}
.product-box .product h3 + .point {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #86909C;
  margin-bottom: 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-box .product h3 + .point {
    font-size: 0.625rem;
    line-height: 1.125rem;
    margin-bottom: 1px;
  }
}
.product-box .product h3 + .point::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #86909C;
  position: absolute;
  top: 50%;
  left: 0;
}
.product-box .product .price-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  position: absolute;
  bottom: 0;
}
.product-box .product .price-box .discount {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .product-box .product .price-box .discount {
    font-size: 0.875rem;
    line-height: 1.375rem;
    padding: 1px 0.5rem;
  }
}
.product-box .product .price-box .point {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media screen and (max-width: 767px) {
  .product-box .product .price-box .point {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.product-box .product .price-box.green .discount {
  background-color: #F1FFEE;
  color: #67D764;
}
.product-box .product .price-box.green .point-discount {
  color: #67D764;
  font-family: "Nunito Sans", sans-serif;
}
.product-box .product .price-box.red .discount {
  background-color: #FFE8F1;
  color: #F5319D;
}
.product-box .product .price-box.red .point-discount {
  font-family: "Nunito Sans", sans-serif;
  color: #F5319D;
}
.product-box .product.loading .img-box {
  background-color: #F2F3F5;
  margin-bottom: 0.75rem;
}
.product-box .product.loading h3 div {
  width: 100%;
  height: 0.75rem;
  background-color: #F2F3F5;
  margin-bottom: 0.5rem;
}
.product-box .product.loading h3 + .point {
  margin-bottom: 0.5rem;
}
.product-box .product.loading h3 + .point:after {
  display: none;
}
.product-box .product.loading h3 + .point div {
  width: 7.625rem;
  height: 0.75rem;
  background-color: #F2F3F5;
}
.product-box .product.loading .price-box {
  width: 3.125rem;
  height: 1.5rem;
  background-color: #F2F3F5;
}
.product-box .loading-animation {
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: loadingAnimation;
  animation-timing-function: linear;
  background: #F5F5F5;
  background-image: linear-gradient(90deg, rgba(250, 250, 250, 0) 25%, #FAFAFA 50%, rgba(250, 250, 250, 0) 100%);
  background-repeat: no-repeat;
}
@keyframes loadingAnimation {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.product-box .product:hover .img-box > img {
  transform: scale(1.2);
  transition: all 0.15s;
}
.product-box .product:hover h3 {
  text-decoration: underline;
}

.box-s .product-box {
  justify-content: space-around;
  gap: unset;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .box-s .product-box {
    justify-content: space-around;
    gap: 0.75rem;
  }
}

.sticky {
  position: sticky;
  top: 0;
  margin-bottom: 0;
  z-index: 5;
}
.sticky .logo-and-info-box .back-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 25.875rem;
}
.sticky .logo-and-info-box .back-box .btn-back {
  position: static;
}

.sticky-shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .popup-wrapper {
    align-items: flex-end;
  }
}
.popup-wrapper .popup-box {
  width: 23.4375rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .popup-wrapper .popup-box {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
  }
}
.popup-wrapper .popup-box .popup-header {
  padding: 1.5rem 0 0 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #1D2129;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup-wrapper .popup-box .popup-header {
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 1rem 0 0 0;
  }
}
.popup-wrapper .popup-box .popup-header .btn-close {
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("/images/buy/btn-close.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .popup-wrapper .popup-box .popup-header .btn-close {
    top: 1rem;
  }
}
.popup-wrapper .popup-box .popup-body {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .popup-wrapper .popup-box .popup-body {
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
}
.popup-wrapper .popup-box .popup-body a {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #4E5969;
  text-align: center;
}
.popup-wrapper .popup-box .popup-body a img {
  display: inline-block;
  width: 4rem;
  height: auto;
  margin-bottom: 0.5rem;
}

.popup-success-box {
  padding: 0.625rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #1D2129;
  background-color: #FFFFFF;
  border: 1px solid #E5E6EB;
  border-radius: 0.25rem;
  position: fixed;
  bottom: 104px;
  left: 24px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .popup-success-box {
    bottom: 66px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.popup-success-box img {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-top {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("/images/buy/icon-go-top.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: fixed;
  right: 0.75rem;
  bottom: 4.625rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}
@media screen and (max-width: 767px) {
  .btn-top {
    display: inline-block;
  }
}

.btn-back {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url("/images/buy/icon-arrow-back.svg");
  background-position: center;
  background-size: 1.625rem;
  background-repeat: no-repeat;
  position: fixed;
  top: 1.5rem;
  left: 1rem;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 767px) {
  .btn-back {
    display: inline-block;
  }
}

.btn-collapse-arrow {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  background-image: url("/images/buy/icon-arrow-collpase.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  cursor: pointer;
}

.btn-collapse-arrow-close {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  background-image: url("/images/buy/icon-arrow-collpase.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  cursor: pointer;
}

.btn-detail {
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1D2129;
  font-weight: 500;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 1.25rem;
  background-color: #E5E6EB;
}
.btn-detail:hover {
  background-color: #C9CDD4;
}

.btn-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 2px 0.25rem;
  font-size: 1rem;
  color: #4E5969;
  font-family: "PingFang TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
}
.btn-copy:hover {
  text-decoration: underline;
}
.btn-copy:active {
  text-decoration: underline;
  opacity: 0.6;
}
.btn-copy img {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-copy div {
  line-height: 1;
  flex: 0 0 auto;
}

.btn-light:hover {
  background-color: #F2F3F5;
}
.btn-light:active {
  background-color: #E5E6EB;
}

.btn-count {
  background-color: #FFFFFF;
  border-radius: 3rem;
}
.btn-count .count-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 3rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #4E5969;
}
@media screen and (max-width: 767px) {
  .btn-count .count-box {
    width: 8.9375rem;
    height: 2.125rem;
    font-size: 0.875rem;
    line-height: c alc(1.375rem);
  }
}
.btn-count .count-box span {
  color: #67D764;
}
.btn-count .count-l-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 3rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #4E5969;
}
@media screen and (max-width: 767px) {
  .btn-count .count-l-box {
    width: 10.5rem;
    height: 2.125rem;
    font-size: 0.875rem;
    line-height: c alc(1.375rem);
  }
}
.btn-count .count-l-box span {
  color: #67D764;
  font-family: "Nunito Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .btn-count .count-l-box img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.tag-box .btn-tag:hover {
  background-color: #E5E6EB;
}
.tag-box .btn-tag:active {
  background-color: #C9CDD4;
}

.more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #1D2129;
}
.more:hover {
  text-decoration: underline;
}
.more:active {
  opacity: 0.6;
}
.more img {
  width: 1rem;
  height: 1rem;
}

.more-img-rotate img {
  transform: rotate(180deg);
}

.more-gradient-gray {
  width: 100%;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #4E5969;
  background: linear-gradient(180deg, rgba(242, 243, 245, 0) 0%, #F2F3F5 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.more-gradient-gray:hover {
  text-decoration: underline;
}
.more-gradient-gray:active {
  opacity: 0.6;
}

.more-gradient-white {
  width: 100%;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #4E5969;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 33%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.more-gradient-white:hover {
  text-decoration: underline;
}
.more-gradient-white:active {
  opacity: 0.6;
}
.more-gradient-white img {
  width: 1rem;
  height: 1rem;
}

.for-bg {
  background-color: #FFFFFF;
}

.banner-box {
  width: 100%;
  padding-top: 53.34%;
  border-radius: 0 0 0 2rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-size: 0;
}
.banner-box img {
  height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-box a {
  width: 5.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: #1D2129;
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  background-color: #FFFFFF;
}

.banner-none-box {
  width: 100%;
  padding-top: 53.34%;
  border-radius: 0 0 0 2rem;
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-size: 0;
  background-color: #F2F3F5;
}
.banner-none-box img {
  width: 5.5rem;
  height: 5.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-none-box a {
  width: 5.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: #1D2129;
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  background-color: #FFFFFF;
}

.top-box {
  margin-bottom: 1rem;
  border-radius: 0 0 1rem 1rem;
}
.top-box .title-alert-box .title-alert {
  border-radius: 0 0 1rem 1rem;
}
.top-box .title-alert-box .tooltip-box {
  position: relative;
}
.top-box .title-alert-box .tooltip-box .text {
  max-width: 57.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-box .title-alert-box .tooltip-box .tooltip {
  width: 15.9375rem;
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #FFFFFF;
  background-color: #1D2129;
  position: absolute;
  top: 2.25rem;
  right: -7.5rem;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out 0.15s, visibility 0s linear 0.15s;
}
.top-box .title-alert-box .tooltip-box .tooltip:after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.25rem;
  background-image: url("/images/buy/icon-tooltip-angle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.top-box .title-alert-box .tooltip-box:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
  pointer-events: auto;
}
.top-box .title-alert-box .ml-auto {
  flex-wrap: 0 0 auto;
  white-space: nowrap;
}

.logo-and-info-box .logo-box {
  width: 6.25rem;
  height: 6.25rem;
  border: 1px solid #E5E6EB;
  border-radius: 0.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .logo-and-info-box .logo-box {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.logo-and-info-box .logo-box img {
  width: 100%;
  height: auto;
}
.logo-and-info-box .logo-none-box {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 0.25rem;
  background-color: #F2F3F5;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .logo-and-info-box .logo-none-box {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.logo-and-info-box .logo-none-box img {
  width: 2.75rem;
  height: 2.75rem;
}
.logo-and-info-box h2 {
  position: relative;
}
.logo-and-info-box h2 .text {
  width: 16.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #1D2129;
  font-family: "PingFang TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
}
@media screen and (max-width: 767px) {
  .logo-and-info-box h2 .text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.logo-and-info-box .tooltip {
  width: 15.9375rem;
  border-radius: 2px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #fff;
  background-color: #1d2129;
  position: absolute;
  top: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out 0.15s, visibility 0s linear 0.15s;
}
.logo-and-info-box .tooltip:after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.25rem;
  background-image: url("/images/buy/icon-tooltip-angle.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
}
.logo-and-info-box h2:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: 1s;
  pointer-events: auto;
}
.logo-and-info-box .point-and-description-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  color: #4E5969;
}
.logo-and-info-box .point-and-description-box .icon-point-deep {
  width: 1.5em;
  height: 1.5em;
}
.logo-and-info-box .point-and-description-box .description {
  font-size: 0.8125rem;
  line-height: 1.375rem;
}

.activities-title-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1D2129;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.activities-title-box .title + div {
  color: #67D764;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.activities-title-box .title + div img {
  width: 1.5rem;
  height: 1.5rem;
}

.activities-list-box {
  background-color: #F2F3F5;
  border-radius: 0.25rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}
.activities-list-box li {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4E5969;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .activities-list-box li {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.activities-list-box li:last-of-type {
  margin-bottom: 0;
}
.activities-list-box li .p-color {
  color: #67D764;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .activities-list-box li .p-color {
    font-weight: 700;
  }
}
.activities-list-box li .p-color img {
  width: 1.25rem;
  height: 1.25rem;
}
.activities-list-box li .p-color-none {
  color: #C9CDD4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .activities-list-box li .p-color-none {
    font-weight: 700;
  }
}
.activities-list-box li .p-color-none img {
  width: 1.25rem;
  height: 1.25rem;
}
.activities-list-box li .description {
  color: #86909C;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
@media screen and (max-width: 767px) {
  .activities-list-box li .description {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}

.activities-list-box.pd-for-link {
  padding-bottom: 0.875rem;
}

.collapse-description-box {
  width: 100%;
  border: 1px solid #E5E6EB;
  border-radius: 0.25rem;
}
.collapse-description-box .collapse-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  padding: 0.4375rem;
  cursor: pointer;
}
.collapse-description-box .collapse-head div:nth-child(2) {
  color: #67D764;
}
.collapse-description-box .collapse-head div:nth-child(2) img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 2px;
}
.collapse-description-box .collpase-body {
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.collapse-credit-card-box {
  border-radius: 0.25rem;
  overflow: hidden;
}
.collapse-credit-card-box .collapse-head {
  padding: 0.5rem;
  background-color: #E5E6EB;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #1D2129;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.collapse-credit-card-box .collapse-head div:last-of-type {
  color: #F53F3F;
}
.collapse-credit-card-box .collapse-body {
  background-color: #FFFFFF;
}
.collapse-credit-card-box .collapse-body ul li {
  padding: 0.3125rem 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #4E5969;
  border-bottom: 1px solid #E5E6EB;
}
.collapse-credit-card-box .collapse-body ul li:last-of-type {
  border-bottom: 0;
}
.collapse-credit-card-box .collapse-body ul li span {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #86909C;
  padding-left: 3rem;
}
.collapse-credit-card-box .collapse-body img {
  height: 1rem;
  width: auto;
}

hr {
  width: 100%;
  height: 2px;
  margin: 0 0 1.25rem 0;
  border: 0;
  background-color: #E5E6EB;
}

.stop-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #F53F3F;
  margin-bottom: 0.5rem;
}
.stop-box img {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .stop-box img {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.stop-description-box {
  padding-left: 1.75rem;
}
.stop-description-box h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4E5969;
}
@media screen and (max-width: 767px) {
  .stop-description-box h3 {
    font-size: 0.875rem;
    line-height: 1.375rem;
    color: #1D2129;
  }
}
.stop-description-box h4 {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #86909C;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .stop-description-box h4 {
    font-size: 0.8125rem;
    line-height: 1.375rem;
  }
}
.stop-description-box h4:last-of-type {
  margin-bottom: 0;
}

.transto-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .transto-box {
    justify-content: space-between;
  }
}
.transto-box .transto {
  width: calc(50% - 0.75rem);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 1200px) {
  .transto-box .transto {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .transto-box .transto {
    width: calc(50% - 0.75rem - 10px);
    border: 1px solid #E5E6EB;
    padding-top: 0.6875rem;
    padding-bottom: 0.6875rem;
    border-radius: 0.25rem;
  }
}
.transto-box .transto div:first-of-type {
  color: #86909C;
}
@media screen and (max-width: 767px) {
  .transto-box .transto div:first-of-type {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.transto-box .transto div:last-of-type {
  color: #1D2129;
}
@media screen and (max-width: 767px) {
  .transto-box .transto div:last-of-type {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.transto-box img {
  width: 1.5rem;
  height: 1.5rem;
}

.h3-and-description-wrapper .h3-title-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #F9A314;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .h3-and-description-wrapper .h3-title-box {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.h3-and-description-wrapper .h3-title-box span {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #86909C;
  margin-left: 0.25rem;
}
@media screen and (max-width: 767px) {
  .h3-and-description-wrapper .description-box {
    padding-left: 1.75rem;
  }
}
.h3-and-description-wrapper .description {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1D2129;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .h3-and-description-wrapper .description {
    font-size: 0.875rem;
    line-height: 1.375rem;
  }
}
.h3-and-description-wrapper .description:last-of-type {
  margin-bottom: 0;
}

.h3-swipe-wrapper {
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
}
.h3-swipe-wrapper .h3-title-box {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #86909C;
  padding-left: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
.h3-swipe-wrapper .h3-title-box div:last-of-type {
  color: #F53F3F;
}
.h3-swipe-wrapper .credit-swipe-box {
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 43.875rem;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .h3-swipe-wrapper .credit-swipe-box {
    width: calc(100% - 3rem);
    max-width: unset;
  }
}
.h3-swipe-wrapper .credit-box {
  flex: 0 0 auto;
  width: 16.875rem;
  height: 6.125rem;
  margin-right: 0.5rem;
  border: 0.3125rem solid #CA0078;
  border-left: 0.75rem solid #CA0078;
  border-radius: 0.3125rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.h3-swipe-wrapper .credit-box .alink {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.h3-swipe-wrapper .credit-box .img-box {
  width: 6rem;
  height: 100%;
  position: relative;
  background-color: #CA0078;
}
.h3-swipe-wrapper .credit-box .img-box:after {
  content: "";
  display: inline-block;
  width: 7.375rem;
  height: 7.375rem;
  border-radius: 50%;
  background-color: #CA0078;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.h3-swipe-wrapper .credit-box .img-box img {
  width: 5.625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.h3-swipe-wrapper .credit-box .info-box {
  padding-left: 2rem;
}
.h3-swipe-wrapper .credit-box .info-box .bank-logo {
  height: 0.875rem;
  width: auto;
  margin-bottom: 4px;
}
.h3-swipe-wrapper .credit-box .info-box h4 {
  font-size: 0.8125rem;
  line-height: 1.375rem;
  color: #4E5969;
  font-family: "PingFang TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
}
.h3-swipe-wrapper .credit-box .info-box .discount-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.25rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #F53F3F;
}
.h3-swipe-wrapper .credit-box .info-box .discount-box div:last-of-type {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.h3-swipe-wrapper .credit-box.black {
  border-color: #4E5969;
}
.h3-swipe-wrapper .credit-box.black .img-box {
  background-color: #4E5969;
}
.h3-swipe-wrapper .credit-box.black .img-box::after {
  background-color: #4E5969;
}
.h3-swipe-wrapper .credit-box.blue {
  border-color: #33D1C9;
}
.h3-swipe-wrapper .credit-box.blue .img-box {
  background-color: #33D1C9;
}
.h3-swipe-wrapper .credit-box.blue .img-box::after {
  background-color: #33D1C9;
}
.h3-swipe-wrapper .pagination-box {
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.55rem;
  background-color: #E5E6EB;
  padding: 0.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.h3-swipe-wrapper .pagination-box .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  opacity: 0.5;
}
.h3-swipe-wrapper .pagination-box .dot.active {
  opacity: 1;
}

.shop-wrapper .img-box {
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
.shop-wrapper .img-box a {
  display: block;
}
.shop-wrapper .img-box a:hover {
  opacity: 0.8;
}
.shop-wrapper .img-box img {
  width: 100%;
  height: auto;
}

.variable .slick-track {
  width: 900px !important;
}
.variable .slick-arrow {
  display: none !important;
}
.variable .dots-class {
  display: flex;
}

.wrapper-product .limit-info-box {
  max-height: 10.5rem;
  overflow: hidden;
}
.wrapper-product .inner-banner-box {
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  font-size: 0;
}
.wrapper-product .inner-banner-box img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .wrapper-product .product-box {
    justify-content: space-around;
  }
}
.wrapper-product .card-border-hidden-box {
  height: 10.5rem;
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */