.icp-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    text-align: center;
    padding: 6px 0 4px 0;
    font-size: 13px;
    color: #666;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    pointer-events: none;
}

.icp-footer a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    pointer-events: auto;
    background: transparent;
}

.icp-footer a:hover {
    color: #0078ff;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .icp-footer {
        font-size: 11px;
        padding: 4px 0 2px 0;
    }
} 