
        /* ----- 完全独立模块 – 不影响外部页面任何布局 ----- */
        .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: 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;
            z-index: 0;
            font-family: 'Segoe UI', 'Arial Unicode MS', sans-serif;
        }
        .note-1 { top: 2%; left: -1%; transform: rotate(-8deg); }
        .note-2 { bottom: 3%; right: -2%; transform: rotate(6deg); }
        .note-3 { top: 30%; right: 3%; transform: rotate(12deg); font-size: 3.5rem; }

        /* 主色调 #c724b1 */
        .accent { color: #c724b1; }
        .accent-light { background: rgba(199, 36, 177, 0.05); }
        .accent-border { border-left: 4px solid #c724b1; padding-left: 1rem; }

        .partner-module h1 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a2b3c;
            margin-bottom: 1rem;
            border-left: 5px solid #c724b1;
            padding-left: 1.2rem;
        }

        .partner-module .intro-text {
            font-size: 1.05rem;
            color: #2c3e50;
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .partner-module h2 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #c724b1;
            margin: 2rem 0 1rem 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .partner-module h2::before {
            content: '♪';
            font-size: 1.3rem;
            color: #c724b1;
        }

        .partner-module h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a2b3c;
            margin: 1.2rem 0 0.6rem 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .partner-module h3::before {
            content: '♫';
            font-size: 1rem;
            color: #c724b1;
        }

        .partner-module p {
            margin-bottom: 0.8rem;
            color: #2c3e50;
            line-height: 1.6;
        }

        .partner-module .sub-section {
            margin: 1rem 0 1rem 1rem;
            padding-left: 1rem;
            border-left: 2px dashed rgba(199, 36, 177, 0.3);
        }

        .partner-module .grid-2col {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .partner-module .insight-card {
            background: #fefafd;
            border-radius: 1.2rem;
            padding: 1.2rem;
            border: 1px solid rgba(199, 36, 177, 0.15);
        }
        .partner-module .insight-card p {
            margin-bottom: 0;
        }

        .partner-module .commitment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .partner-module .commit-item {
            background: #fcf2fb;
            border-radius: 1.2rem;
            padding: 1.2rem;
            text-align: center;
            border-left: 4px solid #c724b1;
        }
        .partner-module .commit-item .word {
            font-weight: 700;
            font-size: 1.2rem;
            color: #c724b1;
            margin-bottom: 0.3rem;
        }

        .partner-module hr {
            margin: 2rem 0;
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #c724b1 20%, #c724b1 80%, transparent);
        }

        @media (max-width: 768px) {
            .partner-module .grid-2col,
            .partner-module .commitment-grid {
                grid-template-columns: 1fr;
            }
            .partner-module h1 { font-size: 1.8rem; }
            .partner-card { padding: 1.5rem; }
        }
    