.job-detail-container {
    max-width: 800px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.job-detail-header {
    margin-bottom: 40px;
}

.job-detail-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.job-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}

.job-detail-meta div {
    display: flex;
    align-items: center;
}

.job-detail-meta i {
    margin-right: 5px;
}

.job-detail-section {
    margin-bottom: 30px;
}

.job-detail-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.job-detail-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.job-detail-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.job-detail-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.apply-button {
    display: inline-block;
    background-color: #1c1c1c;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.apply-button:hover {
    background-color: #333;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #666;
    text-decoration: none;
}

.back-link:hover {
    color: #333;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .job-detail-container {
        margin-top: 100px;
    }
    
    .job-detail-title {
        font-size: 26px;
    }
    
    .job-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
}


/* 在文件末尾添加以下样式 */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

footer {
    margin-top: auto;
}