@charset "utf-8";


/* =======================  FAQ Set.  ==================== */
#faq >.container{padding: 0}
#faq {
    box-sizing: border-box;
    padding: 0px; position:relative; padding: 0 3% 40px 3%;
  }

#faq .list {
  border-top: 0px solid #ccc; margin: 0 0 30px 0;
}

#faq .list .item { border-left:0px solid #ddd;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 25px 5px;
  border-bottom: 1px solid #e3e3e3;
  transition: all .3s linear;
  -ms-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear;
}

#faq .list .item:before {
  content: 'Q';
  display: block;
  position: absolute;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
  background: #333;
  border-radius: 34px;
  top: 25px;
  left: 15px;
  text-align: center;
  transition: all .3s linear;
  -ms-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear; display: none;
}

#faq .list .item:hover:before {
  box-shadow: 0 0 8px #aaa;
}
#faq .list .item.open { background:#fff; border-left:0px solid #ce9707;}
#faq .list .item.open:before {
  transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
}

#faq .list .item:after {
  content: 'A';
  display: block;
  position: absolute;
  width: 34px;
  height: 34px;
  line-height: 34px;
  font-weight: 600;
  color: #fff;
  background: #ce9707;
  border-radius: 34px;
  box-shadow: 0 0 8px #aaa;
  top: 25px;
  left: 15px;
  text-align: center;
  transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transition: all .3s linear;
  -ms-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear;display: none;
}

#faq .list a.item.open:after {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}

#faq .list .item p {
  line-height: 30px;
  font-size: 15px;
  color: #686868; margin-bottom:0px; padding-bottom: 0;
}

#faq .list .item .info {
  line-height: 26px;
  color: #333;
  display: none; font-size:16px; margin-top: 25px; 
}

#faq .date {
  color: #333;
  text-align: right;
}

#faq .date> i {
  color: #7474b5;
  font-size: 2em;
  margin-right: 10px;
}

@media only screen and (max-width: 1170px) {
  #faq .date {
    text-align: left;
  }
  #faq .date> i {
    display: none;
  }
}



.qa-title { display: flex; flex-direction: row; flex-wrap: nowrap; }
.qa-title > div:nth-of-type(1) { width: 50px; height: 50px; }
.qa-title > div:nth-of-type(2) { width: calc(100% - 50px); color: #333; font-size: 20px; line-height: 34px;  padding-left: 30px;  padding-top: 12px;}

.qa-title2 { display: flex; flex-direction: row; flex-wrap: nowrap;}
.qa-title2 > div:nth-of-type(1) { width: 50px; }
.qa-title2 > div:nth-of-type(2) { width: calc(100% - 50px); color: #333; font-size: 15px; line-height: 30px;  padding-left: 30px; }

.open .qa-title > div:nth-of-type(2) { color: #005299; font-weight: 700;}

@media only screen and (max-width: 768px) {
    .qa-title{ align-items: flex-start;}
	
}


