/* 联系我们页面样式 */



/* 头部底部边框 */
.header-with-border {
	border-bottom: 1px solid #e3e3e3;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 1920px;
	/* 全屏宽度 */
	max-width: 100%;
	margin: 0 auto;
	padding: 0 46px 0 88px;
	/* 左边88px，右边46px */
}

.logo {
	width: 52px;
	height: auto;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 87px;
	flex: 1;
	justify-content: center;
}

.nav-item {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: color 0.3s ease;
	position: relative;
}

.nav-item:hover {
	color: #0078ff;
}

.nav-item.active {
	color: #0078ff;
}

.nav-item.active::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #0078ff;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 21px;
	/* 与language-switch的margin-left保持一致 */
}

.search-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.language-switch {
	position: relative;
	width: 31px;
	height: 31px;
	background-color: #0078ff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	outline: none;
	padding: 0;
	transition: background-color 0.3s ease;
}

/* 悬停时语言切换按钮颜色变化 */
.header.dropdown-active .language-switch {
	background-color: #0056cc;
}

.language-switch:hover {
	background-color: #0056cc;
}

.lang-text {
	color: white;
	font-size: 12px;
	font-weight: 500;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	min-width: 120px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
}

.language-switch:hover .language-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: block;
	padding: 8px 12px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.dropdown-item:hover {
	background-color: #f5f5f5;
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-x: hidden;
}

/* Mobile header styles removed - see global.css */

.main-content {
	flex: 1;
	overflow-x: hidden;
	margin-top: -2px;
}

.contact-us-page .m-contact-content {
	display: none;
}

.contact-us-page .m-cover img {
	width: 100%;
	height: auto;
	display: block;
}

.contact-us-page .m-card {
	margin: 0 16px;
	padding: 16px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.contact-us-page .m-title {
	font-size: 4.2666vw !important;
	color: #000;
	margin: 2vw 0 8vw 0;
	line-height: 3em;
	border-bottom: 1px solid #ddd;
}

.contact-us-page .m-row {
	display: flex;
	align-items: flex-start;
	gap: 4vw;
	margin: 2vw 0 12vw 0;
}

.contact-us-page .m-tag {
	height: 5.06667vw;
	font-size: 2.666vw;
	background-color: #f9f9f9;
	border-radius: 5px;
	border: 1px solid #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
	flex: 0 0 13.333vw;
}
.m-region .m-tag{
	flex: 0 0 16vw;	
}
.m-region .m-row{
	margin: 6vw 0 4vw 0;
}

.contact-us-page .m-tag-text {
	font-family: MiSans-Regular, sans-serif;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #000000;
}

.contact-us-page .m-val {
	font-size: 3.7333vw;
	color: #000;
	line-height: 5.06667vw;
}

.contact-us-page .m-qr-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6vw;
	width: 100%;
}

