@charset "UTF-8";
/* 基礎樣式 */
body,
html {
  font-family: "Microsoft JhengHei", Helvetica, Arial, "lucida grande", tahoma, verdana, arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1px;
  color: #3c3c3c;
  background-color: #f1f8ff;
}
@media screen and (min-width: 768px) {
  body .mb_show,
  html .mb_show {
    display: none !important;
  }
}
@media screen and (min-width: 0) and (max-width: 767px) {
  body .pc_show,
  html .pc_show {
    display: none !important;
  }
}

.site-wrap {
  overflow: visible !important;
}
.site-wrap .header-m,
.site-wrap .header {
  top: 0;
}

.site-section-cover {
  background-color: #f1f8ff;
  min-height: 450px;
  margin-top: 100px;
}

.site-section {
  background-color: #f1f8ff;
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .site-section-cover {
    margin-top: 0px;
  }
  .site-section {
    padding-top: 0;
  }
}
/* 頁首 - FAQ Banner */
#faq_banner {
  background-color: #f1f8ff;
  min-height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 0;
  position: relative;
  overflow: hidden;
}
#faq_banner::before {
  content: "";
  position: absolute;
  width: 1029px;
  height: 292px;
  background: url(../images/article_bannerbg.png) no-repeat center;
  background-size: contain;
  pointer-events: none;
  top: 0;
}
#faq_banner .wrapper-in {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
#faq_banner .title-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: normal !important;
}
#faq_banner .main-title {
  color: #292929;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
#faq_banner .sub-title {
  color: #292929;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: normal;
}
#faq_banner .description {
  margin-top: 20px;
  color: #4b728d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

/* FAQ內容區 */
.faq-content-wrapper {
  background-color: #f1f8ff;
  padding: 0 20px 80px;
  position: relative;
  min-height: 475px;
}

.faq-bg {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  pointer-events: none;
}
.faq-bg::after {
  content: "";
  position: absolute;
  left: -130px;
  top: 200px;
  width: 606px;
  height: 606px;
  border-radius: 606px;
  opacity: 0.5;
  background: #d7ebff;
  filter: blur(100px);
  pointer-events: none;
}

.faq-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* 左側選單 */
.left-menu {
  width: 200px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
.left-menu .menu-category {
  padding-top: 20px;
}
.left-menu .category-title {
  color: #343434;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
}
.left-menu .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.left-menu .category-item {
  color: #343434;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid #dbeefb;
  cursor: pointer;
  transition: color 0.2s;
}
.left-menu .category-item:hover {
  color: #3778fa;
}
.left-menu .category-item.active {
  color: #3778fa;
}

/* 右側Q&A列表 */
.right-content {
  flex: 1;
  width: 820px;
}

ul.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  ul.faq-list {
    margin: 20px 15px;
  }
}
ul.faq-list > li {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 767px) {
  ul.faq-list > li {
    padding: 10px 20px;
  }
}
ul.faq-list > li.active .question .fold-btn {
  transform: rotate(0deg);
}
ul.faq-list > li .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
ul.faq-list > li .question h3 {
  display: flex;
  align-items: center;
  color: #292929;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  ul.faq-list > li .question h3 {
    font-size: 18px;
  }
}
ul.faq-list > li .question .q-style {
  margin-right: 6px;
  color: #3c8eff;
  font-family: Arial;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  ul.faq-list > li .question .q-style {
    font-size: 18px;
  }
}
ul.faq-list > li .question .fold-btn {
  width: 23px;
  height: 23px;
  transform: rotate(90deg);
  transition: all 0.25s ease;
}
ul.faq-list > li .answer {
  display: none;
  padding: 10px 15px 0 35px;
  color: #616161;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  ul.faq-list > li .answer {
    font-size: 14px;
  }
}
ul.faq-list > li .answer ol {
  margin-left: 25px;
}
ul.faq-list > li .answer ol li {
  list-style: disc;
}
ul.faq-list > li .answer p,
ul.faq-list > li .answer li {
  color: #616161;
  margin: 0;
}
ul.faq-list > li .answer p:not(:nth-of-type(1)) {
  margin-top: 10px;
}

/* 響應式設計 */
@media screen and (max-width: 1024px) {
  .faq-container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #faq_banner {
    padding: 40px 10px 30px;
    padding-top: 132px;
    min-height: auto;
  }
  #faq_banner .wrapper-in {
    padding: 0;
    width: 100%;
  }
  #faq_banner::before {
    display: none;
  }
  #faq_banner .sub-title {
    font-size: 24px;
  }
  #faq_banner .description {
    margin-top: 10px;
    font-size: 14px;
  }
  .faq-container {
    flex-direction: column;
    padding: 0;
  }
  .faq-content-wrapper {
    padding: 0;
  }
  #faq-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .left-menu {
    top: 56px;
    height: 56px;
    width: 100%;
    overflow: auto;
    border-bottom: 1px solid #e9e9e9;
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 50;
    position: fixed;
    /* 隱藏滾動條但保留功能 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .left-menu::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .left-menu .category-title {
    display: none;
  }
  .left-menu .category-list {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
  }
  .left-menu .category-item {
    white-space: nowrap;
    border-radius: 5px;
    background: #ebf3ff;
    color: #292929;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 25.5px */
    border: none;
    padding: 5px;
  }
  .left-menu .menu-category {
    padding-top: 0;
    height: 100%;
  }
  .right-content {
    width: 100%;
  }
}
@media screen and (max-width: 665px) {
  .left-menu::after {
    content: "";
    position: fixed;
    z-index: 51;
    width: 40px;
    height: 55px;
    right: 0;
    top: 56px;
    opacity: 0.8;
    background: linear-gradient(270deg, #dcdcdc 0%, rgba(255, 255, 255, 0) 100%);
  }
}/*# sourceMappingURL=style.css.map */