/* ===== 杂志风格页脚 ===== */
.magazine-footer {
    background: #fff;
    font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
    margin-top: 60px;
    position: relative;
}
.magazine-footer::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #e93323, #f56c6c, #e93323);
    border-radius: 0 0 2px 2px;
}

/* ----- 主体区域 ----- */
.magazine-footer .footer-main {
    padding: 50px 0 30px;
    background: #fff;
}
.magazine-footer .footer-section {
    margin-bottom: 20px;
}

/* 栏目标题 */
.magazine-footer .footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    position: relative;
}
.magazine-footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background: #e93323;
    border-radius: 2px;
}

/* 链接列表 */
.magazine-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.magazine-footer .footer-links li {
    margin-bottom: 9px;
}
.magazine-footer .footer-links a {
    display: inline-block;
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: all .25s;
    position: relative;
}
.magazine-footer .footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #e93323;
    transition: width .25s;
}
.magazine-footer .footer-links a:hover {
    color: #e93323;
    transform: translateX(4px);
}
.magazine-footer .footer-links a:hover::after {
    width: 100%;
}

/* 联系信息 */
.magazine-footer .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.magazine-footer .contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13px;
    color: #666;
    transition: color .2s;
}
.magazine-footer .contact-info li:hover {
    color: #333;
}
.magazine-footer .contact-info li .fi-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 1px;
    color: #e93323;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 二维码 */
.magazine-footer .qrcode-area {
    text-align: center;
    padding: 16px 12px 12px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: box-shadow .3s;
}
.magazine-footer .qrcode-area:hover {
    box-shadow: 0 4px 16px rgba(233,51,35,.08);
    border-color: #fcd5d5;
}
.magazine-footer .qrcode-area img {
    width: 105px;
    height: 105px;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid #eee;
}
.magazine-footer .qrcode-area p {
    font-size: 12px;
    color: #999;
    margin: 0;
    letter-spacing: .5px;
}

/* 社交媒体 */
.magazine-footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
}
.magazine-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #888;
    font-size: 18px;
    text-decoration: none;
    transition: all .3s;
    background: #fafafa;
}
.magazine-footer .social-links a:hover {
    background: #e93323;
    border-color: #e93323;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(233,51,35,.3);
}

/* ----- 版权栏 ----- */
.magazine-footer .footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.magazine-footer .footer-bottom p {
    color: #999;
    font-size: 12px;
    margin: 0;
    letter-spacing: .5px;
    line-height: 2;
}
.magazine-footer .footer-bottom a {
    color: #e93323;
    text-decoration: none;
    transition: all .2s;
}
.magazine-footer .footer-bottom a:hover {
    color: #c02020;
    text-decoration: underline;
}
.magazine-footer .footer-bottom .divider-dot {
    color: #ddd;
    margin: 0 8px;
}

/* ----- 响应式 ----- */
@media (max-width: 992px) {
    .magazine-footer .footer-main {
        padding: 40px 0 20px;
    }
    .magazine-footer .footer-section {
        margin-bottom: 28px;
    }
    .magazine-footer .qrcode-area {
        max-width: 260px;
    }
    .magazine-footer .social-links {
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    .magazine-footer {
        margin-top: 40px;
    }
    .magazine-footer .footer-main {
        padding: 32px 0 12px;
    }
    .magazine-footer .footer-title {
        font-size: 14px;
        margin-bottom: 14px;
        padding-bottom: 10px;
        cursor: pointer;
    }
    .magazine-footer .footer-links a {
        font-size: 12px;
    }
    .magazine-footer .social-links {
        justify-content: center;
    }
    .magazine-footer .qrcode-area {
        margin: 0 auto;
    }
}
