.qanda_section{
  background: #fff;
}
.qanda_section:nth-child(2n+2){
  background: #fafafa;
}
.qanda_section ul{
  margin-top: 40px;
}
.qanda_section li{
  padding: 20px;
  background: #fff5ee;
  border-radius: 10px;
  margin: 20px 0;
  cursor: pointer;
}
.qanda_section li .q_area,.qanda_section li .a_area .inner{
  display: flex;
  align-items: center;
}
.qanda_section li .icon{
  font-size: 24px;
  font-weight: bold;
  margin-right: 10px;
  width: 40px;
}
.qanda_section li .q_area .icon{
  color: tomato;
}
.qanda_section li .a_area .icon{
  color: #1e90ff;
}
.qanda_section li .q_area{
  font-size: 110%;
  font-weight: bold;
}
.qanda_section li .a_area{
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #ffdab9;
}
.qanda_section li .q_area .text{
  width: calc(100% - 80px);
}
.qanda_section li .a_area .text{
  width: calc(100% - 40px);
}
.qanda_section li .q_area .bticon{
  width: 40px;
  position: relative;
}
.qanda_section li .q_area .bticon::before{
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-right: 2px solid #777;
  border-bottom: 2px solid #777;
  transform: rotate(45deg);
  top: calc(50% - 15px);
  left: 10px;
  transition: .3s all ease;
}
.qanda_section li.active .q_area .bticon::before{
  transform: rotate(-135deg);
  top: calc(50% - 5px);
}
.qanda_section .bt_area{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
