/* 公众号助手跳转提示 */
.gzh-mp-tip-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.gzh-mp-tip-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    max-width: 320px;
    width: 100%;
    text-align: center;
}
.gzh-mp-tip-icon {
    font-size: 48px;
    margin-bottom: 12px;
}
.gzh-mp-tip-title {
    font-size: 18px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 10px;
}
.gzh-mp-tip-desc {
    font-size: 14px;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 16px;
}
.gzh-mp-tip-link {
    display: block;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #f4f4f5;
    color: #7c3aed;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.gzh-mp-tip-link--primary {
    background: linear-gradient(135deg, #07c160, #06ad56);
    color: #fff;
}
.gzh-mp-tip-link--primary:active {
    opacity: 0.9;
}
.gzh-mp-tip-close {
    width: 100%;
    padding: 14px;
    margin-top: 4px;
    background: #07c160;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
