.member-public-page {
            --mp-brand: #0284c7;
            --mp-brand-2: #6366f1;
            --mp-text: #0c4a6e;
            --mp-muted: #64748b;
            --mp-line: rgba(14, 165, 233, 0.22);
            --mp-card-shadow: 0 4px 24px rgba(14, 165, 233, 0.1), 0 2px 8px rgba(99, 102, 241, 0.06);
            background: linear-gradient(180deg, #ecfeff 0%, #f0f9ff 35%, #faf5ff 70%, #eef2ff 100%);
            margin: 0;
            padding: 0;
            color: #334155;
        }
        .mp-wrap {
            max-width: 920px;
            margin: 0 auto;
            padding: 20px 16px 36px;
            box-sizing: border-box;
        }
        .mp-card {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 28px 20px 24px;
            box-shadow: var(--mp-card-shadow);
            border: 1px solid rgba(255, 255, 255, 0.9);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .mp-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, #22d3ee, #6366f1, #f472b6, #22d3ee);
            background-size: 200% 100%;
            animation: mp-bar 8s linear infinite;
        }
        @keyframes mp-bar { to { background-position: 200% 0; } }
        .mp-team-strip {
            margin: 0 0 18px;
            padding: 12px 14px;
            border-radius: 14px;
            text-align: center;
            background: linear-gradient(135deg, rgba(224, 242, 254, 0.95), rgba(237, 233, 254, 0.88));
            border: 1px solid rgba(14, 165, 233, 0.22);
            box-shadow: 0 2px 12px rgba(14, 165, 233, 0.08);
        }
        .mp-team-label {
            display: block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            color: var(--mp-muted);
            margin-bottom: 8px;
        }
        .mp-team-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px 10px;
            max-width: 100%;
            font-size: clamp(1.05rem, 4.2vw, 1.2rem);
            font-weight: 800;
            color: var(--mp-brand);
            text-decoration: none;
            line-height: 1.35;
            word-break: break-word;
            padding: 4px 6px;
            border-radius: 10px;
            transition: background 0.2s, color 0.2s;
        }
        .mp-team-link:hover {
            background: rgba(255, 255, 255, 0.75);
            color: #0369a1;
            text-decoration: none;
        }
        .mp-team-link:focus-visible {
            outline: 2px solid var(--mp-brand);
            outline-offset: 2px;
        }
        .mp-team-link__logo {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
        }
        .mp-avatar-wrap {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 16px;
        }
        .mp-avatar-wrap::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22d3ee, #a78bfa, #fb7185);
            z-index: 0;
            opacity: 0.85;
        }
        .mp-avatar, .mp-avatar--ph {
            position: relative;
            z-index: 1;
            width: 112px;
            height: 112px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            box-shadow: 0 8px 28px rgba(14, 165, 233, 0.2);
            margin: 4px;
            display: block;
            background: #f8fafc;
            box-sizing: border-box;
        }
        .mp-avatar--ph {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 800;
            color: #0369a1;
            background: linear-gradient(145deg, #e0f2fe, #ede9fe);
        }
        .mp-name { margin: 0 0 10px; font-size: clamp(1.25rem, 4vw, 1.5rem); font-weight: 800; color: var(--mp-text); }
        .mp-role {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            background: #e0f2fe;
            color: #0369a1;
            margin-bottom: 14px;
            border: 1px solid rgba(14, 165, 233, 0.25);
        }
        .mp-role.leader { background: #fef3c7; color: #b45309; border-color: rgba(251, 191, 36, 0.4); }
        .mp-role.vice { background: #ede9fe; color: #6d28d9; border-color: rgba(167, 139, 250, 0.4); }
        .mp-role.admin { background: #cffafe; color: #0e7490; border-color: rgba(34, 211, 238, 0.35); }
        .mp-meta { font-size: 13px; color: var(--mp-muted); line-height: 1.65; margin: 0 0 20px; }
        .mp-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .mp-actions a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 11px 18px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
            min-height: 44px;
            box-sizing: border-box;
        }
        .mp-btn-primary {
            background: linear-gradient(135deg, #0284c7, #0369a1);
            color: #fff;
            box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
        }
        .mp-btn-primary:hover { transform: translateY(-1px); color: #fff; }
        .mp-btn-outline {
            background: #fff;
            color: var(--mp-brand);
            border: 1px solid rgba(14, 165, 233, 0.45);
        }
        .mp-btn-outline:hover { background: #f0f9ff; }
        .standalone-header { background: rgba(255,255,255,0.95); padding: 14px 0; box-shadow: 0 2px 16px rgba(14, 165, 233, 0.08); margin-bottom: 0; }
        .standalone-header .container {
            max-width: 1200px; margin: 0 auto; padding: 0 16px;
            display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
        }
        .mp-back { font-size: 14px; font-weight: 600; color: var(--mp-brand); text-decoration: none; }
        .mp-back:hover { text-decoration: underline; }
        a.mp-back.mp-header-team {
            font-size: clamp(13px, 3.5vw, 15px);
            font-weight: 800;
            color: var(--mp-brand);
            max-width: min(100%, 220px);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        a.mp-back.mp-header-team:hover { color: #0369a1; }
        @media (max-width: 380px) {
            a.mp-back.mp-header-team { max-width: 160px; }
        }
        .team-nav {
            background: rgba(255,255,255,0.9);
            padding: 0 10px;
            border-radius: 14px;
            margin: 16px auto 0;
            max-width: 1200px;
            box-shadow: 0 2px 12px rgba(99, 102, 241, 0.06);
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            border: 1px solid var(--mp-line);
        }
        .nav-link {
            display: inline-block; padding: 12px 12px; color: #64748b; text-decoration: none;
            font-weight: 500; font-size: 13px; border-bottom: 3px solid transparent;
        }
        .nav-link:hover { color: var(--mp-brand); background: #f0f9ff; }
        .team-footer { text-align: center; padding: 24px 16px; color: #94a3b8; font-size: 12px; }

        /* 浅色科技区块 */
        .mp-section {
            margin-top: 18px;
            border-radius: 18px;
            overflow: hidden;
            background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(240,249,255,0.92) 50%, rgba(250,245,255,0.9) 100%);
            border: 1px solid var(--mp-line);
            box-shadow: 0 8px 32px rgba(14, 165, 233, 0.08), 0 2px 8px rgba(99, 102, 241, 0.05);
        }
        .mp-section__head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 10px;
            flex-wrap: wrap;
            padding: 14px 16px 10px;
            border-bottom: 1px solid rgba(14, 165, 233, 0.12);
            background: rgba(255,255,255,0.5);
        }
        .mp-section__title {
            margin: 0;
            font-size: clamp(14px, 3.5vw, 15px);
            font-weight: 800;
            color: var(--mp-text);
            letter-spacing: 0.02em;
        }
        .mp-section__title span {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: linear-gradient(135deg, #22d3ee, #6366f1);
            margin-right: 8px;
            vertical-align: middle;
            box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.25);
        }
        .mp-section__more {
            font-size: 12px;
            font-weight: 600;
            color: var(--mp-brand);
            text-decoration: none;
            white-space: nowrap;
            padding: 4px 0;
        }
        .mp-section__more:hover { text-decoration: underline; color: #0369a1; }
        .mp-section__body { padding: 14px 16px 16px; }
        .mp-empty {
            margin: 0;
            font-size: 13px;
            color: var(--mp-muted);
            line-height: 1.65;
        }
        .mp-empty-box {
            text-align: center;
            padding: 22px 16px;
            border-radius: 14px;
            border: 1px dashed rgba(14, 165, 233, 0.35);
            background: rgba(240, 249, 255, 0.6);
            color: var(--mp-muted);
            font-size: 13px;
            line-height: 1.6;
        }
        .mp-empty-box strong { color: var(--mp-text); font-weight: 700; }

        .mp-social { display: flex; flex-wrap: wrap; gap: 8px; }
        .mp-social a {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            background: #fff;
            color: var(--mp-brand);
            border: 1px solid rgba(14, 165, 233, 0.35);
            box-shadow: 0 2px 8px rgba(14, 165, 233, 0.08);
            transition: transform 0.15s, box-shadow 0.15s;
        }
        .mp-social a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(14, 165, 233, 0.15);
        }

        .mp-photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(100%, 76px), 1fr));
            gap: 8px;
        }
        @media (min-width: 400px) {
            .mp-photo-grid { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 10px; }
        }
        @media (min-width: 640px) {
            .mp-photo-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
        }
        .mp-photo-grid a {
            display: block;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            border: 1px solid rgba(14, 165, 233, 0.15);
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
        }
        .mp-photo-grid a:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 10px 28px rgba(14, 165, 233, 0.18);
        }
        .mp-photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .mp-list { list-style: none; margin: 0; padding: 0; }
        .mp-list li {
            border-bottom: 1px solid rgba(14, 165, 233, 0.1);
            padding: 12px 0;
        }
        .mp-list li:last-child { border-bottom: 0; padding-bottom: 0; }
        .mp-list a {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-decoration: none;
            color: inherit;
            min-width: 0;
        }
        .mp-list a:hover .mp-list__t { color: var(--mp-brand); }
        .mp-list__thumb {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            background: #e0f2fe;
            border: 1px solid rgba(14, 165, 233, 0.2);
        }
        @media (min-width: 480px) {
            .mp-list__thumb { width: 52px; height: 52px; }
        }
        .mp-list__thumb--ph {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--mp-brand);
        }
        .mp-list__t {
            margin: 0 0 4px;
            font-size: 14px;
            font-weight: 700;
            color: var(--mp-text);
            transition: color 0.15s;
            word-break: break-word;
        }
        .mp-list__d {
            margin: 0;
            font-size: 12px;
            color: var(--mp-muted);
            line-height: 1.5;
            word-break: break-word;
        }

        .mp-check-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px 12px;
            padding: 10px 12px;
            margin-bottom: 8px;
            border-radius: 12px;
            background: rgba(255,255,255,0.75);
            border: 1px solid rgba(14, 165, 233, 0.12);
            font-size: 13px;
            color: #475569;
        }
        .mp-check-row:last-child { margin-bottom: 0; }
        .mp-check-time { font-weight: 700; color: var(--mp-text); }
        .mp-check-venue { color: var(--mp-muted); }
        .mp-check-tag {
            font-size: 11px;
            padding: 3px 9px;
            border-radius: 999px;
            background: linear-gradient(135deg, #e0f2fe, #ede9fe);
            color: #0369a1;
            font-weight: 600;
        }

        .mp-staff-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 20px;
            margin-bottom: 14px;
        }
        .mp-tm {
            flex: 0 0 auto;
            text-align: center;
            width: 76px;
        }
        .mp-tm a {
            text-decoration: none;
            color: #475569;
            display: block;
        }
        .mp-tm a:hover .mp-tm__name { color: var(--mp-brand); }
        .mp-tm__role {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            color: #b45309;
            background: #fffbeb;
            border: 1px solid rgba(251, 191, 36, 0.35);
            padding: 2px 6px;
            border-radius: 999px;
            margin-bottom: 6px;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .mp-tm__role--vice { color: #6d28d9; background: #f5f3ff; border-color: rgba(167, 139, 250, 0.35); }
        .mp-tm__role--admin { color: #0369a1; background: #f0f9ff; border-color: rgba(14, 165, 233, 0.35); }
        .mp-tm__av {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 6px;
            display: block;
            border: 2px solid #fff;
            box-shadow: 0 4px 14px rgba(14, 165, 233, 0.2);
            background: linear-gradient(145deg, #e0f2fe, #fae8ff);
        }
        .mp-tm__av--ph {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: var(--mp-brand);
        }
        .mp-tm__name {
            font-size: 11px;
            font-weight: 700;
            line-height: 1.25;
            max-height: 2.5em;
            overflow: hidden;
            transition: color 0.15s;
        }
        .mp-tm--self .mp-tm__av {
            box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.65), 0 4px 14px rgba(14, 165, 233, 0.2);
        }
        .mp-staff-stats {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px 16px;
            padding: 12px 14px;
            border-radius: 14px;
            background: rgba(255,255,255,0.85);
            border: 1px dashed rgba(99, 102, 241, 0.25);
        }
        .mp-staff-stats-num {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(120deg, #0284c7, #7c3aed);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .mp-staff-stats-label { font-size: 13px; color: var(--mp-muted); font-weight: 600; }
        .mp-staff-stats a {
            font-size: 13px;
            font-weight: 600;
            color: var(--mp-brand);
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid rgba(14, 165, 233, 0.3);
        }
        .mp-staff-stats a:hover { background: #f0f9ff; }

        @media (max-width: 380px) {
            .mp-actions a { flex: 1 1 calc(50% - 6px); min-width: 0; }
        }
        @media (max-width: 480px) {
            .mp-wrap { padding: 16px 12px 28px; }
            .mp-card { padding: 24px 14px 20px; border-radius: 18px; }
        }
        @media (prefers-reduced-motion: reduce) {
            .mp-card::before { animation: none; }
        }