/* 页脚 */
.footer {
	background-color: #1b1b1b;
	color: white;
	padding: 50px 0 20px;
}

.footer-container {
	width: 100%;
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
	gap: 20px;
}

.footer-column h3 {
	font-size: 16px;
	margin-bottom: 20px;
}
.footer-column h3 a {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column h3 a:hover {
	color: white;
}

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

.footer-column ul li {
	margin-bottom: 10px;
	font-size: 14px;
	color: #9a9da0;
}

.footer-column ul li a {
	color: #9a9da0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: white;
}

.ft-phone{
	font-size: 24px!important;
}

.copyright {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #aaa;
	font-size: 14px;
}

.copyright a {
	color: #9a9da0;
	text-decoration: none;
	transition: color 0.3s;
}

.qrcode-box{
	text-align: right;
}

.qrcode {
	width: 100px;
	height: 100px;
	background-color: white;
	margin-top: 15px;
	margin-right: 0;
	margin-left: auto;
}

.qrcode img {
	width: 100%;
}

@media (max-width: 992px) {
	.qrcode {
		width: 100px;
		height: 100px;
		background-color: white;
		margin: 15px auto 0;
	
	}
	.qrcode-box{
		text-align: center;
	}
}

@media (max-width: 480px) {
	.footer-container {
		text-align: center;
	}

	.qrcode {
		width: 100px;
		height: 100px;
		background-color: white;
		margin: 15px auto 0;
	
	}
	.qrcode-box{
		text-align: center;
	}
		
}