/* 基础样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Microsoft YaHei', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 导航栏样式 - 使用其他页面的样式 */
.navbar {
	background: #C6AA76 !important;
	padding: 0;
	position: relative;
	width: 100%;
	z-index: 1000;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.nav-brand {
	display: flex;
	align-items: center;
}

.brand-logo {
	height: 30px;
	max-width: 200px;
	width: auto;
	object-fit: contain;
}

.nav-menu {
	display: flex;
	list-style: none;
	align-items: center;
	margin: 0;
}

.nav-menu li {
	position: relative;
	margin: 0 15px;
}

.nav-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	padding: 10px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.nav-link:hover {
	background-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* 下拉菜单样式 */
.dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 150px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	list-style: none;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	margin: 0;
}

.dropdown-menu a {
	display: block;
	padding: 10px 20px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
}

.dropdown-menu a:hover {
	background-color: #f5f5f5;
	color: #C6AA76;
}

/* 导航控制区域 */
.nav-controls {
	display: flex;
	align-items: center;
	gap: 20px;
}

.music-toggle {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.music-toggle:hover {
	color: #f0f0f0;
}

.language-switch {
	color: #fff;
	font-size: 14px;
}

.language-switch .active {
	font-weight: bold;
}

/* 汉堡菜单 */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #fff;
	margin: 3px 0;
	transition: 0.3s;
}

/* 激活状态 */
.dropdown.active .nav-link,
.nav-menu .active .nav-link {
	background-color: rgba(255, 255, 255, 0.2);
}

/* 主要内容包装器 */
.main-wrapper {
	background: #fff;
	min-height: calc(100vh - 70px);
}

.main-container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	margin-top: 80px;
}

/* 主要内容区域 - 根据设计图调整 */
.content-section {
	padding: 100px 0 0;
	background: #f0f0f0;
	text-align: center;
}

.contact-content {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.contact-title {
	text-align: center;
	margin-bottom: 80px;
}

.contact-title h1 {
	font-size: 36px;
	font-weight: bold;
	color: #C6AA76;
	margin-bottom: 15px;
	letter-spacing: 2px;
}

.contact-title .subtitle {
	font-size: 16px;
	color: #C6AA76;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-weight: 300;
}

/* 联系信息区域 */
.contact-info {
	margin-bottom: 0;
}

.company-info {
	margin-bottom: 50px;
}

.company-item {
	text-align: center;
	margin-bottom: 40px;
}

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

.company-name {
	font-size: 18px;
	font-weight: bold;
	color: #999;
	margin-bottom: 8px;
}

.company-address {
	font-size: 16px;
	color: #999;
	line-height: 1.6;
}

.contact-details {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.contact-item {
	font-size: 16px;
	color: #999;
	line-height: 1.8;
}

.contact-label {
	font-weight: 500;
	color: #999;
	margin-right: 8px;
}

/* 底部区域 - 使用首页的样式 */
.bottom-section {
	padding: 80px 0;
	background: #f0f0f0;
}

.bottom-content {
	text-align: center;
}

.bottom-images {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 950px;
	margin: 0 auto 30px auto;
	gap: 30px;
}

.bottom-left,
.bottom-right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.left-text-img,
.right-text-img {
	max-width: 280px;
	height: 28px;
	object-fit: contain;
}

/* 社交图标区域 - 使用首页的样式 */
.social-section {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.social-links {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.social-icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	background: #C6AA76;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	position: relative;
}

.social-icon:hover {
	background: #b8956f;
	transform: translateY(-3px);
}

.social-icon img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* 如果图片加载失败，显示背景色 */
.social-icon img:not([src]),
.social-icon img[src=""] {
	display: none;
}

.social-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 14px;
	background: transparent;
}

/* 二维码弹出框 - 使用首页的样式 */
.qr-popup {
	position: absolute;
	bottom: 35px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1000;
	pointer-events: none;
	white-space: nowrap;
}

.social-icon:hover .qr-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.qr-popup img {
	width: 120px;
	height: 120px;
	object-fit: contain;
	display: block;
}

/* 版权信息 */
.copyright {
	text-align: center;
	margin-top: 30px;
}

.copyright p {
	font-size: 14px;
	color: #666;
	margin-bottom: 5px;
}

@media (max-width: 1024px) {
	.bottom-images {
		flex-direction: column;
		gap: 20px;
	}
	
	.left-text-img,
	.right-text-img {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: #C6AA76;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
	}
	
	.nav-menu.active {
		left: 0;
	}
	
	.nav-menu li {
		margin: 10px 0;
	}
	
	.nav-controls {
		display: none;
	}

	.main-container {
		padding: 0 15px;
	}

	.contact-content {
		padding: 0 10px;
	}
	
	.contact-details {
		align-items: flex-start;
		text-align: left;
	}
	
	.bottom-images {
		flex-direction: column;
		gap: 20px;
	}
	
	.social-links {
		flex-wrap: wrap;
		gap: 12px;
	}
}  

.music-control {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.music-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); /* 将图标变为白色 */
}

.music-icon.rotating {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}