/* 基础样式重置和通用设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', Roboto, sans-serif;
    background: linear-gradient(135deg, #9AD9EA 0%, #CFEDFC 60%, #FFFFFF 100%);
    color: #21277B;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 容器样式 */
.container, .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* 新版头部样式 */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #006AD7;
    margin: 0;
}

.header-subtitle {
    font-size: 0.9rem;
    color: #5F83B1;
    font-weight: 500;
}

/* 新版导航样式 */
.main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #21277B;
    padding: 8px 16px;
    border: 2px solid #9AD9EA;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #9AD9EA;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.nav-item:hover {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

.nav-item.active {
    background: linear-gradient(135deg, #4facfe, rgba(28, 210, 234, 0.933));
    color: white;
    border-color: #4facfe;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.nav-icon {
    font-size: 1rem;
}

.nav-text {
    font-size: 0.85rem;
}

/* 主要内容区域 */
.main-content {
    padding: 40px 0 80px 0;
    min-height: calc(100vh - 100px);
}

.module-section {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.module-section.active {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.module-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(79, 172, 254, 0.1);
}

.module-header h2 {
    font-size: 2.5rem;
    color: #006AD7;
    margin-bottom: 20px;
    background: none;
    -webkit-background-clip: text;
    -webkit-text-fill-color: initial;
    background-clip: text;
}

.module-header p {
    color: #5F83B1;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 01模块 - 问卷样式 */
.progress-section {
    background: #9AD9EA;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid #5F83B1;
}

.progress-header {
    text-align: center;
    margin-bottom: 40px;
}

.progress-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
}

.progress-bar {
    width: 100%;
    height: 14px;
    background: #FFFFFF;
    border-radius: 7px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #006AD7;
    border-radius: 7px;
    transition: width 0.6s ease;
    width: 20%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.steps-indicator {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.step-btn {
    background: #FFFFFF;
    border: 2px solid #5F83B1;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-btn:hover {
    background: #006AD7;
    color: #FFFFFF;
    border-color: #006AD7;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-btn.active {
    background: #006AD7;
    color: #FFFFFF;
    border-color: #006AD7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-btn.completed {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-color: #27ae60;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* 表单样式 */
.questionnaire-form {
    margin-top: 40px;
}

.form-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.form-section.active {
    display: block;
}

.section-title {
    font-size: 1.8rem;
    color: #006AD7;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 172, 254, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label.required::after {
    content: " *";
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #E8F4FD;
    border-radius: 12px;
    font-size: 1rem;
    background: #FFFFFF;
    color: #2c3e50;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006AD7;
    box-shadow: 0 0 0 3px rgba(0, 106, 215, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #95a5a6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 表单控制按钮 */
.form-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(79, 172, 254, 0.1);
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #006AD7, #4facfe);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 106, 215, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 106, 215, 0.4);
}

.btn-secondary {
    background: white;
    color: #006AD7;
    border: 2px solid #006AD7;
}

.btn-secondary:hover {
    background: #006AD7;
    color: white;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 按钮样式 */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-outline {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #4facfe, rgba(87, 213, 230, 0.933));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
    background: linear-gradient(135deg, #43a3f5,  rgba(87, 213, 230, 0.933));
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #27b4f5, #a3f8ed);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

.btn-outline {
    background: transparent;
    color: #4facfe;
    border: 2px solid #4facfe;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.1);
}

.btn-outline:hover {
    background: #4facfe;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

/* 结果显示样式 */
.submit-result {
    text-align: center;
    margin-top: 40px;
}

.submit-result.hidden {
    display: none;
}

.result-card {
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    border: 2px solid #27ae60;
    border-radius: 16px;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.result-card h3 {
    color: #27ae60;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.result-card p {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.user-id-text {
    font-weight: 600;
    color: #4facfe;
    font-size: 1.2rem;
    background: white;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.2);
}

/* 02模块 - 岗位推荐样式 */
.user-input-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.input-group {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.input-group input {
    flex: 1;
    min-width: 300px;
    padding: 14px 18px;
    border: 2px solid #81B0B2;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.15);
}

.input-group button {
    white-space: nowrap;
}

.analysis-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.nav-tab {
    text-decoration: none;
    color: #2c3e50;
    padding: 12px 24px;
    border: 2px solid #81B0B2;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-tab:hover:not(.disabled) {
    border-color: #4facfe;
    background: rgba(79, 172, 254, 0.05);
    color: #4facfe;
    transform: translateY(-2px);
}

.nav-tab.active {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border-color: #4facfe;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.nav-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.content-container {
    margin-bottom: 30px;
}

.content-container h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.content-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 2px;
}

/* 岗位推荐卡片样式 */
.job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.job-card {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border: 2px solid rgba(79, 172, 254, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.15);
    border-color: #4facfe;
}

.job-card:hover::before {
    opacity: 1;
}

.job-card.selected {
    border-color: #27ae60;
    background: linear-gradient(135deg, #f0fff4, #e8f5e8);
    box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
}

.job-card.selected::before {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    opacity: 1;
}

.job-card.selected::after {
    content: "✓ 已选择";
    position: absolute;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-company {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-company::before {
    content: "🏢";
    font-size: 1rem;
}

.job-salary {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-salary::before {
    content: "💰";
    font-size: 1rem;
}

.skills {
    margin-bottom: 20px;
}

.skill-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    color: #4facfe;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 4px 6px 4px 0;
    border: 1px solid rgba(79, 172, 254, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.match-info {
    margin-bottom: 20px;
}

.match-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-score-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.match-score-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #27ae60;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.match-bar {
    width: 100%;
    height: 8px;
    background: #e1e8ed;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.match-bar-fill {
    height: 100%;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 4px;
    transition: width 0.8s ease;
    position: relative;
}

.match-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.job-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.select-job-btn {
    flex: 1;
    background: #66899E;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.select-job-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    background: #206864;
}

.view-details-btn {
    background: transparent;
    color: #4facfe;
    border: 2px solid #4facfe;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #4facfe;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

/* 能力分析样式 */
.ability-content {
    display: grid;
    gap: 20px;
}

.ability-card {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border: 2px solid rgba(79, 172, 254, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.ability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79, 172, 254, 0.12);
    border-color: #4facfe;
}

.ability-name {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ability-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.ability-name span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.ability-comparison {
    margin-bottom: 15px;
}

.ability-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.ability-level-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.ability-level-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1rem;
}

.ability-bar {
    width: 100%;
    height: 6px;
    background: #e1e8ed;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ability-bar-current {
    height: 100%;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.ability-bar-required {
    height: 100%;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 3px;
    transition: width 0.6s ease;
}

.ability-gap {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.improvement-suggestion {
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    border-left: 4px solid #27ae60;
    padding: 15px;
    border-radius: 8px;
}

.improvement-suggestion h4 {
    color: #27ae60;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.improvement-suggestion p {
    color: #2c3e50;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 行业趋势样式 */
.industry-content {
    display: grid;
    gap: 25px;
}

.industry-card {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border: 2px solid rgba(79, 172, 254, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.15);
    border-color: #4facfe;
}

.industry-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trend-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.trend-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.trend-metric {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.trend-metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    display: block;
    margin-bottom: 5px;
}

.trend-metric-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* 热门技能标签样式 */
.hot-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.hot-skills .skill-tag {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border: 1px solid #ffeaa7;
    font-size: 0.8rem;
    padding: 4px 10px;
}

.hot-skills .skill-tag:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

/* 详细分析展开样式 */
.job-details {
    margin-top: 20px;
}

.job-details details {
    border: 1px solid rgba(79, 172, 254, 0.1);
    border-radius: 8px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.job-details summary {
    font-weight: 600;
    color: #4facfe;
    cursor: pointer;
    padding: 5px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.job-details summary:hover {
    color: #2980b9;
    background: rgba(79, 172, 254, 0.05);
    padding-left: 10px;
}

.job-details .advantages,
.job-details .disadvantages {
    margin-top: 15px;
}

.job-details .advantages h4 {
    color: #27ae60;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details .advantages h4::before {
    content: "✨";
    font-size: 1.1rem;
}

.job-details .disadvantages h4 {
    color: #e74c3c;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-details .disadvantages h4::before {
    content: "🔧";
    font-size: 1.1rem;
}

.job-details ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.job-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    line-height: 1.4;
}

.job-details li:last-child {
    border-bottom: none;
}

/* 动态状态辅助类 */
.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 1s;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

.fade-in {
    animation: fadeInRight 0.4s ease-out;
}

/* 状态指示器 */
.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.online {
    background: #27ae60;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.6);
}

.status-indicator.busy {
    background: #f39c12;
    box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
}

.status-indicator.offline {
    background: #e74c3c;
    box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

/* 高匹配度特殊效果 */
.job-card.high-match {
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    border-color: #27ae60;
    position: relative;
    overflow: hidden;
}

.job-card.high-match::before {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    opacity: 1;
}

.job-card.high-match .match-score-value {
    color: #27ae60;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

/* loading 状态样式 */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.job-card.loading {
    min-height: 300px;
    background: #f8f9fa;
    opacity: 0.7;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container, .content-wrapper {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .header-container {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .module-section {
        padding: 50px 40px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container, .content-wrapper {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .main-content {
        padding: 30px 0 60px 0;
    }
    
    .module-section {
        padding: 40px 30px;
        margin-bottom: 25px;
    }
    
    .module-header {
        margin-bottom: 40px;
    }
    
    .module-header h2 {
        font-size: 2rem;
    }
    
    .module-header p {
        font-size: 1.1rem;
    }
    
    .progress-section {
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .steps-indicator {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .step-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
        min-height: 70px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .form-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn {
        width: 100%;
        padding: 18px 32px;
    }
    
    .header-title {
        font-size: 1.8rem;
    }
    
    .brand-emoji {
        font-size: 2.5rem;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .nav-item {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container, .content-wrapper {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .header-brand {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .brand-emoji {
        font-size: 2rem;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .header-subtitle {
        font-size: 0.9rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .nav-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .nav-text {
        display: none;
    }
    
    .main-content {
        padding: 20px 0 40px 0;
    }
    
    .module-section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .module-header {
        margin-bottom: 30px;
    }
    
    .module-header h2 {
        font-size: 1.8rem;
    }
    
    .module-header p {
        font-size: 1rem;
    }
    
    .progress-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .steps-indicator {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .step-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 60px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* 加载动画和消息提示样式保持不变 */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 400px;
}

.message {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #4facfe;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    border-left-color: #27ae60;
}

.message.error {
    border-left-color: #e74c3c;
}

.message.warning {
    border-left-color: #f39c12;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(79, 172, 254, 0.2);
    border-top: 4px solid #4facfe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loading-spinner p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 引导区域样式 */
.guidance-section {
    margin-top: 30px;
    padding: 20px;
}

.guidance-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.guidance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(177, 229, 243, 0.938), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.guidance-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #0c0c0c;
}

.guidance-card p {
    font-size: 1.1em;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.guidance-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.guidance-actions .btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.guidance-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

.guidance-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.guidance-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* 引导区域响应式设计 */
@media (max-width: 768px) {
    .guidance-section {
        padding: 15px;
    }
    
    .guidance-card {
        padding: 20px;
    }
    
    .guidance-card h3 {
        font-size: 1.3em;
    }
    
    .guidance-card p {
        font-size: 1em;
    }
    
    .guidance-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .guidance-actions .btn-primary,
    .guidance-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* 03模块 - 年度总体规划样式 */
.selection-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

/* 年度规划头部 */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #66d6ea, #d1b0f2);
    border-radius: 12px;
    color: white;
}

.plan-type-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.plan-description {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

/* 年度规划阶段 */
.plan-stage {
    background: white;
    border: 2px solid #81B0B2;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-stage:hover {
    border-color: #4facfe;
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.12);
    transform: translateY(-2px);
}

.stage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f3f7;
}

.stage-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stage-duration {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stage-theme {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
}

/* 年度规划内容区域 */
.plan-strategic-goals,
.plan-capability,
.plan-milestones,
.plan-metrics,
.plan-advancement {
    margin-bottom: 20px;
}

.plan-strategic-goals h4,
.plan-capability h4,
.plan-milestones h4,
.plan-metrics h4,
.plan-advancement h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.strategic-list,
.capability-list,
.metrics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategic-list li,
.capability-list li,
.metrics-list li {
    background: linear-gradient(135deg, #f1f3f4, #e8eaf6);
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #4facfe;
    font-weight: 500;
    color: #34495e;
}

.strategic-list li:before {
    content: "🎯";
    margin-right: 8px;
}

.capability-list li:before {
    content: "💪";
    margin-right: 8px;
}

.metrics-list li:before {
    content: "📊";
    margin-right: 8px;
}

/* 里程碑时间线 */
.milestones-timeline {
    position: relative;
    padding-left: 20px;
}

.milestones-timeline:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
}

.milestone-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}

.milestone-item:before {
    content: '🏆';
    position: absolute;
    left: -8px;
    top: 0;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid #4facfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2);
}

.milestone-timeframe {
    font-weight: 600;
    color: #4facfe;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.milestone-text {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 5px;
}

.milestone-significance {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* 职业发展预期 */
.advancement-text {
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    color: #2d5e35;
    font-weight: 500;
    margin: 0;
}

/* 无内容提示 */
.no-content {
    color: #95a5a6;
    font-style: italic;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0;
}

/* 错误信息样式 */
.error-message {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border: 2px solid #f44336;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.error-message h3 {
    color: #c62828;
    margin-top: 0;
    margin-bottom: 15px;
}

.error-message p {
    color: #d32f2f;
    margin-bottom: 15px;
}

.error-message details {
    margin-top: 15px;
    text-align: left;
}

.error-message summary {
    cursor: pointer;
    color: #1976d2;
    font-weight: 500;
}

.error-message pre {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    overflow-x: auto;
    max-height: 300px;
    font-size: 12px;
    color: #333;
}

.selection-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.range-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.range-option {
    background: white;
    border: 2px solid #81B0B2;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.range-option:hover {
    border-color: #4facfe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.1);
}

.range-option.selected {
    border-color: #27ae60;
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    box-shadow: 0 8px 20px rgba(34, 178, 94, 0.2);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-header h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
}

.recommended-tag {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.range-option p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.plan-result {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(79, 172, 254, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(79, 172, 254, 0.1);
}

.result-header h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin: 0;
    background: linear-gradient(135deg, #163fae, #0e76cb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-actions {
    display: flex;
    gap: 15px;
}

.plan-content {
    display: grid;
    gap: 25px;
}

.plan-period {
    background: white;
    border: 2px solid #81B0B2;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.plan-period:hover {
    border-color: #4facfe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.1);
}

.period-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.period-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period-duration {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.period-theme {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-style: italic;
}

.plan-goals,
.plan-skills {
    margin-bottom: 20px;
}

.plan-goals h4,
.plan-skills h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-goals ul,
.plan-skills ul {
    list-style: none;
    padding: 0;
}

.plan-goals li,
.plan-skills li {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #81B0B2;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.plan-goals li:hover,
.plan-skills li:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    border-color: #4facfe;
    transform: translateX(5px);
}

.plan-milestones {
    margin-bottom: 20px;
}

.plan-milestones h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.milestones-list {
    display: grid;
    gap: 12px;
}

.milestone-item {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border: 1px solid #81B0B2;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    border-color: #4facfe;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    transform: translateX(5px);
}

.milestone-time {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.milestone-content {
    flex: 1;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* 04模块 - 月度规划样式 */
.investment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.investment-option {
    background: white;
    border: 2px solid #81B0B2;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.investment-option:hover {
    border-color: #4facfe;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.1);
}

.investment-option.selected {
    border-color: #27ae60;
    background: linear-gradient(135deg, #e8f5e8, #f0fff4);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.2);
}

.level-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.level-tag.light {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.level-tag.medium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.level-tag.intensive {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.level-tag.super {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.time-detail {
    color: #7f8c8d;
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
}

.investment-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.monthly-task {
    background: linear-gradient(135deg, #ffffff, #f8fffe);
    border: 1px solid #81B0B2;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.monthly-task:hover {
    border-color: #4facfe;
    background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
    transform: translateX(5px);
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.task-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.task-priority {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.task-priority.high {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.task-priority.medium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.task-priority.low {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.task-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 10px;
}

.task-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .range-options {
        grid-template-columns: 1fr;
    }
    
    .investment-options {
        grid-template-columns: 1fr;
    }
    
    .result-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .result-actions {
        justify-content: center;
    }
    
    .period-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .milestone-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .milestone-time {
        align-self: center;
    }
    
    .task-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .task-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .investment-controls {
        flex-direction: column;
        gap: 15px;
    }
}
/* 其他现有样式保持不变，但优化了一些细节 */

::-webkit-scrollbar {
    background: #FFFFFF;
}
::-webkit-scrollbar-thumb {
    background: #5F83B1;
}

/* 卡片、表单、内容区等背景全部用五色之一 */
.container, .content-wrapper, .module-section, .result-card, .guidance-card, .industry-card, .ability-card, .job-card, .progress-section, .form-section, .form-group input, .form-group select, .form-group textarea, .input-group input, .input-group button {
    background: linear-gradient(135deg, #E3F2FB 0%, #F4F7FA 60%, #FFFFFF 100%) !important;
}

/* 文字色如需强调可用#006AD7或#21277B */
.section-title, .job-title, .plan-header h3, .plan-header-title, .plan-title, .career-plan-title, .plan-type-badge, .plan-description, .plan-stage, .stage-title, .period-title, .plan-goals h4, .plan-skills h4, .plan-milestones h4, .plan-metrics h4, .plan-advancement h4 {
    color: #006AD7;
}

/* 其他所有边框、分割线、hover、active等全部用五色之一 */
hr, .form-group input, .form-group select, .form-group textarea, .input-group input, .input-group button, .job-card, .plan-stage, .plan-period, .range-option, .investment-option, .monthly-task {
    border-color: #5F83B1 !important;
}

.container, .content-wrapper, .module-section, .result-card, .guidance-card, .industry-card, .ability-card, .job-card, .progress-section, .form-section, .form-group input, .form-group select, .form-group textarea, .input-group input, .input-group button {
    color: #333333 !important;
}

.btn-primary, .step-btn, .select-job-btn, .view-details-btn {
    color: #fff !important;
}

.btn-outline, .view-details-btn, .btn-secondary {
    color: #333333 !important;
}

.result-header h3, .message.success, .message, .status-title, .status-header, .status-indicator, .status-message {
    color: #333333 !important;
}

