@charset "utf-8";
/*.content-title{
    display: none;
}*/
.faq-list {
  padding: 0 15px;
}
/*------------ faq ------------*/
.faq-item {
  position: relative;
  margin: 0 0 20px;
  list-style-type: none;
  background: #fff;
  box-sizing: border-box;
}
.ic-angle-down {
  font-family: "icon-font2" !important;
  display: inline-block;
  color: #888888;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  right: 15px;
  top: 50%;
  margin: -10px 0 0 0;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.ic-angle-down:before {
  content: "\e1000";
}
.faq-item:hover .ic-angle-down {
  transform: rotate(-90deg);
  color: #0d1892;
}
.faq-question {
  position: relative;
  color: #444444;
  font-weight: bold;
  font-size: 18px;
  min-height: 27px;
  padding: 11px 40px 11px 35px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 60;
}
.faq-question h3 {
  margin: 0;
  font-weight: 600;
}
.faq-item:before {
  content: "";
  width: 14px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0d1892;
  background-image: linear-gradient(45deg, #2e39b0 50%, #0d1892 50%);
  background-size: 4px 4px;
  z-index: 10;
}
.faq-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #ffffff;
  z-index: 55;
  pointer-events: none;
  transition: all 0.3s;
}
.faq-item:hover:after {
  border: 2px solid #e2e2e2;
}
.faq-item:hover .faq-question,
.faq-item.active .faq-question {
  color: #0d1892;
}
.faq-answer {
  padding: 5px 20px 25px 35px;
  color: #444444;
  background: #fff;
  display: none;
  font-size: 16px;
}
.faq-answer:before {
  font-family: "icon-font2" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e1030";
  font-size: 45px;
  color: #000000;
}
.faq-answer .title {
  font-size: 45px;
  font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
  .faq-list .item:before {
    margin: 0 8px;
  }
  .faq-answer:before {
    display: none;
  }
  .faq-question:before {
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    left: 0;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer {
    margin: 0 0 20px;
  }
}
