/* 员工页面特有样式 - PC端 */

.page-header {
    background: linear-gradient(135deg, #0052d9 0%, #05a8ff 100%);
    padding: 100px 40px;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.intro-title {
    font-size: 36px;
    font-weight: 700;
    color: #0052d9;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.info-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.work-environment {
    background: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 80px;
}

.environment-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.col-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.col-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

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

.activity-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s, box-shadow 0.4s;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.activity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052d9 0%, #05a8ff 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.activity-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.activity-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 手机端样式 */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 20px;
        margin-top: 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .intro-section {
        margin-bottom: 40px;
    }

    .intro-title {
        font-size: 28px;
    }

    .intro-text {
        font-size: 16px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-environment {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .environment-content {
        padding: 0 20px;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .activity-card {
        padding: 20px;
    }

    .activity-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .activity-name {
        font-size: 16px;
    }
}