:root {
	--primary: #2e7d32; /* 主品牌色 - 环保绿 */
	--primary-dark: #1b5e20; 
	--primary-light: #e8f5e9;
	--secondary: #00796b; /* 辅助色 - 深青绿 */
	--accent: #ffa000; /* 强调色 - 活力橙 */
	--light: #f5f7fa; /* 浅背景色 */
	--dark: #263238; /* 深文本色 */
	--gray: #546e7a; /* 次文本色 */
	--light-gray: #cfd8dc; /* 边框/分隔线色 */
	--white: #ffffff; /* 白色 */
	--card-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* 卡片阴影 */
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* 过渡动画 */
	--platform-color: #e74c3c; /* 平台链接色 - 红色 */
	--border-radius: 10px; /* 统一圆角 */
	--box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* 统一阴影 */
	--text: #455a64; /* 主要文本色 */
	--text-light: #78909c; /* 次要文本色 */
	--section-bg: #f0f7f0; /* 新增：模块背景色 */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Noto Sans SC', sans-serif;
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--section-bg);
	overflow-x: hidden;
	position: relative;
	padding-top: 80px; /* 桌面端顶部间距 */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

/* ===== 导航栏优化 ===== */
header {
	background-color: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.4); /* 下划线阴影 */
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px; /* 统一宽度为1200px */
	margin: 0 auto;
	padding: 15px 10px; /* 修改：左右内边距从40px改为20px */
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.logo img {
	height: 48px;
	transition: all 0.3s ease;
}

/* 地区选择器样式 - 优化 */
.region-selector {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(0,0,0,0.65); /* 修改：背景颜色从0.7改为0.5 */
	color: white;
	padding: 8px 10px; /* 增加内边距 */
	border-radius: 5px;
	font-size: 0.8rem; /* 减小字体大小 */
	font-weight: 500; /* 加粗 */
	cursor: pointer;
	margin-left: 5px;
	transition: background 0.3s;
}

.region-selector:hover {
	background: rgba(0,0,0,0.7);
}

.region-selector i {
	font-size: 0.9rem;
	margin-right: 0px; /* 增加图标与文字间距 */
}

.nav-links {
	display: flex;
	list-style: none;
	align-items: center;
}

.nav-links li {
	position: relative;
	margin-left: 20px;
	white-space: nowrap;
}

.nav-links > li > a {
	text-decoration: none;
	color: var(--dark);
	font-weight: 500;
	font-size: 1.1rem;
	position: relative;
	padding: 15px 8px;
	transition: color 0.3s;
	display: flex;
	align-items: center;
}

/* 商店文字设为红色 */
.nav-store a {
	font-weight: 600;
}

.nav-links a:hover {
	color: var(--primary);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 8px;
	width: calc(100% - 16px);
	height: 2px;
	background: linear-gradient(to right, var(--primary), var(--secondary));
	transition: width 0.3s;
	transform: scaleX(0);
	transform-origin: center;
}

.nav-links a:hover::after {
	transform: scaleX(1);
}

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

.dropdown-content {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--white);
	min-width: 200px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 5px;
	z-index: 1;
	padding: 10px 0;
	list-style-type: none;
}

.dropdown:hover .dropdown-content {
	display: block;
}

.dropdown-content li {
	margin: 0;
}

.dropdown-content a {
	display: block;
	padding: 12px 20px;
	font-size: 1rem;
	white-space: nowrap;
	transition: all 0.2s;
	text-decoration: none;
	color: var(--text);
	position: relative;
}

.dropdown-content a::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 20px;
	width: calc(100% - 40px);
	height: 1px;
	background: var(--primary);
	transition: transform 0.3s;
	transform: scaleX(0);
	transform-origin: center;
}

.dropdown-content a:hover {
	background: rgba(46, 125, 50, 0.1);
	color: var(--primary);
}

.dropdown-content a:hover::after {
	transform: scaleX(1);
}

