
        /* ----- 完全独立模块 – 不影响外部页面布局 ----- */
        .heatshrink-solutions * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .heatshrink-solutions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.72rem 0.85rem;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            background: transparent;
            max-width: 100%;
            line-height: 1.4;
        }

        /* 胶囊样式 – #c724b1 装饰 */
        .heatshrink-solutions .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.425rem;
            background: linear-gradient(145deg, #fff6fe, #fef0fd);
            border: 1.275px solid #c724b1;
            border-radius: 51px;
            padding: 0.38rem 1rem;
            box-shadow: 0 5px 13px rgba(199, 36, 177, 0.15);
            font-weight: 500;
            font-size: 0.8rem;
            color: #1e293b;
            backdrop-filter: blur(2px);
            white-space: nowrap;
            transition: 0.1s;
        }

        .heatshrink-solutions .badge i {
            font-style: normal;
            font-size: 0.85rem;
            color: #c724b1;
        }

        .heatshrink-solutions .badge .text {
            background: transparent;
        }

        /* 高亮样式 – 核心表述 */
        .heatshrink-solutions .highlight-badge {
            background: #c724b1;
            color: white;
            border-color: #a01d8a;
            box-shadow: 0 6.8px 15.3px rgba(199, 36, 177, 0.35);
        }
        .heatshrink-solutions .highlight-badge i {
            color: white;
        }
        .heatshrink-solutions .highlight-badge .text {
            color: white;
            font-weight: 600;
        }

        @media (max-width: 700px) {
            .heatshrink-solutions .badge {
                white-space: normal;
                font-size: 0.7rem;
                padding: 0.3rem 0.85rem;
            }
        }
    