/* ===== 职位招聘页面样式 ===== */

/* 页面头部样式 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.breadcrumb-custom {
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: white;
}

.breadcrumb-custom .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* 公司文化部分 */
.company-culture {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.culture-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon i {
    font-size: 32px;
    color: white;
}

.culture-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

/* 福利待遇部分 */
.benefits-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: #667eea;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
}

/* 职位列表部分 */
.jobs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.job-list {
    margin-bottom: 40px;
}

.job-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.job-title h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #666;
}

.job-meta i {
    font-size: 16px;
    color: #667eea;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-apply:hover {
    opacity: 0.9;
    color: white;
    text-decoration: none;
}

.job-description,
.job-requirements,
.job-benefits,
.job-contact {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.job-contact {
    border-bottom: none;
}

.job-description h4,
.job-requirements h4,
.job-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-description h4 i,
.job-requirements h4 i,
.job-benefits h4 i {
    color: #667eea;
}

.job-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.job-requirements ul,
.job-benefits ul {
    padding-left: 20px;
    margin: 0;
}

.job-requirements li,
.job-benefits li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.job-contact p {
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-contact i {
    color: #667eea;
}

/* 联系我们部分 */
.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
}

.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.contact-info > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
}

.contact-item i {
    font-size: 20px;
    color: #667eea;
    width: 24px;
    text-align: center;
}

.contact-image {
    flex: 1;
    min-height: 300px;
    background-position: center;
    background-size: cover;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-card {
        flex-direction: column;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-image {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .page-desc {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .job-meta {
        gap: 15px;
    }
    
    .btn-apply {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 40px 0 30px;
    }
    
    .company-culture,
    .benefits-section,
    .jobs-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 10px;
    }
}