@charset "utf-8";


/* =======================  FAQ Set.  ==================== */
#faq >.container{padding: 0}
#faq {
    box-sizing: border-box;
    padding: 0px 0px; position:relative;  padding-bottom: 40px; 
  }

#faq .list {
  border-top: 0px solid #ccc;
}

#faq .list .item { border-left:0px solid #9dcf56; background: url(../../../images/faq-line-bg.png) no-repeat bottom left; background-size: contain;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 30px 15px 20px 65px;
  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: #df6900;
  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;
}

#faq .list .item:hover:before {
  box-shadow: 0 0 8px #aaa;
}
#faq .list .item.open { border-left:0px solid #0168b7;}
#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: #0168b7;
  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;
}

#faq .list div.item.open:after {
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}

#faq .list .item p {
  line-height: 24px;
  font-size: 17px;
  color: #333; margin-bottom:15px; padding-bottom: 0;
}

#faq .list .item .info {
  line-height: 22px;
  color: #666;
  display: none; font-size:17px; padding-bottom: 20px;
}
#faq .list .item .info ul li{ list-style: disc;}
#faq .list .item .info ul.show_num li{ list-style: decimal;}
#faq .list .item .info a {
  text-decoration: underline;
  color: #0000ee;
}

#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 { margin-top: 0;}
  #faq .date {
    text-align: left;
  }
  #faq .date> i {
    display: none;
  }
}




