/* ============================================
   V13 频道页公共样式
   风格：青色 #00d4ff + 橙色渐变按钮 #ff6b35→#ff8c42
   圆角12px 白色卡片+阴影
   ============================================ */

/* ========== 重置与基础 ========== */
.v13-page {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Microsoft YaHei, sans-serif;
}
.v13-page * {
    box-sizing: border-box;
}

/* ========== 容器 ========== */
.v13-container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========== 主布局 ========== */
.v13-main {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}
.v13-main-left {
    flex: 1;
    min-width: 0;
}
.v13-main-right {
    width: 280px;
    flex-shrink: 0;
}

/* ========== 面包屑 ========== */
.v13-breadcrumb {
    background: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
    font-size: 13px;
    color: #888;
}
.v13-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}
.v13-breadcrumb a:hover {
    color: #00d4ff;
}
.v13-breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
}
.v13-breadcrumb .current {
    color: #333;
}

/* ========== 卡片通用 ========== */
.v13-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
    overflow: hidden;
    margin-bottom: 16px;
}
.v13-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.v13-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.v13-card-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: #00d4ff;
    border-radius: 2px;
}
.v13-card-body {
    padding: 20px;
}
.v13-card-more {
    font-size: 13px;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.2s;
}
.v13-card-more:hover {
    color: #00b8e6;
}

/* ========== 按钮 ========== */
.v13-btn {
    display: inline-block;
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
    text-align: center;
    vertical-align: middle;
}
.v13-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
}
.v13-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.v13-btn-outline {
    background: #fff;
    color: #00d4ff;
    border: 1px solid #00d4ff;
}
.v13-btn-outline:hover {
    background: #00d4ff;
    color: #fff;
}
.v13-btn-sm {
    padding: 0 14px;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}

/* ========== 资讯列表 ========== */
.v13-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v13-news-item {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    cursor: pointer;
}
.v13-news-item:last-child {
    border-bottom: none;
}
.v13-news-item:hover {
    background: #f9f9f9;
}
.v13-news-item.has-image {
    align-items: flex-start;
}
.v13-news-thumb {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}
.v13-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v13-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.v13-news-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}
.v13-news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.v13-news-title a:hover {
    color: #00d4ff;
}
.v13-news-category {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: normal;
}
.v13-news-summary {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v13-news-meta {
    display: flex;
    gap: 16px;
    color: #aaa;
    font-size: 12px;
}
.v13-news-meta .item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========== 资讯详情 ========== */
.v13-article-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.v13-article-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
    margin-bottom: 14px;
}
.v13-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #999;
    font-size: 13px;
}
.v13-article-meta .item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.v13-article-meta a {
    color: #00d4ff;
    text-decoration: none;
}
.v13-article-body {
    padding: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.v13-article-body p {
    margin-bottom: 16px;
}
.v13-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.v13-article-section-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid #00d4ff;
}

/* 上下篇 */
.v13-prev-next {
    padding: 16px 24px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.v13-prev-next .row {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.v13-prev-next .label {
    flex-shrink: 0;
    width: 60px;
    color: #999;
}
.v13-prev-next .link {
    flex: 1;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.v13-prev-next .link:hover {
    color: #00d4ff;
}

/* ========== 右侧边栏 - 分类 ========== */
.v13-sidebar-cat {
    list-style: none;
    padding: 10px;
    margin: 0;
}
.v13-sidebar-cat li {
    margin-bottom: 4px;
}
.v13-sidebar-cat a {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s;
}
.v13-sidebar-cat a:hover,
.v13-sidebar-cat a.active {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}

/* ========== 右侧边栏 - 排行 ========== */
.v13-rank-list {
    list-style: none;
    padding: 10px 16px;
    margin: 0;
}
.v13-rank-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
}
.v13-rank-item:last-child {
    border-bottom: none;
}
.v13-rank-num {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    background: #e0e0e0;
    color: #fff;
    border-radius: 4px;
    margin-top: 2px;
}
.v13-rank-item:nth-child(1) .v13-rank-num { background: #ff4757; }
.v13-rank-item:nth-child(2) .v13-rank-num { background: #ff7f50; }
.v13-rank-item:nth-child(3) .v13-rank-num { background: #ffa502; }
.v13-rank-link {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.v13-rank-link:hover {
    color: #00d4ff;
}

/* ========== 招聘列表 ========== */
.v13-job-search {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
    display: flex;
    gap: 10px;
    align-items: center;
}
.v13-job-search-input {
    flex: 1;
    height: 44px;
    padding: 0 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
}
.v13-job-search-input:focus {
    border-color: #00d4ff;
}
.v13-job-search-btn {
    height: 44px;
    padding: 0 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.v13-job-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.v13-job-filter {
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
}
.v13-filter-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #f0f0f0;
}
.v13-filter-row:last-child {
    border-bottom: none;
}
.v13-filter-label {
    flex-shrink: 0;
    width: 80px;
    color: #999;
    font-size: 13px;
    padding-top: 4px;
}
.v13-filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.v13-filter-options a {
    display: inline-block;
    padding: 4px 12px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}
.v13-filter-options a:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.08);
}
.v13-filter-options a.active {
    background: #00d4ff;
    color: #fff;
}
.v13-filter-selected {
    background: #f0f9ff;
    border: 1px solid #b3e5fc;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
}
.v13-filter-selected .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    background: #fff;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    border-radius: 12px;
    font-size: 12px;
}
.v13-filter-selected .tag a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: bold;
}

.v13-job-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v13-job-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    gap: 16px;
}
.v13-job-item:last-child {
    border-bottom: none;
}
.v13-job-item:hover {
    background: #f9f9f9;
}
.v13-job-item.top {
    background: #fff8f0;
    border-left: 3px solid #ff6b35;
}
.v13-job-main {
    flex: 1;
    min-width: 0;
}
.v13-job-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}
.v13-job-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.v13-job-title a:hover {
    color: #ff6b35;
}
.v13-job-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #999;
    font-size: 12px;
}
.v13-job-info .item {
    display: flex;
    align-items: center;
    gap: 4px;
}
.v13-job-salary {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    min-width: 120px;
    text-align: right;
}
.v13-job-company {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
    color: #666;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v13-job-action {
    flex-shrink: 0;
}

