@-webkit-keyframes rotating {
  from {
    -webkit-transform: translateX(-50%) rotate(-5deg);
    transform: translateX(-50%) rotate(-5deg);
  }

  to {
    -webkit-transform: translateX(-50%) rotate(5deg);
    transform: translateX(-50%) rotate(5deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: translateX(-50%) rotate(-5deg);
    transform: translateX(-50%) rotate(-5deg);
  }

  to {
    -webkit-transform: translateX(-50%) rotate(5deg);
    transform: translateX(-50%) rotate(5deg);
  }
}

.faq_detail .tit {
  color: #27509b;
  text-align: center;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}

.faq_detail .ques-list {
  width: 100%;
  max-width: 740px;
  position: relative;
  margin: 0px auto 50px auto;
}

.faq_detail .ques-list>ul>li.active {
  color: #fff;
}

.faq_detail .ques-list>ul>li.active>a {
  background-image: url("../img/arr-up-blue.png");
  border-bottom: 1px solid #27509b;
}

.faq_detail .ques-list>ul>li>a {
  font-size: 22px;
  color: #27509b;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  padding: 15px 20px;
  background-color: #f4f4f4;
  background-repeat: no-repeat;
  background-image: url("../img/arr-down-blue.png");
  background-position: top 25px right 20px;
  background-size: 13px 9px;
  border-width: 1px 1px 0 1px;
  border-style: solid;
  border-color: #27509b;
}

.faq_detail .ques-list>ul>li:last-child>a {
  border-width: 1px;
}

.faq_detail .ques-list>ul .sub-list {
  display: none;
  color: #666666;
  font-size: 15px;
  background-color: #fff;
}

.faq_detail .ques-list>ul .sub-list .sub-content {
  padding: 20px 0;
}

.faq_detail .ques-list>ul .sub-list .sub-content img {
  max-width: 100%;
}

.faq_detail .ques-list>ul .sub-list .sub-closebar {
  width: 100%;
  height: 40px;
  display: block;
  background-repeat: no-repeat;
  background-image: url("../img/arr-up-white.png");
  background-position: center;
  background-color: #27509b;
  background-size: 15px 10px;
  margin-bottom: 3px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .faq_detail .ques-list>ul>li>a {
    font-size: 21px;
    background-size: 20px 13px;
  }

  .faq_detail .ques-list>ul .sub-list {
    font-size: 18px;
  }

  .faq_detail .ques-list>ul .sub-list .sub-content {
    padding: 15px 40px;
  }

  .faq_detail .ques-list>ul .sub-list .sub-closebar {
    background-size: 19px 13px;
  }
}