
    .ink-footer {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px 60px;
    }

    .ink-footer .ink-section-title {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 50px 0 30px;
    }

    .ink-footer .ink-section-title::before,
    .ink-footer .ink-section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
    }

    .ink-footer .ink-section-title span {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 28px;
        color: #4a4a4a;
        white-space: nowrap;
    }

    .ink-alpha-box {
        background: #f5f2eb;
        border-radius: 12px;
        padding: 25px 30px;
        margin-bottom: 20px;
    }

    .ink-alpha-box:last-of-type {
        margin-bottom: 0;
    }

    .ink-alpha-label {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 22px;
        color: #1a1a1a;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #8b2500;
        display: inline-block;
    }

    .ink-alpha-links {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ink-alpha-links a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 8px;
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 16px;
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .ink-alpha-links a:hover {
        background: #8b2500;
        color: #fff;
        border-color: #8b2500;
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 4px 12px rgba(139,37,0,0.3);
    }

    .ink-footer-bottom {
        text-align: center;
        padding: 50px 0 0;
        margin-top: 50px;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .ink-footer-logo {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 38px;
        color: #1a1a1a;
        margin-bottom: 25px;
    }

    .ink-footer-nav {
        display: flex;
        justify-content: center;
        gap: 35px;
        margin-bottom: 25px;
    }

    .ink-footer-nav a {
        font-size: 14px;
        color: #666;
        text-decoration: none;
        transition: color 0.3s;
    }

    .ink-footer-nav a:hover {
        color: #8b2500;
    }

    .ink-copyright {
        font-size: 13px;
        color: #999;
        line-height: 2;
    }

    @media (max-width: 768px) {
        .ink-footer {
            padding: 0 20px 40px;
        }
        .ink-alpha-links a {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }
        .ink-footer-nav {
            flex-wrap: wrap;
            gap: 20px;
        }
    }