/* 导航图标 - 调整地区选择器位置 */
.nav-icons {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-icons a {
	color: var(--dark);
	font-size: 1.4rem;
	transition: color 0.3s;
}

.nav-icons a:hover {
	color: var(--primary);
}

/* 汉堡菜单 */
.hamburger {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	font-size: 1.8rem;
	color: var(--dark);
}

/* 移动端导航菜单 */
.mobile-nav {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background: var(--white);
	z-index: 1001;
	box-shadow: -5px 0 15px rgba(0,0,0,0.1);
	overflow-y: auto;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}

.mobile-nav.active {
	right: 0;
}

.mobile-nav-header {
	padding: 13px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	background: var(--primary);
}

.close-menu {
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.8rem;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s;
}

.close-menu:hover {
	background: rgba(46, 125, 50, 0.1);
	color: var(--accent);
}

.mobile-nav-links {
	list-style: none;
	padding: 0px 20px 20px 20px;
	flex-grow: 1;
	overflow-y: auto;
	height: calc(100% - 170px); /* 调整高度 */
}

.mobile-nav-links li {
	margin-bottom: 8px;
}

.mobile-nav-links > li > a {
	display: block;
	padding: 10px 0;
	font-weight: 500;
	color: var(--dark);
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
}

/* 移动端商店按钮设为红色 */
.mobile-store-btn a {
	font-weight: 600;
}

.mobile-dropdown-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 8px 0;
	background: none;
	border: none;
	border-bottom: 1px solid #f0f0f0;
	text-align: left;
	font-weight: 500;
	color: var(--dark);
	cursor: pointer;
	font-size: 1rem;
	font-family: 'Noto Sans SC', sans-serif;
}

/* 移动端商店按钮设为红色 */
.mobile-store-btn {
	color: var(--platform-color) !important;
	font-weight: 600;
}

.mobile-dropdown-content {
	display: none;
	list-style: none;
	padding-left: 15px;
	padding-top: 5px;
	margin-bottom: 8px;
}

.mobile-dropdown-content li {
	margin-bottom: 8px;
}

.mobile-dropdown-content a {
	display: block;
	padding: 6px 0;
	color: var(--gray);
	text-decoration: none;
	font-size: 0.95rem;
}

.mobile-icons-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 10px 20px;
	border-top: 1px solid #eee;
	margin-top: 10px; /* 新增底部间距 */
	flex-shrink: 0;
	position: sticky;
	bottom: 60px;
	background: var(--white);
	z-index: 10;
	margin-bottom: 10px; /* 新增底部间距 */
}

.mobile-icons-row a {
	color: var(--dark);
	font-size: 1.2rem;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(46, 125, 50, 0.1);
	transition: all 0.3s;
	text-decoration: none; /* 移除下划线 */
}

.mobile-icons-row a:hover {
	background: var(--primary);
	color: var(--white);
}

/* 头部横幅广告 */
.page-ban {
	height: 300px;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: white;
}
.ban-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}
.ban-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 0 20px;
}
.ban-content h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.ban-content p {
	font-size: 1.5rem;
	max-width: 700px;
	margin: 0 auto;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* 当前位置 */
.breadcrumb {
	background-color: var(--light);
	padding: 15px 0;
	margin-bottom: 40px;
}
.breadcrumb-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.breadcrumb a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb span {
	color: var(--text-light);
	margin: 0 8px;
}

/* 通用部分样式 - 减小模块间距 */
.section {
	padding: 50px 20px; /* 减小模块间距 */
	max-width: 1200px; /* 统一宽度为1200px */
	margin: 0 auto;
	width: 100%;
}

.section-title {
	text-align: center;
	margin-bottom: 40px; /* 减小标题下边距 */
	position: relative;
	padding-bottom: 15px; /* 减小下划线间距 */
}

.section-title h2 {
	font-size: 2.3rem; /* 略微减小标题大小 */
	color: var(--dark);
	display: inline-block;
	position: relative;
	padding: 0 0 12px 0; /* 减小下边距 */
	margin-bottom: 12px;
}

.section-title h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px; /* 减小下划线高度 */
	background: linear-gradient(to right, var(--primary), var(--secondary));
	border-radius: 2px;
}

