
    /* 完全独立模块 - 不会影响外部布局 */
    .smilery-module * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .smilery-module {
        display: block;
        font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Georgia', serif;
        max-width: 100%;
        width: 100%;
        background: transparent;
        line-height: 1.5;
        color: #1a2b3c;
        overflow: hidden;
        margin: 0;
        padding: 0;
        position: relative;
        isolation: isolate;
    }

    /* 所有10个大音符水印 - 全部显示，不隐藏 */
    .smilery-module .watermark-note {
        position: absolute;
        pointer-events: none;
        font-family: 'Segoe UI', 'Arial Unicode MS', 'Georgia', serif;
        font-weight: 300;
        z-index: 0;
        color: rgba(199, 36, 177, 0.2);
        white-space: nowrap;
    }
    .smilery-module .watermark-note-1 { top: 3%; left: 3%; font-size: 10rem; transform: rotate(-15deg); }
    .smilery-module .watermark-note-2 { top: 5%; right: 5%; font-size: 8rem; transform: rotate(10deg); }
    .smilery-module .watermark-note-3 { top: 30%; left: 1%; font-size: 12rem; transform: rotate(-8deg); }
    .smilery-module .watermark-note-4 { top: 45%; right: 2%; font-size: 9rem; transform: rotate(15deg); }
    .smilery-module .watermark-note-5 { bottom: 12%; left: 4%; font-size: 11rem; transform: rotate(-12deg); }
    .smilery-module .watermark-note-6 { bottom: 18%; right: 3%; font-size: 7rem; transform: rotate(8deg); }
    .smilery-module .watermark-note-7 { bottom: 35%; left: 18%; font-size: 6rem; transform: rotate(-25deg); }
    .smilery-module .watermark-note-8 { top: 20%; left: 20%; font-size: 5rem; transform: rotate(6deg); }
    .smilery-module .watermark-note-9 { bottom: 5%; right: 12%; font-size: 6.5rem; transform: rotate(-10deg); }
    .smilery-module .watermark-note-10 { top: 60%; left: 10%; font-size: 5rem; transform: rotate(18deg); }

    @media (max-width: 900px) {
        .smilery-module .watermark-note-1 { font-size: 7rem; }
        .smilery-module .watermark-note-2 { font-size: 6rem; }
        .smilery-module .watermark-note-5 { font-size: 8rem; }
        .smilery-module .watermark-note-6 { font-size: 5.5rem; }
    }

    /* 核心卡片 */
    .smilery-module .service-card {
        background: rgba(255, 255, 255, 0.85);
        border-radius: 2rem;
        box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
        padding: 2rem 2rem;
        border: 1px solid rgba(199, 36, 177, 0.25);
        position: relative;
        z-index: 1;
        overflow-x: hidden;
        transition: all 0.3s ease;
        width: 100%;
        margin: 0 auto;
    }

    .smilery-module .section-title {
        font-size: 1.5rem;
        font-weight: 500;
        color: #3f3f4a;
        margin: 2rem 0 1rem 0;
        position: relative;
        display: inline-block;
        background: transparent;
        max-width: 100%;
    }
    .smilery-module .section-title::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 0.7rem;
        background: rgba(199, 36, 177, 0.35);
        z-index: -1;
        border-radius: 2px;
        pointer-events: none;
    }
    .smilery-module .section-title:first-of-type {
        margin-top: 0;
    }

    .smilery-module .title-section {
        text-align: center;
        margin-bottom: 1.8rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(199, 36, 177, 0.2);
    }
    .smilery-module .title-section h2 {
        font-size: 2.2rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #1e1e24;
        letter-spacing: -0.3px;
    }
    .smilery-module .title-section .sub {
        font-size: 1.05rem;
        color: #c724b1;
        font-weight: 400;
    }

    .smilery-module .intro-block {
        background: rgba(254, 250, 253, 0.8);
        border-radius: 1.5rem;
        padding: 1.2rem 1.8rem;
        margin-bottom: 2rem;
        text-align: center;
        border: 1px solid rgba(199, 36, 177, 0.2);
    }
    .smilery-module .intro-block p {
        font-size: 1rem;
        color: #3d3d45;
        margin-bottom: 0.5rem;
    }
    .smilery-module .intro-block strong {
        color: #c724b1;
        font-weight: 500;
    }

    .smilery-module .capability-table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.2rem 0;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 1.2rem;
        overflow: hidden;
        border: 1px solid #eae7f1;
        table-layout: fixed;
    }
    .smilery-module .capability-table th,
    .smilery-module .capability-table td {
        padding: 0.8rem 1rem;
        text-align: left;
        border-bottom: 1px solid #efecf5;
        font-size: 0.9rem;
        word-break: break-word;
    }
    .smilery-module .capability-table th {
        background: rgba(251, 250, 253, 0.9);
        color: #c724b1;
        font-weight: 500;
    }
    .smilery-module .capability-table td {
        color: #40404a;
    }

    .smilery-module .plug-grid,
    .smilery-module .valve-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin: 1rem 0 1.8rem;
    }
    .smilery-module .plug-card,
    .smilery-module .valve-card {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 1.2rem;
        padding: 0.8rem 0.3rem;
        text-align: center;
        border: 1px solid #ece9f2;
        transition: all 0.2s ease;
    }
    .smilery-module .plug-card:hover,
    .smilery-module .valve-card:hover {
        border-color: #c724b1;
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.95);
    }
    .smilery-module .plug-name,
    .smilery-module .valve-name {
        font-weight: 600;
        color: #c724b1;
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    .smilery-module .plug-desc,
    .smilery-module .valve-desc {
        font-size: 0.72rem;
        color: #5f5f6e;
    }

    .smilery-module .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        margin: 1rem 0 1.5rem;
    }
    .smilery-module .service-chip {
        background: rgba(199, 36, 177, 0.08);
        border-radius: 2rem;
        padding: 0.6rem 0.3rem;
        text-align: center;
        border: 1px solid rgba(199, 36, 177, 0.25);
        font-size: 0.85rem;
        font-weight: 500;
        color: #c724b1;
        transition: all 0.2s;
    }

    /* CTA 区块 - 主题色背景，发光白色文字 */
    .smilery-module .cta-block {
        background: #c724b1;
        border-radius: 2rem;
        padding: 1rem 1.5rem;
        margin: 1.5rem 0 1rem;
        text-align: center;
        border: none;
        box-shadow: 0 4px 12px rgba(199, 36, 177, 0.3);
        transition: all 0.2s;
    }
    .smilery-module .cta-block:hover {
        background: #a01c8a;
        transform: scale(1.01);
    }
    .smilery-module .cta-text {
        font-size: 1.2rem;
        font-weight: 600;
        color: #ffffff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 2px rgba(255, 255, 255, 0.8);
        letter-spacing: -0.2px;
    }

    .smilery-module hr {
        margin: 1rem 0;
        border: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #c724b1, transparent);
        opacity: 0.3;
    }

    .smilery-module .footer-line {
        text-align: center;
        color: #6a6a7a;
        font-size: 0.75rem;
        margin-top: 1rem;
        padding-top: 0.8rem;
        border-top: 1px dashed rgba(199, 36, 177, 0.25);
    }

    .smilery-module .music-note {
        color: #c724b1;
        font-size: 0.9rem;
        display: inline-block;
    }

    @media (max-width: 900px) {
        .smilery-module .plug-grid,
        .smilery-module .valve-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .smilery-module .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .smilery-module .service-card {
            padding: 1.5rem;
        }
        .smilery-module .title-section h2 {
            font-size: 1.6rem;
        }
    }
    @media (max-width: 550px) {
        .smilery-module .plug-grid,
        .smilery-module .valve-grid,
        .smilery-module .services-grid {
            grid-template-columns: 1fr;
        }
        .smilery-module .service-card {
            padding: 1.2rem;
        }
    }
