.pagination-title {
    display: none;
}
.reminder {
    text-align: center;
    font-size: 15px;
    color: #222;
    border-bottom: 1px solid #ddd;
    padding-bottom: 45px;
}
.message-list {
    max-width: 1250px;
    margin: 0 auto;
}
.message-list li {
    border-bottom: 1px solid #ddd;
}
.message-item .message-from {
    line-height: 22px;
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 15px;
    color: #333;
}
.message-item .message-from .date {
    color: #FF732F;
}
.message-question {
    position: relative;
    cursor: pointer;
    padding: 20px 0;
}
.message-question .title {
    color: #222;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
.message-question:hover .title {
    color: #CC0D0D;
}
.message-question .txt {
    height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.message-item.active .message-question .txt {
    height: auto;
    visibility: visible;
    margin-top: 10px;
}
.message-question .message-from {
    background: url(../images/message/icon_q.png) no-repeat;
    padding-left: 190px;
}
.message-answer {
    background: #F3F3F3;
    display: none;
    padding: 20px 40px;
    overflow: hidden;
}
.message-answer .message-from {
    background: url(../images/message/icon_a.png) no-repeat;
    padding-left: 120px;
    line-height: 22px;
}
#message-form {
    background: url(../images/message/form_bg.jpg) no-repeat 50% 0;
    background-size: cover;
    margin: 80px 0 -20px;
    padding: 40px 0 60px;
}
#message-form .form-title {
    text-align: center;
    font-size: 38px;
    font-family: 'Lora', serif;
    color: #D3AC72;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 20px;
    line-height: 1.2;
}
#message-form .form-title:after {
    content: " ";
    display: block;
    width: 168px;
    height: 1px;
    background: #777;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -83px;
}
.form-box .form-control {
    border-color: #777;
    color: #fff;
}
.form-box .form-control:focus {
    outline: none;
    border-color: #fff;
}
.form-box textarea.form-control {
    height: 235px;
}
.form-box .control-label {
    font-weight: bold;
    color: #ccc;
}


@media screen and (max-width: 767px) {
    .message-answer {
        padding: 20px;
    }
    #message-form .form-title {
        font-size: 28px;
    }
}
@media screen and (max-width: 479px) {
    .message-item .message-from {
        padding: 28px 10px 0;
    }
}