:root {
    --58-orange: #FF9212;
    --58-blue: #3366cc;
    --text-main: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-gray: #f8f9fa;
    --border: #eeeeee;
    --radius: 12px;
    --page-width: 1184px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "PingFang SC", "Microsoft YaHei", sans-serif; }
body { background-color: var(--bg-gray); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.2s; }

/* --- 导航栏 (保持不变) --- */
.top-nav { background: #fff; border-bottom: 2px solid var(--58-orange); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-inner { width: var(--page-width); margin: 0 auto; height: 70px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: bold; color: var(--58-orange); letter-spacing: 1px; padding-left: 10px; }
.logo h1 a {font-size:24px;}
.nav-links { display: flex; gap: 30px; padding-right: 10px; }
.nav-links a { font-size: 16px; font-weight: 500; padding:3px 10px;}
.nav-links a:hover, .nav-links a.active { background: var(--58-orange);color:#fff; padding:3px 10px;border-radius:5px;}

/* --- 面包屑 --- */
.breadcrumb { width: var(--page-width); margin: 15px auto 5px; padding: 0 10px; font-size: 13px; color: var(--text-light); }

/* --- 筛选矩阵 (Filter Box) --- */
.filter-container { width: var(--page-width); margin: 10px auto; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 15px 25px; }
.filter-row { display: flex; padding: 12px 0; border-bottom: 1px dashed #f0f0f0; }
.filter-row:last-child { border-bottom: none; }
.filter-label { width: 80px; font-size: 14px; color: var(--text-gray); font-weight: bold; padding-top: 3px; }
.filter-options { flex: 1; display: flex; flex-wrap: wrap; gap: 15px; }
.filter-options a { font-size: 14px; color: var(--text-main); padding: 3px 10px; border-radius: 4px; }
.filter-options a:hover, .filter-options a.active { background: var(--58-orange); color: #fff; }

/* --- 排序工具栏 --- */
.sort-bar { width: var(--page-width); margin: 20px auto 15px; background: #fff; border: 1px solid var(--border); height: 45px; display: flex; align-items: center; padding: 0 20px; border-radius: 4px; }
.sort-item { font-size: 13px; color: var(--text-gray); margin-right: 30px; cursor: pointer; }
.sort-item.active { color: var(--58-orange); font-weight: bold; }

/* --- 招聘列表主区 --- */
.main-list { width: var(--page-width); margin: 0 auto 40px; }

/* 列表项 */
.job-card { 
    background: #fff; border-radius: var(--radius); border: 1px solid var(--border); 
    padding: 25px; margin-bottom: 15px; display: flex; align-items: center; transition: 0.3s;
}
.job-card:hover { border-color: var(--58-orange); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* 置顶特殊样式 */
.job-card.is-vip { background: #fffdf7; border: 1px solid #ffe8d1; }
.vip-tag { background: var(--58-orange); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 3px; margin-right: 10px; vertical-align: middle; }

.job-main { flex: 1; }
.job-title { font-size: 19px; font-weight: bold; color: var(--text-main); margin-bottom: 10px; display: block; }
.job-title:hover { color: var(--58-blue); }

/* 列表元数据：浏览量、时间、城市 */
.job-info-line { display: flex; gap: 30px; font-size: 14px; color: var(--text-light); }
.info-city { color: var(--text-main); }
.info-views b { color: var(--58-orange); font-weight: bold; }

/* 列表右侧动作 */
.job-action { width: 150px; text-align: right; }
.view-btn { display: inline-block; padding: 8px 25px; background: var(--58-orange); color: #fff; border-radius: 6px; font-size: 14px; font-weight: bold; }

/* --- 翻页器 --- */
.pagination { width: var(--page-width); margin: 30px auto 60px; text-align: center; display: flex; justify-content: center; gap: 8px; }

.pagination span {min-width: 40px; height: 40px; line-height: 40px; background: #fff; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; transition: 0.2s;padding:0 5px;}
.pagination span.current {background: var(--58-orange); color: #fff; border-color: var(--58-orange);}

.pagination a { min-width: 40px; height: 40px; line-height: 40px; background: #fff; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; transition: 0.2s; }
.pagination a:hover, .pagination a.current { background: var(--58-orange); color: #fff; border-color: var(--58-orange); }

/* --- 底部 (保持不变) --- */
footer { background: #222; color: #888; padding: 60px 0; text-align: center; font-size: 13px; margin-top: 50px; }
.foot-inner { width: var(--page-width); margin: 0 auto; line-height: 2.2; }

/* =============================================
   📱 移动端 WAP 自适应 (Breakpoints: 1184px)
   ============================================= */
@media screen and (max-width: 1184px) {
    :root { --page-width: 100%; }
    .nav-inner { padding: 0 15px; }
    .nav-links { display: none; }
    
    .breadcrumb { padding: 10px 15px; margin-top: 0; }
    
    /* 手机端筛选器转为滑动 */
    .filter-container { border-radius: 0; border-left: none; border-right: none; padding: 10px 15px; margin: 0; }
    .filter-row { flex-direction: column; padding: 8px 0; }
    .filter-label { margin-bottom: 5px; font-size: 12px; }
    .filter-options { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
    .filter-options::-webkit-scrollbar { display: none; }
    .filter-options a { flex-shrink: 0; background: #f5f5f5; font-size: 13px; }

    .sort-bar { border-radius: 0; border-left: none; border-right: none; margin: 10px 0; font-size: 12px; }
    .sort-item { margin-right: 20px; }

    /* 列表项堆叠 */
    .main-list { padding: 0 10px; }
    .job-card { flex-direction: column; align-items: flex-start; padding: 15px; border-radius: 8px; }
    .job-title { font-size: 16px; margin-bottom: 12px; }
    .job-info-line { flex-wrap: wrap; gap: 15px; font-size: 12px; }
    .job-action { width: 100%; text-align: left; margin-top: 15px; border-top: 1px dashed #eee; padding-top: 12px; }
    .view-btn { width: 100%; text-align: center; }

    .pagination { gap: 5px; padding: 0 10px; }
    .page-item { min-width: 32px; height: 32px; line-height: 32px; font-size: 12px; }

    .foot-inner { padding: 0 20px; }
}