/* 联系页面专用样式 */
/* 联系方式区域 */
.contact-info-section {
	margin-top: 100px;
	padding: 0 300px;
}

.message-section {
	padding: 0 300px;
	margin-top: 80px;
	margin-bottom: 100px;
}

.contact-info-container,
.message-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}

.contact-info-container {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
	border-radius: 16px;
}

.contact-title,
.message-title {
	font-size: 36px;
	color: #333;
	margin-bottom: 45px;
	font-weight: 600;
	position: relative;
	padding-bottom: 0;
	text-align: left;
}

.contact-title:after,
.message-title:after {
	display: none;
}

.contact-info-list {
	margin-bottom: 55px;
	padding-left: 2px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 45px;
	padding-bottom: 0;
	border-bottom: none;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-icon {
	color: #ff6600;
	font-size: 20px;
	min-width: 24px;
	height: 26px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-right: 14px;
	margin-top: 6px;
}

.contact-text {
	flex: 1;
	padding-top: 1px;
}

.contact-text-main {
	font-size: 18px;
	margin-bottom: 10px;
	color: #333;
	line-height: 1.6;
	font-weight: 500;
}

.contact-text-en {
	font-size: 14px;
	color: #999;
	line-height: 1.3;
	text-transform: uppercase;
	margin-top: 2px;
	letter-spacing: 0.01em;
}

.contact-bottom {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 55px;
	border-top: none;
	padding-top: 0;
	padding-left: 2px;
}

.contact-bottom-item {
	display: flex;
	align-items: center;
	margin-bottom: 0;
	margin-right: 200px;
}

.contact-bottom-item:last-child {
	margin-right: 0;
}

.contact-bottom-item .contact-icon {
	margin-top: 0;
	margin-right: 10px;
	color: #ff6600;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
}

.contact-bottom-item .contact-text-main {
	margin-bottom: 0;
	font-weight: normal;
	font-size: 17px;
	color: #333;
}

/* 针对特定图标的调整 */
.fa-map-marker-alt {
	font-size: 20px;
}

.fa-phone-alt {
	font-size: 17px;
	transform: translateY(-1px);
}

.fa-envelope {
	font-size: 16px;
}

.fa-clock {
	font-size: 17px;
}

/* 在线留言表单样式 */
.message-title {
	font-size: 32px;
	color: #333;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
	padding-bottom: 0;
	text-align: left;
}

.message-form {
	max-width: 100%;
	margin: 0 auto;
}

.message-form input,
.message-form textarea {
	width: 100%;
	padding: 25px 15px;
	margin-bottom: 20px;
	border: 1px solid #897d79;
	border-radius: 4px;
	font-size: 16px;
	color: #333;
	background: #fff;
	transition: border-color 0.3s;
}

.message-form input::placeholder,
.message-form textarea::placeholder {
	color: #aaa;
}

.message-form textarea {
	min-height: 150px;
	resize: vertical;
	margin-bottom: 25px;
}

.message-form input:focus,
.message-form textarea:focus {
	border-color: #ff6600;
	outline: none;
}

.submit-message-btn {
	background-color: #ff6600;
	color: white;
	border: none;
	padding: 10px 0;
	font-size: 16px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: block;
	margin: 0;
	font-weight: normal;
	text-align: center;
	width: 138px;
}

.submit-message-btn:hover {
	background-color: #e55f00;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
	.contact-bottom-item {
		margin-right: 80px;
	}
}

@media screen and (max-width: 992px) {
	.contact-bottom-item {
		margin-right: 60px;
	}
}

@media screen and (max-width: 768px) {
	.contact-info-section {
		margin-top: 10px;
		padding: 0 10px;
	}

	.message-section {
		margin-top: -25px;
		padding: 0 10px;
		margin-bottom: 30px;
	}

	.contact-info-container {
		padding: 15px 12px 10px;
		margin-bottom: 0;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	}

	.message-container {
		padding: 15px 12px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	}

	.contact-bottom {
		flex-direction: column;
		margin-top: 10px;
	}

	.contact-bottom-item {
		margin-right: 0;
		margin-bottom: 8px;
	}

	.contact-bottom-item:last-child {
		margin-bottom: 0;
	}

	.contact-item {
		margin-bottom: 12px;
	}

	.contact-info-list {
		margin-bottom: 10px;
	}

	.contact-title,
	.message-title {
		margin-bottom: 12px;
		font-size: 20px;
	}

	.submit-message-btn {
		width: 100%;
	}

	.message-form input,
	.message-form textarea {
		margin-bottom: 10px;
		padding: 15px 12px;
	}

	.message-form textarea {
		min-height: 120px;
		margin-bottom: 15px;
	}
}
header {
	background-color: rgba(34, 34, 34, 0.16);
	position: sticky !important;
	top: 0 !important;
	z-index: 1000 !important;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled-past-banner {
	background-color: #ffffff !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

header.scrolled-past-banner .menu a {
	color: #333333 !important;
}

header.scrolled-past-banner .language-switch a {
	color: #333333 !important;
}

header.scrolled-past-banner .menu-toggle i {
	color: #333333 !important;
}

/* 修复header和footer的高度问�?*/
header .container {
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	height: 60px;
	display: flex;
	align-items: center;
}

.logo-img-container img {
	height: 40px;
}

@media screen and (max-width: 768px) {
	.logo-img-container img {
		height: 30px;
	}
}

/* 三角形装饰样�?*/
.banner {
	position: relative;
}

.banner-triangle {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
	width: 30px;
	height: 30px;
	background-color: #ff6600;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	z-index: 100;
}
