/*------------ message ------------*/
.write-question-box {
    text-align: center;
    color: #000000;
    line-height: 1.7;
    margin: 0 0 10px;
}
.write-question {
    width: 160px;
    height: 140px;
    display: block;
    margin: 0 auto;
    background: url('../../images/common/message/ic.png');
}
/*------------ message ------------*/
.message-list {
    max-width: 1200px;
    margin: 0 auto;
}
.message-list li {
    border: 1px solid #A9D157;
    margin: 0 0 15px;
    transition: all .2s;
}
.message-list li.active {
    border: 3px solid #FEB438;
}
.message-question {
    cursor: pointer;
    display: table;
    width: 100%;
}
.message-list i {
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 30px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    line-height: 70px;
    background: #8DC220;
}
.message-question .author-box {
    position: relative;
    color: #8DC220;
    display: inline-block;
    margin: 0 0 0 10px;
    font-size: 14px;
}
.message-question .title {
    display: table-cell;
    padding: 15px 20px;
    color: #545454;
    line-height: 1.45;
}
.message-list li:hover .message-question .title,
.active .message-question .title {
    color: #5D9617;
    font-weight: bold;
    transition: all .2s;
}
.message-answer {
    border-top: 1px solid #A9D157;
    display: none;
    position: relative;
    padding: 0 20px 20px 0;
}
.message-answer i {
    background: #FEB439;
    display: inline-block;
    margin: 0 15px 0 0;
}
.message-answer .editor {
    color: #777777;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 90px);
    margin: 20px 0 0;
}
/*------------ message-form ------------*/
#message-form {
    max-width: 650px;
    margin: 35px auto 0;
    border: 2px solid #8DC220;
    box-sizing: border-box;
    padding: 0 70px 45px 70px;
    background: url('../../images/common/message/bg.png') no-repeat center bottom;
}
#message-form .form-title i {
    width: 160px;
    height: 140px;
    display: block;
    margin: -80px auto 10px;
    background: url('../../images/common/message/ic.png');
    background-position: 0 100%;
}
/*------------ rwd ------------*/
@media screen and (max-width:900px) {
    .message-question .author-box {
        display: block;
        margin: 10px 0 0 0;
    }
    #message-form {
        padding: 0 15px 25px 15px;
    }
}
@media screen and (max-width:600px) {
    .message-question,
    .message-list i,
    .message-list i {
        display: block;
        width: 100%;
    }
    .message-list i {
        height: 40px;
        font-size: 25px;
        line-height: 40px;
    }
    .message-question .title {
        padding: 15px;
    }
    .message-answer {
        padding: 0;
    }
    .message-answer .editor {
        display: block;
        width: auto;
        margin: 10px;
    }
}
