
        /* ----- 完全独立模块 – 不影响外部页面任何布局 ----- */
        .burn-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .burn-module {
            display: block;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            max-width: 1280px;
            margin: 2rem auto;
            background: transparent;
            line-height: 1.5;
            color: #1a2b3c;
        }

        .burn-card {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -15px rgba(199, 36, 177, 0.2);
            padding: 2.5rem 2.2rem;
            border: 1px solid rgba(199, 36, 177, 0.2);
            position: relative;
        }

        /* 装饰音符 */
        .note-deco {
            position: absolute;
            font-size: 5rem;
            color: rgba(199, 36, 177, 0.03);
            pointer-events: none;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
            z-index: 0;
        }
        .note-1 { top: 2%; left: -1%; transform: rotate(-8deg); }
        .note-2 { bottom: 3%; right: -2%; transform: rotate(6deg); }
        .note-3 { top: 20%; right: 5%; transform: rotate(10deg); font-size: 3.5rem; }

        /* 主色调 */
        .accent { color: #c724b1; }
        .accent-bg-light { background: #faf5fc; }
        .accent-border { border-left: 4px solid #c724b1; padding-left: 1rem; }

        /* 标题区 */
        .hero-section {
            margin-bottom: 2rem;
            border-left: 5px solid #c724b1;
            padding-left: 1.2rem;
        }
        .hero-section h1 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a2b3c;
            margin-bottom: 0.3rem;
        }
        .hero-section .sub {
            color: #c724b1;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* 表格样式 */
        .table-wrapper {
            overflow-x: auto;
            margin: 1.8rem 0;
            border-radius: 1rem;
            border: 1px solid rgba(199, 36, 177, 0.25);
        }
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
            background: white;
        }
        .spec-table th {
            background: #faf5fc;
            color: #c724b1;
            font-weight: 600;
            padding: 1rem 1rem;
            border-bottom: 2px solid #c724b1;
            text-align: left;
        }
        .spec-table td {
            padding: 0.9rem 1rem;
            border-bottom: 1px solid #ede7f0;
            vertical-align: top;
            color: #2c3e50;
        }
        .spec-table tr:last-child td {
            border-bottom: none;
        }
        .spec-table .param {
            font-weight: 600;
            width: 28%;
            color: #1a2b3c;
        }

        /* 高亮 */
        .highlight {
            background: rgba(199, 36, 177, 0.08);
            padding: 0.1rem 0.3rem;
            border-radius: 6px;
            font-weight: 500;
            color: #b82a9e;
        }

        /* 报价区 / 提示区块 */
        .info-block {
            background: linear-gradient(135deg, #fef5fc, #fbf0f9);
            border-radius: 1.5rem;
            padding: 1.2rem 2rem;
            margin: 1.5rem 0;
            border: 1px solid rgba(199, 36, 177, 0.3);
            text-align: center;
        }
        .info-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #c724b1;
            margin-bottom: 0.3rem;
        }
        .info-desc {
            font-size: 0.9rem;
            color: #2c3e50;
        }

        .note-text {
            font-size: 0.85rem;
            color: #c724b1;
            text-align: center;
            margin-top: 1rem;
            padding-top: 0.5rem;
            border-top: 1px dashed rgba(199, 36, 177, 0.3);
        }

        hr {
            margin: 2rem 0 1rem;
            border: 0;
            height: 1px;
            background: repeating-linear-gradient(90deg, #c724b1, #c724b1 6px, transparent 6px, transparent 20px);
            opacity: 0.3;
        }

        .footer-line {
            text-align: center;
            color: #c724b1;
            font-size: 0.8rem;
            margin-top: 0.8rem;
            padding-top: 0.8rem;
            border-top: 1px dashed rgba(199, 36, 177, 0.3);
        }

        @media (max-width: 768px) {
            .burn-card { padding: 1.5rem; }
            .hero-section h1 { font-size: 1.5rem; }
        }
    