# src — CSS 文件汇总

> **生成时间**：2026-08-05 02:34:40 UTC  
> **根目录**：`C:\Users\s84336076\IDEProjects\recruiter-navi\src`

## 路径：`recruiter_navigator\web\static\css\base.css`

```css
/* Base Styles - 全局基础样式 */

/* Alpine.js cloak */
[x-cloak] { 
    display: none !important; 
}

/* Markdown样式 */
.markdown-body h1 { 
    font-size: 1.5rem; 
    font-weight: 700; 
    margin-bottom: 0.5rem; 
}

.markdown-body h2 { 
    font-size: 1.25rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
    margin-top: 1rem; 
}

.markdown-body h3 { 
    font-size: 1.1rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
}

.markdown-body p { 
    margin-bottom: 0.5rem; 
}

.markdown-body code { 
    background: #f3f4f6; 
    padding: 0.125rem 0.375rem; 
    border-radius: 0.25rem; 
    font-size: 0.875rem; 
}

.markdown-body pre { 
    background: #1f2937; 
    color: #e5e7eb; 
    padding: 1rem; 
    border-radius: 0.5rem; 
    overflow-x: auto; 
    margin-bottom: 1rem; 
}

.markdown-body pre code { 
    background: transparent; 
    padding: 0; 
    color: inherit; 
}

.markdown-body ul { 
    list-style-type: disc; 
    padding-left: 1.5rem; 
    margin-bottom: 0.5rem; 
}

.markdown-body ol { 
    list-style-type: decimal; 
    padding-left: 1.5rem; 
    margin-bottom: 0.5rem; 
}

.markdown-body li { 
    margin-bottom: 0.25rem; 
}

.markdown-body a { 
    color: #3b82f6; 
    text-decoration: underline; 
}

.markdown-body blockquote { 
    border-left: 3px solid #d1d5db; 
    padding-left: 1rem; 
    color: #6b7280; 
    margin-bottom: 0.5rem; 
}

```

---

## 路径：`recruiter_navigator\web\static\css\common.css`

```css
/* Common Styles - 共享设计系统和组件样式 */

/* 字体引入 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* 全局字体设置 */
body { 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
}

/* 设计系统变量 */
:root {
    /* 主色调 */
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    
    /* Slate色系 */
    --bg-slate-50: #f8fafc;
    --bg-slate-100: #f1f5f9;
    --border-slate-200: #e2e8f0;
    --text-slate-900: #0f172a;
    --text-slate-700: #334155;
    --text-slate-600: #475569;
    --text-slate-500: #64748b;
    --text-slate-400: #94a3b8;
    --text-slate-300: #cbd5e1;
    
    /* 过渡动画 */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* 工具卡片样式 */
.tool-card {
    border-radius: 14px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border-slate-200);
    transition: all 0.3s var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.12);
    border-color: transparent;
}

.tool-card.highlighted {
    box-shadow: 0 0 0 2px rgba(59,130,246,0.4), 0 12px 32px -8px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: transparent;
}

.tool-card.dimmed {
    opacity: 0.25;
    transform: scale(0.98);
    filter: grayscale(0.3);
}

/* 分类按钮样式 */
.category-btn {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid transparent;
}

.category-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.category-btn:not(.active) {
    background: var(--bg-slate-100);
    color: var(--text-slate-700);
}

.category-btn:not(.active):hover {
    background: var(--bg-slate-50);
    border-color: var(--border-slate-200);
    transform: translateY(-1px);
}

/* 搜索框样式 */
.search-input {
    width: 18rem;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    background: var(--bg-slate-100);
    border: 0;
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--text-slate-700);
    transition: all var(--transition-fast);
}

.search-input:focus {
    background: white;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-slate-400);
}

/* 标签样式 */
.tag {
    font-size: 0.75rem;
    background: var(--bg-slate-100);
    color: var(--text-slate-600);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--bg-slate-50);
}

/* 模式徽章 */
.mode-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.mode-badge.cli {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.mode-badge.web {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.mode-badge.interactive {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

/* 按钮样式 */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: var(--bg-slate-100);
    color: var(--text-slate-700);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-slate-200);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--bg-slate-50);
    transform: translateY(-1px);
}

/* 屏幕阅读器专用 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

```

