/* 页脚样式 */
.global-footer {
    background-color: #f5f5f7;
    padding: 16px 0;
    font-size: 12px;
    color: #6e6e73;
    border-top: none;
    flex-shrink: 0;
    height: var(--footer-height);
    display: flex;
    align-items: center;
}

.footer-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left p {
    margin: 0;
    color: #6e6e73;
    letter-spacing: -0.01em;
}

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

.footer-right .admin-link,
.footer-right .footer-link {
    color: #424245;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
    letter-spacing: -0.01em;
}

.footer-right .admin-link:hover,
.footer-right .footer-link:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

.footer-divider {
    margin: 0 8px;
    color: #86868b;
    font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .global-footer {
        height: auto;
        padding: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 20px;
    }

    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
        line-height: 1.5;
    }

    .footer-left p {
        font-size: 11px;
        color: #86868b;
    }
}