.pagination-title {
    display: none;
}
.reminder {
    text-align: center;
    font-size: 15px;
    color: #222;
    padding-bottom: 45px;
}
.message-list {
    max-width: 1440px;
    margin: 0 auto 50px auto;
}
.message-list li {
    border-bottom: 1px solid #ddd;
}
.message-item .message-from {
    line-height: 49px;
    font-weight: normal;
    font-size: 13px;
    margin-bottom: 0px;
    color: #81B228;
}
.message-from .editor{
	line-height: 20px;
	padding: 6px 0;
	color: #666;
    font-size: 14px;
}
.message-item .name {
    /* float: right; */
    /* width: 13%; */
    line-height: 20px;
    padding: 6px 0;
}
.message-item .message-from .date {
    color: #FF732F;
}
.message-question {
    position: relative;
    cursor: pointer;
    padding: 20px 0;
	height: auto;
	margin-right: 30px;
}
.message-question .title {
    color: #666;
    font-size: 14px;
    float: left;
    line-height: 20px;
    padding: 6px 0;
    width: 87%;
    margin-right: 15px;
}
.message-question:hover .title {
    color: #666;
}
.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: 59px;
    min-height: 49px;
    display: inline-block;
    width: 100%;
}
.message-answer {
    background: #f9fbed;
    display: none;
    padding: 20px 40px;
    overflow: hidden;
	border-top: thin dashed #ccc;
}
.message-answer .message-from {
    background: url(../images/message/icon_a.png) no-repeat;
    padding-left: 70px;
    height: auto;
	padding-bottom: 0px;
	min-height: 50px;
}
#message-form {
    background: url(../images/message/form_bg.jpg) repeat ;
    margin: 130px auto 0 auto;
    padding: 0px 0 60px;
	max-width: 1400px;
}
#message-form .form-title {
    text-align: center;
    font-size: 23px;
    font-family: 'Arial', serif;
    color: #81B228;
    position: relative;
    margin-bottom: 40px;
    line-height: 2.2;
	background:#f9fbed;
	border: solid thin #81B228;
}
#message-form .form-title:after {
    content: " ";
    display: block;
    width: 168px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -83px;
}
.form-box .form-control {
    border-color: #D0D0D0;
    color: #666;
    background: #fff;
}
.form-box .form-control:focus {
    outline: none;
    border-color: #a4c442;
}
.form-box textarea.form-control {
    height: 235px;
}
.form-box .control-label {
    font-weight: bold;
    color: #656565;
    padding-left: 0px;

}

@media screen and (max-width: 1500px) {
	.message-item .name{
	float: left;
	width: 95%;
}
.message-question .title {
	width:calc(100% - 20px);
}
.message-item .message-from {
    line-height: 0px;
}

}
@media screen and (max-width: 767px) {
    .message-answer {
        padding: 20px;
    }
    #message-form .form-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 450px) {
	#message-form .form-title {
        font-size: 16px;
    }
	.btn.write-question{
	min-width: 240px;
	}
}
