body {
    background: #f7f7f5;
}
.main {
    margin-top: 45px;
    padding-bottom: 60px;
}
/* 产品中心 */
.proTitle {
    text-align: center;
}
/* 标题 */
.proTitle h3 {
    height: 60px;
    line-height: 60px;
    font-size: 32px;
    color: #096cb0;
}
.proTitle p {
    font-size: 18px;
    line-height: 46px;
    color: #333;
}
/* 留言表单 */
.Message {
    background: #fff;
    text-align: center;
}
.Message h2 {
    font-size: 20px;
    margin-top: 60px;
    color: #008cd6;
    line-height: 20px;
    margin-bottom: 30px;
}
.Message form input {
    width: 45%;
    height: 44px;
    display: block;
    border: 1px solid #e6e6e6;
    margin: 0 auto 15px;
    padding-left: 20px;
    background: #fafafa;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.Message form textarea {
    height: 160px;
    width: 45%;
    border: 1px solid #e6e6e6;
    background: #fafafa;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 20px;
    resize: none;
}
.Message form input.btn {
    width: 170px;
    height: 50px;
    background: #008cd6;
    color: #fff;
    line-height: 50px;
    text-align: center;
    padding: 0;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 40px;
}
@media only screen and (min-width:0px) and (max-width:768px) {
    .Message form input {
        width: 80%;
    }
    .Message form textarea {
        width: 80%;
    }
}