/* 底部信息 - 重新设计为5列布局 */
.footer {
	background-color: var(--secondary-color);
	color: rgba(255, 255, 255, 0.8);
	padding: 50px 0 20px;
}

/* 新的5列布局 */
.footer-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.5fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
	padding-bottom: 30px;

}

.footer-col {
	/* 每列自动分配宽度 */
}

.footer-logo {
	font-size: 20px;
	font-weight: 700;
	color: white;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 15px;
}

.footer-desc {
	font-size: 13px;
	line-height: 1.7;
	margin-bottom: 20px;
}

.footer-contact {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 10px;
}

.footer-title {
	font-size: 16px;
	font-weight: 600;
	color: white;
	margin-bottom: 15px;
}

.footer-list li {
	font-size: 13px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: color 0.3s;
}

.footer-list li:hover {
	color: var(--primary-color);
}

/* 咨询热线列样式 */
.contact-column {
	display: flex;
	flex-direction: column;
}

.hotline-box {
	background: rgba(255, 255, 255, 0.05);
	padding: 15px;
	border-radius: 8px;
	margin-top: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotline-number {
	font-size: 18px;
	font-weight: 600;
	color: white;
	margin: 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hotline-number i {
	color: var(--primary-light);
}

/* 二维码样式 - 放在最右侧 */
.qr-column {
	text-align: center;
}

.qr-code {
	margin-top: 0;
	text-align: center;
}

.qr-code img {
	width: 120px;
	height: 120px;
	border-radius: 8px;
	background: white;
	padding: 8px;
}

.qr-code p {
	font-size: 12px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.7);
}

.copyright {
	text-align: center;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	/* 移除一条线 */
	border-top: none;
}

/* Footer优化 */
.footer-region {
	grid-column: 1 / -1;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.region-title {
	color: white;
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: 600;
}

.region-content {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}