/* 招聘详情头部 */
.v13-jobdetail-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8fdff 0%, #fff 100%);
}
.v13-jobdetail-title {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.v13-jobdetail-salary {
    font-size: 24px;
    color: #ff6b35;
    font-weight: bold;
}
.v13-jobdetail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.v13-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f7ff;
    color: #4a90d9;
    font-size: 12px;
    border-radius: 4px;
}
.v13-tag.orange {
    background: #fff0e6;
    color: #ff6b35;
}
.v13-tag.cyan {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
}
.v13-jobdetail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: #999;
    font-size: 13px;
}
.v13-jobdetail-meta .item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 招聘详情侧边公司信息 */
.v13-company-card {
    text-align: center;
    padding: 20px;
}
.v13-company-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid #eee;
}
.v13-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v13-company-name {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}
.v13-company-info {
    text-align: left;
    font-size: 13px;
    color: #666;
    line-height: 2;
}
.v13-company-info .label {
    color: #999;
    display: inline-block;
    width: 50px;
}

/* ========== 求购列表 ========== */
.v13-qiugou-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
}
.v13-toolbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.v13-sort-tabs {
    display: flex;
    gap: 4px;
}
.v13-sort-tabs a {
    padding: 6px 14px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.2s;
}
.v13-sort-tabs a.active {
    background: #00d4ff;
    color: #fff;
}
.v13-price-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}
.v13-price-filter input {
    width: 80px;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    outline: none;
}
.v13-price-filter input:focus {
    border-color: #00d4ff;
}
.v13-price-filter button {
    height: 30px;
    padding: 0 12px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}
.v13-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.v13-search-mini {
    display: flex;
    gap: 6px;
}
.v13-search-mini input {
    width: 160px;
    height: 32px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}
.v13-search-mini input:focus {
    border-color: #00d4ff;
}
.v13-search-mini button {
    height: 32px;
    padding: 0 14px;
    background: #00d4ff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
}
.v13-count-tip {
    color: #999;
    font-size: 13px;
}

