/* ========== 页脚样式（无分割线版） ========== */

/* 确保页脚没有任何分割线 */
.site-footer,
.site-footer .footer-widgets,
.site-footer .footer-column,
.site-footer .footer-links-section,
.site-footer .footer-bottom {
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

/* 友情链接区域 */
.footer-links-section {
    padding: 20px 0 10px;
}

.footer-friendly-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.links-title {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.friendly-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.friendly-links li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.friendly-links li a:hover {
    color: var(--iheir-primary, #00bfff);
}

/* 社交媒体链接（图标 + 文字样式） */
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.social-item i {
    font-size: 22px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.social-item:hover {
    color: var(--iheir-primary, #00bfff);
}

.social-item:hover i {
    background: var(--iheir-primary, #00bfff);
    color: #fff;
    transform: translateY(-3px);
}

.social-item:hover span {
    color: var(--iheir-primary, #00bfff);
}

/* 版权区域 */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 15px 0 10px;
    font-size: 12px;
}

.copyright {
    color: rgba(255,255,255,0.5);
}

.footer-icp a,
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-icp a:hover,
.footer-links a:hover {
    color: var(--iheir-primary, #00bfff);
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* 响应式 */
@media (max-width: 768px) {
    .footer-friendly-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .friendly-links {
        justify-content: center;
        gap: 12px;
    }
    
    .friendly-links li a {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-item i {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .social-item span {
        font-size: 11px;
    }
}
