        :root {
            --primary-color: #2c7da0;
            --secondary-color: #a9d6e5;
            --accent-color: #01497c;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
     
        /* Recruitment Cost Specific Styles */
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .result-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.25rem;
            text-align: center;
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .result-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        .cost-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .cost-table th, 
        .cost-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }
        
        .cost-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .cost-table tr:hover {
            background-color: rgba(44, 125, 160, 0.05);
        }
        
        .cost-table .cost-amount {
            text-align: right;
            font-weight: 600;
        }
        
        .chart-container {
            height: 300px;
            margin-top: 2rem;
        }
        
        .comparison-chart {
            height: 400px;
            margin-top: 2rem;
        }
        
        .industry-benchmark {
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 4px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .savings-calculator {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .savings-input-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .savings-result {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--success-color);
            margin-top: 1rem;
        }
        
        .strategy-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        
        .strategy-card:hover {
            transform: translateY(-5px);
        }
        
        .strategy-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .strategy-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .strategy-list {
            padding-left: 1.5rem;
        }
        
        .strategy-list li {
            margin-bottom: 0.5rem;
        }
        
        .advanced-options {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        
        .toggle-advanced {
            display: flex;
            align-items: center;
            cursor: pointer;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .toggle-advanced i {
            margin-right: 0.5rem;
            transition: transform 0.3s;
        }
        
        .advanced-content {
            display: none;
        }
        
        .advanced-content.show {
            display: block;
            animation: fadeIn 0.3s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
		.knowledge-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid #eaeaea;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .knowledge-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .knowledge-icon {
            font-size: 2.5rem;
            color: #2c7da0;
            margin-bottom: 1rem;
        }
        
        .knowledge-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #2c7da0;
        }
        
        .knowledge-content {
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .knowledge-link {
            font-weight: 600;
            color: #2c7da0;
            text-decoration: none;
        }
        
        .knowledge-link:hover {
            text-decoration: underline;
        }
        
        /* 成本分析卡片 */
        .cost-analysis {
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cost-analysis-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2c7da0;
        }
        
        .cost-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .cost-item:last-child {
            border-bottom: none;
        }
        
        .cost-label {
            font-weight: 500;
        }
        
        .cost-value {
            font-weight: 600;
            color: #2c7da0;
        }
        
        /* 免责声明样式 */
        .disclaimer-box {
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 4px solid #ffc107;
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .disclaimer-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #856404;
        }
        
        /* 内容板块样式 */
        .content-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eaeaea;
        }
        
        .section-header {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #2c7da0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eaeaea;
        }
        
        .content-card {
            margin-bottom: 1.5rem; 
            background-color: white;
            border-radius: 8px; 
        }
        
        .content-card h3 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2c7da0;
        }
        
        .content-card p {
            margin-bottom: 1rem;
            color: #555;
        }
        
        .content-highlight {
            background-color: rgba(44, 125, 160, 0.1);
            padding: 1rem;
            border-radius: 6px;
            margin: 1rem 0;
        }
        
        .stat-bubble {
            background-color: #2c7da0;
            color: white;
            border-radius: 20px;
            padding: 0.5rem 1rem;
            display: inline-block;
            margin: 0.5rem 0;
            font-weight: 600;
        }
        
        .strategy-list {
            padding-left: 1.5rem;
        }
        
        .strategy-list li {
            margin-bottom: 0.75rem;
            position: relative;
        }
        
        .strategy-list li:before {
            content: "✓";
            position: absolute;
            left: -1.5rem;
            color: #28a745;
            font-weight: bold;
        }
    