.breadcrumb-nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 10;
    color: #000;
    /* 默认文本颜色，未选中项为黑色 */
}

.breadcrumb-inner {
    margin-top: 150px;
    width: 90%;
    max-width: 1400px;
    margin-left: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #000;
    /* 未选中项为黑色 */
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover,
.breadcrumb-item:focus {
    color: #1a73e8;
    /* 移入时变为蓝色 */
    outline: none;
    text-decoration: none;
}

.breadcrumb-current {
    text-decoration: none;
    color: #1a73e8;
    /* 当前项为蓝色 */
    font-weight: 500;
    white-space: nowrap;
    /* 也可加 aria-current="page" 语义在 HTML 中已设置 */
}

.breadcrumb-separator {
    color: #999;
    user-select: none;
    line-height: 1;
}

.news-page-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-top: 120px;
    color: #111;
    text-align: center;

}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 87%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 三栏 */
    gap: 30px;
    /* 列间距 */
}

.news-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.news-thumb {
    width: 100%;
    height: 240px;
    flex-shrink: 0;
}

.news-txt {
    padding: 30px 40px;
    flex: 1;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.4;
    text-align: center;
}

.news-date {
    font-size: .9rem;
    color: #888;
    margin-bottom: 10px;
    text-align: center;
}

.news-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* 关键词高亮 */
.news-desc strong {
    color: #3498db;
}

/* =========================================================
   移动端补充样式（面包屑 + hero + 新闻列表）
   ========================================================= */

/* ---- 1200↓ ---- */
@media (max-width: 1200px) {
    .breadcrumb-inner {
        width: 90%;
        margin-left: 60px;
    }

    .news-list {
        width: 90%;
    }
}

/* ---- 992↓ ---- */
@media (max-width: 992px) {
    .breadcrumb-inner {
        margin-left: 40px;
        font-size: 1.1rem;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---- 768↓ 手机 & 竖屏 ---- */
@media (max-width: 768px) {

    /* 面包屑 */
    .breadcrumb-nav {
        margin: 0 0 20px !important;
    }

    .breadcrumb-inner {
        margin-top: 0 !important;
        margin-left: 20px;
        width: calc(100% - 40px);
        font-size: 1rem;
    }

    /* hero 区域 */
    .recruitment-hero {
        height: 40vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* 新闻列表 → 单栏 */
    .news-page-title {
        margin-top: 80px;
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .news-list {
        grid-template-columns: 1fr;
        width: 92%;
        gap: 20px;
    }

    .news-link {
        flex-direction: column;
    }

    .news-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .news-txt {
        padding: 16px;
    }

    .news-title {
        font-size: 1.15rem;
    }

    .news-desc {
        font-size: 0.95rem;
    }
}

/* ---- 480↓ 超小屏 ---- */
@media (max-width: 480px) {
    .breadcrumb-inner {
        font-size: 0.9rem;
        gap: 6px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .news-page-title {
        font-size: 1.5rem;
        margin-top: 60px;
    }

    .news-title {
        font-size: 1.05rem;
    }

    .news-desc {
        font-size: 0.9rem;
    }
}

/* ---- 横屏手机 ---- */
@media (max-width: 768px) and (orientation: landscape) {
    .recruitment-hero {
        height: 50vh;
        min-height: 320px;
    }

    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-link {
        flex-direction: row;
    }

    .news-thumb {
        width: 180px;
        height: 135px;
    }
}

/* ---- 折叠屏/小平板 ---- */
@media (min-width: 541px) and (max-width: 768px) and (orientation: portrait) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-link {
        flex-direction: column;
    }

    .news-thumb {
        aspect-ratio: 4 / 3;
    }
}

/* ---- 通用触摸优化 ---- */
.breadcrumb-item,
.news-link {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}