.answerUl{
    border-bottom: 1px solid #dcdcdc;
}
.answer{
    border: 1px solid #dcdcdc;
    border-bottom: none;
}
.answerTitle{
    font-size: 18px;
    padding: 28px 30px;
    background-repeat: no-repeat;
    background-position: right 30px center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}
.answerTitle::after{
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    right: 30px;
    top: 50%;
    margin-top: -8px;
    background: url(../images/right_gray2.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(90deg);
}
.answerTitle:hover{
    background-color: #6be51b;
    color: #fff;
}
.answerTitle:hover::after{
    background: url(../images/right_gray_white.svg) no-repeat center center;
   
}
.answerTitle.on::after{
    background: url(../images/right_gray2.svg) no-repeat center center;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
}
.answerTitle.on:hover::after{
    background: url(../images/right_gray_white.svg) no-repeat center center;
}

.answerList{
    border-top: 1px solid #dcdcdc;
    padding: 28px 30px 28px 64px;
    font-size: 18px;
    display: none;
}