/* 全局样式重置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* 页脚容器 - 严格还原设计图背景色 */
.footer {
	background-color: #344054;
	/* 设计图深蓝色背景 */
	color: #ffffff;
	padding: 5px 0;
	padding-top: 100px;
	
	font-family: "Microsoft YaHei", sans-serif;
}
.footer .container{
	max-width: 1600px;
	margin: 0 auto;
}

/* 品牌区域样式 */
.footer-brand h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 30px;
	color: #ffffff;
}

.footer-logo-placeholder {
	width: 68px;
	height: 68px;
	background-color: #ffffff;
	margin-bottom: 12px;
}

.footer-brand p {
	font-size: 0.9rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.60);
	max-width: 170px;
}

/* 列标题样式 */
.footer-col h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 30px;
	color: #ffffff;
}

/* 链接列表样式 */
.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 18px;
}

.footer-links a {
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	color: rgba(255, 255, 255, 0.60);
}

.footer-links a:hover {
	color: #ffffff;
}

/* 版权样式 */
.footer-copyright{
	margin-top: 30px;
}
.footer-copyright p{
	text-align: center;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	color: rgba(255, 255, 255, 0.60);
	margin-bottom: 5px;
}

/* 移动端适配优化 */
@media (max-width: 768px) {
	.footer {
		padding: 40px 0;
	}
	.footer .container {
		zoom: 0.3;
		width: 1300px !important;
		max-width: none !important;
	}
	.footer .row {
		flex-wrap: nowrap;
	}
	.footer .col-12 {
		width: auto;
		flex: 1;
	}
	.footer-brand {
		flex: 0 0 25% !important;
		max-width: 25% !important;
	}
	.footer-col {
		flex: 0 0 16.666% !important;
		max-width: 16.666% !important;
	}
}