.blog_banner{
    position: relative;
}
.blog_banner .mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0, 0, 0,0.6);
}
.blog_banner .mask .title p{
    color: #C5C5C5;
}

.contact .content{
    display: flex;
    justify-content: space-between;
   padding-bottom: 1.4rem;
}
.contact .content .left{
    max-width: 600px;
    width: 100%;
}
.contact .content .left .title{
    align-items: flex-start;
}
.contact .content .left .title p{
    text-align: left;
}
.contact .content .left ul li{
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.2rem;
    color: #C5C5C5;
}
.contact .content .left ul li a{
    display: flex;
    align-items: flex-start;
    color: #C5C5C5;
}
.contact .content .left ul li img{
    margin-right: 10px;
}

.contact .content .right{
    max-width: 640px;
    width: 100%;
}
.contact .content .right h3{
    font-size: 24px;
    font-family: 'Bold';
    color: #fff;
    margin-bottom: 0.2rem;
}
.contact .content .right .input{
    width: 100%;
    margin-bottom: 0.2rem;

}
.contact .content .right .input input{
    width: 100%;
    height: 56px;
    border: 1px solid #5A5A5A;
    background-color: transparent;
    color: #808080;
}
.contact .content .right .input input:focus{
    border: 1px solid #BAFA06;
}
.contact .content .right .input textarea{
    width: 100%;
    border: 1px solid #5A5A5A;
    background-color: transparent;
    color: #808080;
}
.contact .content .right .input textarea:focus{
    border: 1px solid #BAFA06;
}

.map{
    width: 100%;
    height: 350px;
}
.map iframe{
    width: 100%;
    height: 100%;
    background-color: #C5C5C5;
}


@media (max-width:767px) {
    .blog_banner>img{
        height: 250px;
        object-fit: cover;
    }
    .blog_banner .mask .title{
        max-width: 90%;
    }
    .contact .content{
        flex-direction: column;
    }
    .contact .content .left{
        max-width: 100%;
        margin-bottom: 0.3rem;
    }
    .contact .content .right .input input{
        height: 45px;
    }

    
}


































































