/* 文库页面样式文件 - style_wenku.css */
/* 整理时间：2024-01-14 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 颜色变量定义 */
@supports (--css: variables) {
  :root {
    /* 基础颜色系统 - 便于整体风格切换 */
    /* 主色调 */
    --primary-color: #1e88e5;
    --primary-dark: #0066cc;
    --primary-light: #3594fa;
    
    /* 辅助色 */
    --error-color: #ef5350;
    --warning-color: #ffe08a;
    
    /* 中性色 */
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --border-light: #ddd;
    --border-lighter: #eee;
    
    /* 背景色 */
    --bg-light: #f5f5f5;
    --bg-medium: #f8f9fa;
    --bg-white: #fff;
    
    /* 特殊颜色 */
    --burgundy: #800020;
    --marksgreen: #008c8c;
    --tiffany: #81d8d0;
    --deep-blue: #182C61;
    --navy: #2c3e50;
    --link-color: #111e36;
  }
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* 分页样式 */
.pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 8px; /* 控制分页项间距 */
}

.pagination span {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 500;
}

.pagination .more {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-color);
    font-weight: 500;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin: 0 3px; /* 增加左右间距 */
}

.pagination a:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination a.current {
    background: #007bff;
    color: white;
    border-color: #007bff;
    cursor: default;
}

/* 头部标题样式 */
.header {
    color: var(--text-medium);
}

