body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}
@media print {
    body { display: none !important; }
}

/* 导航栏样式（双倍高度、沉稳配色调和） */
.navbar { background: #fff; border-bottom: 1px solid #ddd; padding: 20px 15px; }
.nav-row { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; min-height: 50px; }
.nav-list { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; font-size: 15px; }
.nav-list li a { text-decoration: none; color: #495057; transition: color 0.2s; }
.nav-list li a:hover { color: #0056b3; }
.nav-list li.active a { color: #0056b3; font-weight: bold; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container-custom { max-width: 1200px; margin: 0 auto; background: #fff; padding-bottom: 20px; }

/* 面包屑导航 */
.breadcrumb {
    padding: 12px 15px;
    font-size: 13px;
    color: #6c757d;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}
.breadcrumb a {
    color: #0056b3;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 详情页主体网格布局 */
.detail-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px 15px;
}
.detail-main {
    flex: 1;
    min-width: 0;
}
.detail-sidebar {
    width: 320px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .detail-wrapper {
flex-direction: column;
    }
    .detail-sidebar {
width: 100%;
    }
}

/* 职位头部信息卡片 */
.job-header-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.job-title {
    font-size: 22px;
    color: #212529;
    margin: 0 0 10px 0;
}

/* 发布时间与浏览数 */
.job-info-bar {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #6c757d;
    border-top: 1px solid #f1f3f5;
    padding-top: 12px;
    margin-top: 15px;
}

/* 职位详情内容模块 */
.job-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}
.section-heading {
    font-size: 18px;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
}
.job-desc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}
.job-desc-content p {
    margin: 0 0 10px 0;
}

/* 右侧相关招聘列表 */
.related-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
}
.related-title {
    font-size: 16px;
    color: #212529;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: bold;
}
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.related-item {
    padding: 8px 0;
    border-bottom: 1px dashed #f1f3f5;
}
.related-item:last-child {
    border-bottom: none;
}
.related-item a {
    font-size: 14px;
    color: #0056b3;
    text-decoration: none;
    display: block;
    line-height: 1.4;
}
.related-item a:hover {
    text-decoration: underline;
}
.related-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 友情链接样式重构 */
.links-bar { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    padding: 15px; 
    background: #f9f9f9; 
    border-top: 1px solid #e9ecef; 
    justify-content: center; 
}
.links-title { 
    width: 100%; 
    text-align: center; 
    font-weight: bold; 
    color: #495057; 
    margin-bottom: 5px; 
    font-size: 13px;
}
.links-item { 
    background: #fff; 
    border: 1px solid #dee2e6; 
    padding: 4px 10px; 
    border-radius: 3px; 
    text-decoration: none; 
    color: #6c757d; 
    font-size: 12px; 
    transition: all 0.2s;
}
.links-item:hover {
    color: #0056b3;
    border-color: #0056b3;
    background-color: #f8f9fa;
}

/* 响应式底部组件样式 */
.app-footer {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 12px;
    line-height: 1.6;
    padding: 20px 15px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.app-footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.app-footer .footer-cert {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    color: #495057;
}
.app-footer .footer-cert .divider {
    color: #ced4da;
}
.app-footer .footer-warn {
    color: #dc3545;
    margin: 0;
}
.app-footer .footer-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-footer .footer-copy p {
    margin: 0;
}
.app-footer .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.app-footer .footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
}
.app-footer .footer-links a:hover {
    color: #007bff;
    text-decoration: underline;
}
.app-footer .footer-contact {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #adb5bd;
}
@media (max-width: 768px) {
    .app-footer {
padding: 15px 10px;
font-size: 11px;
    }
}