
        /* ----- 完全隔离模块 – 不影响外部页面 ----- */
        .smiery-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .smiery-module {
            display: block;
            font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            max-width: 1100px;
            margin: 0 auto;
            background: transparent;
            line-height: 1.5;
        }

        .smiery-container {
            background: white;
            border-radius: 2rem;
            box-shadow: 0 25px 45px -18px rgba(199, 36, 177, 0.25);
            padding: 2rem 2rem;
            border: 1px solid rgba(199, 36, 177, 0.2);
            position: relative;
            overflow: hidden;
        }

        /* 几何装饰 - 路标线元素 */
        .geo-path {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #c724b1 0%, #c724b1 30%, transparent 70%);
            z-index: 0;
        }
        .geo-path-vertical {
            position: absolute;
            top: 0;
            left: 30px;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, #c724b1 0%, rgba(199,36,177,0.2) 50%, transparent 100%);
            z-index: 0;
        }
        .geo-corner {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 40px;
            height: 40px;
            border-top: 2px solid #c724b1;
            border-left: 2px solid #c724b1;
            z-index: 0;
            opacity: 0.4;
        }
        .geo-corner-right {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-bottom: 2px solid #c724b1;
            border-right: 2px solid #c724b1;
            z-index: 0;
            opacity: 0.3;
        }
        .geo-dot {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 8px;
            height: 8px;
            background: #c724b1;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.5;
        }
        .geo-dot::before {
            content: "";
            position: absolute;
            top: -20px;
            left: -20px;
            width: 8px;
            height: 8px;
            background: #c724b1;
            border-radius: 50%;
            opacity: 0.3;
        }

        /* 主色调 - 使用 !important 确保不被外部样式覆盖 */
        .accent { 
            color: #c724b1 !important; 
        }
        .accent-bg { 
            background: #c724b1 !important; 
            color: white !important; 
        }

        /* 内容区域 */
        .hero, .section, .benefits-grid, .choice-guide, .steps, .feedback, .closing {
            position: relative;
            z-index: 2;
        }

        /* 英雄区 */
        .hero {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            position: relative;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c724b1, #c724b1, transparent);
        }
        .hero-icon {
            font-size: 2.5rem;
            color: #c724b1;
            margin-bottom: 0.5rem;
        }
        .hero h1 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #1e293b 0%, #c724b1 70%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        .hero p {
            font-size: 1rem;
            color: #64748b;
            max-width: 80%;
            margin: 0 auto;
        }

        /* 通用段落 */
        .section {
            margin: 1.5rem 0;
        }
        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 1.8rem 0 1rem;
            padding-left: 1rem;
            border-left: 4px solid #c724b1;
            color: #1e293b;
        }
        .section-sub {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 1rem 0 0.5rem;
            color: #1e293b;
        }

        /* 痛点条 */
        .pain-point {
            background: linear-gradient(115deg, #fcf2fb 0%, #f9eaf7 100%);
            border-radius: 1.5rem;
            padding: 1rem 1.8rem;
            margin: 1rem 0 1.5rem;
            text-align: center;
            border-left: 6px solid #c724b1;
            position: relative;
        }

        /* 三列权益卡片 */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        .benefit-card {
            background: #ffffff;
            border-radius: 1.2rem;
            padding: 1.2rem;
            border: 1px solid rgba(199, 36, 177, 0.15);
            transition: all 0.3s ease;
            position: relative;
        }
        .benefit-card:hover {
            border-color: #c724b1;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px -12px rgba(199, 36, 177, 0.2);
        }
        .benefit-number {
            width: 36px;
            height: 36px;
            background: #c724b1;
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.8rem;
        }
        .benefit-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }
        .benefit-desc {
            font-size: 0.85rem;
            color: #4a5568;
            line-height: 1.5;
        }

        /* 选择指南 */
        .choice-guide {
            background: linear-gradient(135deg, #f9f2fc 0%, #fef8fd 100%);
            border-radius: 1.2rem;
            padding: 1rem 1.5rem;
            margin: 1rem 0;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            border: 1px solid rgba(199, 36, 177, 0.2);
        }
        .choice-item {
            text-align: center;
            padding: 0.5rem 1rem;
            border-right: 1px solid rgba(199, 36, 177, 0.2);
        }
        .choice-item:last-child {
            border-right: none;
        }
        .choice-code {
            font-family: monospace;
            font-size: 1rem;
            font-weight: 700;
            color: #c724b1;
            background: white;
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 40px;
            margin-bottom: 0.2rem;
        }

        /* 使用流程 */
        .steps {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1rem 0;
            justify-content: center;
        }
        .step {
            flex: 1;
            text-align: center;
            padding: 1rem;
            background: #fcfafd;
            border-radius: 1rem;
            border: 1px solid rgba(199, 36, 177, 0.1);
        }
        .step-number {
            width: 32px;
            height: 32px;
            background: #c724b1;
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* 反馈区 */
        .feedback {
            background: linear-gradient(115deg, #fef6fc 0%, #fdf2fb 100%);
            border-radius: 1.2rem;
            padding: 1.2rem 1.5rem;
            margin: 1.5rem 0;
            border-left: 5px solid #c724b1;
        }
        .feedback-badge {
            display: inline-block;
            background: #c724b1;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 60px;
            font-size: 0.75rem;
            margin-top: 0.5rem;
        }

        /* 结尾 */
        .closing {
            text-align: center;
            padding-top: 1.5rem;
            margin-top: 1rem;
            border-top: 1px solid rgba(199, 36, 177, 0.2);
        }
        .closing-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #c724b1, transparent);
            margin: 0.8rem auto 0;
        }

        .footer-note {
            text-align: right;
            margin-top: 1.5rem;
            color: #a0afc0;
            font-size: 0.7rem;
        }
        .footer-note span {
            background: #c724b1;
            width: 40px;
            height: 3px;
            display: inline-block;
            border-radius: 4px;
            margin-right: 8px;
        }

        /* 额外强化：确保所有 .accent 类下的元素都显示正确颜色 */
        .smiery-module .accent,
        .smiery-module strong.accent,
        .smiery-module span.accent,
        .smiery-module p .accent,
        .smiery-module li .accent {
            color: #c724b1 !important;
        }
    