/* 底部样式 */
.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); }
}

/* 友情链接样式 */
.friend-links {
    margin: 0 auto 25px;
    padding-bottom: 15px;
    max-width: 1200px;
    border-bottom: 1px solid #f0f0f0;
}

.friend-links-title {
    font-size: 16px;
    color: #333;
    margin: 0 0 15px 10px;
    padding-left: 6px;
    border-left: 3px solid #07c160;
    font-weight: 600;
}

.friend-links-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    padding: 0 10px;
}

.friend-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background-color: #f7f7f7;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.friend-link:hover {
    background-color: #07c160;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(7, 193, 96, 0.2);
}

.friend-link.manage-link {
    background-color: #f0fff4;
    color: #07c160;
    border-color: #c3e6c3;
}

.friend-link.manage-link:hover {
    background-color: #07c160;
    color: white;
    border-color: #07c160;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .friend-links-list {
        gap: 8px;
    }
    
    .friend-link {
        padding: 5px 12px;
        font-size: 13px;
    }
    
    .friend-links-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}
    