* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; }
a { text-decoration: none; color: #333; }
a:hover { color: #007bff; }
ul { list-style: none; }

/* 统一内容最大宽度并居中 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 10px; }

/* 顶部导航栏 */
#header-wrap { background: #fff; border-bottom: 1px solid #eee; }
#header { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
.logo a { font-size: 20px; font-weight: bold; color: #e91e63; }
.contact-wx { font-size: 14px; color: #00b0ff; font-weight: 500; }

/* 面包屑导航 */
.breadcrumb { padding: 12px 0; font-size: 13px; color: #666; }
.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: #e91e63; }

/* 详情页主体布局：响应式网关（左侧内容，右侧边栏/移动端单栏） */
.detail-wrapper { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 20px; }
@media (min-width: 992px) {
    .detail-wrapper { grid-template-columns: 3fr 1fr; }
}

/* 详情主内容卡片 */
.detail-main { background: #fff; padding: 20px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.detail-title { font-size: 20px; color: #222; margin-bottom: 12px; line-height: 1.4; }
.detail-meta { font-size: 13px; color: #999; padding-bottom: 15px; border-bottom: 1px solid #eee; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 15px; }

/* 核心待遇高亮框 */
.salary-box { background: #fffdf5; border: 1px solid #ffeeba; padding: 15px; border-radius: 4px; margin-bottom: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 576px) {
    .salary-box { grid-template-columns: repeat(4, 1fr); }
}
.salary-item { text-align: center; }
.salary-item .label { font-size: 12px; color: #888; display: block; }
.salary-item .val { font-size: 16px; font-weight: bold; color: #e91e63; }

/* 文章正文排版 */
.detail-content { font-size: 15px; color: #444; line-height: 1.8; }
.detail-content p { margin-bottom: 15px; }
.detail-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 10px 0; }
.detail-content h3 { font-size: 16px; color: #222; margin: 20px 0 10px; border-left: 3px solid #e91e63; padding-left: 8px; }

/* 联系方式引导框 */
.contact-card { background: #f0f8ff; border: 1px solid #bce8f1; padding: 15px; border-radius: 4px; margin-top: 30px; text-align: center; }
.contact-card h4 { color: #31708f; margin-bottom: 8px; font-size: 16px; }
.contact-card p { font-size: 14px; color: #333; margin-bottom: 5px; }
.wx-highlight { color: #e91e63; font-weight: bold; font-size: 18px; }

/* 侧边栏样式 */
.detail-sidebar { display: flex; flex-direction: column; gap: 15px; }
.sidebar-box { background: #fff; padding: 15px; border-radius: 4px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.sidebar-box h3 { font-size: 15px; margin-bottom: 12px; color: #333; border-left: 3px solid #e91e63; padding-left: 8px; }
.recommend-list li { margin-bottom: 10px; font-size: 13px; }
.recommend-list a { color: #555; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.recommend-list a:hover { color: #e91e63; }

/* 底部版权 */
#footer { text-align: center; padding: 20px 10px; font-size: 12px; color: #777; background: #eaeaea; margin-top: 20px; }
#footer a { color: #555; }