/* 页脚样式 */
.global-footer {
    background-color: #f5f5f7;
    padding: 16px 0;
    font-size: 12px;
    color: #6e6e73;
    border-top: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}

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

.footer-center {
    text-align: center;
}

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

.admin-login-section {
    margin-top: 8px;
}

.admin-login-section .admin-link {
    color: #424245;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
    letter-spacing: -0.01em;
    padding: 4px 8px;
    border-radius: 4px;
}

.admin-login-section .admin-link:hover {
    color: #1d1d1f;
    text-decoration: underline;
    background-color: rgba(0, 0, 0, 0.05);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        padding: 16px;
    }
} 