@charset "UTF-8";
/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS
- Primary: #1A5AD9
- Tints (淺色調):
#D5D4FF


- Shades (深色調): 
#08a679

- Accents (強調色): #0ACF97
- Greys (灰色調)

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 3.2px
Medium: 15px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
main {
  background: linear-gradient(to left bottom, #eeecf8, #d8e9f2);
}

.ap-pricing {
  padding-top: 0;
  padding-bottom: 0;
}
.ap-pricing .flex--row {
  align-items: stretch;
  padding-top: 5rem;
}
@media (max-width: 1440px) {
  .ap-pricing .flex--row {
    justify-content: start;
    margin-left: auto;
    overflow: scroll hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .ap-pricing .flex--row::-webkit-scrollbar {
    display: none;
  }
}
.ap-pricing .ap-pricing__comment {
  padding: 3.2rem 0;
  font-size: 1.4rem;
  color: #888;
}

.month {
  display: none;
}

.card {
  flex: 0 0 20%;
  scroll-snap-align: start;
  background-color: #f9fafc;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.015);
  border: 1px solid #fff;
  transition: all 0.3s ease-out;
}
.card__head {
  min-height: 31rem;
  padding: 3.2rem 2rem 0 2rem;
  background-color: rgb(241, 242.8, 245.2);
}
.card__head.recommend {
  position: relative;
  background-color: rgb(227.9961538462, 224.8192307692, 243.8807692308);
}
.card__head.recommend .icon-recommend {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-100%, 50%);
}
.card__head h3 {
  font-size: 2.4rem;
}
.card__head p {
  font-size: 1.6rem;
  min-height: 6.4rem;
}
.card__head .ap-price {
  display: block;
}
.card .ap-btn {
  width: 100%;
  border-radius: 3.2px !important;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  }
}
@media (max-width: 1440px) {
  .card {
    flex: 0 0 30%;
  }
}
@media (max-width: 768px) {
  .card {
    flex: 0 0 33%;
  }
}
@media (max-width: 540px) {
  .card {
    flex: 0 0 50%;
  }
}
@media (max-width: 460px) {
  .card {
    flex: 0 0 100%;
  }
}

.highlight-plan {
  border: 2px solid #1a5ad9;
  margin-top: -4rem;
}
.highlight-plan__text {
  background-color: #1a5ad9;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 0.5rem 0;
}

@media (max-width: 768px) {
  .ap-table {
    padding-left: 0;
    padding-right: 0;
  }
  .ap-table .heading-primary {
    text-align: center;
  }
}

.ap-price {
  font-weight: bold;
}
.ap-price span {
  display: inline-block;
}
.ap-price__unit {
  font-size: 2rem;
  transform: translateY(-1.6rem);
}
.ap-price__fee {
  font-size: 3.2rem;
}
.ap-price__period {
  font-size: 1.6rem;
  color: rgb(145, 159.1428571429, 178);
}
.ap-price__text {
  font-size: 1.4rem;
  font-weight: 400;
  color: #888 !important;
  text-decoration: line-through;
}

.ap-pricing__info {
  padding: 3.2rem 2.4rem;
}

.info__title {
  font-size: 1.6rem;
  font-weight: bold;
}

.info__list {
  list-style: none;
  font-size: 1.6rem;
}
.info__list li {
  position: relative;
  margin-left: 2.4rem;
}
.info__list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 0.6rem;
  top: calc(50% - 0.6rem);
  border: solid #1a5ad9;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translate(-50%, -50%);
  width: 1rem;
  height: 0.6rem;
  transform: rotate(-45deg);
  background-color: transparent;
  border-radius: 0;
  left: -2rem;
  top: 1rem;
}
.info__list li:not(:last-child) {
  margin-bottom: 0.6rem;
}

.ap-tabs {
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .ap-tabs .ap-tab:first-child {
    display: none;
  }
}

.ap-tab {
  width: 20%;
  padding-top: 3.2rem;
  text-align: center;
}
.ap-tab__title {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.6rem;
}
@media (max-width: 480px) {
  .ap-tab__title {
    font-size: 1.8rem;
  }
}
.ap-tab .ap-price span:first-child {
  transform: translateY(-1rem);
}
.ap-tab .ap-price span:nth-child(2) {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .ap-tab.active {
    background-color: rgb(241.3346153846, 239.7269230769, 249.3730769231);
    border-bottom: 2px solid #1a5ad9;
    width: 33.3%;
  }
}

