.content{
    width: 1200px;
    margin: 80px auto;
}
.contact-list{
    width: 100%;
    margin: 40px 0 60px;
}
.contact-list .contact-item{
    width: 20%;
    float: left;
    text-align: center;
    cursor: pointer;
}
.contact-list .contact-item .contact-item-img{
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}
.contact-list .contact-item .contact-item-img img{
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
.contact-list .contact-item .contact-item-title{
    font-weight: bold;
    font-size: 16px;
    color: #1A1A1A;
    line-height: 24px;
}
.contact-list .contact-item .contact-item-text{
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-top: 10px;
    word-break: break-all;
}
.contact-list .contact-item:hover .contact-item-img img{
    transform: rotateY(180deg);
}


.content-left{
    width: 48%;
    float: left;
}
.content-title{
    font-weight: bold;
    font-size: 24px;
    color: #1A1A1A;
    line-height: 32px;
}
.content-left .content-left-item{
    width: 100%;
    margin: 20px auto 0;
}
.content-left .content-left-item .content-left-item-title{
    font-size: 16px;
    color: #1A1A1A;
    line-height: 24px;
    margin-bottom: 10px;
}
.content-left .content-left-item .content-left-item-text{
    width: 100%;
    font-size: 16px;
    color: #262626;

}
.content-left .content-left-item .content-left-item-text input{
    width: 100%;
    height: 42px;
    border: 1px solid #E5E7EB;
    outline: none;
    font-size: 16px;
    color: #262626;
    line-height: 42px;
    background: none;
    padding-left: 16px;
}
.content-left .content-left-item .content-left-item-text input:focus{
    outline: none;
}
.content-left .content-left-item .content-left-item-text textarea{
    width: 100%;
    height: 128px;
    border: 1px solid #E5E7EB;
    outline: none;
    font-size: 16px;
    color: #262626;
    line-height: 28px;
    background: none;
    resize: none;
    padding: 10px 16px;
}
.content-left .content-left-btn{
    width: 128px;
    height: 48px;
    background: #E60012;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 48px;
    text-align: center;
    margin-top: 20px;
}

.content-right{
    width: 48%;
    float: right;
}
.content-right .content-right-map{
    width: 100%;
    height: 400px;
    position: relative;
    margin: 20px 0 30px;
}
.content-right .content-right-map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}
.content-right .content-right-text{
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-top: 10px;
}




@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .content{
        width: 900px;
    }
}
@media only screen and (max-width: 1000px) {
    .content{
        width: 700px;
    }
}