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

/* 默认 dt, dd 行内显示 */
dt, dd {
    display: inline;
    margin: 0;
    padding: 0;
}

/* dl 默认行内显示 */
dl {
    margin: 0;
    padding: 0;
}

@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;
  }
}
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;
}

.page-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--bg-medium);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
}

.page-btn:hover:not(.disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.page-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: 500;
}

.page-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--bg-medium);
    color: var(--text-light);
}
.back-button {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: var(--bg-medium);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    min-width: 36px;
    text-align: center;
}
.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;
}

/* Collapsible Navigation Styles */
.collapsible .nav-header {
    display: flex;
    justify-content: flex-start;
    align-items: left;
    padding: 4px 0;
}
.nav-title {
    width: 200px;
    margin-right: 10px;
    white-space: nowrap;
}

.toggle-btn {
    margin-left: auto;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 15px;
    background: var(--bg-light);
    font-size: 0.9em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-title  {
    width: auto;
    margin-right: 10px;
    white-space: nowrap;
}

.nav-content,.nav-content-line {
    flex-grow: 1;    
    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;
}

/* Category Navigation Styles */
.category-nav {
    background: var(--bg-white);
    padding: 10px 2%;
    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;
}
.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);
}
.search-box {
    margin-bottom: 5px;
    padding: 2px 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);
}

.date-picker {
    padding: 1px 10px;
    border: 1px solid #e1e4e8;
    border-radius: 20px;
    background: #fff;
    font-size: 0.9em;
    margin-left: 10px;
}
.header  {
    color: var(--text-medium);
}
.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 .tab-nav a:hover {
    color: #007bff;
    transform: scale(1.05);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(120deg, rgba(0,123,255,0.1) 0%, transparent 80%);
}
.header .h1pagetip {
    color: var(--text-medium);
    cursor: not-allowed;  
    font-size: 0.6em;
}

@keyframes underline {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}
/* Footer Styles */
.site-footer {
    background-color: var(--navy);
    color: white;
    padding: 50px 5% 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    padding: 0 15px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.1em;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

.footer-column p {
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

.qrcode img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}
.qrcode a {
    color: #4dabf7;
    text-decoration: none;
    transition: color 0.2s;
}
.qrcode a:hover {
    color: #74c0fc;
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
}
.footer-bottom a {
    color: rgba(255,255,255,0.7);
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #fff;
}
/* Job List Styles */
#job-list {
    margin: 20px 0;
    display: grid;
    grid-gap: 15px;
}
.header .tab-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: #007bff;
    animation: underline 0.3s ease-out;
}

/* 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;
}

.seo-section {
    margin: 20px 10px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.seo-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.seo-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seo-content p {
    margin: 0;
    text-align: justify;
}

.seo-content a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.seo-content a:hover {
    color: #004499;
    text-decoration: underline;
}
.seo-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-links li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.seo-links li  a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}
.seo-blocks {
    list-style: none;
    margin: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.seo-blocks li {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #f9f9f9; /* 浅灰背景更柔和 */
    border: 1px solid #e9e9e9; /* 浅灰细边框 */
    border-radius: 12px; /* 更大的圆角 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* 更扩散的阴影 */
    padding: 4px 8px; /* 内边距 */
    border-radius: 4px; /* 圆角 */      
    font-size: 18px;
    line-height: 1.8;       
    gap: 8px;
}

/* 职位列表容器 */
.job-list {
  margin: 20px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

/* 职位元信息样式 - 使用dl,dt,dd格式 */
.job-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 8px;
  margin: 4px 15px;
}

/* 元信息项容器 */
.job-meta .meta-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.meta-item:not(:first-child)::before {
    content: "|";          
    margin: 0 8px;
    color: #ddd;
}
/* 术语标签 */
.job-meta dt {
  font-weight: normal;
  color: #666;
  margin: 0;
  padding: 0;
}

/* 描述内容 */
.job-meta dd {
  margin: 0 0 0 4px;
  padding: 0;
  display: inline;
}

