/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@supports (--css: variables) {
  :root {
    /* 校园主题色系统 */
    --primary-color: #06b5b5;
    --primary-dark: #006666;
    --primary-light: #35b0a7;
    
    /* 功能色 */
    --error-color: #ef5350;
    --warning-color: #ffe08a;
    
    /* 中性色 */
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --border-light: #e0e0e0;
    --border-lighter: #eee;
    
    /* 背景色 */
    --bg-light: #f5f5f5;
    --bg-medium: #f8f9fa;
    --bg-white: #fff;
    
    /* 特殊颜色 */
    --navy: #2c3e50;
    --link-color: #008c8c;
  }
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

dt, dd {
    display: inline;
    margin: 0;
    padding: 0;
}

dl {
    margin: 0;
    padding: 0;
}

.pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 8px; /* 控制分页项间距 */
}
.pagination span {
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    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 var(--border-light);
    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 var(--border-light);
    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: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    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 var(--border-light);
    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 #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    margin: 0 3px; /* 增加左右间距 */
}

.pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination a.current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    cursor: default;
}

/* 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);
    overflow: hidden;
}

.search-box-left {
    float: left;
    display: inline-block;
    vertical-align: top;
}

.search-box-right {
    float: right;
    display: inline-block;
    vertical-align: top;
}

.search-box > .nav-header {
    clear: both;
    padding-top: 5px;
}

.search-box a {
    display: inline-block;
    margin: 0 8px 8px 0;
    padding: 1px 10px;
    color: var(--text-dark);
    text-decoration: none;
    background: var(--bg-white);
    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: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

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

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

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

.toggle-btn {
    margin-left: auto !important;
    padding: 4px 12px !important;
    border: 1px solid var(--border-light);
    border-radius: 15px;
    background: var(--bg-light);
    font-size: 0.9em;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
}

.toggle-btn:hover {
    background: var(--bg-medium);
    border-color: var(--primary-light);
}

.toggle-btn:active {
    transform: scale(0.98);
}


.header  {
    display: inline-block;
    color: var(--text-medium);
}
.header .tab-nav  {
    color: var(--primary-dark);
    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: var(--primary-dark);
    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;
}

/* 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: var(--primary-dark);
    animation: underline 0.3s ease-out;
}

.job-list-quick {
    margin: 10px 0;
    display: inline-block;
    line-height: 1.9;
    grid-gap: 15px;
    margin-bottom: 10px;
} 
.job-list-quick::after {
    content: '';
    display: block;
}

span.quick-link {
    padding: 2px 3px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    margin: 10px 0px; /* 增加左右间距 */
}
span.quick-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
    .wechat-list-container {
        display: block !important;
        padding: 10px;
        width: 520px;
        margin: 0 auto;
    }
    
    .wechat-list-item {
        background: #fff;
        padding: 10px;
        margin-bottom: 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-sizing: border-box;
        transition: all 0.3s ease;
        font-size: 18px;
    }
    
    /* 奇数行背景色 */
    .wechat-list-item:nth-child(odd) {
        background-color: #ffffff;
    }
    /* 偶数行背景色 */
    .wechat-list-item:nth-child(even) {
        background-color: #f9f9f9;
    }
    .wechat-list-item-deadline {
        background: #b5b3b3;
        padding: 10px;
        margin-bottom: 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        box-sizing: border-box;
        transition: all 0.3s ease;
        font-size: 16px;
    }
    .wechat-middle-title {
        text-align: center;
        margin: 5px auto;
        padding: 20px;
        font-size: 22px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
    }
    
    /* 奇数行背景色 */
    .wechat-list-item-deadline:nth-child(odd) {
        background-color: #ffffff;
    }
    /* 偶数行背景色 */
    .wechat-list-item-deadline:nth-child(even) {
        background-color: #f9f9f9;
    }    
    .wechat-list-header {
        margin-bottom: 5px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .wechat-company-name {
        margin: 0 0 8px 0;
        font-size: 1.4em;
        font-weight: 600;
        color: #333;
    }
    
    .wechat-company-name a {
        color: #333;
        text-decoration: none;
    }
    
    .wechat-company-fullname {
        font-size: 1.2em;
        color: #666;
    }
    
    .wechat-list-content {
        margin-bottom: 5px;
    }
    
    /* 每个信息块添加圆角线框和间隔 */
    .wechat-info-item {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 10px 12px;
        margin-bottom: 10px;
        transition: all 0.2s ease;
    }
    
    .wechat-info-item:hover {
        background: #f0f2f5;
        border-color: #dee2e6;
    }
    
    .wechat-location,
    .wechat-position,
    .wechat-date {
        display: block;
        color: #333;
        line-height: 1.5;
    }
    
    .wechat-intro {
        font-size: 0.8em;
        line-height: 1.6;
        color: #666;
        margin: 12px 0 0 0;
        padding: 10px 12px;
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 8px;
    }
    
    .wechat-list-footer {
        font-size: 1.2em;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        padding-top: 5px;
        border-top: 1px solid #f5f5f5;
    }


    .wechat-btn-view,
    .wechat-btn-apply {
        display: inline-block;
        width: 160px;
        padding: 10px 16px;
        background: #06b5b5;
        color: #fff;
        border: 1px solid #06b5b5;        
        border-radius: 10px;
        justify-content: center;
        text-decoration: none;
        flex-shrink: 0;
        transition: all 0.2s ease;
        text-align: center;
        line-height: 1.5;
        vertical-align: middle;
    }

    .wechat-btn-apply:hover {
        background: #05a0a0;
        transform: translateY(-1px);
    }
    .wechat-btn-apply:active {
        color: #666;
        transform: translateY(-1px);
    }   
    .wechat-qrcode-title {
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 5px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }   
    .wechat-qrcode-wrapper {
        margin: 0 auto 10px;
        display: inline-block;
        align-items: center;
        justify-content: center; 
    }        
    .wechat-qrcode {
        padding: 10px;
        border: 2px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }
    .wechat-hr{
        width: 500px;
        border: 1px solid #ccc;
        margin: 20px 0px;
    }
    .wechat-empty-tip {
        text-align: center;
        margin: 0;
        padding: 60px 20px;
        color: #999;
        font-size: 0.9em;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
    }
    .wechat-sourcetips {
        display: block !important;
        width: 520px;
        font-size: 0.9em;;
        padding: 20px;
        margin: 20px auto;
        background: #fff9e6;
        border: 2px solid #ffd90071;
        border-radius: 8px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .wechat-sourcetips > span {
        white-space: nowrap;
        color: #666;
        padding-top: 2px;
        font-weight: 600;
    }
    .wechat-sourcetips > p {
        margin: 0;
        color: #666;
        line-height: 1.6;
    }

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

.layout-wrapper {
    display: flex;
    gap: 20px;
    margin: 0 auto;
}
.job-detail {
    flex: 1;
    min-width: 0; /* 允许内容在flex容器中适当收缩 */
    max-width: 1450px;
    font-size: 18px;
}

.job-detail label {
    display: block;
    margin: 0.8rem 0;
    padding-left: 1.2em;
    font-style: normal;
}

.job-detail .i {
    font-weight: 500;
    color: var(--navy);
    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-container:only-child {
    gap: 0;
}

/* 当只有一个子元素时，占满整个宽度 */
.recruitment-faq:only-child,
.similar-job:only-child {
    width: 100%;
    margin-right: 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;
}

/* 职位元信息样式 - 使用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-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;
  font-size: 0.9em;
}

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

.sourcetips > p {
  margin: 0;
  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;
}

.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;
    display: block;
}

.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: 15px;
    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;
}

/* 公司信息标签 - 使用dl,dt,dd格式 */
.company-tags {
    margin-bottom: 0px;
}

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

.company-tags dd {
    margin: 0 0 0 4px;
    padding: 0;
    display: inline;
}

.company-tags dd a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s;
}

.company-tags dd a:hover {
    color: var(--primary-color) !important;
}

/* 公司名称样式 */
.company-name {
    margin: 0;
}

.company-name dt {
    font-weight: bold;
    color: #333;
}

.company-name dd {
    color: #333;
}

/* 公司简介样式 */
.company-intro dd {
    display: block !important;
    margin: 4px 0 0 0;
    line-height: 1.6;
}
        
 /* 职位列表容器 */
.job-list {
  margin: 20px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
/* 列表头部 */
.list-header {
  padding: 10px;
  background: #f8f9fa;
}

.list-header-grid {
  display: grid;
  grid-template-columns:1.3fr 1.5fr 1.0fr 1.3fr 120px 70px;
  gap: 4px;
}
.header-item {
  font-size: 20px;
  font-weight: 600;
  color: #495057;
}

.job-list-xjh {
  margin: 20px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
}

/* 宣讲会卡片样式 */
.xjh-card {
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: calc(33.333% - 10px);
}

.xjh-card:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-color: var(--primary-light);
}

/* 标题样式 */
.xjh-title {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
}

.xjh-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* 内容布局 */
.xjh-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* 公司Logo */
.xjh-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%; 
    background: #f5f5f5;
    margin: 0;
    display: block;
}

/* 元数据样式 */
.xjh-meta {
  flex: 1;
  min-width: 0;
}

.xjh-location {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

.xjh-location h3 {
  margin: 4px 0 0 0;
  font-size: 14px;
  font-weight: 500;
  display: inline;
}

.xjh-location a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.xjh-location a:hover {
  color: var(--primary-light);
}


/* 列表主体 */
.list-body {
  padding: 0 2px;
}
.job-item {
  font-size: 18px;
  display: grid;
  grid-template-columns:1.3fr 1.5fr 1.0fr 1.3fr 120px 70px;
  gap: 4px;
  padding: 12px 4px 6px;
  border-bottom: 1px solid #eee;
}
.job-item-block {
    padding: 0 0px;
    border-bottom: 1px solid #eee;
}
.no-border {
  border: none;
}
.job-item-desc {
  font-size: 14px;
  gap: 4px; 
  margin: 0px 25px;
  padding: 0px 5px 6px;
  color: #999 ;
}
.recruit-tags-all {
    display: inline-block;
    margin-right: 8px;
    padding: 0px 4px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-medium);
    border: 1px dashed var(--text-medium);
}
.job-item:last-child,.job-item-desc:last-child ,.job-item-block: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),.job-item-block: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;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    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;
    background: var(--primary-dark);
}

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

