
        /* ----- 完全独立模块 – 不影响外部页面任何布局 ----- */
        .partner-module * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .partner-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;
        }

        /* 主卡片容器 — 增加层次：渐变背景 + 更明显的阴影 + 内光晕 */
        .partner-card {
            background: linear-gradient(145deg, #ffffff 0%, #fefbfd 100%);
            border-radius: 2rem;
            box-shadow: 0 25px 45px -15px rgba(199, 36, 177, 0.25), inset 0 1px 0 rgba(255,255,255,0.8);
            padding: 2.8rem 2.5rem;
            border: 1px solid rgba(199, 36, 177, 0.25);
            position: relative;
            transition: box-shadow 0.2s;
        }

        /* 几何层次装饰：四角渐变边框 */
        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #c724b1 0%, #e9b0e0 50%, #c724b1 100%);
            border-radius: 2rem 2rem 0 0;
            opacity: 0.5;
        }

        /* 装饰音符 — 增强存在感但保持透明 */
        .note-deco {
            position: absolute;
            font-size: 5rem;
            color: rgba(199, 36, 177, 0.05);
            pointer-events: none;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
            z-index: 0;
        }
        .note-1 { top: 2%; left: -1%; transform: rotate(-10deg); }
        .note-2 { bottom: 3%; right: -2%; transform: rotate(8deg); }
        .note-3 { top: 20%; right: 5%; transform: rotate(12deg); font-size: 4rem; }
        .note-4 { bottom: 15%; left: 3%; transform: rotate(-5deg); font-size: 3.5rem; opacity: 0.04; }

        /* 主色调增强 */
        .accent { color: #c724b1; }
        .accent-border { border-left: 4px solid #c724b1; padding-left: 1rem; }

        /* 章节 — 增加微妙的背景层次 */
        .section {
            margin: 2.8rem 0;
            padding: 0.2rem 0;
            position: relative;
            z-index: 2;
        }
        .section:first-of-type {
            margin-top: 0;
        }

        .section-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #c724b1;
            margin-bottom: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(199, 36, 177, 0.04);
            padding: 0.2rem 1.2rem 0.2rem 1rem;
            border-radius: 60px;
            letter-spacing: -0.2px;
        }
        .section-title::before {
            content: '♪';
            font-size: 1.2rem;
            color: #c724b1;
        }

        .section p {
            margin-bottom: 0.9rem;
            color: #2c3e50;
            line-height: 1.7;
            font-size: 1rem;
            padding-left: 0.5rem;
            border-left: 2px solid rgba(199, 36, 177, 0.15);
        }

        /* 小节之间的视觉分隔 — 更精致 */
        .section-divider {
            height: 2px;
            background: linear-gradient(90deg, #c724b1, #e9b0e0, #c724b1);
            opacity: 0.25;
            margin: 2rem 0;
            border-radius: 2px;
        }

        /* 高亮 — 更明显 */
        .highlight {
            background: linear-gradient(120deg, rgba(199, 36, 177, 0.12), rgba(199, 36, 177, 0.02));
            padding: 0.1rem 0.3rem;
            border-radius: 8px;
            font-weight: 600;
            color: #b82a9e;
        }

        /* 流程中的强调区块 */
        .process-highlight {
            background: #fefafd;
            border-radius: 1rem;
            padding: 0.8rem 1.2rem;
            margin: 1rem 0;
            border-left: 4px solid #c724b1;
            font-weight: 500;
        }

        hr {
            margin: 1.8rem 0;
            border: 0;
            height: 1px;
            background: repeating-linear-gradient(90deg, #c724b1, #c724b1 6px, transparent 6px, transparent 20px);
            opacity: 0.35;
        }

        /* 结尾行 */
        .footer-line {
            text-align: center;
            color: #c724b1;
            font-size: 0.85rem;
            margin-top: 0.8rem;
            padding-top: 1rem;
            border-top: 1px dashed rgba(199, 36, 177, 0.3);
        }

        @media (max-width: 768px) {
            .partner-card { padding: 1.5rem; }
            .section-title { font-size: 1.2rem; }
        }
    