.job-meta dd a {
  color: var(--link-color);
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.job-meta dd a:hover {
  opacity: 0.8;
}

.detail-meta-item-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-meta-item-list li {
  display: inline-flex;
  align-items: center;
}

.detail-meta-item-list li a {
  color: var(--link-color);
  text-decoration: none;
  padding: 2px 0;
  transition: all 0.3s ease;
}

.detail-meta-item-list li a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.meta-divider {
  color: #ddd;
  padding: 0 5px;
}
.meta-item-source {
    color: #999 !important;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

/* 来源声明容器 */
.sourcetips {
  margin: 12px 0;
  padding: 12px;
  background: #fff9e6;
  border-left: 2px solid #ffd90071;
  border-radius: 8px;
  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;
}
.detail-content {
    padding-left: 1em;
    margin: 0 0;
    line-height: 1.8;
}
.detail-content img{
    max-width: 1280px;
}
.detail-content p {
    text-indent: 2em;
    margin-bottom: 10px;
}
.detail-cover-content, .detail-content-item{
    max-width: 680px;
    margin: 10px auto;
    padding: 0 2px;
}

.detail-content-item ul {
    margin: 0 0 1em 0;
    padding-left: 1.5em;
}

.detail-content-item li {
    margin: 0.3em 0;
    line-height: 1.4;
    list-style-type: none;
    padding-left: 1em;
}

.xjh-list-item {
    margin: 5px 0;
    padding: 0px 10px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid var(--primary-light);
}
/* 封面元数据容器 */
.detail-cover-meta {
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
    padding: 0px 0;
}

.detail-cover-meta h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.detail-cover-meta span {
    display: inline-block;
    margin: 0 10px 5px 0;
    font-size: 14px;
    color: #666;
}
.detail-coverimage {
    display: block;
    max-width: 680px;
    margin: 0 auto;
    padding: 1px;
}
.detail-coverimage img{
    width: 100%;
    max-width: 680px;
    max-height: 260px;
    
    margin: 0px auto 5px auto;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.detail-departmentIntro,
.detail-jobRequirement,
.detail-highLight,
.detail-jobDuty {
    margin-top: 2px;
    padding: 2px 0;
    font-size: 18px;
    display: block;
}

/* 微信兼容 */
.layout-wrapper {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}
.job-detail {
    flex: 1;
    min-width: 0; /* 允许内容在flex容器中适当收缩 */
}
.job-detail label {
    display: block;
    margin: 0.8rem 0;
    padding-left: 1.2em;
    font-style: normal;
}

.job-detail .i {
    font-weight: 500;
    color: #2c3e50;
    margin-left: 0.5em;
}

.detail-title-container {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    margin: 1.3rem 0 ;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 40px;   
}

.detail-title-h1 {
    font-size: 1.8em;
    text-align: center;
    color: var(--primary-color);
    margin: 0;
    padding: 0 20px;
    position: absolute;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-recruit-tags-all{
    position: relative;
    display: inline-block;
    padding: 0px 4px;
    border-radius: 4px;
    border: dashed 1px #666;
    font-size: 0.8em;
    color: #666;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
    z-index: 1;
}


.similar-job-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
    gap: 15px;
}
.recruitment-faq {
    width: 30%;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
}

.recruitment-faq-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--primary-color);
}

.recruitment-faq-content {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.recruitment-faq-content::-webkit-scrollbar {
    width: 6px;
}

.recruitment-faq-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.recruitment-faq-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.recruitment-faq-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.faq-item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #e0e0e0;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* FAQ使用dl,dt,dd格式 - 块级显示 */
.recruitment-faq-content dt {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    font-size: 0.95em;
}

.recruitment-faq-content dd {
    display: block;
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* 相似职位样式 */
.similar-job {
    width: 60%;
    max-width: 900px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
}

.similar-job-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 2px solid var(--primary-color);
}

.similar-job-title svg {
    color: var(--primary-color);
}

/* 相似职位列表 - 高度超过250px时显示滚动条 */
.similar-job-list {
    list-style: none;
    margin: 0;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.similar-job-list::-webkit-scrollbar {
    width: 6px;
}

.similar-job-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.similar-job-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.similar-job-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.similar-job-item {
    margin: 0px 0;
    padding: 0;
}

.similar-job-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.similar-job-content {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px;
    flex-wrap: nowrap !important;
    padding: 5px 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.similar-job-content:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.similar-job-title-wrap {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 60%;
}

.similar-job-title-text {
    min-width: 100px;
    font-size: 1em;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.similar-job-content:hover .similar-job-title-text {
    color: var(--primary-color);
}

.similar-job-family,
.similar-job-place,
.similar-job-date {
    max-width: 250px;
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.similar-job-place svg,
.similar-job-date svg {
    flex-shrink: 0;
}


.position-title-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 4px 15px;
    gap: 8px;
}

/* H2和UL在一行显示，UL左对齐H2 */
.position-title-container > h2,
.position-title-container > ul,
.position-title-container > dl,
.position-title-container > strong {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    vertical-align: middle;
}
.position-title-container > strong {
    font-size: 1.2em;
    line-height: 1.4;
}

.detail-PositionTitle {
    font-size: 1.2em;
    font-weight: normal;
    color: #333;
    margin: 0;
    flex-shrink: 0;
    line-height: 1.4;
}

.position-search {
    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;
    margin-left: 15px;
}

.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;
}

.sidebar {
    width: 320px;
    flex-shrink: 0; /* 防止侧边栏在空间不足时收缩 */
}
.company-info {
    position: relative;
    max-height: 220px;
    overflow: hidden;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    transition: max-height 0.3s ease;
}

.company-info h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

/* 遮罩层 */
.company-info-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #f9f9f9);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
/* 更多按钮 */
.company-info-more {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: opacity 0.3s ease;
}
.company-info-more-link {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.05);
    color: #666;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.company-info-more-link:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}
/* 鼠标悬停时显示完整内容 */
.company-info:hover {
    max-height: none;
}
.company-info:hover .company-info-mask {
    opacity: 0;
}
.company-info:hover .company-info-more {
    opacity: 0;
    pointer-events: none;
}
/* 最新职位样式 */
.company-new-job {
    margin: 10px 0px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.company-new-job h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.company-new-job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-new-job-item {
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative;
}

.company-new-job-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

.company-new-job-link {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.company-new-job-link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* 公司详情两列布局 */
.company-details {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    margin-bottom: 5px;
}

.company-logo-container {
    flex-shrink: 0;
}

.company-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.company-info-right {
    flex: 1;
    min-width: 0;
}
.company-tags {
    margin-bottom:0px;
}

.company-tags h4 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

/* company-tags 使用 dl,dt,dd 格式 */
.company-tags dl {
    margin: 0;
    padding: 0;
    display: inline;
}

.company-tags dt {
    display: inline;
    font-weight: normal;
    color: #666;
    margin: 0;
    padding: 0;
}

.company-tags dt::after {
    content: "";
}

.company-tags dd {
    display: inline;
    margin: 0;
    padding: 0;
    color: #666;
}
.company-tags dd a:hover {
    color: var(--primary-color);
}

/* 列表头部 */
.list-header {
  padding: 10px;
  background: #f8f9fa;
}

.list-header-grid,.job-item  {
  display: grid;
  grid-template-columns:1.5fr 1.8fr 1fr 0.9fr 0.8fr 120px;
  gap: 4px;
}
.header-item {
  font-weight: 600;
  color: #495057;
}

/* 列表主体 */
.list-body {
  padding: 0 2px;
}
.job-item-block {
    padding: 0 0px;
    border-bottom: 1px solid #eee;
}
.job-item {
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
}
.job-item-desc {
  font-size: 14px;
  gap: 4px; 
  margin: 0px 25px;
  padding: 0px 5px 6px;
  color: #999 ;
}
.recruit-tags-all {
    display: inline-block;
    padding: 0px 4px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    border: 1px dashed var(--text-medium);
    margin-right: 8px;
}
.job-item:last-child {
  border-bottom: none;
}
.job-item:hover {
  background-color: var(--bg-medium);
}
.job-item a:hover {
  color: var(--primary-light);
}
.list-body .job-item:nth-child(even) {
  background-color: var(--bg-medium);
}

.post-line{
    width: 100%;
    text-align: center;
    border: 0px solid #eee;
    padding: 12px;
    gap: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
}
.post-button  {
    text-align: center;
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px 20px;
    border: 1px solid #2CBA9A;
    border-radius: 6px;
    background: #4e6ef2;
    color: white;
    border-color: #4e6ef2;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px; 
    line-height: 1.6;   
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);   
}
.post-tip-mouse {
    cursor: default;
}

.post-button:hover {
    background: white;
    color: #4e6ef2;
    border-color: #4e6ef2;
    filter: drop-shadow(0 2px 4px rgba(44,186,154,0.3));
    transform: translateY(-1px);
    padding-right: 21px;   
}

.share-line{
    text-align: right;
    border: 0px solid #eee;
    padding: 12px;
    gap: 12px;
    display: block !important;
    clear: both;
    width: 100%;
}
.share-line > a {
    color: #666;
    margin-left: 12px;
}
/* 上下页导航 - 独占一行 */
.prev-next-line {
    display: block !important;
    clear: both;
    padding: 4px 12px;
    font-size: 16px;
    color: #666;
    width: 100%;
    margin-top: 10px;
}

.prev-next-line a {
    color: var(--text-dark);
    text-decoration: none;
}

.prev-next-line a:hover {
    text-decoration: underline;
}
.search-box > .nav-header {
    clear: both;
    padding-top: 5px;
}

.source-name,
.experience-name,
.date-value,
.btn-view,
.location-name {
  color: #6c757d;
  font-size: 0.9em;
  opacity: 0.8;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.title-h2, .title-h3{
    color: #6c757d;
    margin: 0;  
    padding: 0; 
    font-size: 1em;  
    font-weight: normal;  
}
h4 {
    color: #6c757d;
    font-weight: normal;
    font-size: 1em;  
    font-weight: normal;  
}

.city-tabs { display: flex; gap: 15px; margin: 10px 0; flex-wrap: wrap; }
.city-tab { border: 1px solid #e0e0e0; border-radius: 12px; padding: 15px; width: 200px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all 0.3s ease;}
.city-tab:hover {
    border: 1px solid var(--primary-light);
    background-color: #f5f9f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 186, 154, 0.15);
}
.city-line { display: flex; align-items: center; margin-bottom: 10px;}
.city-icon { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 10px; }
.city-icon img { width: 100%; height: 100%; object-fit: cover; }
.city-name { font-weight: 600; text-align: left; margin-bottom: 8px; }
.city-desc { font-size: 12px; color: #666; text-align: left;  }
.city-count { padding-left:10px;font-size: 18px; color: var(--primary-light); font-weight: bold; text-align: center; }

.tag_new {
    font-size: 12px;
    color: #f0f0f0;
    padding: 0px 4px;
    border-radius: 3px;
    background-color: rgb(255, 56, 82);
}

/* 响应式适配 */
@media (max-width: 1280px) {
  .city-tabs {gap: 15px;}
  .city-tab { padding: 15px;width: 190px;}    
  .list-header-grid,.job-item {grid-template-columns:1.5fr 1.8fr 1fr 0.9fr 0.8fr 120px ;}
  .source-name,.experience,.location-name { max-width: 140px;}
  .btn-view {max-width: 70px;}
  .similar-job-container {gap: 15px;}
  .recruitment-faq {width: 40%;}
}

@media (max-width: 991px) {
    .list-header-grid,.job-item {grid-template-columns:1.5fr 1.8fr 1fr 0.9fr 0.8fr 100px;}
    .layout-wrapper {flex-direction: column;}
    .sidebar {width: 100%;}
    .promotion-container {width: 100%;max-width: 300px;height: auto;aspect-ratio: 1/2;}
}

@media (max-width: 768px) {
    .source-name,.experience,.location-name { max-width: 100px;}
    .btn-view {max-width: 70px;}
    .city-tab {padding: 5px;width: 150px;height: 110px;}
    .nav-content-line {-webkit-line-clamp: unset;line-clamp: unset;height: auto;}
    .list-header-grid,.job-item {grid-template-columns:1.2fr 1.3fr 1fr 1fr;}
    .list-header-grid .header-item:nth-child(5),
    .list-header-grid .header-item:nth-child(6),
    .job-item > div:nth-child(5),
    .job-item > div:nth-child(6) {
        display: none;
    }
    .experience,.location-name { max-width: 100px;}
    .seo-section {margin: 20px 0;padding: 15px;font-size: 13px;}
    .seo-section h2 {font-size: 16px;}
    .job-meta {flex-wrap: wrap;}
    .job-meta > div:last-child {width: 100%;text-align: right;margin-top: 8px;}    
    .sourcetips {padding: 0.8rem;margin: 1rem 0;}
    .job-detail label {padding-left: 0.8em;margin: 0.6rem 0;}
    .pagination {margin: 10px 0;gap: 2px; }
    .pagination a { vertical-align: middle;padding: 4px 4px;margin: 0 2px;}   
    .site-header { flex-direction: column; align-items: flex-start; gap: 10px; padding: 10px 2%; }
    .header-logo img { height: 40px; }
    .main-nav { width: 100%; margin-bottom: 10px; }
    .main-nav ul { display: flex; gap: 10px; justify-content: space-between; flex-wrap: wrap; }
    .header-actions { width: 100%; justify-content: center; margin-left: 0; margin-top: 10px; gap: 8px; }
    .pagination { flex-wrap: wrap; gap: 5px; }
    .pagination a { padding: 6px 10px; margin: 2px; }
    .detail-content {padding-left: 1em;}
    .layout-wrapper {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        margin-top: 20px;
    }

    .similar-job-container {
        flex-direction: column;
        gap: 20px;
    }
    .recruitment-faq {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .similar-job {
        width: 100%;
        max-width: 100%;
        padding: 5px;
    } 
    .similar-job-content {
        gap: 3px;
        padding: 5px 5px;
    }
    .similar-job-family,
    .similar-job-place,
    .similar-job-date {
        max-width: 100px;
    }    
}   

