/* 页面标题banner */
.page-banner {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://picsum.photos/1920/300') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 24px;
    opacity: 0.9;
}

/* 通用容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通用标题样式 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-title p {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
}

/* 公司福利 */
.benefits {
    padding: 80px 0;
    background: #fff;
}

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

.benefit-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.benefit-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-5px);
}

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

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

/* 职位列表 */
.jobs {
    padding: 80px 0;
    background: #f8f8f8;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.job-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.job-header h3 {
    font-size: 20px;
    color: #333;
}

.job-tags {
    display: flex;
    gap: 15px;
}

.job-tags span {
    padding: 5px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    color: #666;
    font-size: 14px;
}

.job-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.requirements {
    flex: 1;
}

.requirements h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
}

.requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #92c95e;
}

.apply-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #92c95e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #7ab043;
    color: #fff;
}

/* 简历投递 */
.resume {
    padding: 80px 0;
    background: #fff;
}

.resume-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.resume-info {
    flex: 1;
}

.resume-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.resume-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.method h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.method p {
    color: #666;
    margin: 0;
}

.resume-image {
    flex: 0 0 50%;
}

.resume-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 响应式布局 */
@media screen and (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resume-content {
        flex-direction: column;
    }

    .resume-image {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 768px) {
    .page-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 18px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .job-content {
        flex-direction: column;
        gap: 20px;
    }

    .apply-btn {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* 动画效果 */
.benefit-item,
.job-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.4s; }
.benefit-item:nth-child(4) { animation-delay: 0.6s; }

.job-item:nth-child(2) { animation-delay: 0.2s; }
.job-item:nth-child(3) { animation-delay: 0.4s; } 