@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@400;500&display=swap");
/*#0066cc*/
.faqList h3 {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@-webkit-keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes listShow {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
@keyframes bounce {
  0%, 10% {
    top: 0;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  80% {
    top: 10px;
    -webkit-transform: scaleX(1) scaleY(1);
            transform: scaleX(1) scaleY(1);
  }
  100% {
    top: 10px;
    -webkit-transform: scaleX(1.05) scaleY(0.9);
            transform: scaleX(1.05) scaleY(0.9);
  }
}
.mainArea {
  padding-bottom: 0;
}

.contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contentBox .leftBox {
  width: 250px;
  padding-right: 65px;
}
.contentBox .rightBox {
  width: calc(100% - 250px);
}
@media (max-width: 1024px) {
  .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contentBox .leftBox,
.contentBox .rightBox {
    width: 100%;
  }
  .contentBox .leftBox {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .contentBox {
    margin-bottom: 30px;
  }
}

.faqList {
  width: 100%;
}
.faqList > li {
  margin-bottom: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}
.faqList h3 {
  position: relative;
  padding: 10px 40px 10px 5px;
  font-weight: 500;
  font-size: 18px;
  color: #222;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faqList h3:hover {
  color: #6e4738;
}
.faqList h3 b {
  display: block;
  vertical-align: 2px;
  margin-right: 26px;
  font-size: 14px;
  color: #d7cdcb;
  font-weight: 500;
  font-family: "Roboto";
  width: 55px;
  text-align: center;
  position: relative;
}
.faqList h3 b:after {
  position: absolute;
  right: 0;
  top: 1px;
  content: "";
  width: 1px;
  height: 15px;
  background-color: #cccccc;
}
.faqList h3 span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .faqList h3 b {
    width: 40px;
    margin-right: 15px;
    padding-right: 5px;
  }
}

.toggleOpen {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: block;
  margin-top: -4px;
  cursor: pointer;
}
.toggleOpen svg {
  width: 10px;
  height: 6px;
}
.toggleOpen.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.definition {
  display: none;
  padding: 15px 40px 20px 80px;
  font-size: 16px;
  color: #353535;
  letter-spacing: 0.8px;
  line-height: 1.625;
}
@media (max-width: 768px) {
  .definition {
    padding-left: 15px;
    padding-right: 15px;
  }
}