/* 底部样式 */
.footer-section {
    margin-top: 20px;
    padding: 20px 10px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-bottom: 15px;
}
.footer-link {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-link:hover {
    color: #07c160;
}
.copyright {
    text-align: center;
    font-size: 12px;
    color: #999;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}
.copyright a {
    color: #999;
    text-decoration: none;
}
.copyright a:hover {
    color: #07c160;
}
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
    