        /****** 新增样式：筛选栏 (高120px) 和 院校新闻列表 ******/
        /* 筛选栏容器 */
        .filter-bar {
            height: 50px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            margin: 12px 0;
            padding: 0 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(0, 35, 70, 0.06);
            border: 2px solid rgba(42, 96, 178, 0.15);
            border-radius: 8px;
        }
        .filter-line {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px 16px;
            margin: 4px 0;
        }
        .filter-label {
            font-weight: 650;
            color: #1e3a6b;
            font-size: 16px;
            min-width: 90px;
            letter-spacing: 0.3px;
        }
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .filter-tags a {
            text-decoration: none;
            color: #2c3e50;
            font-size: 15px;
            padding: 3px 0;
            border-bottom: 2px solid transparent;
            transition: 0.15s;
            font-weight: 480;
        }
        .filter-tags a:hover {
            border-bottom-color: #FEB47B;
            color: #2A60B2;
        }
        .filter-tags a.active{
color: #2A60B2;
    border-bottom-color: transparent;
    font-weight: 600;
    border-bottom-color: #2A60B2;
}


        /* 院校新闻列表区域 */
        .school-news-section {
            margin: 10px 0 0 0;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        /* 新闻卡片 */
        .news-card {
            display: flex;
            gap: 18px;
            height: auto;
            min-height: 130px;
            background: #ffffff;
            padding: 12px 18px 12px 15px;
            box-shadow: 0 6px 14px rgba(0, 25, 60, 0.05);
            transition: all 0.2s ease;
            border: 1px solid rgba(0, 0, 0, 0.02);
            align-items: center;
        }
        .news-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 25px rgba(42, 96, 178, 0.08);
            border-color: rgba(42, 96, 178, 0.2);
        }
        /* 左侧圆形图片 */
        .img-link {
            display: block;
            width: 105px;
            height: 105px;
            flex-shrink: 0;
            border-radius: 50%;
            overflow: hidden;
            transition: 0.2s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .img-link img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.25s ease;
        }
        .img-link:hover img {
            transform: scale(1.08);
        }
        .img-link:hover {
            box-shadow: 0 10px 18px rgba(42, 96, 178, 0.2);
        }

        /* 右侧内容区 */
        .card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            overflow: hidden;
        }
        .title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }
        .school-name {
            font-size: 26px;
            font-weight: 650;
            color: #1e3a6b;
            text-decoration: none;
            letter-spacing: -0.2px;
            border-bottom: 2px solid transparent;
            transition: 0.15s;
            line-height: 1.3;
        }
        .school-name:hover {
            color: #2A60B2;
            border-bottom-color: #FEB47B;
        }
        /* 圆形评分 4.6分 */
        .rating-circle {
            display: inline-flex;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #f5b042;
            color: white;
            font-weight: 700;
            font-size: 15px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 3px 8px rgba(245, 176, 66, 0.3);
            border: 2px solid rgba(255,255,240,0.7);
        }
        .info-line {
            font-size: 13px;
            color: #4a5e75;
            margin: -4px 0 3px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .info-line span {
            background: #eef3fa;
            padding: 2px 8px;
            border-radius: 30px;
            color: #1e3a6b;
            font-weight: 480;
        }
        .level-line {
    font-size: 13px;
    color: #2A60B2;
    font-weight: 520;
    background: #e9f0fc;
    padding: 3px 10px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}
        .level-line i {
            font-style: normal;
            margin: 0 4px;
            color: #7089a8;
        }        
        .level-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}
        .views-count {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 30px;
    color: #1e2b3c;
    background: #eef3fc;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.1s ease, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    white-space: nowrap;
}
.views-count::before {
    content: "👁️";
    font-size: 11px;
    margin-right: 2px;
}
.views-count:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.pin-css {
            position: relative;
            width: 13px;
            height: 13px;
            background: #2A60B2;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            margin-top: -3px;
        }
            
            .pin-css::after {
            content: "";
            position: absolute;
            top: 3px;
            left: 3px;
            width: 7px;
            height: 7px;
            background: white;
            border-radius: 50%;
            }
        /* ========= 移动端专用增强：筛选栏胶囊式美化 + 新闻列表单列 (≤767px) ========= */
        @media (max-width: 767px) {
            /* 筛选栏区域：重新设计为现代胶囊风格，完美换行 */
            .filter-bar {
                height: auto;
                padding: 14px 16px;
                margin: 20px 0 24px 0;
                background: #ffffff;
                backdrop-filter: none;
                border-radius: 20px;
                box-shadow: 0 6px 14px rgba(0, 20, 50, 0.08);
                border: 1px solid rgba(42, 96, 178, 0.2);
            }
            .filter-line {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 12px 10px;
                margin: 0;
            }
            .filter-label {
                font-size: 15px;
                font-weight: 600;
                min-width: auto;
                color: #1e3a6b;
                background: #eef3fc;
                padding: 4px 12px;
                border-radius: 40px;
                letter-spacing: normal;
                display: inline-flex;
                align-items: center;
                white-space: nowrap;
            }
            .filter-tags {
                gap: 10px 12px;
                flex: 1;
            }
            .filter-tags a {
                display: inline-block;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                padding: 6px 16px;
                border-radius: 40px;
                background: #f1f5f9;
                color: #2c3e50;
                border-bottom: none;
                transition: all 0.2s ease;
                white-space: nowrap;
                box-shadow: 0 1px 2px rgba(0,0,0,0.02);
            }
            .filter-tags a:hover {
                transform: translateY(-1px);
                background: #e2eaf5;
                color: #1e3a6b;
            }
            .filter-tags a.active {
    background: #2A60B2;
    color: white;
    font-weight: 600;
    border-bottom: none;

}
            
            /* 新闻列表区域：单列布局，卡片自适应 */
            .news-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .news-card {
                height: auto;
                min-height: 130px;
                padding: 14px 16px;
                gap: 14px;
                align-items: center;
            }
            .img-link {
                width: 80px;
                height: 80px;
                flex-shrink: 0;
            }
            .card-content {
                justify-content: center;
                height: auto;
            }
            .school-name {
                font-size: 20px;
                line-height: 1.35;
            }
            .rating-circle {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }
            .info-line {
                white-space: normal;
                word-break: break-word;
                overflow: visible;
                text-overflow: unset;
                font-size: 12px;
                gap: 8px;
                margin: 5px 0 4px 0;
                flex-wrap: wrap;
            }
            .info-line span {
                white-space: nowrap;
                font-size: 11px;
                padding: 2px 6px;
            }
            .level-line {
                font-size: 11px;
                padding: 3px 10px;
                white-space: normal;
                word-break: break-word;
                display: inline-block;
                max-width: 100%;
            }
            .title-row {
                flex-wrap: wrap;
                gap: 6px;
                margin-bottom: 6px;
            }
            .level-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;
        margin-top: 4px;
    }
    .views-count {
        font-size: 10px;
        padding: 3px 10px;
    }
        }

        /* 极小屏 (≤439px) 下进一步优化胶囊间距 */
        @media (max-width: 439px) {
            .filter-bar {
                padding: 12px 12px;
                margin: 16px 0 20px;
                border-radius: 18px;
            }
            .filter-label {
                font-size: 13px;
                padding: 3px 10px;
            }
            .filter-tags {
                gap: 8px;
            }
            .filter-tags a {
                font-size: 12px;
                padding: 5px 12px;
            }
            .news-card {
                padding: 12px;
                gap: 10px;
            }
            .school-name {
                font-size: 18px;
            }
            .img-link {
                width: 70px;
                height: 70px;
            }
            .rating-circle {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .info-line {
                font-size: 11px;
            }
            .level-line {
                font-size: 10px;
            }
        }        /* ========= 移动端专用增强：筛选栏胶囊式美化 + 新闻列表单列 (≤767px) ========= */
        @media (max-width: 767px) {
            /* 筛选栏区域：重新设计为现代胶囊风格，完美换行 */
            .filter-bar {
                height: auto;
                padding: 14px 16px;
                margin: 15px 0 5px 0;
                background: #ffffff;
                backdrop-filter: none;
                border-radius: 8px;
                box-shadow: 0 6px 14px rgba(0, 20, 50, 0.08);
                border: 1px solid rgba(42, 96, 178, 0.2);
            }
            .filter-line {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 12px 10px;
                margin: 0;
            }
            .filter-label {
        display: none;
    }
    .filter-tags {
        width: 100%;
        justify-content: flex-start;
    }
            .filter-tags a {
                display: inline-block;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                padding: 6px 16px;
                border-radius: 40px;
                background: #f1f5f9;
                color: #2c3e50;
                border-bottom: none;
                transition: all 0.2s ease;
                white-space: nowrap;
                box-shadow: 0 1px 2px rgba(0,0,0,0.02);
            }
            .filter-tags a:hover {
                transform: translateY(-1px);
                background: #e2eaf5;
                color: #1e3a6b;
            }
            
            /* 新闻列表区域：单列布局，卡片自适应 */
            .news-grid {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .news-card {
                height: auto;
                min-height: 110px;
                padding: 6px 12px;
                gap: 14px;
                align-items: center;
            }
            .img-link {
                width: 80px;
                height: 80px;
                flex-shrink: 0;
            }
            .card-content {
                justify-content: center;
                height: auto;
            }
            .school-name {
                font-size: 16px;
                line-height: 1.35;
            }
            .rating-circle {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }
            .info-line {
                white-space: normal;
                word-break: break-word;
                overflow: visible;
                text-overflow: unset;
                font-size: 12px;
                gap: 8px;
                margin: 0 0 9px 0;
                flex-wrap: wrap;
            }
            .info-line span {
                white-space: nowrap;
                font-size: 11px;
                padding: 2px 6px;
            }
            .level-line {
                font-size: 11px;
                padding: 3px 10px;
                white-space: normal;
                word-break: break-word;
                display: inline-block;
                max-width: 100%;
            }
            .title-row {
                flex-wrap: wrap;
                gap: 6px;
                margin-bottom: 6px;
            }
        }

        /* 极小屏 (≤439px) 下进一步优化胶囊间距 */
        @media (max-width: 439px) {
            .filter-bar {
                padding: 12px 12px;
                margin: 15px 0 5px;
                border-radius: 8px;
            }
            .filter-label {
                font-size: 13px;
                padding: 3px 10px;
            }
            .filter-tags {
                gap: 8px;
            }
            .filter-tags a {
                font-size: 12px;
                padding: 5px 12px;
            }
            .news-card {
                padding: 6px 12px;
                gap: 10px;
            }
            .school-name {
                font-size: 15px;
            }
            .img-link {
                width: 70px;
                height: 70px;
            }
            .rating-circle {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .info-line {
                font-size: 11px;
            }
            .level-line {
                font-size: 10px;
            }
        }
        
.pager {text-align: center; margin: 20px 0;}
.pager ul {display: flex; flex-wrap: wrap; justify-content: center}
.pager ul li {display: inline-block;}
.pager ul li a {padding: 5px 15px; margin: 15px 5px; border: #dddddd solid 1px; display: inline-block;}
.pager ul li a:hover {border: #2a60b2 solid 1px; color: #2a60b2}
.pager ul .active a {border: #2a60b2 solid 1px; display: inline-block; background-color: #2a60b2; color: #fff;}
.pager ul a:not([href]):not([class]):hover {border: #dddddd solid 1px;}
.pager ul .active a:hover {color: #fff; border: #2a60b2 solid 1px !important;}