.footerbg{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #282E31;
	width: 100%;
	height: 417px;
	background-size: 100% 417px;
	color: #ffffff;
	font-size: 36px;
	font-weight: 700;
}
/* 页脚 */
.footer {
    background: #282E31;
    padding: 50px 160px 20px 200px;
	color: #9D9D9D;
	font-size: 14px;
}

.footer-content {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
	color: #ffffff;
}
.footer-left a{
	text-decoration: none;
	color: #9D9D9D;
	font-size: 14px;
}
.footer-left-top{
	margin-bottom: 20px;
}
.footer-left-top div{
	width: 115px;
	border-right: 1px solid #94a3b8;
	padding-left: 28px;
}
.footer-left-bot div{
	width: 115px;
	border-right: 1px solid #94a3b8;
	padding-left: 28px;
}

.footer-center {
    margin: 0 40px;
}

.link-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
	color: #ffffff;
}

.link-section li {
    margin-bottom: 8px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 12px;
}

.link-section li:hover {
    color: white;
}

.footer-right h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
	color: #ffffff;
}
.footer-right p {
    font-size: 12px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons img {
    width: 84px;
    height: 84px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 11px;
}