
/*联系我们*/
.contact-box{
	padding: 80px 0;
}
.contact-box .contact-box-top{
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-top: 50px;
}
.contact-left{
	width: 45%;
	background: #efefef;
	padding: 45px 60px 25px 60px;
	min-height: 525px;
}
.contact-left .name{
	font-size: 28px;
	color: #000;
	font-weight: bold;
	border-bottom: 1px solid #9fa0a0;
	padding-bottom: 20px;
	padding-left: 25px;
	margin-bottom: 20px;
	position: relative;
}
.contact-left .name::before{
	content:'';
	position: absolute;
	left: 0;
	top: 5px;
	width: 7px;
	height: 33px;
	background: #d7001d;
}
.contact-left .info{
	font-size: 16px;
	color: #000;
	line-height: 32px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #9fa0a0;
}
.contact-left .rx{
	display: flex;
	align-items: center;
	flex-direction: row;
}
.contact-left .rx img{
	width: 44px;
	height: 44px;
}
.contact-left .rx span{
	font-size: 22px;
	font-weight: bold;
	color: #000;
}
.contact-left .rx .red{
	color: #d7001d;
	margin-left: 15px;
	margin-right:10px;
}

.contact-right{
	width: 55%;
}
.contact-right .maps{
    overflow: hidden;
    user-select: none;
    width: 100%;
    height: 525px;
}
.BMap_cpyCtrl,
.anchorBL {
	display: none
}

#map label,
#map img {
	max-width: none;
	max-height: none
}
.contact-box-bottom{
	padding: 30px 0 0;
}
.contact-box-bottom .codebox{
	display: flex;
	align-items: center;
	flex-direction: row;
	margin-left: 80px;
}
.contact-box-bottom .codebox .item{
	width: 125px;
	text-align: center;
}
.contact-box-bottom .codebox .item img{
	width: 120px;
	height: 120px;
}
.contact-box-bottom .codebox .item p{
	color: #000;
	font-size: 14px;
	padding-top: 8px;
}
@media (max-width: 1024px) {
	.contact-box{
		padding: 50px 0;
	}
	.contact-box .contact-box-top{
		margin-top: 30px;
	}
	.contact-left{
		padding: 25px 30px 25px 30px;
		min-height: 470px;
	}
	.contact-left .name{
		font-size: 24px;
		padding-bottom: 15px;
		padding-left: 20px;
		margin-bottom: 15px;
	}
	.contact-left .info{
		font-size: 15px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.contact-left .rx img{
		width: 38px;
		height: 38px;
	}
	.contact-left .rx span{
		font-size: 18px;
	}
	.contact-right .maps{
	    height: 470px;
	}
}
@media (max-width: 768px) {
	.contact-left{
		width: 50%;
	}
	.contact-left .name{
		font-size: 22px;
	}
	.contact-left .name::before{
		width: 7px;
		height: 24px;
	}
	.contact-left .rx img{
		width: 30px;
		height: 30px;
	}
	.contact-left .rx span{
		font-size: 16px;
	}
	.contact-right{
		width: 50%;
	}
	.contact-box-bottom .codebox{
		margin-left: 50px;
	}
}
@media (max-width: 640px) {
	.contact-box .contact-box-top{
		flex-direction: column;
	}
	.contact-left{
		width: 100%;
		min-height: auto;
	}
	.contact-right{
		width: 100%;
	}
	.contact-right .maps{
	    height: 300px;
	}
}
.contact-form{
	background: #f3f3f3;
	padding: 35px;
}
.contact-form .title{
	font-size: 24px;
	color: #333;
	text-align: center;
	font-weight: bold;
	padding-bottom: 10px;
}
.contact-form p{
	font-size: 16px;
	color: #666;
	text-align: center;
}
.contact-form ul {
    padding: 25px 0
}

.contact-form li {
	width: 33.3333%;
	float: left;
	padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    position: relative
}
.contact-form li:last-child {
	width: 100%;
	float: left;
	padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    position: relative
}

.contact-form li .layui-input {
    height: 56px;
	display: block;
    width: 100%;
    padding-left: 15px;
	background: #fff;
	font-size: 14px;
	
}

@media (max-width: 768px) {
	.contact-form{
		padding: 20px;
	}
	.contact-form li .layui-input {
	    height:48px
	}
}

@media (max-width: 640px) {
	.contact-form p{
		font-size: 14px;
	}
	.contact-form li {
		width: 100%;
		float: none;
		padding-left: 0;
	    padding-right: 0;
		margin-bottom: 15px;
	}
	.contact-form li:last-child {
		float: none;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 0;
	}
    
}

.contact-form li .layui-textarea {
	display: block;
    width: 100%;
    height: 170px;
	font-size: 14px;
	min-height: 100px;
    line-height: 20px;
    padding: 15px;
    resize: vertical;
	border: none;
	color: #999;
}


.contact-form .submit {
    background-color: #263c92;
    color: #fff;
    width: 160px;
    height: 48px;
	font-size: 16px;
    line-height: 48px;
    text-align: center;
    display: block;
    margin: 0 auto;
    cursor: pointer
}

.contact-form .submit:hover {
    background: #d7001d
}

@media (max-width: 640px) {
	.contact-form .submit {
	    width: 150px;
	    height: 42px;
		font-size: 15px;
	    line-height: 42px;
	}
}


