.faqList {
  width: 100%;
}

.faqItem {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faqItem.active .title {
  color: #3058A0;
}
.faqItem.active .title b {
  color: #fff;
  background-color: #3058A0;
}
.faqItem.active .title .toggleOpen::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faqItem.active .definition {
  max-height: 2000px;
}
.faqItem .title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px 20px 5px;
  font-weight: 500;
  font-size: 16px;
  color: #222222;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (max-width: 640px) {
  .faqItem .title {
    padding: 15px 45px 15px 5px;
    font-size: 15px;
    line-height: 1.5;
  }
}
.faqItem .title b {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #3058A0;
  background-color: rgba(48, 88, 160, 0.1);
  transition: all 0.3s ease;
}
.faqItem .title .toggleOpen {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.faqItem .title .toggleOpen::before, .faqItem .title .toggleOpen::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #3058A0;
  transition: transform 0.3s ease;
}
.faqItem .title .toggleOpen::after {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faqItem .title .toggleOpen::before {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%) rotate(0deg);
}
.faqItem .title:hover {
  color: #3058A0;
}
.faqItem .definition {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faqItem .definition .textEditor {
  padding: 0 5px 25px 50px;
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
}
@media (max-width: 640px) {
  .faqItem .definition .textEditor {
    padding: 0 5px 20px 5px;
    font-size: 14px;
  }
}

.faqPage .ins .insTopBox {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.faqPage .ins .insTopBox .classTitle {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #3058A0;
  background-color: rgba(48, 88, 160, 0.1);
}
.faqPage .ins .articleTitle {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: #222222;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}