.section-title a {
	color: var(--dark);
	text-decoration: none;
	transition: all 0.3s ease;
}

.section-title a:hover {
	color: var(--primary);
}

/* 新增：标题链接样式 */
.section-title h2 a {
	color: inherit;
	text-decoration: none;
}

.section-title h2 a:hover {
	color: var(--primary);
}

/* 页脚 - 重新设计 */
footer {
	background: #1a1a1a;
	color: #999;
	padding: 60px 0 30px;
	font-size: 14px;
	line-height: 1.8;
	margin-top: auto;
}

.footer-container {
	max-width: 1200px; /* 统一宽度为1200px */
	margin: 0 auto;
	padding: 0 40px;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
	border-bottom: 1px solid #333;
	padding-bottom: 30px;
}

.footer-column {
	flex: 1;
	min-width: 200px;
	margin-bottom: 25px;
}

.footer-column h3 {
	color: #fff;
	font-size: 17px;
	margin-bottom: 20px;
	font-weight: 500;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.95rem;
}

.footer-column a:hover {
	color: #fff;
}

/* 底部区域重新设计 */
.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 25px;
}

.footer-top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}

.copyright {
	margin-bottom: 15px;
	font-size: 0.95rem;
	text-align: center;
	color: #aaa;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

.footer-social a {
	color: #999;
	text-decoration: none;
	font-size: 22px;
	transition: color 0.3s;
}

.footer-social a:hover {
	color: #fff;
}

.footer-extra-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 0px;
	max-width: 800px;
	white-space: nowrap; /* 防止换行 */
	overflow-x: auto; /* 允许水平滚动 */
	-webkit-overflow-scrolling: touch;
	padding-bottom: 5px; /* 为滚动条留空间 */
}

/* 隐藏滚动条 */
.footer-extra-links::-webkit-scrollbar {
	display: none;
}

.footer-extra-links {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.footer-extra-links a {
	color: #999;
	text-decoration: none;
	margin-bottom: 0px;
	font-size: 0.95rem;
	transition: color 0.3s;
	padding: 0 8px;
	position: relative;
	flex-shrink: 0; /* 防止缩小 */
}

.footer-extra-links a:not(:last-child)::after {
	content: "|";
	position: absolute;
	right: -12px;
	color: #666;
}

.footer-extra-links a:hover {
	color: #fff;
}

.footer-icp {
	color: #666;
	margin-top: 15px;
	width: 100%;
	font-size: 0.9rem;
	text-align: center;
}

.footer-icp a {
	color: #666;
	text-decoration: none;
}

.footer-icp a:hover {
	color: #999;
}

/* 回到顶部按钮 */
.back-to-top {
	position: fixed;
	bottom: 25px;
	right: 20px;
	width: 45px;
	height: 45px;
	background: var(--primary);
	color: white;
	border-radius: 0; /* 改为方形 */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--dark);
	color: var(--white);
}

/* 在线客服按钮 */
.customer-service {
	position: fixed;
	bottom: 70px; /* 调整位置 */
	right: 20px;
	width: 45px;
	height: 45px;
	background: var(--accent);
	color: white;
	border-radius: 0; /* 改为方形 */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	cursor: pointer;
	z-index: 999;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	transition: all 0.3s;
}

.customer-service:hover {
	background: #e68a00;
	color: var(--white);
}

/* 弹窗样式 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 2000;
	display: none;
	justify-content: center;
	align-items: center;
}

.modal {
	background: white;
	border-radius: var(--border-radius);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	width: 90%;
	max-width: 800px; /* 增加弹窗宽度 */
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}

.modal-header {
	padding: 10px 20px;
	border-bottom: 1px solid var(--light-gray);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--primary);
}

.modal-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--white);
}

.close-modal {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--white);
	transition: color 0.3s;
}

.close-modal:hover {
	color: var(--accent);
}

