.footer {
    background-color: #000;
    margin-top: -1px;
    padding: 20px 0;
}

.footer .max-width {
    display: flex;
    align-items: center;
    /* 垂直居中 footer 内的元素 */
    justify-content: space-between;
    /* 三列布局 */
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    /* 使居中基于整个 footer 高度 */
    gap: 16px;
}

.footer .footer-left {
    display: flex;
    align-items: center;
}

.footer .footer_logo {
    width: 160px;
    height: auto;
    margin-right: 20px;
    /* 与右侧内容保持 20px 间距 */
    align-self: center;
}

/* 当前页面 footer 使用 .logo 类，补充统一样式 */
.footer .footer-left .logo,
.footer .logo {
    width: 160px;
    height: auto;
    margin-right: 20px;
    /* 与右侧内容保持 20px 间距 */
    align-self: center;
}

.footer .footer-center {
    color: #fff;
    flex: 1;
    min-width: 0;
}

.footer .footer-center .links {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.footer .footer-center .links a {
    display: inline-block;
    height: 20px;
    line-height: 16px;
    color: #fff;
    font-size: 12px;
    padding: 0 10px;
    border-left: 1px solid #fff;
    text-decoration: none;
}

.footer .footer-center .links a:first-child {
    border-left: none;
    padding-left: 0;
}

.footer .footer-center p {
    margin: 0;
    font-size: 12px;
    color: #BFBFBF;
    line-height: 24px;
}

.footer .footer-right {
    display: flex;
    align-items: center;
}

.footer .footer-right .outlinks {
    margin-top: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer .footer-right .outlinks li {
    background: #4a4a4a;
    border-radius: 100px;
    overflow: hidden;
    margin: 0;
    list-style: none;
}

.footer .footer-right .outlinks li a {
    display: block;
    width: 121px;
    height: 50px;
    line-height: 15px;
    padding: 10px 10px 10px 52px;
    color: #a2a2a2;
    background-position: 9px 7px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
}

.footer .footer-right .outlinks li:nth-child(1) a {
    width: 175px;
    background-image: url(../images/legal-ico-1.png);
}

.footer .footer-right .outlinks li:nth-child(2) a {
    background-image: url(../images/legal-ico-2.png);
}

.footer .footer-right .outlinks li:nth-child(3) a {
    width: 175px;
    background-image: url(../images/legal-ico-4.png);
}

@media (max-width: 1100px) {
    .footer .max-width {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer .footer-left {
        display: none;
    }
    .footer .footer-center .links {
        justify-content: center;
        display: none;
    }

    .footer .footer-right .outlinks {
        justify-content: center;
        display: none;
    }
}