.inner{
    width: 100%;
}
h1.main_title{
    margin-bottom: 30px;
    color: #ff6069;
    text-align: center;
    font-size: 38px;
    font-weight: bold;
}

.item{
    padding: 20px 40px;
    margin-bottom: 40px;
    background: #ffeeee;
    border-radius: 10px;
}
.item .question{
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 2px dashed #ff6069;
    padding-bottom: 10px;
}
.item .answer{
    padding: 10px;
}
.item .title{
    font-size: 24px;
    font-weight: 600;
    color: #575457;
    margin-bottom: 10px;
}
.item .text{
    font-size: 18px;
    color: #575457;
    overflow: hidden;
}
.item a{
    border-bottom: solid 2px #ff9999;
    color: #ff9999;
    font-weight: bold;
    cursor: pointer;
}
.answer:before, .question:before {
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 38px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
    float: left;
    overflow: hidden;
    margin: 0 20px 0 0;
    border-radius: 50%;
}
.question:before {
    content: 'Q';
    background: #54c5f3;
}
.answer:before {
    content: 'A';
    background: #ff6069;
}

.text-inner{
    margin-bottom: 50px;
    padding: 0% 10%;
}

.back-yellow{
    background-color: #ff0;
}