.contact-us-page .m-qr {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-us-page .m-qr img {
	width: 18.933vw;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.contact-us-page .m-qr-label {
	font-size: 2.6667vw;
	color: #666;
	margin-top: 2vw;
}

.contact-us-page .m-map img {
	width: 100%;
	height: auto;
	display: block;
	margin: 2.2vw 0;
}

.contact-us-page .m-region {
	padding: 3vw 6.6vw;
	margin: 2.3vw;
	background: #ffffff;
	border: 1px solid #eee;
}

.contact-us-page .m-region-title {
	font-size: 4.8vw;
	padding: 0 0 3vw 0;
	font-weight: 600;
	color: #000;
	margin: 0 0 8px;
	border-bottom: 1px solid #ddd;
}

.contact-us-page .m-social {
	margin: 5vw 2.3vw;
}

.contact-us-page .m-social-title {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin: 8px 0 16px;
}

.contact-us-page .m-social-grid {
	display: grid;
	grid-template-columns: repeat(3, 30vw);
	gap: 3.333vw;
	justify-content: center;
}

.contact-us-page .m-social-card {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	width: 30vw;
	aspect-ratio: 480 / 240;
	overflow: hidden;
	background: transparent;
	cursor: pointer;
}

.contact-us-page .m-social-card .m-social-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: none;
}

@media (max-width: 768px) {
	.contact-us-page .contact-container {
		display: none;
	}

	.contact-us-page .m-contact-content {
		display: block;
		margin-top: 6vw;
	}
}

/* 横幅区域 */
.contact-banner {
	width: 100%;
	height: 300px;
	/* background-image: url('../images/contact-banner.jpg'); */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.banner-content {
	text-align: center;
	color: #000000;
}

.banner-title {
	font-size: 36px;
	font-weight: bold;
	color: #000000;
	margin: 0;
}

.m-banner-content {
	color: #000 !important;
}

.contact-us-page .m-contact-banner {
	display: none;
	width: 100%;
	aspect-ratio: 1 / 1;
/* 	background-image: url('../images/m-contact-banner.jpg'); */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 768px) {
	.contact-us-page .contact-banner {
		display: none;
	}

	.contact-us-page .m-contact-banner {
		display: block;
	}
}

/* 主要内容容器 */
.contact-container {
	margin: 0 auto;
	width: 81.9792vw;
	padding: 0 0 80px 0;
	box-sizing: border-box;
}

/* 公司大楼部分 */
.company-building {
	margin-top: 109px;
	text-align: center;
}

.company-building img {
	width: 100%;
}

/* 联系信息部分 */
.contact-info {
	background-color: #f5f5f5;
	padding: 90px 84px 84px 84px;
	margin-top: -10px;
}

.contact-info h2 {
	font-size: 32px;
	color: #000;
	margin-bottom: 43px;
	text-align: center;
	position: relative;
}

.contact-info h2::after {
	content: '';
	position: absolute;
	bottom: -43px;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #c4c4c4;
}

.contact-details {
	display: flex;
	flex-direction: column;
	max-width: none;
	margin: 86px 0 0 0;
}

.contact-row {
	display: flex;
	align-items: flex-start;
	gap: 100px;
	margin: 13px 0 0 0;
}

.contact-divider {
	height: 1px;
	background-color: #c4c4c4;
	margin: 53px 0;
}

.contact-item {
	display: flex;
	align-items: center;
}

.contact-item:first-child {
	flex: 0 0 40%;
	/* Phone项占40%宽度 */
}

.contact-item:nth-child(2) {
	flex: 0 0 60%;
	/* Hours项占60%宽度 */
}

.contact-item:not(:first-child):not(:nth-child(2)) {
	flex: 1;
	/* 其他项保持原有的flex: 1 */
}

.email-addr-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

.email-section,
.addr-section {
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.more-section {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.addr-item {
	max-width: 50%;
}

.contact-label {
	width: 80px;
	height: 29px;
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-right: 20px;
	flex-shrink: 0;
	padding: 0;
	background-color: transparent;
	border: 1px solid #000000;
	border-radius: 4px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	/*    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; */
}

.contact-label2 {
	width: 100px;
	height: 29px;
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-right: 20px;
	flex-shrink: 0;
	padding: 0;
	background-color: transparent;
	border: 1px solid #000000;
	border-radius: 4px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	/*    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; */
}


@media (hover: hover) and (pointer: fine) {
	.contact-item:hover .contact-label {
		background-color: #0078ff;
		color: #ffffff;
		border-color: #0078ff;
	}
}

.contact-value {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
}

.contact-value div {
	margin-bottom: 4px;
}

.contact-value div:last-child {
	margin-bottom: 0;
}

.qr-codes {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.qr-code-item {
	text-align: center;
}

.qr-code {
	width: 120px;
	height: 120px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 8px;
}

.qr-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* 地图部分 */
.map-section {
	margin-bottom: 60px;
}

.map-container {
	position: relative;
	overflow: hidden;
}

.map-container img {
	width: 100%;
	object-fit: cover;
}

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.location-marker {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 300px;
}

.marker-icon {
	width: 20px;
	height: 20px;
	background: #007bff;
	border-radius: 50%;
	margin: 0 auto 12px;
}

.marker-info h3 {
	font-size: 18px;
	color: #333;
	margin: 0 0 8px 0;
}

.marker-info p {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Social Media栏目 */
.social-media-section {
	background: #fff;
}

.region-section {
	background: #fff;
}

.region-section .container {
	margin: 0 auto;
	padding: 0;
}

.region-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.48958vw;
}

.region-card {
	background: #ffffff;
	border: 1px solid #e3e3e3;
	padding: 45px;
}

.region-title {
	font-size: 24px;
	color: #000;
	margin: 0 0 12px;
}

.region-divider {
	height: 1px;
	background-color: #e5e5e5;
	margin: 0 0 16px;
}

.region-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 40px 0 0 0;
}

.region-tag {
	min-width: 121px;
	height: 39px;
	background-color: #f9f9f9;
	border-radius: 5px;
	border: 1px solid #000000;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	box-sizing: border-box;
	font-size: 16px;
	color: #000;
}

.region-value {
	font-size: 16px;
	color: #000;
}

.region-card:hover .contact-label2 {
	background-color: #2578FC;
	color: #fff;
	border: 1px solid #2578FC;
}


.region-card:hover .region-tag {
	background-color: #2578FC;
	border: none;
	color: #fff;
}

@media (max-width: 768px) {
	.region-section {
		display: none;
	}
}

/* Social Media标题 */
.social-media-title {
	height: 26px;
	font-size: 32px;
	font-stretch: normal;
	line-height: 15px;
	letter-spacing: 0px;
	color: #000;
	margin: 90px 0 50px 0;
	text-align: center;
}

/* Social Media容器 */
.social-media-section .container {
	margin: 0 auto;
	padding: 0;
}

.social-media-news {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.48958vw;
	/* 使用vw单位，确保间距是屏幕宽度的2% */
}

/* Social Media项 */
.social-media-item {
	width: 100%;
}

.social-media-item .news-image {
	width: 100%;
	aspect-ratio: 480 / 240;
	background: transparent;
	overflow: hidden;
}

.social-media-item .news-image a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.social-media-item .news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: none;
}

/* Social Media项内容 */
.social-media-item .news-content {
	padding: 16px 0;
}

.social-media-item .news-date {
	font-size: 14px;
	color: #666;
	line-height: 1.4;
	margin-bottom: 8px;
}

.social-media-item .news-title {
	font-size: 16px;
	color: #333;
	line-height: 1.5;
	margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.contact-container {
		padding: 40px 20px;
	}

	.banner-title {
		font-size: 36px;
	}

	.contact-info h2 {
		font-size: 24px;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}

	.map-container img {
		height: 300px;
	}

	.social-links {
		gap: 20px;
	}

	.social-link {
		width: 60px;
		height: 60px;
	}

	.social-link img {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.location-marker {
		max-width: 250px;
		padding: 16px;
	}

	.marker-info h3 {
		font-size: 16px;
	}

	.marker-info p {
		font-size: 12px;
	}
}