* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #f5f7fb;
    color: #1f2d3d;
    line-height: 1.5;
    padding-bottom: 30px;
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 顶部导航 */
.navbar {
    background: #1e2f4e;
    color: white;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}
.logo p {
    font-size: 0.7rem;
    color: #ffc107;
}
.city-badge {
    background: #ff9f2e;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    color: #1e2f4e;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 30px;
    transition: 0.2s;
}
.nav-links a:hover {
    background: #ff9f2e;
    color: #1e2f4e;
}
@media (max-width: 640px) {
    .navbar .container {
flex-direction: column;
text-align: center;
    }
}

/* 面包屑 */
.breadcrumb {
    margin: 20px 0 16px;
    font-size: 0.85rem;
    color: #6c7a91;
}
.breadcrumb a {
    color: #ff9f2e;
    text-decoration: none;
}

/* 主卡片 */
.detail-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.detail-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #edf2f7;
}
.detail-header h1 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: #8a9bb0;
    margin: 12px 0;
}
.contact-row {
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.contact-row a {
    color: #ff9f2e;
    text-decoration: none;
    font-weight: 500;
}
.copy-btn {
    background: #07c160;
    border: none;
    padding: 6px 16px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 内容区域 */
.content-body {
    padding: 24px;
}
.content-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3f5c;
}
.content-text p {
    margin-bottom: 1.2em;
}
.content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.wechat-qrcode {
    text-align: center;
    margin: 30px 0 20px;
    padding: 20px;
    background: #fef9e6;
    border-radius: 24px;
}
.wechat-qrcode img {
    width: 180px;
    margin-top: 12px;
}

/* 相关招聘列表 */
.related-section {
    background: white;
    border-radius: 24px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    border-left: 5px solid #ff9f2e;
    padding-left: 14px;
    margin-bottom: 20px;
}
.related-list {
    list-style: none;
}
.related-list li {
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}
.related-list li:last-child {
    border-bottom: none;
}
.related-list a {
    text-decoration: none;
    color: #2c3f5c;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.related-list a:hover {
    color: #ff9f2e;
}
.related-date {
    font-size: 0.75rem;
    color: #8a9bb0;
}

/* 底部 */
.footer {
    text-align: center;
    padding: 24px 20px;
    background: #1e2f4e;
    color: #bfc9d9;
    font-size: 0.75rem;
    margin-top: 40px;
}

/* 响应式 */
@media (max-width: 640px) {
    .detail-header h1 {
font-size: 1.3rem;
    }
    .contact-row {
flex-direction: column;
align-items: flex-start;
gap: 10px;
    }
    .content-body {
padding: 18px;
    }
}