.contact_1 {
	background-color: #f5f5f5;
	padding: 50px 0;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_1 .con {
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
}

.contact_1 .con .f_l,
.contact_1 .con .f_r {
	width: 49%;
	padding: 50px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact_1 .con .f_l .con1 {
	width: 60%;
}

.contact_1 .tit {
	display: flex;
	align-items: center;
	font-size: 38px;
	line-height: 62px;
	margin-bottom: 36px;
}

.contact_1 .tit img {
	width: 40px;
	height: 40px;
	display: block;
	margin-left: 5px;
}

.contact_1 .con1 p {
	font-size: 18px;
	line-height: 32px;
	margin-bottom: 27px;
}

.contact_1 .con1 ul li {
	display: flex;
	align-items: flex-start;
	font-size: 18px;
	line-height: 36px;
}
.contact_1 .con1 ul li span{
    display: flex;
    align-items: center;
}
.contact_1 .con1 ul li p{
    margin-bottom: 0;
}
.contact_1 .con1 ul li i {
	width: 25px;
	height: 25px;
	margin-right: 5px;
	background-color: #333;
	border: 1px solid #333;
	display: flex;
	align-items: center;
	color:#fff;
	justify-content: center;
	border-radius: 50px;
}
.contact_1 .con1 ul li:nth-child(2) i{
	background-color: #4dc247;
	border: 1px solid #4dc247;
}
.contact_1 .con1 ul li:nth-child(2) span{
    display: block;
}
.contact_1 .con1 ul li:nth-child(3) i{
	background-color: #3cd38e;
	border: 1px solid #3cd38e;
}
.contact_1 .con1 ul li:nth-child(4) i{
	background-color: #fff;
	color: #333;
}
.contact_1 .f_r form {
	width: 60%;
}

.contact_1 .f_r ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact_1 .f_r li {
	width: 49%;
	box-sizing: border-box;
}

.contact_1 .f_r li p {
	text-align: left;
	color: #000;
	margin-bottom: 9px;
	font-size: 16px;
}

.contact_1 .f_r li input,
.contact_1 .f_r li textarea {
	line-height: 48px;
	height: 33px;
	background-color: #f5f5f5;
	width: 100%;
	border-bottom: 1px solid #2e2e2e;
	padding: 0 8px;
	display: block;
	box-sizing: border-box;
	font-size: 16px;
	color: #2e2e2e;
}

.contact_1 .f_r li textarea {
	height: 126px;
	padding: 12px;
	white-space: normal;
}

.contact_1 .f_r li button {
	width: 100%;
	height: 50px;
	font-size: 16px;
	background-color: #343434;
	transition: all .5s ease;
	cursor: pointer;
	color: #fff;
}
.contact_1 .f_r li button:hover {
	background-color: #606060;
}
@media all and (max-width:1440px) {
	.contact_1 .con .f_l,
	.contact_1 .con .f_r {
		width: 100%;
	}
	.contact_1 .con .f_l .con1{
		width: 80%;
	}
	.contact_1 .f_r form{
		width: 80%;
	}
}
@media all and (max-width:590px) {
    	.contact_1 .con{
		width: 95%;
	}
	.contact_1 .con .f_l .con1{
		width: 95%;
	}
	.contact_1 .f_r form{
		width: 95%;
	}
}
@media all and (max-width:500px) {

	.contact_1 .tit{
		font-size: 28px;
	}
	
}