@charset "utf-8";


/* =======================  FAQ Set.  ==================== */
.faq >.container{padding: 0}
.faq {
    box-sizing: border-box;
    padding: 0px; position:relative; 
  }

.faq .list {
  border-top: 0px solid #ccc; margin: 0 0 30px 0;
}

.faq .list .item { border-top:1px solid #005ea3; border-bottom: 1px solid#005ea3;margin-bottom: 12px; background: rgba(255,255,255,.8);
  text-decoration: none;
  display: block;
  position: relative;
  padding: 10px 20px 10px 20px;
  transition: all .3s linear;
  -ms-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -webkit-transition: all .3s linear;
  cursor: pointer;
}

.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:rgba(255,255,255,.8); 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: 26px;
  font-size: 16px;
  color: #555; margin-bottom:25px; padding-bottom: 0;
}

.faq .list .item .info {
  line-height: 26px;
  color: #333;
  display: none; font-size:15px; margin-top: 25px; padding: 0px;
  word-break: break-word;
}

.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: wrap;  position: relative;}
.qa-title:after { content: ""; position: absolute; width: 30px; height: 30px; background: url("../../../images/icon-faq.png") no-repeat; background-size: cover; display: block; top:-2px; right: -8px;transition: all .3s linear;}
.qa-title > div:nth-of-type(1) { width: 140px; position: relative; font-size: 17px; color: #231815; font-weight: bold;}
.qa-title > div:nth-of-type(2) { width: calc(100% - 140px); padding-right: 35px; font-size: 17px; color: #231815; font-weight: bold;}
.qa-title2 { font-size: 22px; color: #555555; border-bottom: 1px solid #b1b1b1; padding-bottom: 15px; margin-bottom: 15px;}
.open .qa-title:after { transform: rotate(45deg);}
.open .qa-title > div:nth-of-type(1), .open .qa-title > div:nth-of-type(2) { color: #005ea3;}

.faq-note { background: #efefef; padding: 10px; position: relative;}

@media only screen and (max-width: 570px) {
	.qa-title > div:nth-of-type(1) {  padding-bottom: 5px; font-size: 15px;}
	.qa-title > div:nth-of-type(2) { width: calc(100% - 0px);  font-size: 15px;}
	.qa-title:after { top:3px;}
}


