.content{
    width: 70%;
    margin: 0 auto;
    padding: 80px 0;
}

.content .title{
    margin-bottom: 60px;
}

.content .contact{

}
.content .contact ul{
    display: flex;
    justify-content: space-around;
}
.content .contact .contact-item{
    width: 18.5%;
    background: #FFFFFF;
    box-shadow: 0 0 6px 1px rgba(0,0,0,0.3);
}
.content .contact .contact-item img{
    width: 42px;
    height: 42px;
    display: block;
    margin: 30px auto 20px;
}
.content .contact .contact-item .contact-item-title{
    font-weight: bold;
    font-size: 20px;
    color: #262626;
    line-height: 40px;
    text-align: center;
}
.content .contact .contact-item .contact-item-text{
    font-size: 14px;
    color: #262626;
    line-height: 24px;
    text-align: center;
    padding: 0 10px;
}


.form-title{
    font-weight: bold;
    font-size: 28px;
    color: #000000;
    line-height: 36px;
    margin: 40px 0;
}
.form .form-item{
    width: 32%;
    float: left;
    height: 60px;
    padding: 0 20px;
    line-height: 60px;
    border: 2px solid #E6E6E6;
}
.form .form-item:nth-child(-n+2){
    margin-right: 2%;
}
.form .form-item.form-item-message{
    width: 100%;
    margin: 30px 0;
    height: 320px;
    float: none;
}
.form .form-item .form-item-text{
    font-size: 16px;
    color: #262626;
    line-height: 60px;
}
.form .form-item .form-item-text input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #262626;
    line-height: 60px;
    background: none;
}
.form .form-item .form-item-text input:focus{
    border: none;
    outline: none;
}
.form .form-item .form-item-text textarea{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #262626;
    line-height: 60px;
    background: none;
    resize: none;
}
.form .form-btn{
    width: 240px;
    height: 60px;
    background: #0C5BE2;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    line-height: 60px;
    margin: 30px auto;
    cursor: pointer;
}




@media only screen and (min-width: 1050px) and (max-width: 1440px) {
    .content{
        width: 80%;
    }
}
@media only screen and (max-width: 1050px) {
    .content{
        width: 85%;
    }
}