/* 查收录插件：多平台核对弹层 */
.lx-ic-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 16px;
}
.lx-ic-box {
    width: min(540px, 94vw);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.lx-ic-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: #fff;
}
.lx-ic-title { font-weight: 600; font-size: 15px; }
.lx-ic-close {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.lx-ic-url {
    padding: 12px 18px;
    font-size: 12px;
    color: #475569;
    word-break: break-all;
    background: #f8fafc;
    border-bottom: 1px solid #eef2f7;
}
.lx-ic-tip {
    padding: 10px 18px 0;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}
.lx-ic-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 18px 20px;
}
.lx-ic-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    background: #fff;
    transition: .15s;
}
.lx-ic-item:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}
.lx-ic-pn { font-weight: 600; }
.lx-ic-go { font-size: 12px; color: #3b82f6; }
