/*------------ message ------------*/
.write-question-box {
    text-align: center;
}
.write-question {
    width: 191px;
    height: 191px;
    display: block;
    margin: 0 auto;
    background: url('../../images/common/message/title.png');
}
.write-question:hover {
    background-position: 0 100%;
}
/*------------ message ------------*/
.message-list li {
    margin: 0 0 20px;
    position: relative;
    transition: all .2s;
}
.message-question .author-box {
    display: table-cell;
    width: 90px;
    border-right: 1px dotted #AAAAAA;
}
.message-question {
    cursor: pointer;
    display: table;
    width: 100%;
    padding: 15px 60px 0 15px;
    position: relative;
    background: #FFFFFF;
    transition: all .2s;
    box-sizing: border-box;
}
.message-question:hover {
    background: #F0F0E1;
    transition: all .2s;
}
.message-question:after {
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url('../../images/common/message/ic.png');
}
.message-list li.active .message-question:after {
    background-position: 0 100%;
}
.message-question .title {
    display: table-cell;
    padding: 0 0 15px 25px;
    color: #444444;
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
}
.message-question .date {
    font-size: 13px;
    color: #999999;
    line-height: 1.2;
}
.message-question .date b {
    display: block;
}
.message-answer {
    display: none;
    overflow: hidden;
    margin: 1px 0 0 0;
    background: #fff;
    position: relative;
    padding: 25px 60px 25px 130px;
}
.message-answer .title {
    position: absolute;
    font-size: 45px;
    line-height: 1;
    color: #000000;
    top: 50%;
    left: 28px;
    margin: -25px 0 0 0;
}
.message-answer .editor {
    color: #0E556E;
    font-size: 14px;
    line-height: 1.8;
}
/*------------ message-form ------------*/
#message-form {
    background: #EEEEEE;
    border: 1px solid #BBBBBB;
    padding: 50px;
    display: table;
    width: 100%;
    box-sizing: border-box;
}
#message-form .col {
    width: 50%;
    display: table-cell;
}
#message-form .form-title {
    vertical-align: middle;
    text-align: left;
    padding: 0 11% 0 0;
}
#message-form .form-title i {
    width: 191px;
    height: 191px;
    display: block;
    margin: 0 auto 30px;
    background: url('../../images/common/message/title.png');
}
/*------------ rwd ------------*/
@media screen and (max-width:900px) {
    #message-form {
        padding: 20px;
    }
}
@media screen and (max-width:767px) {
    #message-form .col,
    #message-form .form-title {
        width: 100%;
        display: block;
        padding: 0;
    }
}
@media screen and (max-width:600px) {
    .message-question,
    .message-question .author-box,
    .message-question .title {
        display: block;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .message-question .author-box {
        border: 0;
        border-bottom: 1px dotted #AAAAAA;
    }
    .message-answer {
        padding: 20px;
    }
    .message-answer .title {
        position: static;
        text-align: center;
        margin: 0 0 10px;
    }
}
