@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
*/
.section-content {
  position: relative;
  background: linear-gradient(to left bottom, #eeecf8, #d8e9f2);
  align-items: start; /* override .flex-row 的 */
  justify-content: space-between;
}
.section-content::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 16rem);
  top: 0;
  left: 30%;
  margin-top: 8rem;
  margin-bottom: 8rem;
  transform: translateX(-50%);
  background-color: rgb(212.5, 212.5, 212.5);
}
@media (max-width: 768px) {
  .section-content::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-content {
    flex-direction: column;
  }
}

.ap-anchors {
  width: 100%;
  max-width: 24rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ap-anchors h6 {
  font-size: 2rem;
  display: none;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.ap-anchors__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ap-anchors.open .ap-anchors__panel {
  display: flex;
}

@media (max-width: 768px) {
  .ap-anchors {
    width: 100%;
    max-width: none;
  }
  .ap-anchors h6 {
    display: flex;
    padding: 2rem 3.2rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    border-radius: 15px;
  }
  .ap-anchors__panel {
    display: none;
  }
  .ap-anchors.open .ap-anchors__panel {
    display: flex;
    padding: 2rem 3.2rem;
    background-color: #f9fafc;
    border-radius: 0 0 15px 15px;
  }
  .ap-anchors.open h6 {
    color: #1a5ad9;
    border-radius: 15px 15px 0 0;
  }
  .ap-anchors .ap-anchors.fixed {
    background-color: #f9fafc;
  }
}
.ap-anchors.fixed {
  position: sticky;
  overflow-y: auto;
  top: var(--headerHeight);
  max-height: 100vh;
  scrollbar-width: none;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.ap-content {
  flex: 1;
}
.ap-content .ap-content__text {
  position: relative;
  padding-left: 3.2rem;
}
.ap-content .ap-content__text h3 {
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.ap-content .ap-content__text p {
  font-size: 1.6rem;
  text-align: justify;
}
.ap-content .ap-content__text::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: rgb(212.5, 212.5, 212.5);
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(50%);
  border-radius: 50%;
}

.goAnchor {
  font-family: "Noto Sans TC", sans-serif;
  display: block;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: start;
  color: #888;
  font-weight: 600;
  transition: 0.3s color;
}
.goAnchor:active, .goAnchor:hover {
  color: #1a5ad9;
}
.goAnchor.active {
  color: #1a5ad9;
}

.ap-infos {
  flex: 0 0 70%;
  text-align: start;
}
.ap-infos__item:not(:last-child) {
  margin-bottom: 6rem;
}

.ap-img-box {
  width: 100%;
  overflow: hidden;
}
.ap-img-box .ap-img {
  width: 100%;
  border-radius: 15px;
}

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