/* 页脚样式 */
footer {
	background-color: #252525;
	color: #999;

}

footer .container {
	background: url('../static/img/footer_bg.png') center/cover no-repeat;
	position: relative;
}

.footer-content {

	padding: 80px 60px 60px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	/* gap: 40px; */
}

.footer-logo {
	/* flex: 0 0 150px; */
	padding: 0 80px;
	border-right: 1px solid rgba(117,117,117,0.75);
	margin-right: 80px;
}

.footer-logo img {
	width: 100px;
}

.footer-logo p {
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-column {
	flex: 1;
	min-width: 150px;
	/* display: flex;
	justify-content: center; */
}
.footer-column-content {
	
	width: 100px;
}

.footer-column h4 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 14px;
	font-family: PingFang SC, PingFang SC-Regular;
	font-weight: normal;
}

.footer-column ul {
	list-style: none;
}

.footer-column li {
	margin-bottom: 10px;
}

.footer-column a {
	color: #999;
	text-decoration: none;
	font-size: 12px;
	transition: color 0.3s;
}

.footer-column a:hover {
	color: #fff;
}

.footer-bottom {

	display: flex;
	text-align: center;
	padding: 10px;
	border-top: 1px solid rgba(117,117,117,0.75);;
	font-size: 0.8rem;
	align-items: center;
	justify-content: center;
	gap: 10px;
}