/*------------ message ------------*/
.reminder {
    padding: 0;
    margin: 0 0 30px 0;
}
.reminder p {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 15px;
}
.write-question {
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    line-height: 45px;
    background: url('../../images/common/bg/bg04.png');
    transition: all .2s;
    font-size: 18px;
    padding: 0 26px;
}
.write-question i {
    display: inline-block;
    font-size: 28px;
    vertical-align: middle;
    margin: 0 5px 0 0;
}
.write-question:hover {
    transition: all .2s;
}
/*------------ message ------------*/
.message-list li {
    margin: 0 0 20px;
    border: 1px solid #C9C9C9;
}
.message-list .title {
    display: inline-block;
}
.message-list .author-box {
    color: #97A0D0;
    display: inline-block;
    line-height: 1.75;
}
.message-list .text {
    font-size: 15px;
    color: #959595;
    display: inline-block;
    line-height: 1.7;
    width: calc(100% - 75px);
    vertical-align: middle;
}
.message-list .text p {
    display: inline-block;
    font-size: 15px;
    margin: 0;
}
.message-list .title {
    width: 50px;
    height: 50px;
    background: #A2B1CB;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 53px;
    vertical-align: middle;
    display: inline-block;
    margin: 0 20px 0 0;
}
.message-question {
    cursor: pointer;
    padding: 18px;
}
.message-question .author-box {
    font-weight: normal;
    display: block;
    border-bottom: 1px dashed #D8D7D5;
    margin: 0 0 3px 0;
    padding: 0 0 3px;
    font-size: 13px;
}
.message-answer {
    display: none;
    overflow: hidden;
    background: #E6EBF0;
    padding: 18px;
}
.message-answer .title {
    background: #BC96BE;
}
.message-answer .author-box {
    color: #BC96BE;
}
.message-answer .editor {
    color: #6C6C6C;
}
/*------------ message-form ------------*/
#message-form {
    box-sizing: border-box;
    border: 1px solid #C9C9C9;
    background: url('../../images/common/message/bg.png') no-repeat center left;
    background-size: contain;
    padding: 40px 40px 40px 500px;
}
#message-form .form-title {
    margin: 0 0 5px;
}
#message-form .form-title span {
    font-family: 'PT Sans', sans-serif;
    font-size: 21px;
    color: #191926;
    display: inline-block;
    vertical-align: middle;
}
#message-form .form-title b {
    color: #7D8BC4;
}
#message-form .reminder {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 10px;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1024px) {
    #message-form {
        position: relative;
        padding: 20px 20px 20px 300px;
    }
    #message-form:before {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.6);
    }
}
@media screen and (max-width:767px) {
    .reminder {
        text-align: center;
    }
    .reminder p {
        display: block;
        margin: 10px 0 0 0;
    }
    #message-form {
        -webkit-background-size: cover;
        background-size: cover;
        padding: 20px;
    }
    #message-form:before {
        background: rgba(255, 255, 255, 0.8);
    }
    #message-form .reminder {
        display: block;
        text-align: left;
        margin: 5px 0 20px 0;
    }
    .btn.style02{
        width: 43%;
    }
}
@media screen and (max-width: 480px) {
    .message-question,
    .message-answer {
        padding: 10px;
        text-align: center;
    }
    .message-list .title {
        display: block;
        margin: 0 auto 10px;
    }
    .message-list .text {
        width: auto;
        display: block;
    }
    #message-form {
        padding: 10px 10px 30px;
    }
}
