/* 招聘页面样式 */
.recruitment-content {
    font-family: "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 横幅样式 */
.hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 60px;
}

.hero-banner h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

/* 区域标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 2.8rem; /* 加大字体 */
    font-weight: 800; /* 加粗字体 */
    color: #333;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #333;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #d32f2f;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 职位列表样式 */
.job-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.job-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    border-top: 4px solid #d32f2f;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.job-header h3 {
    font-size: 1.5rem;
    color: #333;
}

.job-tag {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-info {
    margin-bottom: 15px;
}

.job-info p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.job-info i {
    margin-right: 8px;
    color: #d32f2f;
}

.job-description {
    margin-bottom: 20px;
    color: #555;
}

.job-detail-btn {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

.job-detail-btn:hover {
    background-color: #b71c1c;
}

/* 模态框样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: modalopen 0.4s;
}

@keyframes modalopen {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close:hover {
    color: #d32f2f;
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

.job-detail h2 {
    color: #d32f2f;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.job-detail-section {
    margin-bottom: 25px;
}

.job-detail-section h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.job-detail-section ul {
    padding-left: 20px;
}

.job-detail-section li {
    margin-bottom: 8px;
    color: #555;
}

/* 联系区域样式 */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #ffebee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #d32f2f;
    font-size: 1.8rem;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-time, .email-address, .contact-person, .contact-phone {
    font-weight: 600;
    margin: 10px 0;
    color: #d32f2f;
}

.email-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.contact-button {
    display: inline-block;
    background-color: #d32f2f;
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #b71c1c;
}

/* 优势区域样式 */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background-color: #ffebee;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: #ffebee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #d32f2f;
    font-size: 2rem;
}

.advantage-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.advantage-item p {
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    
    .job-cards, .contact-cards, .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}