
        /* ===== 超强隔离方案 ===== */
        /* 1. 不使用 * 通配符选择器 */
        /* 2. 所有样式限定在 .pcb-deco-isolated 内部 */
        /* 3. 重置所有可能继承的属性 */
        
        .pcb-deco-isolated {
            display: block;  /* 块级元素但不会影响外部布局 */
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            max-width: 100%;
            background: transparent;
            line-height: 1.4;
            /* 重置所有可能从外部继承的样式 */
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            vertical-align: baseline;
            /* 确保容器本身不产生任何意外的布局影响 */
            box-sizing: content-box;
            position: relative;
            z-index: 1;
        }
        
        /* 容器内部的所有元素应用重置 */
        .pcb-deco-isolated .deco-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.82rem 0.98rem;
            align-items: center;
            margin: 0;
            padding: 0;
            background: transparent;
            border: none;
            box-sizing: border-box;
        }
        
        /* 内部每个标签的样式 - 完全隔离 */
        .pcb-deco-isolated .deco-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.41rem;
            background: linear-gradient(145deg, #fff6fe, #fef0fd);
            border: 1.23px solid #c724b1;
            border-radius: 49px;
            padding: 0.49rem 1.23rem 0.49rem 0.98rem;
            box-shadow: 0 4.9px 13px rgba(199, 36, 177, 0.15);
            font-weight: 500;
            font-size: 0.9rem;
            color: #1e293b;
            backdrop-filter: blur(2px);
            white-space: nowrap;
            /* 确保内部样式不会外泄 */
            margin: 0;
            line-height: 1.4;
            text-decoration: none;
            font-style: normal;
            letter-spacing: normal;
            word-spacing: normal;
            text-transform: none;
            text-indent: 0;
            text-shadow: none;
            box-sizing: border-box;
            transition: none;
        }
        
        .pcb-deco-isolated .deco-badge i {
            font-style: normal;
            font-size: 1.15rem;
            color: #c724b1;
            display: inline-block;
            line-height: 1;
            /* 重置所有可能的继承 */
            margin: 0;
            padding: 0;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
        }
        
        .pcb-deco-isolated .deco-badge .text {
            background: transparent;
            display: inline-block;
            line-height: 1.4;
            /* 重置所有可能的继承 */
            margin: 0;
            padding: 0;
            font-weight: 500;
        }
        
        /* 高亮标签 */
        .pcb-deco-isolated .deco-badge.smiery-badge {
            background: #c724b1;
            color: white;
            border-color: #a01d8a;
            box-shadow: 0 6.5px 14.7px rgba(199, 36, 177, 0.35);
        }
        
        .pcb-deco-isolated .deco-badge.smiery-badge i {
            color: white;
        }
        
        .pcb-deco-isolated .deco-badge.smiery-badge .text {
            color: white;
            font-weight: 600;
        }
        
        /* 移动端响应式 */
        @media (max-width: 600px) {
            .pcb-deco-isolated .deco-container {
                gap: 0.6rem 0.7rem;
            }
            .pcb-deco-isolated .deco-badge {
                white-space: normal;
                font-size: 0.82rem;
                padding: 0.41rem 0.98rem;
            }
        }
    