/* Footer样式 - 独立组件 */
/* 页脚组件的所有样式，支持未来扩展 */

/* 主要页脚样式 */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e1e5e9;
    margin-top: 40px;
    padding: 20px 0;
    color: #7c7c7c;
    font-size: 12px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #7c7c7c;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ff4500;
    text-decoration: underline;
}

.footer-copyright {
    color: #a8a8a8;
}

.footer-copyright p {
    margin: 0;
}

/* 响应式设计 - 小屏幕适配 */
@media (max-width: 768px) {
    .footer-links a {
        margin: 0 8px;
        display: inline-block;
        margin-bottom: 5px;
    }
}