@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Amaranth:400,700);
/*------------ faq ------------*/
/*.content-top{
    display: none;
}*/
.faq-list {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 25px 50px 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
}
.faq-list .faq-item {
  position: relative;
  margin: 30px 0 0px;
}
.faq-list .faq-item:before {
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 0;
  width: 40px;
  height: 40px;
  font-family: "Amaranth", serif;
  font-size: 25px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  color: #ffffff;
  content: "Q";
  background: #b7b7b7;
  transition: all 0.3s ease;
}
.faq-list .faq-item:hover:before {
  background: #013491;
  color: #f2f0ec;
}
.faq-question {
  position: relative;
  padding: 13px 40px 13px 50px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}
.faq-question h3 {
  margin: 0;
  font-weight: 600;
}
.faq-question i:before {
  content: "\f107";
  display: block;
  font-family: "icon-font" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  font-size: 24px;
  position: absolute;
  top: 14px;
  right: 10px;
}
.faq-question:hover i:before {
  color: #013491;
}
.faq-answer {
  position: relative;
  border-top: 1px solid #ddd;
  padding: 15px 10px 15px 50px;
  min-height: 26px;
  color: #434343;
  background: #f7f7f7;
  display: none;
}
.faq-answer:before {
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 0;
  width: 40px;
  height: 40px;
  font-family: "Amaranth", serif;
  font-size: 25px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  color: #ffffff;
  content: "A";
  background: #7e7e7e;
}
.faq-answer .title {
  font-size: 45px;
  font-weight: bold;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1000px) {
  .faq-list {
    padding: 20px 15px 25px;
    margin: 0 -15px;
  }
}