.modal-content {
	padding: 20px;
}

/* 搜索弹窗 */
.search-modal .search-box {
	display: flex;
	margin-bottom: 25px;
}

.search-modal input {
	flex: 1;
	padding: 15px 20px;
	border: 2px solid var(--light-gray);
	border-radius: 30px 0 0 30px;
	font-size: 1.1rem;
	outline: none;
}

.search-modal input:focus {
	border-color: var(--primary);
}

.search-modal .search-button {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 0 30px 30px 0;
	padding: 0 30px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-modal .search-button:hover {
	background: var(--primary-dark);
}

.search-section {
	margin-bottom: 30px;
}

.search-section h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--light-gray);
	color: var(--dark);
}

.search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.search-tag {
	background: rgba(46, 125, 50, 0.1);
	color: var(--primary);
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.3s;
}

.search-tag:hover {
	background: var(--primary);
	color: white;
}

.recent-searches {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.clear-history {
	color: var(--gray);
	font-size: 0.9rem;
	cursor: pointer;
	transition: color 0.3s;
}

.clear-history:hover {
	color: var(--primary);
}

/* 语言弹窗 - 重新设计 */
.language-modal .modal-content {
	padding: 0;
}

.tabs {
	display: flex;
	border-bottom: 1px solid var(--light-gray);
	padding: 0 20px;
	background: var(--light);
}

.tab {
	padding: 10px 12px;
	cursor: pointer;
	font-weight: 500;
	color: var(--gray);
	transition: all 0.3s;
	position: relative;
	display: flex;
	align-items: center;
	gap: 3px;
	border-bottom: 3px solid transparent;
}

.tab.active {
	color: var(--primary);
	border-bottom: 3px solid var(--primary);
}

/* 为洲图标添加颜色 */
.tab i {
	transition: color 0.3s;
}

.tab[data-tab="asia"] i {
	color: #FF6384; /* 亚洲图标颜色 */
}

.tab[data-tab="europe"] i {
	color: #36A2EB; /* 欧洲图标颜色 */
}

.tab[data-tab="america"] i {
	color: #FFCE56; /* 美洲图标颜色 */
}

.tab[data-tab="africa"] i {
	color: #4BC0C0; /* 非洲图标颜色 */
}

.tab[data-tab="oceania"] i {
	color: #9966FF; /* 大洋洲图标颜色 */
}

.tab.active i {
	color: var(--primary);
}

.tab-content {
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
}

.language-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 15px;
}

.language-item {
	padding: 10px 15px;
	border-radius: 8px;
	transition: all 0.3s;
	cursor: pointer;
	border: 1px solid #eaeaea;
	display: flex;
	align-items: center;
	gap: 15px;
	height: 50px; /* 减小高度 */
}

.language-item:hover {
	background: rgba(46, 125, 50, 0.05);
	border-color: var(--primary);
}

.language-item.active {
	background: rgba(46, 125, 50, 0.1);
	border-color: var(--primary);
}

.language-flag {
	width: 30px;
	height: 20px;
	background: #ddd;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.language-item .country {
	font-weight: 500;
	font-size: 0.9rem;
}

.language-item .lang {
	color: var(--text-light);
	font-size: 0.85rem;
}

/* 在线客服弹窗样式 - 重新布局 */
.service-modal .modal-content {
	padding: 20px;
}

.service-options {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.service-option {
	background: #f9f9f9;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	flex: 1;
	min-width: 200px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	display: flex;
	flex-direction: column;
}

.service-option.combined-option {
	flex-direction: row;
	min-width: 100%;
	padding: 0;
	overflow: hidden;
}

.hotline-part, .message-part {
	flex: 1;
	padding: 20px;
}

.hotline-part {
	background: rgba(46, 125, 50, 0.05);
	border-right: 1px solid #eee;
}

.service-option i {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary);
}

.service-option h4 {
	margin-bottom: 10px;
	color: var(--dark);
}