.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;
    margin-top: 10px;
    padding: 4px 12px;
    font-size: 16px;
    color: #666;
    width: 100%;
}

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

.prev-next-line a:hover {
    text-decoration: underline;
}

.source-name,
.date-value,
.btn-view,
.location-name {
  color: #6c757d;
  opacity: 0.8;
  max-width: 290px;
  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; height: 150px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: all 0.3s ease;}
.city-tab:hover {
    border: 1px solid var(--primary-color);
    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-color); font-weight: bold; text-align: center; }


.schedule-container {
    margin: 0 0 10px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 100%;
    box-sizing: border-box;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}

.schedule-grid:hover {
    background: var(--bg-medium);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}
.schedule-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.schedule-grid-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}
.schedule-grid-header h3 :visited {
    color: var(--primary-color);
}
.schedule-more-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.schedule-more-link a:active {
    transform: scale(1.1);
}

.schedule-item {
    flex: 1;
    padding: 0;
    border: none;
    background: none;
    box-shadow: none;
    margin: 10px 0 0 0;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}

.schedule-item li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-lighter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.schedule-item li:last-child {
    border-bottom: none;
}

.schedule-item li a {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.schedule-item li a:hover {
    color: var(--primary-color);
}

.schedule-title-name {
    display: inline-block;
    max-width: 380px;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-item li time {
    color: var(--text-light);
    font-size: 12px;
    white-space: nowrap;
}

.side-tab-container {
    padding: 0px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}
.side-tab-header {
  display: flex;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.side-tab {
  padding: 15px 12px;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  transition: background-color 0.3s;
}

.side-tab.active {
  background-color: #fff;
  border-bottom: 2px solid #1890ff;
  color: #1890ff;
  font-weight: bold;
}

.side-tab-content {
  display: none;
  padding: 15px;
}
.side-tab-content.active {
  display: block;
}
.side-company-name a {
  color: var(--link-color);
  text-decoration: none;
}
.side-company-name a:hover {
  color: var(--primary-light);
  background-color: #fff;
  text-decoration: underline;
}
.side-company-name a:visited {
  color: var(--text-light);
}

.side-list-body {
  padding: 2px;
}
.side-company-name {
  display: block;
  margin-bottom: 2px;
  padding-bottom: 2px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.side-company-name:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.side-more-btn{
    display: block;
    text-align: right;
}
.side-empty-tip {
  text-align: center;
  padding: 20px;
  color: #999;
}

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

/* 城市列表样式 */
.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    margin: 0;
    padding:10px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.city-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.city-item a {
    display: block;
    padding: 5px 16px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px dashed var(--border-light);
    text-align: center;
}

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

.city-item a.active {
    background: var(--primary-color);
    color: white;
    border: 1px dashed var(--primary-color);
}

.city-hotness {
    height: 4px;
    background: var(--bg-light);
    border-radius: 2px;
    overflow: hidden;
}

.hotness-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* 热度等级样式 - 热力图颜色 */
.hotness-low {
    background: linear-gradient(to right, #4575b4, #74add1, #abd9e9);
}

.hotness-medium-low {
    background: linear-gradient(to right, #ffd93d, #ffb347, #ff8c00);
}

.hotness-medium {
    background: linear-gradient(to right, #fd8d3c, #fc4e2a, #e31a1c);
}

.hotness-medium-high {
    background: linear-gradient(to right, #e31a1c, #bd0026, #800026);
}

.hotness-high {
    background: linear-gradient(to right, #800026, #542788, #2d004b);
}


.schedule-card-tip {
    text-indent: 1em;
    color: #888;
    margin-top: 8px;
}
/* 网申卡片列表样式 */
.schedule-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.schedule-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e4e8;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.schedule-card-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
    transform: translateZ(0);
}

.schedule-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    transform: translateZ(0); 
}

.schedule-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
    transform-origin: center bottom; /* 从底部中心缩放，减少底部偏移 */
    
}

.schedule-card:hover .schedule-card-image img {
    transform: scale(1.05);
}

.schedule-card-image::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 45px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0));
    pointer-events: none;
    transform: translateZ(0);
    z-index: 4;
    box-shadow: 0 1px 0 rgba(255,255,255,0.95);
}

.schedule-card-company {
    position: absolute;
    bottom: 5px;
    left: 12px;
    right: 12px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    z-index: 5;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.schedule-card-company a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.schedule-card-company a:hover {
    color: var(--primary-light);
}

.schedule-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-light);
}

.schedule-card-header {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-card-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.schedule-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    flex: 1;
}

.date-value {
    font-size: 12px;
    color: #888;
    white-space: nowrap;
}
.schedule-card-date-value {
    font-size: 16px;
    color: #888;
    white-space: nowrap;
    margin-left: 8px;
}

.schedule-card-title a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.schedule-card-title a:hover {
    color: var(--primary-light);
}

.schedule-card-body {
    flex: 1;
    padding: 8px 12px;
}

.schedule-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.schedule-card-dates {
    display: flex;
    gap: 8px;
}

.schedule-card-date {
    flex: 1;
    min-width:160px;
}

.schedule-card-post-date {
    flex: 2;
    min-width: 80px;
}

.schedule-card-location,
.schedule-card-date,
.schedule-card-post-date {
    font-size: 12px;
    color: #888;
}

.schedule-card-positions {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-top: 8px;
}

.schedule-card-tags {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    border: 1px dashed #ccc;
    border-radius: 12px;
    font-size: 10px;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.schedule-card-footer {
    padding: 12px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

.schedule-card-btn {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid var(--primary-color);
    transition: background 0.3s ease;
}

.schedule-card-btn:hover {
    color: var(--text-medium);
    background: var(--bg-light); 
}
.schedule-card-btn:visited {
    color: var(--text-medium);
}

    
/* 响应式适配 */
@media (max-width: 1440px) {
  .schedule-container {grid-template-columns: repeat(2, 1fr); gap: 12px;}
  .schedule-title-name {max-width: 320px;} /* 调整标题最大宽度 */
  .schedule-grid {padding: 14px;} /* 调整内边距 */
}

@media (max-width: 1280px) {
  .schedule-container {grid-template-columns: repeat(2, 1fr);}   
  .schedule-title-name {max-width: 260px;} 
  .city-tabs {gap: 15px;}
  .city-tab { padding: 15px;width: 190px;}
  .list-header-grid,.job-item {grid-template-columns: 1.3fr 1.5fr 1.0fr 1.3fr 120px 70px;}
  .source-name,.experience,.location-name { max-width: 160px;}
  .btn-view {max-width: 70px;}
  .similar-job-container {gap: 15px;}
  .recruitment-faq {width: 40%;}
    .schedule-card-list {
        grid-template-columns: repeat(2, 1fr);
    }  
}

@media (max-width: 1024px) {
  .schedule-container {grid-template-columns: repeat(2, 1fr); gap: 8px;} /* 进一步减小列间距 */
  .schedule-title-name {max-width: 140px;} /* 进一步减小标题最大宽度 */
  .schedule-grid {padding: 8px;} /* 进一步减小内边距 */
  .schedule-grid-header h3 {font-size: 12px;} /* 进一步减小标题字体大小 */
  .schedule-more-link {font-size: 10px;} /* 进一步减小链接字体大小 */
  .schedule-item li time {font-size: 9px;} /* 进一步减小时间字体大小 */
  .schedule-item li {padding: 2px 0;} /* 进一步减小行间距 */
    .schedule-card-list {
        grid-template-columns: repeat(2, 1fr);
    }  
}

@media (max-width: 991px) {
    .schedule-container {grid-template-columns: repeat(2, 1fr);}   
    .schedule-title-name {max-width: 260px;}
    .list-header-grid,.job-item {grid-template-columns: 1.3fr 1.5fr 1.0fr 1.3fr 100px 50px;}    
    .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) {
    .schedule-title-name {max-width: 260px;}
    .source-name,.experience,.location-name { max-width: 100px;}
    .btn-view {max-width: 70px;}
    .city-list {padding: 15px;gap: 8px;}
    .city-list a {padding: 6px 12px;font-size: 13px;}     
    .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.3fr 1.3fr 1.0fr;}
    .list-header-grid .header-item:nth-child(4),
    .list-header-grid .header-item:nth-child(5),
    .list-header-grid .header-item:nth-child(6),
    .job-item > div:nth-child(4),
    .job-item > div:nth-child(5),
    .job-item > div:nth-child(6) {display: none;}
    .source-name,.location-name { max-width: 100px;}
    .list-header {padding: 4px 2px;}    
    .job-item {  padding: 12px 2px 6px;gap: 2px;}
    .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;}   
    .detail-content {padding-left: 0.5em;}

    .schedule-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .schedule-grid {
        padding: 12px;
    }
    
    .schedule-grid-header h3 {
        font-size: 14px;
    }    
    .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;
    }
    .schedule-card-list {
        grid-template-columns: 1fr;
    }    
}


  