/* Shared footer layout for every Chinese and English page. */
.section.site-footer {
    background: #efefef !important;
    padding: 0 24px !important;
    color: #333;
}
#mainpage > .site-footer::after {
    display: none;
}
.site-footer .site-footer-content {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}
.section.site-footer .copyright {
    position: relative !important;
    margin: 0 -24px !important;
    padding: 16px 24px !important;
    background: #fff;
}
.site-footer .copyright > div {
    display: flex;
    align-items: center;
}
.site-footer .copyright > div:last-child {
    justify-content: flex-end;
}
.site-footer .nav-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
}
.site-footer .nav-footer li {
    margin: 0;
}
@media (max-width: 991px) {
    .site-footer .site-footer-content > div {
        padding-right: 0 !important;
    }
    .site-footer .site-footer-content > div:last-child {
        margin-top: 32px;
    }
    .site-footer .copyright > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .site-footer .copyright > div:last-child {
        justify-content: flex-start;
        margin-top: 16px;
    }
    .site-footer .nav-footer {
        justify-content: flex-start;
    }
}
/* Page-specific heading fonts must not change the shared footer. */
.section.site-footer h2 {
    font-family: var(--font-sans) !important;
    font-style: normal !important;
    font-weight: 300 !important;
    font-size: 36px !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
    margin-bottom: 32px !important;
}
.section.site-footer h4 {
    font-family: var(--font-sans) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
}
@media (max-width: 991px) {
    .section.site-footer h2 {
        font-size: 28px !important;
    }
}

.site-footer .site-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

/* Keep the filing number distinct from the copyright, wrapping on narrow screens. */
.site-footer .site-footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 24px;
    min-width: 0;
}
.site-footer .site-footer-icp {
    white-space: nowrap;
}
.site-footer .copyright > div:first-child > img {
    flex-shrink: 0;
}
