.contact-fs {
    display: flex;
    justify-content: center;
}
.contact-fs .item {
    display: inline-block;
    width: 150px;
    text-align: center;
    margin: 0 20px;
}
.contact-fs .item span {
    display: block;
    font-size: 14px;
    color: #101010;
}
.contact-fs .item .name {
    font-size: 20px;
}
.map {
    height: 500px;
    text-align: center;
    margin: 30px 0;
}
.form .title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}
.contact-img {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.contact-img .contact-cell {
    height: 100px;
    width: 150px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    filter: grayscale(1);
}
.contact-img .contact-cell span {
    padding-top: 5px;
    font-size: 14px;
    color: #999;
}
.contact-img .active {
    position: relative;
    filter: none;
    border: 1px solid #FF9800;
    box-shadow: 0px 0px 5px 0px #FF9800;
    color: #FF9800;
}
.contact-img .active::after {
    content: '';
    position: absolute;
    background-color: #fff;
    right: -7px;
    top: -7px;
    width: 15px;
    height: 15px;
    background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEUAAAD/nwD/mAD/mQD/lwD/mAD/lwD/mQD/mAD/lwD/mAD/mQD/mgD/lwD/mAD/lwD/lwD/mAAi9mkQAAAAEXRSTlMAEPBQgNBgcM/AkH8w4K+gICjWLOUAAABoSURBVBjTbY5ZEsAgCENFtG7duP9lG1Hsj2/GGRMNwW2hlkVyI9OHF8Xz1LJQh/xv+J4Kpiq+Bhhx6tKfCgzcI1IXsYBhnIzz6qwRuV1NlDU3hyZyj3SS1R7JagHLgrerAwoR3YHcjg97AAhIDBA3OwAAAABJRU5ErkJggg==');
}
.captcha {
    width: 30%;
    padding: 20px 0;
}
.captcha img {
    margin-bottom: 20px;
    height: 40px;
}
.submit {
	text-align: center;
	padding: 20px 0;
}
.submit .btn {
	width: 164px;
	text-align: center;
	padding: 10px 12px;
	color: #FF9800;
	border: 1px solid #FF9800;
}
@media (max-width:640px) {
	.banner-image img {
		object-position: left center;
	}
	.contact-fs {
        flex-direction: column;
    }
    .contact-fs .item {
        width: 100%;
        margin: 0 auto 20px;
    }
    .contact-fs .item span {
        text-align: center !important;
    }
    .map {
        height: 200px;
    }
    .contact-img .contact-cell {
        width: 70px;
        height: 90px;
    }
}