#messageForm {max-width: 100%;}
#messageForm label {
	display: block;
	margin-top: 10px;
	color: #333;
}
input,
textarea {
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid #ccc;
	/* background-color: #f4f4f4; */
	outline: none;
}
.submit-button {
	display: flex;
	align-items: center;
	margin-top: 30px;
	padding: 5px 20px;
	font-size: 14px;
	color: #fff;
	background-color: #2E6DA4;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-button:hover {
	background-color: #4d9be8;
	/* 鼠标悬停时的背景颜色 */
}

.submit-button img {
	width: 45px;
	margin-left: 10px;
}

.form_list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.form_data {
	flex: 1;
	margin-right: 20px;
}

.form_data:last-child {
	margin-right: 0;
}

.form_data label {
	display: block;
	margin-bottom: 5px;
}

#alertBox {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	padding: 15px;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

#alertBox.success {
	background-color: #4CAF50;
}

#alertBox.error {
	background-color: #f44336;
}

.contact_main {
	display: flex;
	justify-content: space-between;
	/* background-color: #f4f4f4; */
	border-radius: 25px;
	margin-top: 20px;
}

.contact_list {
	width: 48.5%;
	padding: 40px;
}

.contact_list h2 {
	font-size: 40px;
}

.contact_list p {
	font-size: 14px;
	color: #888;
	line-height: 24px;
	margin-top: 20px;
}

@media (max-width: 1100px) {
	.contact_list h2 {
		font-size: 30px;
	}

	.contact_list {
		padding: 20px;

	}

	.contact_list p {
		line-height: 22px;
		margin-top: 10px;
	}
}

@media (max-width: 800px) {

	.contact_list {
		padding: 10px;
	}

	.contact_list p {
		line-height: 20px;

	}
}