.footer {
    padding: 25px 10px;
    background-color: #fff8fb;
    border-top: 3px solid #cc4482;
    border-radius: 12px 12px 0 0;

}

/* 友情链接行 */
.friend-link-row {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0d9e6;
}
.fl-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-right: 15px;
}
.fl-item {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s;
}
.fl-item:hover {
    color: #cc4482;
}

/* 底部导航链接 */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-nav a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}
.footer-nav a:hover {
    color: #cc4482;
}

/* 备案版权信息 */
.copyright-info {
    text-align: center;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

/* 移动端响应式适配 */
@media (max-width:768px) {
    .footer-nav {
        gap:20px;
    }
}