/* 页脚样式 */
.clean-footer {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    margin-top: 50px;
    padding: 35px 20px 25px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: #1890ff;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-copy a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-copy a:hover {
    color: #1890ff;
}

.footer-copy div {
    margin: 0;
}

.footer-copy div+div {
    margin-top: 8px;
}

/* 页脚统计挂件 */
.clean-footer .footer-hang-stats {
    margin: 14px auto 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.9;
}

.clean-footer .footer-hang-stats .item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-right: 1px solid #e3e9f2;
    white-space: nowrap;
}

.clean-footer .footer-hang-stats .item:last-child {
    border-right: none;
}

.clean-footer .footer-hang-stats .value {
    margin-left: 4px;
    color: #1677ff;
    font-weight: 700;
}

/* 手机端页脚样式 */
@media (max-width: 768px) {
    .clean-footer {
        padding: 25px 15px 20px;
        margin-top: 30px;
    }

    .footer-links {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-info {
        margin-bottom: 10px;
    }

    .footer-desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-copy {
        font-size: 12px;
        line-height: 1.9;
    }

    .footer-copy div {
        margin: 0;
    }

    .footer-copy div+div {
        margin-top: 6px;
    }

    .clean-footer .footer-hang-stats {
        margin-top: 10px;
        margin-bottom: 0;
        display: flex;
        font-size: 11px;
        line-height: 1.6;
        row-gap: 4px;
    }

    .clean-footer .footer-hang-stats .item {
        padding: 2px 4px;
        font-size: 11px;
    }

    .clean-footer .footer-hang-stats .value {
        margin-left: 3px;
    }
}

@media (max-width: 420px) {
    .clean-footer .footer-hang-stats {
        font-size: 10px;
        line-height: 1.5;
        row-gap: 3px;
    }

    .clean-footer .footer-hang-stats .item {
        padding: 2px 3px;
        font-size: 10px;
    }
}