.ap-comparation {
  background-color: #f9fafc;
  border-radius: 3rem;
  border: 1px solid #d1d1d1;
  overflow: hidden;
}
.ap-comparation.fixed {
  padding-top: calc(var(--headerHeight) + 10rem);
}
@media (max-width: 768px) {
  .ap-comparation.fixed {
    padding-top: calc(var(--headerHeight) + 11rem);
  }
}
.ap-comparation.fixed .ap-fixed {
  position: fixed;
  margin-left: calc(-72rem + 50vw);
  margin-right: calc(-72rem + 50vw);
  top: var(--headerHeight, 0);
  left: 0;
  right: 0;
  background-color: #f9fafc;
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  z-index: 1; /* 避免被蓋住 */
  transition: transform 0.3s ease;
}
@media (max-width: 1641px) {
  .ap-comparation.fixed .ap-fixed {
    margin-left: 10rem;
    margin-right: 10rem;
  }
}
@media (max-width: 1280px) {
  .ap-comparation.fixed .ap-fixed {
    margin-left: 5.4rem;
    margin-right: 5.4rem;
  }
}
@media (max-width: 1080px) {
  .ap-comparation.fixed .ap-fixed {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media (max-width: 768px) {
  .ap-comparation.fixed .ap-fixed {
    margin-left: 0;
    margin-right: 0;
  }
}
.ap-comparation.fixed .ap-fixed.active {
  transform: translateY(0px);
}
.ap-comparation__title {
  background-color: rgb(227.9961538462, 224.8192307692, 243.8807692308);
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  transition: all 0.2s;
}
.ap-comparation__title:active {
  background-color: rgb(217.9923076923, 213.6384615385, 239.7615384615);
}
@media (max-width: 768px) {
  .ap-comparation__title {
    padding: 1.6rem 5.2rem;
  }
}
@media (max-width: 480px) {
  .ap-comparation__title {
    padding: 1.6rem 2.4rem;
  }
}
@media (max-width: 768px) {
  .ap-comparation {
    border-radius: 0;
  }
}

/* 預設 accordion 收合效果 */
.ap-comparation__content {
  max-height: 1000px; /* 預設展開 */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.ap-comparation__content:not(.active) {
  max-height: 0;
}

/* 手機 RWD */
@media (max-width: 768px) {
  .ap-price {
    display: none; /* 預設隱藏，JS 會控制顯示 */
  }
  .ap-price span {
    color: #1a5ad9;
  }
}
.ap-item:hover {
  background-color: rgb(244.2839506173, 247.4444444444, 253.7160493827);
}
.ap-item div:not(:first-child) {
  width: 20%;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .ap-item div:not(:first-child) {
    width: 50%;
  }
}

.ap-item__title {
  width: 20%;
  font-size: 1.6rem;
  padding-left: 3.2rem; /* same with .ap-comparation__title */
  text-align: start;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.ap-item__title:first-child {
  margin-top: 1rem;
}
.ap-item__title:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ap-item__title {
    margin-left: 0;
    width: 30%;
  }
}
@media (max-width: 480px) {
  .ap-item__title {
    width: 50%;
  }
}
.ap-item__title:active .tooltip-content {
  display: block !important;
}

.ap-tooltip {
  display: inline-flex;
  align-items: center;
}
.ap-tooltip:hover .tooltip-content, .ap-tooltip:active .tooltip-content {
  display: block !important;
}

.tooltip-content {
  position: absolute;
  display: none !important;
  width: fit-content;
  font-size: 1.6rem;
  color: #f9fafc;
  background-color: #313a46;
  padding: 1.2rem 2.4rem;
  z-index: 10;
  transform: translateY(-50%);
  border-radius: 1rem;
}

[data-val] {
  position: relative;
  width: 20%;
}
[data-val]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 48%;
  width: 1.2rem;
  height: 0.6rem;
  top: calc(50% - 0.6rem);
  border: solid #1a5ad9;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translate(-50%, -50%);
  width: 1rem;
  height: 0.6rem;
  transform: rotate(-45deg);
  background-color: transparent;
  border-radius: 0;
}

[data-val=n]::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.2rem;
  background-color: #d1d1d1;
  border: none;
}

/* QA */
.ap-QA {
  background-color: #f9fafc;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .ap-QA {
    flex-direction: column;
  }
  .ap-QA .heading-primary {
    margin-bottom: 4.8rem;
  }
}

.ap-collapse {
  width: 66.25%;
}
@media (max-width: 768px) {
  .ap-collapse {
    width: 100%;
  }
}

.ap-collapse__item {
  border-top: 2px solid #d1d1d1;
}
.ap-collapse__item h3 {
  font-size: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.6rem 0;
}
@media (max-width: 480px) {
  .ap-collapse__item h3 .item-heading {
    width: 85%;
  }
}
.ap-collapse__item h3 .icon-expand {
  width: 2.4rem;
  height: auto;
}
.ap-collapse__item:not(:last-child) {
  margin-bottom: 2rem;
}
.ap-collapse__item.open {
  border-top: 2px solid #1a5ad9;
}
.ap-collapse__item.open .item-heading {
  color: #1a5ad9;
}
.ap-collapse__item.open .ap-animation__text {
  visibility: visible;
  opacity: 1;
  max-height: 50rem;
}

.ap-animation__text {
  padding-right: 4rem;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.2s;
}
.ap-animation__text p {
  font-size: 1.6rem;
}

.ap-animation__lists {
  text-indent: 1.6rem;
  list-style: none;
  counter-reset: list-counter;
}
.ap-animation__lists.nolist {
  text-indent: 0;
}

.list--unordered {
  display: flex;
  align-items: center;
  position: relative;
}
.list--unordered::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 1.2rem;
  height: 0.6rem;
  z-index: 2;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translate(20%, 5%);
}

.list--order {
  counter-increment: list-counter;
  transform-origin: left;
  display: flex;
  align-items: center;
  position: relative;
}
.list--order::before {
  content: counter(list-counter);
  display: inline-block;
  width: 1.2rem;
  position: relative;
  color: #fff;
  top: 0;
  left: -1.5%;
  z-index: 2;
}

.list--order::after,
.list--unordered::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  background-color: #313a46;
  border-radius: 2px;
}

/*# sourceMappingURL=pricing.css.map */
