.btn.go-msg {
    background-image: url('../../images/common/message/btn_gomsg.jpg');
    display: block;
    margin: 0 auto;
    max-width: 1100px;
    font-size: 16px;
    color: #fff;
    padding: 10px 30px;
    letter-spacing: 6px;
    text-align: right;
}
.btn.go-msg:hover {
    background-image: url('../../images/common/message/btn_gomsg_.jpg');
    color: #FFED2A;
    transition: all .2s linear;
}
.message-list {
    max-width: 1100px;
    margin: 0 auto;
}
.message-item {
    border-top: 1px solid #929292;
    font-size: 15px;
    color: #666666;
}
.message-item:last-child  {
    border-bottom: 1px solid #929292;
}
.message-from {
    line-height: 1.7;
}
.message-question {
    position: relative;
    background: #EDEDED;
    min-height: 27px;
    padding: 15px 16px 15px 85px;
    transition: all 0.3s;
}
.message-item:hover {
    border-top: 2px solid #929292;
    transition: all 0.2s linear;
}
.message-item:hover .message-question {
    background: #E7E7E7;
    transition: all 0.2s linear;
}
.message-item:hover .title{
    text-decoration: underline;
}
.message-question .icon-q{
    display: block;
    background: #000;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    position: absolute;
    top: 15px;
    left: 15px;
    color: #FFED2A;
    font-size: 14px;
    text-align: center;
    line-height: 55px;
}
.message-item .date{
    color: #1F9EF2;
    font-size: 14px;
}
.message-question .title{
    font-weight: bold;
    color: #000;
}
.message-question .message-from {
    color: #666666;
}
.message-answer {
/*    display: none;*/
    overflow: hidden;
    position: relative;
    margin-top: 2px;
    padding: 16px 16px 16px 85px;
}
.message-answer .icon-a{
    display: block;
    background: #FFED2A;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    position: absolute;
    top: 15px;
    left: 15px;
    color: #000;
    font-size: 14px;
    text-align: center;
    line-height: 55px;
}
.message-answer .editor {
    min-height: 27px;
}

#message-sect {
    margin-top: 40px;
    padding-top: 10px;
}
.form-title {
    border-top: 6px solid #F0F1F3;
}
@media screen and (max-width: 1000px) {
    #message-sect {
        margin-top: 0;
        padding-top: 50px;
    }
}
@media screen and (max-width: 600px) {
    .message-from {
        float: none;
        margin: 0 0 15px 70px;
    }
    .message-question,
    .message-answer {
        padding: 10px 16px;
    }
    .message-question:before,
    .message-answer:before {
        top: 6px;
    }
    .message-answer .editor {
        min-height: 0;
    }
}