.back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #667085;
            text-decoration: none;
            font-size: 14px;
            margin-bottom: 2rem;
            transition: color 0.2s;
        }

        .back-btn:hover {
            color: #165dff;
        }

        .detail-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 360px 1fr;
            gap: 2rem;
        }

        /* 左侧信息卡片 */
        .profile-card {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            height: fit-content;
            position: sticky;
            top: 2rem;
        }

        .profile-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #f2f4f7;
            margin-bottom: 1.5rem;
        }

        .profile-name {
            font-size: 24px;
            font-weight: 700;
            color: #1d2939;
            margin-bottom: 0.4rem;
        }

        .profile-department {
            font-size: 14px;
            color: #667085;
            margin-bottom: 1.5rem;
        }

        .profile-tag {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .tag-top {
            background: linear-gradient(135deg, #e8f3ff 0%, #f2efff 100%);
            color: #165dff;
        }

        .tag-normal {
            background-color: #f7f8fa;
            color: #667085;
        }

        .profile-stats {
            display: grid;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .stat-item {
        	font-size: 22px;
            background: #f9fafb;
            border-radius: 12px;
            padding: 1.2rem 0.8rem;
        }

        .stat-value {
            font-size: 22px;
            font-weight: 700;
            color: #165dff;
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-size: 12px;
            color: var(--zh-blue);
        }
        
        .stat-label:hover {
            color: var(--zh-gold);
        }

        .profile-info-list {
            text-align: left;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 0.9rem 0;
            border-bottom: 1px solid #f2f4f7;
            font-size: 14px;
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-item-label {
            color: #98a2b3;
        }

        .info-item-value {
            color: #344054;
            font-weight: 500;
        }

        /* 右侧内容区 */
        .content-area {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .content-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }

        .card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #165dff 0%, #722ed1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 600;
            color: #1d2939;
        }

        /* 富文本内容样式 */
        .rich-text {
            color: #344054;
            font-size: 15px;
            line-height: 1.8;
		    word-break: break-all; /* 额外兜底：超长英文文本/链接也不会撑开容器 */
		    overflow-wrap: break-word;
        }

		/* 新增图片适配规则 */
		.rich-text img {
		    max-width: 100%; /* 图片最大宽度不超过父容器宽度 */
		    height: auto !important; /* 强制保持图片原始比例，不变形 */
		    display: block; /* 消除图片底部默认空白缝隙 */
		    border-radius: 8px; /* 统一和页面风格匹配的圆角 */
		    margin: 1.2rem auto; /* 图片上下留间距，自动水平居中 */
		}

        .rich-text p {
            margin-bottom: 1rem;
        }

        .rich-text p:last-child {
            margin-bottom: 0;
        }

        .rich-text strong {
            color: #1d2939;
            font-weight: 600;
        }

        .rich-text h1,
        .rich-text h2,
        .rich-text h3 {
            color: #1d2939;
            margin: 1.5rem 0 1rem;
            font-weight: 600;
        }

        .rich-text h1 { font-size: 20px; }
        .rich-text h2 { font-size: 18px; }
        .rich-text h3 { font-size: 16px; }

        .rich-text ul,
        .rich-text ol {
            margin: 1rem 0 1rem 1.5rem;
        }

        .rich-text li {
            margin-bottom: 0.5rem;
        }

        .rich-text blockquote {
            border-left: 4px solid #165dff;
            padding-left: 1rem;
            margin: 1rem 0;
            color: #667085;
            font-style: italic;
        }

        .rich-text a {
            color: #165dff;
            text-decoration: none;
        }

        .rich-text a:hover {
            text-decoration: underline;
        }

        /* 业绩数据展示 */
        .performance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .performance-card {
            background: linear-gradient(135deg, #f9fafb 0%, #f2f4f7 100%);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .performance-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(22, 93, 255, 0.1);
        }

        .performance-period {
            font-size: 13px;
            color: #98a2b3;
            margin-bottom: 0.5rem;
        }

        .performance-amount {
            font-size: 24px;
            font-weight: 700;
            color: #165dff;
            margin-bottom: 0.3rem;
        }

        .performance-growth {
            font-size: 13px;
            font-weight: 500;
        }

        .growth-up { color: #00b578; }
        .growth-down { color: #f53f3f; }

        /* 技能标签 */
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .skill-tag {
            padding: 8px 18px;
            border-radius: 20px;
            background: #f2f4f7;
            color: #4e5969;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .skill-tag:hover {
            background: linear-gradient(135deg, #165dff 0%, #722ed1 100%);
            color: #fff;
        }

        /* 联系方式 */
        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .contact-item:hover {
            background: #f2f4f7;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .contact-info { flex: 1; }

        .contact-label {
            font-size: 12px;
            color: #98a2b3;
            margin-bottom: 0.2rem;
        }

        .contact-value {
            font-size: 14px;
            color: #1d2939;
            font-weight: 500;
        }

        /* 响应式适配 */
        @media (max-width: 968px) {
            .detail-container {
                grid-template-columns: 1fr;
            }
            .profile-card { position: static; }
            .performance-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            body { padding: 1rem; }
            .content-card { padding: 1.5rem; }
        }