@charset "utf-8";
/* QNA */
p {
  list-style: none;
  padding: 0;
  margin: 0;
}
.qa_li .answer p {
  margin: 0
}
.qa_li .answer p img {
  width: 100%
}
.listWrap {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}
.listWrap .qa_li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ededed;
  cursor: pointer;
}
.listWrap .qa_li:first-child {
  border-top: 1px solid #ddd;
}
.listWrap .qa_li .ca_name {
  margin-bottom: 5px;
  font-weight: 400;
  color: #999;
  font-size: 15px;
}
.listWrap .qa_li .tit {
  color: #222;
  font-size: 16px;
  transition: color 0.3s ease-out;
  margin-top: 10px
}
.listWrap .qa_li:hover .tit {
  color: #0a7ac8;
}
.qa_li .question {
  position: relative;
  display: block;
  padding: 10px 40px 10px 64px;
  background: url('./img/q.png') 15px center no-repeat;
}
.qa_li .answer {
  position: relative;
  display: none;
  padding: 20px 64px;
  background: #f6f6f6 url('./img/a.png') 15px 15px no-repeat;
  border-top: 1px solid #e4e4e4;
  font-size: 16px;
  line-height: 26px
}
.modify {
  position: absolute;
  right: 30px;
  bottom: 10px;
  color: #e82b2b;
  font-weight: normal
}
.qa_li .question .iconDiv {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .listWrap .qa_li .tit {
    color: #222;
    font-size: 14px;
    transition: color 0.3s ease-out;
    margin-top: 12px
  }
  .qa_li .question {
    position: relative;
    display: block;
    padding: 5px 30px 5px 64px;
    background: url('./img/q.png') 15px center no-repeat;
  }
  .qa_li .answer {
    position: relative;
    display: none;
    padding: 15px 64px;
    background: #f6f6f6 url('./img/a.png') 15px 15px no-repeat;
    border-top: 1px solid #e4e4e4;
    font-size: 14px;
    line-height: 24px;
  }
  .modify {
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: #e82b2b;
    font-weight: normal
  }
  .qa_li .question .iconDiv {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}