---

## 路径：`recruiter_navigator\web\static\css\home.css`

```css
/* Home Page Styles - 招聘流程信息图页面样式 */

/* 时间线CSS变量 */
:root {
    --timeline-container-width: min(192px, 25vw);
    --timeline-dot-size: clamp(32px, 4vw, 48px);
    --timeline-track-width: 2px;
    --timeline-spacing: clamp(16px, 2vw, 24px);
    
    /* 时间线颜色 */
    --timeline-track-color-1: #3B82F6;
    --timeline-track-color-2: #10B981;
    --timeline-track-color-3: #8B5CF6;
    --timeline-track-color-4: #F59E0B;
    --timeline-track-color-5: #06B6D4;
    --timeline-track-color-6: #6B7280;
    --timeline-fallback-color: #94a3b8;
}

/* 时间线容器 */
.timeline {
    width: var(--timeline-container-width, 220px);
    flex-shrink: 0;
    position: relative;
    min-width: 200px;
    max-width: 280px;
    padding-right: 8px;
}

/* 时间线项目容器 */
.timeline__items {
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

/* 时间线项目 */
.timeline__item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: calc(var(--timeline-spacing, 24px) + 4px);
    padding: 4px 0;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__item:hover {
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

/* 时间线轨道 */
.timeline-track {
    position: absolute;
    left: calc(100% - var(--timeline-dot-size, 48px) - var(--timeline-spacing, 16px));
    top: calc(var(--timeline-dot-size, 48px) / 2);
    bottom: calc(var(--timeline-dot-size, 48px) / 2);
    width: var(--timeline-track-width, 2px);
    background: var(--timeline-fallback-color);
    background: linear-gradient(180deg,
        var(--timeline-track-color-1, #3B82F6) 0%, 
        var(--timeline-track-color-1, #3B82F6) 16%,
        var(--timeline-track-color-2, #10B981) 16%, 
        var(--timeline-track-color-2, #10B981) 33%,
        var(--timeline-track-color-3, #8B5CF6) 33%, 
        var(--timeline-track-color-3, #8B5CF6) 50%,
        var(--timeline-track-color-4, #F59E0B) 50%, 
        var(--timeline-track-color-4, #F59E0B) 66%,
        var(--timeline-track-color-5, #06B6D4) 66%, 
        var(--timeline-track-color-5, #06B6D4) 83%,
        var(--timeline-track-color-6, #6B7280) 83%, 
        var(--timeline-track-color-6, #6B7280) 100%
    );
    border-radius: 1px;
    z-index: 1;
}

/* 时间点容器 */
.timeline__dot-container {
    position: relative;
    z-index: 3;
    margin-left: auto;
}

/* 时间点 */
.timeline-dot,
.timeline__dot {
    width: var(--timeline-dot-size, 48px);
    height: var(--timeline-dot-size, 48px);
    min-width: 32px;
    min-height: 32px;
    border-radius: calc(var(--timeline-dot-size, 48px) * 0.2917);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    position: relative;
    z-index: 4;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: max(2px, 0.0521 * var(--timeline-dot-size, 48px)) solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 0 0 0 transparent;
    background-color: var(--dot-color, #94a3b8);
    background-clip: padding-box;
}

.timeline-dot:hover,
.timeline__dot:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 0 0 4px rgba(59,130,246,0.1);
}

.timeline-dot.active,
.timeline__dot--active {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 0 0 4px rgba(59,130,246,0.15);
}

/* 时间点连接线 */
.timeline__dot::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: calc(var(--timeline-spacing, 16px) - 4px);
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(59, 130, 246, 0.2) 30%,
        rgba(59, 130, 246, 0.4) 50%,
        rgba(59, 130, 246, 0.2) 70%,
        transparent 100%
    );
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.timeline__dot:hover::before {
    opacity: 0.7;
    width: calc(var(--timeline-spacing, 16px) - 2px);
    background: linear-gradient(to right, 
        transparent 0%,
        rgba(59, 130, 246, 0.3) 30%,
        rgba(59, 130, 246, 0.6) 50%,
        rgba(59, 130, 246, 0.3) 70%,
        transparent 100%
    );
}

.timeline__dot--active::before {
    opacity: 0.9;
    width: calc(var(--timeline-spacing, 16px) - 2px);
    background: linear-gradient(to right, 
        transparent 0%,
        var(--dot-color, #3B82F6) 30%,
        color-mix(in srgb, var(--dot-color, #3B82F6) 80%, white 20%) 50%,
        var(--dot-color, #3B82F6) 70%,
        transparent 100%
    );
    box-shadow: 0 0 4px rgba(59, 130, 246, 0.3);
}

/* 文字标签容器 */
.timeline__label-container {
    flex: 1;
    padding-right: calc(var(--timeline-spacing, 16px) + 8px);
    text-align: right;
    position: relative;
    z-index: 2;
    margin-right: 4px;
}

/* 文字标签 */
.timeline__label {
    font-size: 13px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "SimHei", "黑体";
    line-height: 1.3;
    text-align: right;
    transition: color 0.2s ease, background-color 0.2s ease;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-block;
    max-width: calc(100% - 12px);
    word-break: break-word;
    white-space: normal;
    letter-spacing: 0.02em;
}

.timeline__label:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.timeline__label--active {
    color: #1e293b;
    font-weight: 800;
    background-color: rgba(59, 130, 246, 0.08);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.1);
}

.timeline__label--inactive {
    color: #64748b;
    font-weight: 600;
}

.timeline__label--inactive:hover {
    color: #334155;
    background-color: rgba(148, 163, 184, 0.08);
    font-weight: 700;
}

/* 时间点焦点样式 */
.timeline__dot:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline__dot:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.timeline__item:focus-within .timeline__dot {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* 时间点图标 */
.timeline__dot-icon {
    display: block;
    line-height: 1;
}

/* 工具提示 */
.timeline__dot-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 10;
}

.timeline__dot:hover .timeline__dot-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 场景展开 */
.use-cases-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tool-card:hover .use-cases-panel {
    max-height: 200px;
}

/* Workflow 连线 */
.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.flow-connector svg {
    animation: flowPulse 2.5s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.9; }
}

/* 词云容器 */
.word-cloud-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 1.5rem 0 3rem 0;
    overflow: visible;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* 词云画布 */
.word-cloud-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 词云文字 */
.word-cloud-word {
    position: absolute;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    z-index: 2;
    opacity: 0.6;
    transform-origin: center;
    white-space: nowrap;
    pointer-events: auto;
}

.word-cloud-word:hover {
    opacity: 0.9;
    z-index: 50;
    transform: scale(1.1);
}

.word-cloud-word.active {
    opacity: 1;
    z-index: 100;
    transform: scale(1.5);
    animation: wordGlow 2s ease-in-out infinite;
}

@keyframes wordGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

/* 词云控制面板 */
.word-cloud-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.word-cloud-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.word-cloud-btn:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.word-cloud-btn.active {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

/* 词云标签 */
.word-cloud-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* 词云动画 */
@keyframes wordFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-3px) rotate(0.5deg);
    }
    75% {
        transform: translateY(2px) rotate(-0.5deg);
    }
}

@keyframes wordPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.word-cloud-word.animated {
    animation: wordFloat 6s ease-in-out infinite, wordPulse 4s ease-in-out infinite;
}

/* 词云轮播指示器 */
.word-cloud-indicators {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.word-cloud-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(203, 213, 225, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.word-cloud-indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.word-cloud-indicator:hover {
    background: #94a3b8;
}

/* 词云信息面板 */
.word-cloud-info {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #475569;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
    max-width: 200px;
}

.word-cloud-info-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.word-cloud-info-desc {
    font-size: 0.6875rem;
    color: #64748b;
    line-height: 1.4;
}

```

---