.service-option p {
	color: var(--text-light);
	margin-bottom: 15px;
}

.service-option button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: background 0.3s;
}

.service-option button:hover {
	background: var(--primary-dark);
}

/* 在线留言输入框样式 */
.message-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.message-form input,
.message-form textarea {
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: 'Noto Sans SC', sans-serif;
}

.message-form textarea {
	height: 60px;
	resize: vertical;
}

.message-form button {
	background: var(--primary);
	color: white;
	border: none;
	padding: 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.message-form button:hover {
	background: var(--primary-dark);
}

/* 新增社交图标区域 */
.service-social {
	margin-top: 25px;
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.service-social-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 15px;
}

.service-social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: #f0f0f0;
	border-radius: 50%;
	font-size: 1.5rem;
	color: var(--primary);
	transition: all 0.3s;
	text-decoration: none; /* 移除下划线 */
}

.service-social-icons a:hover {
	background: var(--primary);
	color: white;
}

/* 社交二维码弹窗 */
.social-modal .modal-content {
	padding: 30px;
	text-align: center;
}

.social-qr-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.social-qr-item {
	flex: 0 0 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.social-qr-title {
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--dark);
}

.social-qr-image {
	width: 150px;
	height: 150px;
	background: #f5f7fa;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.social-qr-image img {
	max-width: 100%;
	max-height: 100%;
}

.social-qr-desc {
	font-size: 0.9rem;
	color: var(--text-light);
	text-align: center;
}

/* 新增：每个社交平台的独立弹窗 */
.social-modal {
	max-width: 400px;
}

.social-modal .modal-content {
	padding: 30px;
}

/* 新增：电脑端社交媒体展示区 */
.social-media-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 15px;
}

.social-media-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 5px;
	transition: all 0.3s;
	cursor: pointer;
	text-decoration: none;
	color: var(--dark);
	width: 40px;
	height: 40px;
	background: #f0f0f0;
	border-radius: 50%;
	font-size: 2rem;
}

.social-media-item:hover {
	background: rgba(46, 125, 50, 0.1);
	transform: translateY(-1px);
}

.social-media-item i {
	font-size: 1.5rem;
	margin-bottom: 0px;
	color: var(--primary);
}

/* ======== 移动端优化新增样式 ======== */
/* 在线客服移动端新增联系信息样式 */
.mobile-contact-info {
	display: none; /* 默认隐藏 */
	background: rgba(46, 125, 50, 0.05);
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	text-align: center;
	color: var(--primary);
}

.mobile-contact-info p {
	margin: 8px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 500;
}

.mobile-contact-info i {
	font-size: 1.2rem;
}
		
/* 移动端搜索弹窗优化 */
@media (max-width: 768px) {
	/* 在线客服弹窗优化 */
	.service-option.hotline-option {
		display: none; /* 移动端隐藏热线电话卡片 */
	}
	
	.mobile-contact-info {
		display: block; /* 移动端显示联系信息 */
	}
	
	/* 搜索弹窗宽度优化 */
	.search-modal .modal {
		max-width: 90%;
	}
	
	.search-modal input {
		padding: 12px 15px;
		font-size: 1rem;
	}
	
	.search-modal .search-button {
		padding: 0 20px;
	}
	
	.search-tags {
		gap: 8px;
	}
	
	.search-tag {
		padding: 6px 12px;
		font-size: 0.8rem;
	}
}

/* 优化移动端客服弹窗高度 */
@media (max-width: 768px) {
	.service-modal .modal {
		max-height: 80vh;
		overflow-y: auto;
	}
	
	/* 新增：移动端社交媒体展示区 */
	.social-media-grid {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 0px;
		margin-top: 10px;
	}
	
	.service-options {
		flex-direction: column;
	}
	
	.service-option {
		min-height: auto;
		padding: 15px;
		height: auto;
	}
	.service-option h4 {
		font-size: 1.1rem;
	}
	.service-option p {
		font-size: 0.9rem;
		margin-bottom: 10px;
	}
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.navbar {
		padding: 15px 10px; /* 修改：保持20px内边距 */
	}
	
	.nav-links li {
		margin-left: 5px;
	}
	
	.logo img {
		height: 42px;
	}
	
	.ban-content h1 {
		font-size: 3rem;
	}
	.ban-content p {
		font-size: 1.3rem;
	}
	
	.section {
		padding: 50px 15px;
	}
}

