.go-msg-box {
    color: #000;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px;
}
.btn.go-msg {
    display: block;
    width: 248px;
    background: #F75000;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 10px 20px;
    margin: 40px auto 0;
    border-radius: 8px;
}
.btn.go-msg:hover {
    background: #CC0D0D;
}
.btn.go-msg:after {
    content: '';
    display: inline-block;
    background: url('../../images/common/message/gomsg_ic.png') no-repeat;
    width: 16px;
    height: 16px;
    margin-left: 10px;
}
.message-list {
    max-width: 1250px;
    margin: 0 auto;
}
.message-item {
    border-bottom: 1px solid #ddd;
}
.message-from {
    line-height: 22px;
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
}
.message-from .date {
    color: #FF732F;
}
.message-from .icon {
    margin: -4px 6px 0 0;
}
.message-question .icon {
    background-image: url('../../images/common/message/icon_q.png');
    width: 179px;
    height: 22px;
}
.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 {
    max-height: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.message-item.active .message-question .txt {
    max-height: 9999px;
    visibility: visible;
    margin-top: 10px;
}
.message-answer {
    display: none;
    overflow: hidden;
    position: relative;
    margin-top: 2px;
    padding: 20px 40px;
    background: #F3F3F3;
}
.message-answer .icon {
    background-image: url('../../images/common/message/icon_a.png');
    width: 109px;
    height: 22px;
}
#message-sect {
    background: url('../../images/common/message/form_bg.jpg') 50% 0 no-repeat;
    background-size: cover;
    color: #ccc;
    padding: 50px 0;
    margin-bottom: 50px;
}
#message-sect .form-control {
    background: none;
    color: #ccc;
    border-color: #777;
    padding: 0 15px;
}
#message-sect textarea.form-control {
    padding: 10px 16px;
}
#message-sect .form-control:focus {
    border-color: #fff;
}
#message-sect .control-label {
    color: #ccc;
    font-size: 16px;
    font-weight: bold;
    padding-left: 15px;
}
#message-sect .captcha .form-control {
    width: 100%;
    max-width: none;
    padding-right: 140px;
}
#message-sect .captcha a {
    position: absolute;
    right: 10px;
    top: -1px;
}
#message-sect .captcha a > * {
    vertical-align: middle;
}
@media screen and (max-width: 767px) {
    .message-answer {
        padding: 20px;
    }
    #message-form .form-title {
        font-size: 28px;
    }
}
@media screen and (max-width: 479px) {
    .message-from {
        padding-left: 5px;
    }
    .message-item .icon {
        display: block;
        margin: 0 0 5px -5px;
    }
}