.nav-title  {
    width: auto;
    margin-right: 10px;
    white-space: nowrap;
}
.collapsible .nav-header {
    display: flex;
    justify-content: flex-start;
    align-items: left;
    padding: 8px 0;
}
.nav-content {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    max-width: 85%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-content.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    height: auto;
}
.nav-content {
    flex-grow: 1;
}
/* Category Navigation Styles */
.category-nav {
    background: var(--bg-white);
    padding: 10px 3%;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 6px;
}
.breadcrumbs {
    margin-bottom: 10px;
    padding: 5px 8px;
    background-color: var(--bg-medium);
    border-radius: 6px;
}
.search-box {
    margin-bottom: 5px;
    padding: 5px 10px;
    background: var(--bg-medium);
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.search-box a {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 1px 10px;
    color: #333;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    transition: all 0.2s ease;
    font-size: 0.9em;
    /* 初始未选中状态 */
    /* 选中状态通过.active类控制 */
}

.search-box a:hover {
    color: #fff;
    background: #0066cc;
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.search-box a.active {
    color: #fff;
    background: #0066cc;
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.header .tab-nav {
    color: var(--primary-color);
    padding: 5px 10px;
    margin-right: 10px;
    text-decoration: none;
    cursor: pointer;
    font-size: medium;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .tab-nav.active {
    color: var(--navy);
    cursor: not-allowed;
    pointer-events: none;
    font-size: unset;
}

.header .h1pagetip {
    color: var(--text-medium);
    cursor: not-allowed;
    font-size: 0.6em;
}

.breadcrumbs {
    margin-bottom: 10px;
    padding: 5px 8px;
    background-color: var(--bg-medium);
    border-radius: 6px;
}
.breadcrumbs ol {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs li:not(:first-child)::before {
    content: "/";          
    /* 或者 content: "›";  向前箭头 */
    margin: 0 6px;
    color: #666;
}
.breadcrumbs li:last-child span[name="name"] {
    font-weight: bold;
    color: #333;
}
.breadcrumbs li a {
    color: var(--text-dark);
    text-decoration: none;
}
.breadcrumbs li a:hover {
    color: var(--primary-color);
}
.breadcrumbs li a.active {
    color: var(--primary-color);
}
/* SEO Section Styles */
.msg {
    display: flex;
    gap: 0.8rem;
    background: #fff9e6;
    border-radius: 6px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 3px solid var(--warning-color);
}

.msg > span {
    font-weight: 600;
    color: #856404;
    min-width: 80px;
}

.msg p {
    margin: 0;
    flex: 1;
}

/* 文章标题样式 */
.detail-title-h1 {
    text-align: center;
    color: var(--deep-blue);
    margin: 1.2rem 0 1rem;
}

/* 布局样式 */
.layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 0 auto;
}

.article-detail {
    flex: 1;
    min-width: 0;
}

/* 文章元信息样式 */
.article-meta {
  margin: 15px 0;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.article-meta dt:not(:first-child)::before {
    content: "|";          
    margin: 0 8px;
    color: #ddd;
}
.article-meta dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
}

.article-meta dl > dt {
  display: inline-block;
  font-weight: 500;
  color: #444;
  white-space: nowrap;
  margin-right: 2px;
  vertical-align: top;
}

.article-meta dl > dd {
  display: inline-block;
  margin: 0;
  color: #666;
  vertical-align: top;
  margin-right: 30px;
}

.article-meta dl > dd a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-meta dl > dd a:hover {
  color: #004499;
}
.position-search {
    width:140px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.position-search:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.position-search:visited {
    color: #333;
}

.position-search svg {
    flex-shrink: 0;
}

/* 来源声明容器 */
.sourcetips {
  margin: 12px 0;
  padding: 12px;
  background: #fff9e6;
  border-left: 2px solid #ffd90071;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.sourcetips > span {
  white-space: nowrap;
  font-size: 14px;
  color: #666;
  padding-top: 2px;
  font-weight: 600;
}

.sourcetips > p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 分类标签容器样式 */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
  padding: 15px;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 单个分类标签样式 */
.category-tab {
  flex: 1 1 300px;
  min-width: 250px;
  padding: 15px;
  border: 1px solid var(--border-lighter);
  border-radius: 8px;
  background-color: white;
  transition: all 0.3s ease;
}

.category-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-color: var(--primary-light);
}

/* 分类标签内的行样式 */
.category-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* 分类名称样式 */
.category-name {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.category-name a {
  color: var(--deep-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-name a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* 分类描述样式 */
.category-desc {
  margin-top: 10px;
}

.category-desc p {
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

.container .tag-detail-content{
 text-indent: 2em;
 font-size: 13px;
 color: var(--text-light);
 padding-left: 10px;
}

/* 列表主体 */
.list-body {
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    box-sizing: border-box;
    padding: 5px;
    width: 100%;
}

.job-list {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.job-item {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.job-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-color: #ddd;
}

.job-item a:hover {
  color: var(--primary-light);
}

/* 列表项内容样式 */
.item-cell {
  margin-bottom: 4px;
}

.item-cell.title {
  margin-bottom: 10px;
}

.article-title a {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s ease;
    border-left: 6px solid var(--primary-light);
    border-radius: 2px;
    padding-left: 25px;
}

.item-cell.title .article-title {
  font-size: 1.2em;
  color: var(--deep-blue);
  display: block;
  margin-bottom: 5px;
  text-decoration: none;
}

.list-summary {
    text-indent: 2em;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 10px;
}

.author-name,
.views-category,
.views-from,
.date-post {
    color: var(--text-medium);
    font-size: 13px;
}

.item-cell.author, .item-cell.category, .item-cell.from, .item-cell.date {
  color: #6c757d;
  font-size: 0.9em;
  display: inline-block;
  margin-right: 15px;
}

.empty-tip {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 16px;
}

/* 分享链接样式 */
.share-line {
    text-align: right;
    border: 0px solid #eee;
    padding: 12px;
    gap: 12px;
}

.share-line > a {
    color: #666;
    margin-left: 12px;
}
.prev-next-line {
    margin-top: 10px;
}

/* 热门标签区域样式 */
.tag-section {
  margin: 20px 0;
  padding: 15px;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* 标签云样式 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px;
  padding: 10px;
  list-style: none;
  border-radius: 8px;
}

.tag-cloud li {
  margin: 0;
  padding: 0;
}

/* 单个标签样式 */
.tag-item {
  padding: 6px 12px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-lighter);
  border-radius: 20px;
  color: var(--text-dark);
  font-size: 0.95em;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.tag-item:hover {
  background-color: var(--primary-light);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* 标签使用次数显示 */
.tag-item:hover::after {
  content: attr(data-val);
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75em;
  padding: 3px 8px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 1000;
  line-height: 1.2;
}

/* 热门标签云样式 */
.hot-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
  padding: 30px;
  list-style: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hot-tag-cloud::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 70%);
  border-radius: 20px;
  pointer-events: none;
}

.hot-tag-cloud li {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

/* 单个热门标签样式 */
.hot-tag-item {
  padding: 6px 14px;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 热门标签热度等级样式 */
.hot-tag-hotness-1 {
  font-size: 12px;
  color: #6c757d;
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.hot-tag-hotness-2 {
  font-size: 14px;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.hot-tag-hotness-3 {
  font-size: 16px;
  color: #17a2b8;
  background: rgba(23, 162, 184, 0.1);
  border: 1px solid rgba(23, 162, 184, 0.2);
}

.hot-tag-hotness-4 {
  font-size: 18px;
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.hot-tag-hotness-5 {
  font-size: 22px;
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  font-weight: 600;
}

/* 标签悬停效果 */
.hot-tag-item:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  z-index: 20;
  background: rgba(255,255,255,0.9);
}

/* 标签使用次数显示 */
.hot-tag-item:hover::after {
  content: attr(data-val);
  position: absolute;
  top: -20px;
  right: -20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 15px;
  min-width: 25px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  line-height: 1.2;
  animation: pulse 0.3s ease-in-out;
}

/* 脉冲动画 */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .hot-tag-cloud {
    padding: 20px;
    gap: 10px;
  }
  
  .hot-tag-item {
    padding: 4px 10px;
  }
  
  .hot-tag-hotness-5 {
    font-size: 18px;
  }
  
  .hot-tag-hotness-4 {
    font-size: 16px;
  }
  
  .hot-tag-hotness-3 {
    font-size: 14px;
  }
}

/* 文章标签样式（侧边栏） */
.article-tags {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.article-tags h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 18px;
    padding-bottom: 6px;
    display: block;
}

.tag-list {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 2px solid var(--primary-color);
}

.tag-list li {
    margin: 0;
    padding: 0;
}

.tag-link {
    display: inline-block;
    padding: 4px 12px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    font-size: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 文章目录样式 */
.article-table {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.article-table h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 18px;
    padding-bottom: 6px;
    display: block;
}

.article-table-content {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 2px solid var(--primary-color);
}

.article-table-content li {
    margin-bottom: 8px;
}

.article-table-content a {
    display: block;
    padding: 6px 10px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.article-table-content a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.article-table-content a::before {
    content: "▶";
    display: inline-block;
    width: 16px;
    font-size: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.article-table-content a:hover::before {
    color: white;
    transform: translateX(4px);
}

/* 文章摘要样式 */
.article-summary {
    border-radius: 8px;
    margin: 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.article-summary h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

.article-summary p {
    margin: 0;
    text-indent: 2em;
    color: var(--text-medium);
    line-height: 2;
}

.summary-cover-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 20px 0;
}

.detail-coverimage {
    flex: 0 0 auto;
    max-width: 580px;
}

.detail-coverimage img {
    width: 100%;
    max-width: 580px;
    max-height: 300px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


/* 文章内容样式 */
.detail-content {
    margin: 20px 0;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-dark);
    padding-left: 2em;
}

.detail-content p {
    text-indent: 2em;
    margin-bottom: 15px;
}

.detail-content img {
    max-width: 640px;
    height: auto;
}

.detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.detail-content a:hover {
    color: var(--primary-dark);
}

.detail-content h1,
.detail-content h2,
.detail-content h3,
.detail-content h4,
.detail-content h5,
.detail-content h6 {
    margin: 20px 0 15px 0;
    color: var(--deep-blue);
    
}
[id^="global-title-"] {
    scroll-margin-top: 100px; 
}
#article-summary,
#articles-related{
  scroll-margin-top: 100px; 
}

.detail-content ul,
.detail-content ol {
    margin: 15px 0 15px 20px;
}

.detail-content li {
    margin-bottom: 5px;
}

/* 相关文章样式（侧边栏） */
.related-articles {
    margin: 20px 0;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.related-articles h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 18px;
    padding-bottom: 6px;
    display: block;
}

.related-list {
    list-style: none;
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 2px solid var(--primary-color);
}

.related-list li {
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 16px;
    line-height: 1.4;
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.related-date {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 8px;
    display: inline-block;
}

/* 侧边栏布局 */
.sidebar {
    width: 320px;
    padding: 20px;
    box-sizing: border-box;
}

/* 搜索容器样式 */
.search-container {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    scroll-margin-top: 380px;
}

.search-container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.search-container .header {
    margin: 0;
}

.search-container .position-search {
    margin: 0;
}

/* 搜索职位列表样式 */
.search-job-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.search-job-item {
    padding: 15px;
    border: 1px solid var(--border-lighter);
    border-radius: 8px;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.search-job-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}

.search-job-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-job-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.search-job-title a {
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.search-job-title a:hover {
    color: var(--primary-light);
}

.search-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--text-medium);
}

.search-date-value {
    color: var(--text-light);
}

.search-job-info {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 响应式适配 - 按屏幕尺寸从大到小排序 */

/* 中等屏幕适配 (1200px及以下) */
@media (max-width: 1200px) {
  .summary-cover-container {
    flex-direction: column;
    align-items: center;
  }  
  .list-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  /* 摘要和封面图布局适配 */
  .summary-cover-container {
    flex-direction: column;
    align-items: center;
  }
  
  .detail-coverimage {
    max-width: 100%;
  }
  
  .detail-coverimage img {
    max-width: 100%;
    max-height: 300px;
  }
  
  .article-summary {
    width: 100%;
    margin-top: 15px;
  }
}
/* 移动端适配 (768px及以下) */
@media (max-width: 768px) {
  /* 分页适配 */
  .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .pagination a {
    padding: 6px 10px;
    margin: 2px;
  }

  /* 来源声明适配 */
  .sourcetips {
    padding: 0.8rem;
    margin: 1rem 0;
  }

  /* 分类标签适配 */
  .category-tabs {
    padding: 10px;
    gap: 15px;
  }
  
  .category-tab {
    flex: 1 1 100%;
    padding: 12px;
  }

  /* 热门标签适配 */
  .tag-section {
    padding: 10px;
  }
  
  .tag-cloud {
    gap: 10px;
    margin: 10px 0;
    padding: 15px;
  }
  
  .tag-item {
    padding: 5px 10px;
    font-size: 0.9em;
  }

  /* 职位列表适配 */
  .job-list {
    padding: 5px;
  }
  
  /* 布局适配 */
  .layout-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
    width: 100%;
    margin-top: 20px;
  }
  
  /* 摘要和封面图布局适配 */
  .summary-cover-container {
    flex-direction: column;
    align-items: center;
  }
  
  .detail-coverimage {
    max-width: 100%;
  }
  
  .detail-coverimage img {
    max-width: 100%;
    max-height: 300px;
  }
  
  .article-summary {
    width: 100%;
    margin-top: 15px;
  }
}