@media (max-width: 992px) {
	.nav-links li {
		margin-left: 5px;
	}
	
	.nav-links > li > a {
		font-size: 1rem;
		padding: 15px 5px;
	}
	
	.logo img {
		height: 38px;
	}
	
	.ban-content h1 {
		font-size: 2.5rem;
	}
	.ban-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	/* 根据移动端导航栏实际高度调整 */
	body {
		padding-top: 60px;
	}
	.nav-links {
		display: none;
	}
	
	.hamburger {
		display: block;
	}
	
	.nav-icons {
		display: flex;
		gap: 5px;
	}
	
	.logo {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
	
	.logo img {
		height: 44px;
	}
	
	.mobile-icons-row {
		display: flex;
	}
	
	.mobile-nav {
		display: block;
	}
	
	.ban-content h1 {
		font-size: 2.2rem;
	}
	
	.section {
		padding: 40px 15px;
	}
	
	.section-title {
		margin-bottom: 30px;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.modal {
		width: 95%;
	}
	
	.service-options {
		flex-direction: column;
	}
	
	/* 移动端隐藏地球图标 */
	.region-selector i {
		display: none;
	}
	
	.footer-extra-links {
		flex-direction: row;
		align-items: center;
		gap: 3px;
		font-size: clamp(12px, 3vw, 0.95rem); /* 自适应字体大小 */
	}
	
	.footer-extra-links a::after {
		display: none;
	}
	
	/* 调整按钮位置 */
	.customer-service {
		bottom: 65px;
		right: 20px;
	}
	
	.back-to-top {
		bottom: 20px;
		right: 20px;
	}
}

@media (max-width: 576px) {
	/* 根据移动端导航栏实际高度调整 */
	body {
		padding-top: 60px;
	}
	.navbar {
		padding: 15px 10px;
	}
	
	.ban-content h1 {
		font-size: 1.8rem;
	}
	
	.logo img {
		height: 40px;
	}
	
	.back-to-top, .customer-service {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
	
	.customer-service {
		bottom: 60px;
	}
	
	.section {
		padding: 35px 12px;
	}
	
	.section-title h2 {
		font-size: 1.8rem;
	}
	
	.tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
		padding: 0 10px;
	}
	
	.tab {
		padding: 10px 8px;
		font-size: 0.9rem;
		white-space: nowrap;
	}
	
	/* 移动端地区选择器 */
	.region-selector {
		font-size: 0.9rem; /* 调整移动端文字大小 */
		padding: 3px 6px; /* 调整内边距 */
	}

	/* 社交分享弹窗响应式 */
	.social-qr-container {
		gap: 15px;
	}
	
	.social-qr-item {
		flex: 0 0 140px;
	}
	
	.social-qr-image {
		width: 120px;
		height: 120px;
	}
}

/* 超小屏幕下进一步缩小按钮 */
@media (max-width: 400px) {
	/* 根据移动端导航栏实际高度调整 */
	body {
		padding-top: 60px;
	}
	.back-to-top, .customer-service {
		width: 32px;
		height: 32px;
		font-size: 0.8rem;
		bottom: 15px;
		right: 10px;
	}
	
	.customer-service {
		bottom: 47px;
	}
	
	.region-selector {
		font-size: 0.7rem;
		padding: 3px 6px;
	}
}

/* 客服弹窗优化 - 电脑端布局 */
@media (min-width: 769px) {
	.service-options {
		flex-direction: row;
		flex-wrap: nowrap;
	}
	
	.service-option {
		min-width: auto;
		margin-bottom: 0;
		height: 220px; /* 调小高度 */
	}
}