.v13-qiugou-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v13-qiugou-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    gap: 16px;
}
.v13-qiugou-item:last-child {
    border-bottom: none;
}
.v13-qiugou-item:hover {
    background: #f9f9f9;
}
.v13-qiugou-price {
    flex-shrink: 0;
    min-width: 100px;
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
}
.v13-qiugou-price.negotiable {
    color: #00d4ff;
    font-size: 14px;
}
.v13-qiugou-main {
    flex: 1;
    min-width: 0;
}
.v13-qiugou-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}
.v13-qiugou-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.v13-qiugou-title a:hover {
    color: #00d4ff;
}
.v13-qiugou-meta {
    display: flex;
    gap: 16px;
    color: #aaa;
    font-size: 12px;
}
.v13-qiugou-publisher {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 140px;
}
.v13-qiugou-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}
.v13-qiugou-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v13-qiugou-uname {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 求购详情 */
.v13-qiugou-header {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8fdff 0%, #fff 100%);
}
.v13-qiugou-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
}
.v13-qiugou-budget {
    flex-shrink: 0;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
.v13-qiugou-budget.negotiable {
    background: linear-gradient(135deg, #00d4ff, #00b8e6);
}
.v13-qiugou-title {
    flex: 1;
    font-size: 22px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
}
.v13-qiugou-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: #666;
    font-size: 13px;
}
.v13-qiugou-info-row .item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.v13-qiugou-info-row .label {
    color: #999;
}
.v13-qiugou-detail-section {
    margin-bottom: 20px;
}
.v13-qiugou-detail-section h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #00d4ff;
}
.v13-qiugou-detail-body {
    padding: 0 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.v13-contact-block {
    background: #f8fdff;
    border: 1px solid #b3e5fc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}
.v13-contact-row {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.v13-contact-row .label {
    width: 80px;
    color: #999;
    flex-shrink: 0;
}
.v13-contact-row .value {
    color: #333;
    font-weight: 500;
}
.v13-contact-row .value.vip-needed {
    color: #ff6b35;
}
.v13-contact-row .value.vip-needed a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

/* 右侧发布者卡片 */
.v13-publisher-card {
    text-align: center;
    padding: 20px;
}
.v13-publisher-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    border: 2px solid #00d4ff;
}
.v13-publisher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v13-publisher-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}
.v13-publisher-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 12px;
}
.v13-stat-item {
    text-align: center;
}
.v13-stat-num {
    font-size: 18px;
    font-weight: bold;
    color: #00d4ff;
}
.v13-stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* ========== 轮播图（资讯首页） ========== */
.v13-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.v13-carousel .owl-carousel .item {
    display: block;
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.v13-carousel .owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.v13-carousel .owl-carousel .item b {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}
.v13-carousel .owl-buttons {
    display: none;
}
.v13-carousel:hover .owl-buttons {
    display: block;
}
.v13-carousel .owl-prev,
.v13-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.v13-carousel .owl-prev:hover,
.v13-carousel .owl-next:hover {
    background: rgba(0, 0, 0, 0.6);
}
.v13-carousel .owl-prev { left: 15px; }
.v13-carousel .owl-next { right: 15px; }

/* 24h焦点 */
.v13-focus-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    border: 1px solid #eef0f5;
    overflow: hidden;
    margin-bottom: 16px;
}
.v13-focus-header {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.v13-focus-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v13-focus-title::before {
    content: '24H';
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    font-size: 11px;
    border-radius: 4px;
    font-weight: bold;
}
.v13-focus-list {
    list-style: none;
    padding: 8px 20px;
    margin: 0;
}
.v13-focus-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f8f8f8;
    font-size: 14px;
}
.v13-focus-item:last-child {
    border-bottom: none;
}
.v13-focus-item a {
    flex: 1;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.v13-focus-item a:hover {
    color: #00d4ff;
}
.v13-focus-time {
    flex-shrink: 0;
    color: #bbb;
    font-size: 12px;
    margin-left: 12px;
}

/* 分页 */
.v13-pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 6px;
    flex-wrap: wrap;
}
.v13-pagination a,
.v13-pagination span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.v13-pagination a:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}
.v13-pagination .current {
    background: #00d4ff;
    color: #fff;
    border-color: #00d4ff;
}
.v13-pagination .disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* 提示文字 */
.v13-warning {
    background: #fff8e6;
    border-left: 3px solid #ffa502;
    padding: 10px 14px;
    color: #8b6914;
    font-size: 13px;
    border-radius: 4px;
    margin: 10px 0;
}


/* ========== 招聘筛选下拉hover补充 ========== */
.v13-filter-options .v13-dropdown {
    position: relative;
    display: inline-block;
}
.v13-filter-options .v13-dropdown > a {
    color: #00d4ff;
}
.v13-filter-options .v13-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    z-index: 100;
    display: none;
}
.v13-filter-options .v13-dropdown:hover .v13-dropdown-menu {
    display: block;
}
.v13-filter-options .v13-dropdown-menu a {
    display: block;
    padding: 6px 14px;
    color: #666;
    font-size: 13px;
    text-decoration: none;
    border-radius: 0;
    white-space: nowrap;
}
.v13-filter-options .v13-dropdown-menu a:hover {
    background: #f0f9ff;
    color: #00d4ff;
}

/* ========== 分页兼容原有page.html ========== */
.v13-page .v13-pagination .digg {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.v13-page .v13-pagination .digg a,
.v13-page .v13-pagination .digg span {
    display: inline-block;
    min-width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    box-sizing: border-box;
    float: none !important;
    margin: 0 !important;
}
.v13-page .v13-pagination .digg a:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}
.v13-page .v13-pagination .digg .current {
    background: #00d4ff;
    color: #fff;
    border-color: #00d4ff;
}

/* 招聘筛选下拉 hover显示 */
.v13-filter-options > span:hover > div[style*="position:absolute"] {
    display: block !important;
}
