/* quick-faq */
.quick-faq {
 text-align: left;
}
.quick-faq .faq-head {
 font-size: 20px;
}
.quick-faq .faq-list {
 margin-top: 20px;
}
.quick-faq .faq-list .item {
 margin-top: 15px;
 border-top: 1px dotted #DDD;
 padding-top: 15px;
}
.quick-faq .faq-list .item .title {
 display: block;
 cursor:pointer;
}
.quick-faq .faq-list .item .title::before {
 display: inline-block;
 font: normal normal normal 14px/1 FontAwesome;
 font-size: inherit;
 text-rendering: auto;
 -webkit-font-smoothing: antialiased;
 content: "\f067";
 margin-right: 10px;
 width: 30px;
 height: 30px;
 background-color: #DDD;
 border-radius: 50%;
 text-align: center;
 line-height: 30px;
 font-size: 10px;
}
.quick-faq .faq-list .item .title.cur::before {
 content: "\f068";
}
.quick-faq .faq-list .item .text {
 display: none;
 color: #999;
 margin-top: 15px;
 line-height: 200%;
}