/* 人力资源页面样式 */
.careers-banner {
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-top: 64px;
}

.careers-banner h1 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 二级导航 */
.sub-nav {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.sub-nav .container {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
}

.sub-nav a {
    padding: 20px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s;
}

.sub-nav a:hover {
    color: var(--primary-color);
}

.sub-nav a.active {
    color: var(--primary-color);
}

.sub-nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* 人才理念 */
.talent-philosophy {
    padding: 60px 0;
    background: #fff;
}

.talent-philosophy h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.philosophy-text {
    padding: 20px;
}

.philosophy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.philosophy-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 招聘职位 */
.job-listings {
    padding:80px 0px 60px 0;
    background: #f8f8f8;
}

.job-listings h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
}

.job-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.job-filter {
    padding: 10px 20px;
    margin: 0 10px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.job-filter.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.job-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.job-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.job-title {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
}

.job-department {
    color: #666;
    font-size: 14px;
}

.job-meta {
    display: flex;
    margin-bottom: 20px;
}

.job-meta-item {
    margin-right: 20px;
    color: #666;
    font-size: 14px;
}

.job-meta-item i {
    margin-right: 5px;
    color: var(--primary-color);
}

.job-description {
    margin-bottom: 20px;
}

.job-description p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.job-actions {
    text-align: right;
}

.job-actions .btn {
    padding: 8px 20px;
}

/* 员工福利 */
.employee-benefits {
    padding: 60px 0;
    background: #fff;
}

.employee-benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.benefit-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1fr;
    }

    .philosophy-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .careers-banner {
        height: 180px;
        margin-top: 80px;
    }

    .careers-banner h1 {
        font-size: 32px;
    }

    .sub-nav a {
        padding: 15px 20px;
    }

    .talent-philosophy h2,
    .job-listings h2,
    .employee-benefits h2 {
        font-size: 26px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-department {
        margin-top: 5px;
    }

    .job-meta {
        flex-wrap: wrap;
    }

    .job-meta-item {
        margin-bottom: 5px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* 招聘信息页面样式 */
.recruitment-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.recruitment-process {
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    position: relative;
    padding: 20px 0;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 32px;
    color: #fff;
}

.step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(41, 128, 185, 0.2);
}

.step-content h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.job-listings {
    /* margin-top: 50px; */
}

.job-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.job-filter {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-filter:hover,
.job-filter.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.job-list {
    display: grid;
    gap: 25px;
}

.job-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.job-title {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.job-tags {
    display: flex;
    gap: 10px;
}

.job-tag {
    padding: 6px 15px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
}

.job-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 18px;
    color: var(--primary-color);
}

.info-item span {
    font-size: 14px;
    color: #666;
}

.job-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.job-actions {
    display: flex;
    justify-content: flex-end;
}

.job-actions .btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-actions .btn:hover {
    background: #1976d2;
    transform: translateY(-2px);
}

/* 培训发展页面样式 */
.development-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.training-system {
    margin-top: 50px;
}

.system-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.overview-content {
    padding: 20px;
}

.overview-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.training-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.training-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.training-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.training-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-icon i {
    font-size: 36px;
    color: #fff;
}

.training-content {
    flex-grow: 1;
}

.training-content h4 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.training-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.training-content ul {
    list-style: none;
    padding: 0;
}

.training-content ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.training-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

/* 员工福利页面样式 */
.benefits-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.benefits-overview {
    margin-top: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.data-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.data-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.data-label {
    font-size: 15px;
    color: #666;
}

.benefits-categories {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.category-icon i {
    font-size: 36px;
    color: #fff;
}

.category-content h3 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.benefits-list {
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 18px;
    color: var(--primary-color);
}

.benefit-text h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.employee-activities {
    margin-top: 60px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.activity-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.activity-image {
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 30px;
}

.activity-content h4 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.activity-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.employee-testimonials {
    margin-top: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: #666;
}

/* 响应式布局 */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .training-types,
    .benefits-categories {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .system-overview,
    .benefits-overview {
        grid-template-columns: 1fr;
    }

    .training-item {
        flex-direction: column;
        text-align: center;
    }

    .training-icon {
        margin: 0 auto;
    }

    .benefits-data {
        grid-template-columns: 1fr;
    }

    .category-item {
        text-align: center;
    }

    .category-icon {
        margin: 0 auto;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
} 