/* 全局初始化 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #F8F8F8; font: 14px/1.6 "Microsoft YaHei", Arial, sans-serif; color: #333; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
a:hover { color: #2EAFBB; }
ul { list-style: none; }
img { border: 0; display: block; max-width: 100%; }

/* 统一容器 */
.container { max-width: 1180px; margin: 0 auto;padding:0 5px;}

/* 头部导航 (同首页) */
header { background: #333; color: #fff; height: 60px; line-height: 60px; position: sticky; top: 0; z-index: 999; }
.header-box { display: flex; justify-content: space-between; align-items: center; }
.logo-area, .logo-area h1 a { font-size: 18px; font-weight: bold; display: inherit;}
.logo-area span { font-size: 12px; font-weight: normal; margin-left: 10px; color: #ccc; }
.nav-right a { background: #2EAFBB; color: #fff; padding: 5px 15px; border-radius: 4px; font-size: 13px; }

/* 面包屑导航 */
.breadcrumb { background: #fff; padding: 12px 0; border-bottom: 1px solid #eee; margin-bottom: 15px; font-size: 13px; color: #888; }
.breadcrumb a { margin-right: 5px; }
.breadcrumb span { margin-left: 5px; color: #333; }

/* 筛选区 */
.filter-box { background: #fff; padding: 20px; border-radius: 4px; margin-bottom: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.filter-item { display: flex; padding: 10px 0; border-bottom: 1px dashed #eee; }
.filter-item:last-child { border-bottom: none; }
.filter-label { width: 80px; color: #999; font-weight: bold; flex-shrink: 0; }
.filter-links { display: flex; flex-wrap: wrap; gap: 15px; }
.filter-links a { padding: 2px 8px; border-radius: 3px; }
.filter-links a.active { background: #2EAFBB; color: #fff; }

/* 主体布局 */
.main-wrapper { display: flex; gap: 20px; }
.list-section { flex: 1; background: #fff; border-radius: 4px; overflow: hidden; }

/* 列表项渲染 (同首页优化版) */
.list-info li { border-bottom: 1px solid #f2f2f2; transition: 0.3s; }
.list-info li:hover { background: #fafafa; }
.list-info li a { display: flex; padding: 20px; }

.list-img { width: 180px; height: 125px; overflow: hidden; border-radius: 4px; margin-right: 20px; flex-shrink: 0; }
.list-img img { width: 100%; height: 100%; object-fit: cover; }

.list-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.list-content .tit { font-size: 18px; color: #222; font-weight: bold; margin-bottom: 8px; width: 80%; overflow: hidden; text-overflow: ellipsis;white-space: nowrap; }
.list-content .salary { position: absolute; right: 0; top: 0; color: #FF5722; font-size: 18px; font-weight: bold; }
.list-content .desc { color: #666; font-size: 13px; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.list-content .meta { color: #999; font-size: 12px; display: flex; align-items: center; gap: 15px; }
.tag { background: #E6F8F9; color: #2EAFBB; padding: 1px 6px; border-radius: 2px; font-size: 11px; }

/* 侧边栏 (PC端展示) */
.aside-section { width: 280px; flex-shrink: 0; }
.aside-card { background: #fff; padding: 15px; border-radius: 4px; margin-bottom: 20px; }
.card-title { font-size: 16px; font-weight: bold; border-left: 4px solid #2EAFBB; padding-left: 10px; margin-bottom: 15px; }
.hot-list li { padding: 10px 0; border-bottom: 1px solid #f5f5f5; font-size: 13px; }

/* 分页 */
.pager { padding: 30px; text-align: center; background: #fff; border-top: 1px solid #eee; }
.pager a, .pager span { padding: 8px 16px; margin: 0 3px; border: 1px solid #ddd; border-radius: 4px; display: inline-block; }
.pager .current { background: #2EAFBB; color: #fff; border-color: #2EAFBB; }

/* 底部版权 (同首页) */
footer { background: #333; color: #999; padding: 40px 0; margin-top: 30px; }
.footer-nav { text-align: center; margin-bottom: 15px; }
.footer-nav a { color: #ccc; margin: 0 10px; }
.footer-info { text-align: center; font-size: 12px; line-height: 1.8; }

/* 响应式媒体查询 */
@media (max-width: 992px) {
    .aside-section { display: none; } /* 移动端隐藏侧边栏 */
    .filter-label { width: 60px; font-size: 12px; }
    .list-img { width: 120px; height: 90px; margin-right: 12px; }
    .list-content .tit { font-size: 15px; overflow:hidden;-webkit-box-orient: vertical;display: -webkit-box;-webkit-line-clamp: 1;white-space: normal;width:100%;}
    .list-content .salary { position: static; margin-bottom: 5px; font-size: 16px; }
    .list-content .desc,.list-content .t-des,.list-content .tag { display: none; } /* 移动端隐藏描述节省空间 */
}