/* 英雄图部分 */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.5rem;
}

/* 招聘岗位部分 */
.job-openings {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.job-openings h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.job-box {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.job-icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-icon {
    font-size: 2rem;
    color: #fff;
}

.job-gradient-blue {
    background: linear-gradient(135deg, #6dd5ed 0%, #2193b0 100%);
}

.job-gradient-green {
    background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}

.job-gradient-purple {
    background: linear-gradient(135deg, #d9a7c7 0%, #845ec2 100%);
}

.job-box h4 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.job-box p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #fff;
}

.job-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.job-box ul li {
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 10px;
    color: #fff;
}

.job-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #fff;
}

.job-box .btn {
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.job-box .btn:hover {
    background: #0056b3;
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .job-box {
        margin-bottom: 20px;
        padding: 15px;
    }

    .job-box h4 {
        font-size: 1.5rem;
    }

    .job-box p,
    .job-box ul li {
        font-size: 0.9rem;
    }
}
