.contact .pub_title {
    text-align: center
}

.contact .content {
    display: flex;
    width: 89%;
    height: 540px;
    justify-content: space-between
}

.contact .content .left {
    width: 60%
}

.contact .content .right {
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.contact .content .right li p:nth-child(1) {
    font-size: 24px;
    color: #30333b;
    margin-bottom: 10px
}

.contact .content .right li p:nth-child(2) {
    font-size: 20px;
    line-height: 37px;
    color: rgba(48, 51, 59, 0.8)
}

.message .title {
    line-height: 300px !important;
    text-align: center;
    font-size: 70px;
    color: #fff;
    background-color: #AE745E;
    font-weight: bold;
}

.message .content {
    padding: 120px 0 400px;
    background: url(../images/con_bg.png) no-repeat top center
}

.message .content form {
    width: 774px;

    margin: 0 auto
}

.message .content form input,
.message .content form textarea {
    width: 370px;
    height: 56px;
    border: 1px solid #d2d2d2;
    background: #f5f5f5;
    padding: 0 15px;
    margin-bottom: 30px
}

.message .content form input::placeholder,
.message .content form textarea::placeholder {
    font-size: 18px;
    color: rgba(153, 153, 153, 0.8)
}

.message .content form textarea {
    width: 100%;
    height: 190px;
    padding: 15px
}

.message .content form .submit {
    width: 100%;
    height: calc(20px + 2rem);
    background: #AE745E;
    margin-top: calc(9px + 1rem);
}

.message .content form .submit a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial;
    font-weight: 400;
    font-size: calc(10px + 0.5rem);
    color: #FFFFFF;

}

.message .content form .submit:valid {
    font-size: 20px;
    color: #fff
}

.content label {
    display: none;
}

.content .form-group {
    width: 48%;
}

.content .form-control {
    width: 100% !important;
}

.content .form-group:nth-last-of-type(1) {
    width: 100%;
    height: calc(100px + 5rem) !important;
}

.content .form-group:nth-last-of-type(1) .form-control {
    height: calc(100px + 5rem) !important;
}

.content .fc-form-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 1100px){
    .contact .content{
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: calc(10px + 1rem);
        padding-bottom: 20px;
    }
    .contact .content .left{
        width: 100%;
    }
    .contact .content .right{
        width: 100%;
        gap: calc(10px + 2rem);
    }
    .contact .content .right li p:nth-child(1){
        font-size: calc(16px + 1rem);
        line-height: 1.5;
    }
    .contact .content .right li p:nth-child(2){
        font-size: calc(12px + 1rem);
        line-height: 1.5;
    }
    .message .title{
        font-size: calc(16px + 1rem);
        line-height: 5 !important;
    }
    .message .content{
        padding: 30px 0;
    }
    .message .content form{
        width: 100%;
    }
    .message .content form .submit a{
        font-size: calc(12px + 1rem);
    }
    .message .content form .submit {
     
        height: calc(20px + 4rem);
       
    }
}