/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --hover-color: #f0f7ff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo p {
    font-size: 14px;
    color: var(--light-text);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* 通用部分样式 */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* 关于我们部分 */
#about {
    background-color: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 20px;
}

/* 招聘部分 */
.job-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.job-filters select,
.job-filters input {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-right: 15px;
    font-size: 14px;
}

.job-filters input {
    width: 250px;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.job-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.job-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.job-card .job-info {
    display: flex;
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 14px;
}

.job-card .job-info span {
    margin-right: 20px;
}

.job-card .job-desc {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 福利部分 */
#benefits {
    background-color: var(--secondary-color);
}

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

.benefit-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 14px;
    color: var(--light-text);
}

/* 联系部分 */
#contact {
    text-align: center;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* 模态框样式 */
.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: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

#modal-body h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

#modal-body .job-detail-info {
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 14px;
}

#modal-body .job-detail-info span {
    margin-right: 20px;
}

#modal-body h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--text-color);
}

#modal-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

#modal-body li {
    margin-bottom: 8px;
}

.apply-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #0d5bbc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    nav ul {
        margin-top: 15px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .job-filters {
        flex-direction: column;
        align-items: center;
    }

    .job-filters select,
    .job-filters input {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
    }

    .job-list,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 90%;
    }
}

@media (max-width: 480px) {
    section h2 {
        font-size: 26px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .modal-content {
        padding: 20px;
    }
}`}}}