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

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


  