.contact{
	background-color: RGBA(250, 250, 250, 1);
}
.contact .box1{
	padding: 140px 0 130px;
}
.contact .box1 .box-c{
	display: flex;
	justify-content: space-between;
}
.contact .box1 .box-c .l{
	width: 40%;
}
.contact .box1 .box-c .l .text-title{
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #555;
	line-height: 1;
}
.contact .box1 .box-c .l .tel{
	font-family: Rany-Bold;
	color: #1D58AC;
	line-height: 1;
	background: linear-gradient(to right, rgba(211, 40, 59, 1) 0%, #5C9FCE 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	margin-top: 20px;
}
.contact .box1 .box-c .l .email{
	margin: 25px 0 78px;
	display: flex;
	align-items: center;
}
.contact .box1 .box-c .l .email .icon{
	width: 36px;
	line-height: 36px;
	text-align: center;
	background: linear-gradient(to right, rgba(211, 40, 59, 1), #5C9FCE);
	border-radius: 50%;
	color: #fff;
	vertical-align: middle;
}
.contact .box1 .box-c .l .email .icon .iconfont{
	display: block;
	font-size: 22px;
	vertical-align: middle;
}
.contact .box1 .box-c .l .email .icon  + span{
	font-family: Rany;
	color: #555;
	line-height: 1;
	flex: 1;
	margin-left: 11px;
}
.contact .box1 .box-c .l .social{
	margin-top: 29px;
	display: flex;
	gap: 20px;
}
.contact .box1 .box-c .l .social a{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(124deg, #3D79BC 0%, #55A7D2 100%);
	border-radius: 50%;
	/* overflow: hidden; */
}
.contact .box1 .box-c .l .social a img{
	 position: absolute;
	 border-radius: 5px;
	 background: #fff;
	 padding: 5px;
	 width: 120px;
	 bottom: 120%;
	 left: 50%;
	 transform: translate(-50%,5px);
	 visibility: hidden;
	 opacity: 0;
	 transition: all .6s;
	 z-index: 4;
}

.contact .box1 .box-c .l .social a:hover img{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0);
}
.contact .box1 .box-c .l .social a::before{
	position: absolute;
	content: "";
	left: 2px;
	top: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background-color: #fff;
	transition: all .6s;
	border-radius: 50%;
}
.contact .box1 .box-c .l .social a:hover::before{
	opacity: 0;
}
.contact .box1 .box-c .l .social a span{
	position: relative;
	z-index: 3;
	color: #fff;
	font-size: 24px;
	background: linear-gradient(-90deg, rgba(211, 40, 59, 1) 0%, #5C9FCE 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contact .box1 .box-c .l .social a:hover span{
	-webkit-text-fill-color: #fff;
}
.contact .box1 .box-c .r{
	width: 54.28%;
}
.contact .box1 .box-c .r .pic{
	border-radius: 200px;
	box-shadow: -10px 10px 0 0 rgba(222, 222, 222, 1);
}
.contact .box2{
	background: url(../img/contact-box2-bg.jpg);
	background-size: cover;
	padding: 140px 0;
}
.contact .box2 .box-c{
	padding: 60px 97px 75px;
	border-radius: 10px;
	border: 2px solid rgba(191,203,214,0.2);
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(10px);
}
.contact .box2 .box-c .title{
	font-weight: 300;
	color: #FAFAFA;
	line-height: 1;
	text-align: center;
}
.contact .box2 .box-c form{
	margin-top: 65px;
}
.contact .box2 .box-c .inputs{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 45px 60px;
}
.contact .box2 .box-c .inputs .input{
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,.2);
	padding-bottom: 13px;
}
.contact .box2 .box-c .inputs .input label{
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #FAFAFA;
	line-height: 38px;
	margin-right: 10px;
}
.contact .box2 .box-c .inputs .input input,
.contact .box2 .box-c .inputs .input textarea{
	border: none;
	outline: none;
	width: 100%;
	flex: 1;
	height: 38px;
	background-color: transparent;
	font-size: 16px;
	color: #FAFAFA;
	resize: none;
}
.contact .box2 .box-c .inputs .input.textarea{
	flex-direction: column;
	grid-column: 1/3;
}
.contact .box2 .box-c .inputs .input textarea{
	height: 110px;
	margin-top: 13px;
}
.contact .box2 .box-c .submit{
	margin-top: 45px;
	width: 140px;
	line-height: 50px;
	background: linear-gradient(to right, #D3283B 0%, #E87E5D 100%);
	border-radius: 25px;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	cursor: pointer;
}
.contact .box2 .box-c .submit span{
	padding: 0 10px;
}
@media (max-width:1199px) {
	.contact .box1,
	.contact .box2{
		padding: 70px 0;
	}
	.contact .box2 .box-c form{
		margin-top: 45px;
	}
	.contact .box2 .box-c{
		padding: 50px;
	}
	.contact .box1 .box-c .l .email{
		margin: 15px 0 45px;
	}
	.contact .box1 .box-c .l .social,
	.contact .box1 .box-c .l .tel{
		margin-top: 10px;
	}
	.contact .box1 .box-c .l .social a{
		width: 44px;
		height: 44px;
	}
	.contact .box1 .box-c .l .social a span{
		font-size: 20px;
	}
}
@media (max-width:1024px) {
	.contact .box1,
	.contact .box2{
		padding: 60px 0;
	}
	.contact .box2 .box-c form{
		margin-top: 40px;
	}
	.contact .box2 .box-c{
		padding: 40px;
	}
}
@media (max-width: 768px) {
	.contact .box1 .box-c .l{
		width: 42%;
	}
	.contact .box1 .box-c .l .email{
		font-size: 20px;
		margin: 10px 0 30px;
	}
	.contact .box1 .box-c .l .email .icon + span{
		margin-left: 5px;
	}
	.contact .box1 .box-c .l .email .icon{
		width: 28px;
		line-height: 28px;
	}
	.contact .box1 .box-c .l .email .icon .iconfont{
		font-size: 16px;
	}
	.contact .box1,
	.contact .box2{
		padding: 50px 0;
	}
	.contact .box2 .box-c form{
		margin-top: 30px;
	}
	.contact .box2 .box-c{
		padding: 30px;
	}
	.contact .box2 .box-c .inputs{
		gap: 20px 30px;
		grid-template-columns: repeat(1,1fr);
	}
	.contact .box2 .box-c .submit{
		margin-top: 25px;
	}
	.contact .box2 .box-c .inputs .input.textarea{
		grid-column: 1/1;
	}
	.contact .box2 .box-c .inputs .input{
		padding-bottom: 7px;
	}
	.contact .box2 .box-c .inputs{
		gap: 10px 20px;
	}
}
@media (max-width: 500px) {
	.contact .box1 .box-c .l .social{
		gap: 10px;
	}
	.contact .box1 .box-c .l .tel{
		margin-top: 5px;
	}
	.contact .box1 .box-c .l .email{
		font-size: 18px;
		margin-bottom: 20px;
	}
	.contact .box1 .box-c .l .social a{
		width: 38px;
		height: 38px;
	}
	/* .contact .box1 .box-c{
		flex-direction: column;
	} */
	.contact .box1,
	.contact .box2{
		padding: 40px 0;
	}
	.contact .box2 .box-c form{
		margin-top: 25px;
	}
	.contact .box2 .box-c{
		padding: 25px;
	}
	.contact .box1 .box-c .r{
		width: 50%;
	}
	.contact .box1 .box-c .l{
		width: 49%;
	}
	.contact .box1 .box-c .l .email .icon + span{
		white-space: nowrap;
	}
	/* .contact .box1 .box-c .r{
		width: 100%;
	} */
}