@charset "UTF-8";
/* 按鈕尺寸表（左右 padding、字級） */
.section__content {
  padding-top: 40px;
  width: 100%;
}
.section__title br {
  display: none;
}
@media (min-width: 768px) {
  .section__title br {
    display: block;
  }
}
.section__inner {
  align-items: start;
  gap: 0px;
}

.pricing-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: card;
}
@media (min-width: 768px) {
  .pricing-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .pricing-intro {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.pricing-card {
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-card__header {
  padding-bottom: 16px;
  border-bottom: 1px solid #E3E3E3;
}
.pricing-card__header h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
}
.pricing-card__header p {
  font-size: 16px;
  line-height: 160%;
  padding-top: 4px;
  padding-bottom: 16px;
}
.pricing-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-family: "Unbounded", "noto Sans TC";
}
.pricing-card__currency {
  font-size: 12px;
}
.pricing-card__amount {
  font-size: 32px;
  line-height: 140%;
  font-weight: 500;
}
.pricing-card__duration {
  color: #8B8B8B;
  font-family: "Noto Sans TC";
  font-size: 12px;
  line-height: 160%;
}
.pricing-card__features {
  flex: 1;
}
.pricing-card__features li {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  padding-left: 32px;
  position: relative;
}
.pricing-card__features li:not(:last-child) {
  margin-bottom: 16px;
}
.pricing-card__features li i {
  width: 24px;
  height: 24px;
  font-size: 18px;
  line-height: 100%;
  color: #00B4C8;
  position: absolute;
  top: 0px;
  left: 0px;
}
.pricing-card__features li i::before {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  z-index: 1;
}
.pricing-card__features li i::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #E6F8FA;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pricing-card__cta {
  width: 100%;
  flex-shrink: 0;
}
.pricing-card__dropdown {
  border-top: 1px solid #E3E3E3;
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .pricing-card__dropdown {
    display: none !important;
  }
}
.pricing-card__dropdown p {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  gap: 4px;
  cursor: pointer;
  pointer-events: auto;
}
.pricing-card__dropdown p + ul {
  padding-top: 16px;
}
.pricing-card__dropdown p i {
  font-size: 20px;
  padding: 2px 0;
  pointer-events: auto;
  transition: transform 0.3s;
}
.pricing-card.recommend {
  border: 2px solid #F5BA18;
}
.pricing-card.recommend .pricing-card__features li i {
  color: #F5BA18;
}
.pricing-card.recommend .pricing-card__features li i::after {
  background: #FEF8E8;
}
.pricing-card.recommend .pricing-card__cta {
  background: #F5BA18;
  border: #F5BA18;
  color: #000;
}
.pricing-card.recommend .pricing-card__cta:hover {
  background: #AE8411;
  border: #AE8411;
  color: #fff;
}
.pricing-comparison {
  display: none;
  margin-top: 80px;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.pricing-comparison thead {
  color: #000;
  min-height: 80px;
  border-bottom: 1px solid #E3E3E3;
}
.pricing-comparison thead h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
}
.pricing-comparison thead th:not(:first-child) {
  padding: 16px 24px;
}
.pricing-comparison thead th:not(:first-child) div {
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.pricing-comparison thead th:not(:first-child) span {
  color: #8B8B8B;
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
.pricing-comparison thead th:not(:last-child) {
  border-right: 1px solid #E3E3E3;
}
.pricing-comparison thead th:nth-child(2), .pricing-comparison thead th:nth-child(3), .pricing-comparison thead th:nth-child(4) {
  border-right: 1px solid #E3E3E3;
}
.pricing-comparison tbody tr:not(:last-child) {
  border-bottom: 1px solid #E3E3E3;
}
.pricing-comparison tbody tr:nth-child(even) {
  background: #F7F7F7;
}
.pricing-comparison tbody td {
  padding: 16px;
  color: #000;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 160%;
}
.pricing-comparison tbody td:not(:last-child) {
  border-right: 1px solid #E3E3E3;
}
.pricing-comparison tbody td:first-child {
  font-weight: 500;
  text-align: left;
}
.pricing-comparison tbody td sup a {
  color: #000;
  font-size: 10px;
  line-height: 100%;
  vertical-align: top;
  padding-left: 4px;
}
.pricing-comparison tbody td sup a:hover {
  color: #646464;
}
.pricing-comparison__cta {
  width: 100%;
  padding: 8px 0;
  min-width: auto;
}
@media (min-width: 992px) {
  .pricing-comparison {
    display: table;
  }
}

.footnote-wrap {
  margin-top: 16px;
  padding: 24px;
  background: #F7F7F7;
}
.footnote-wrap li {
  color: #8B8B8B;
  font-size: 14px;
  line-height: 160%;
  margin-left: 20px;
}
.footnote-wrap li:not(:last-child) {
  padding-bottom: 8px;
}
@media (min-width: 992px) {
  .footnote-wrap {
    margin-top: 0;
    padding: 24px 80px;
  }
}

.deco::after {
  display: none;
}/*# sourceMappingURL=pg_pricing.css.map */