/* 全站页面级防截图水印 —— 淡色平铺,不阻挡点击,不影响 SEO 文本 */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='360' height='260' viewBox='0 0 360 260'%3E%3Cg transform='rotate(-28 180 130)'%3E%3Ctext x='0' y='120' font-family='Arial,sans-serif' font-size='22' font-weight='700' fill='%23166b34'%3Eqfep.com.cn%3C/text%3E%3Ctext x='0' y='160' font-family='Arial,sans-serif' font-size='16' fill='%23166b34'%3E宁波启富环保%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}
/* 询价弹窗在水印之上 */
#inqModal { z-index: 9999 !important; }
