/* 职位列表部分 */
.jobs-section {
    padding: 2rem 0;
    background: var(--bg-gradient);
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 1.5rem;
}

.job-filters {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: #fff;
    color: var(--text-secondary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.jobs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.job-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.job-tags {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.job-tags span {
    padding: 0.3rem 0.8rem;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.9rem;
}

.job-desc {
    margin-top: 1rem;
}

.job-desc h4 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.job-desc ul {
    padding-left: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* 员工福利部分 */
.benefits-section {
    padding: 2rem 0;
    background: #fff;
}

.benefits-grid {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-gradient);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* 应聘流程样式 */
.process-section {
    padding: 2rem 0;
    background: #fff;
}

.process-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--primary-light);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    position: relative;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jobs-list {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .culture-grid {
        grid-template-columns: 1fr;
    }

    .job-filters {
        flex-wrap: wrap;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 1.5rem 0;
    }

    .job-card {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        flex: 0 0 100%;
    }
} 