.contact_title {
	width: 100%;
	text-align: center;
}

.message_info {
	width: 100%;
	display: flex;
}

.message_info_item {
	width: 33.3%;
	display: flex;
	align-items: center;
}

.info_item_title {
	width: 80px;
	text-align: right;
	font-size: 14px;
	font-weight: 700;
	color: #666666;
}

.info_item_title span {
	color: red;
	margin-right: 7px;
}

.message_info_item input {
	width: calc(100% - 80px);
	height: 36px;
	padding: 0 10px;
	box-sizing: border-box;
	border: 1px solid #dadada !important;
	border-radius: 4px;
}

.info_textarea {
	padding: 10px;
	box-sizing: border-box;
	border-color: #dadada !important;
	border-radius: 4px;
	resize: none;
}

.message_saveBtn {
	width: 235px;
	height: 44px;
	text-align: center;
	line-height: 44px;
	background-color: #1e50ae;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	margin-top: 40px;
	margin-left: 80px;
	cursor: pointer;
}

.message_saveBtn::before {
	pointer-events: none;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translate(-50%, -50%);
	-webkit-animation: wave 1.3s infinite;
	animation: wave 1.3s infinite;
	z-index: 1;
}

@keyframes wave {
	0% {
		background: rgba(0, 0, 0, .25);
		transform: translate(-50%) translateY(-50%) scale(0);
	}


	100% {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}

.contact_info_box {
	width: 100%;
	padding: 100px 0;
	background: #FAFAFA;
}

.contact_info {
	width: 435px;
	font-size: 16px;
	color: #424141;
}

.contact_info p {
	font-size: 32px;
	color: #333333;
}

.contact_li {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
}

.contact_li_title {
	display: block;
	width: 75px;
	text-align: justify;
}

.contact_li_title i {
	display: inline-block;
	width: 100%;
	height: 0;
	visibility: hidden;
}

.contact_li span:last-child {
	display: inline-block;
	margin-left: 15px;
}

.message_tip {
	width: 200px;
	color: #FF8E1E;
	height: 0px;
	overflow: hidden;
	background-color: #FFF5DC;
	box-shadow: 0px 5px 10px 0px rgba(179, 179, 179, .5);
	position: fixed;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 1;
	z-index: 999;
	transition: opacity 0.6s ease 0s;
}

.message_saveTip {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	background-color: rgba(0, 0, 0, .3);
	z-index: 9999;
	display: none;
}

.saveTip_box {
	width: 400px;
	height: 300px;
	background-color: #fff;
	margin: auto;
	margin-top: calc((100vh - 300px) / 2);
	font-size: 20px;
}

#submitting {
	height: 100%;
	width: 100%;
	position: relative;
	display: none;
}

#submitting img {
	width: 400px;
	height: 300px;
}

#submitting p {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
}

.tip_info_box {
	height: 100%;
	width: 100%;
	text-align: center;
}

#successBox img {
	width: 120px;
	height: 120px;
	margin-top: 75px;

}

#successBox p {
	margin-top: 20px;
}

#errorBox img {
	width: 50px;
	height: 50px;
	margin-top: 110px;
}

#errorBox p {
	margin-top: 40px;
}