/* 基础重置与命名空间隔离 */
.footer-section {
	background-color: #000;
	padding: 40px 20px;
	font-family: Arial, sans-serif;
}

.footer-section * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 容器：左侧1/3 + 右侧2/3 比例分配，并继承高度 */
.footer-container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	gap: 30px;
	height: 100%;
	/* 继承父元素高度，确保左侧有空间上下分布 */
}

/* 左侧：WEFUU（顶） + 社交图标（底）—— 核心是加 min-height */
.footer-left {
	flex: 1;
	min-width: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/* 上下分开对齐 */
	min-height: 180px;
	/* 关键！强制留出垂直空间，让社交图标能靠底 */
	height: 100%;
}

/* Logo样式（顶部对齐，无额外间距） */
.footer-logo {
	display: flex;
	align-items: center;
	/* 顶部对齐：无需加 margin-top，默认靠上 */
}

/* 社交图标容器：控制图标整体排列（如果原有样式足够，可不用改） */
.footer-social {
	display: flex;
	/* 横向排列 */
	gap: 16px;
	/* 图标之间的间距，可调整 */
	align-items: center;
	/* 垂直居中 */
}

/* 本地图片样式：核心控制 */
.social-icon {
	width: 24px;
	/* 图标宽度，可调整（建议和原Font Awesome图标大小一致） */
	height: 24px;
	/* 图标高度，和宽度一致避免变形 */
	object-fit: contain;
	/* 保证图片完整显示，不拉伸 */
	vertical-align: middle;
	/* 对齐文字（如果有） */
}

/* hover效果：可选，提升交互感 */
.social-item:hover .social-icon {
	opacity: 0.8;
	/* 鼠标悬浮时变浅 */
	/* 若需要变色，可加 filter: grayscale(0); 前提是图片是单色 */
}

/* 移动端适配：取消最小高度，避免拥挤 */
@media (max-width: 768px) {
	.footer-left {
		flex-direction: row;
		/* 移动端恢复横向排列 */
		justify-content: space-between;
		align-items: center;
		min-height: auto;
		/* 移动端去掉固定高度，自适应内容 */
		margin-bottom: 20px;
	}
}

.logo-icon {
	width: 60px;
	height: auto;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	font-size: 1.2rem;
	flex-direction: column;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
}

/* 社交图标样式（底部对齐，横向排列） */
.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 0;
	/* 清除默认间距，确保底部对齐 */
}

.social-item {
	color: #FFFFFF;
	font-size: 1.2rem;
	transition: color 0.3s ease;
	text-decoration: none;
}

.social-item:hover {}

/* 右侧：链接列表（占2/3） */
.footer-right {
	flex: 2;
	min-width: 300px;
}

.footer-links {
	display: flex;
	gap: 80px;
	flex-wrap: wrap;
	color: #FFFFFF;
	justify-content: flex-start;
}

.link-column {
	flex: 1;
	min-width: 120px;
}

.link-column h4 {
	font-size: 1rem;
	margin-bottom: 15px;
	opacity: 0.8;
}

.link-column ul {
	list-style: none;
}

.link-column ul li {
	margin-bottom: 8px;
}

.link-column ul li a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.3s ease;
}

.link-column ul li a:hover {
	color: #ccc;
	opacity: 1;
}

/* 移动端响应式（取消比例，垂直排列） */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		height: auto;
		/* 移动端取消固定高度，自适应内容 */
	}

	.footer-left,
	.footer-right {
		flex: none;
		width: 100%;
	}

	.footer-left {
		flex-direction: row;
		/* 移动端横向排列 */
		justify-content: space-between;
		/* Logo居左，社交图标居右 */
		align-items: center;
		/* 垂直居中 */
		height: auto;
		/* 移动端高度自适应 */
		margin-bottom: 20px;
	}

	.footer-social {
		gap: 10px;
	}

	.footer-links {
		gap: 40px;
		margin-top: 20px;
	}
}