
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }
        .flex{
            display: flex;
        }
        body {
            color: #333;
            line-height: 1.5;
            font-size: 14px;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        a{text-decoration: none;}
        /* 状态栏 */
        .status-bar {
            background-color: #fff;
            padding: 10px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            color: #000;
            height: 44px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .status-left {
            display: flex;
            align-items: center;
        }
        
        .status-time {
            font-weight: 600;
            margin-right: 5px;
        }
        
        .status-icons {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        /* 顶部导航栏 - 第二张图样式 */
        .site-header {
            background-color: #2f3f9c;
            color: white;
            padding: 12px 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .news-more{
            text-align: center;
            padding: 12px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .back-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        
        .site-title {
            font-size: 18px;
            font-weight: bold;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .header-icon {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }
        
        /* 下拉菜单 - 第一张图样式 */
        .dropdown-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            display: none;
        }
        
        .dropdown-overlay.active {
            display: block;
        }
        
        .dropdown-menu {
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            max-width: auto;
            background-color: #0056b3;
            color: white;
            z-index: 2001;
            display: flex;
            flex-direction: column;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .dropdown-menu.active {
            transform: translateX(0);
        }
        
        .dropdown-header {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        }
        
        .dropdown-logo {
            display: flex;
            align-items: center;
        }
        
        .dropdown-logo i {
            font-size: 24px;
            margin-right: 10px;
        }
        
        .dropdown-logo-text {
            font-size: 18px;
            font-weight: bold;
        }
        
        .dropdown-url {
            font-size: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
            margin-top: 5px;
        }
        
        .dropdown-close {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .dropdown-search {
            padding: 15px 16px;
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
        }
        
        .search-box {
            display: flex;
            border-radius: 20px;
            overflow: hidden;
            background: #ffffffd9;
            border: 1px solid #FFFFFF;
            height: 40px;
        }
        
        .search-box input {
            flex: 1;
            border: none;
            padding: 12px 15px;
            font-size: 14px;
            outline: none;
            background: transparent;
            color: #333;
        }
        
        .search-btn {
            background-color: #6BE5CC;
            border: none;
            color: white;
            padding: 0 14px;
            cursor: pointer;
            font-size: 16px;
            width: 40px;
            height: 40px;
            border-radius: 100%;
            float: right;
        }
        
        .dropdown-nav {
            flex: 1;
            overflow-y: auto;
            padding: 0 20px;
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 16px;
            color: white;
            text-decoration: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.24);
            font-size: 16px;
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 0 0px;
        }
        
        /* 文字大头条 */
        .main-headline {
            background-color: white;
            padding: 30px 22px;
            background: #f9f9f9;
        }
        
        .headline-tag {
            display: inline-block;
            background-color: #e6f2ff;
            color: #0056b3;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        
        .headline-title {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.4;
            margin-bottom: 12px;
            color: #333;
        }
        
        .headline-date {
            font-size: 14px;
            color: #888;
        }
        
        /* 新闻稿件标题列表 - 向上滚动 */
        .news-title-list {
            background-color: #F9F9F9;
            border-radius: 4px;
            overflow: hidden;
            height: 36px;
            position: relative;
            padding: 5px 15px;
        }
        
        .news-title-scroll {
            animation: scrollUp 8s linear infinite;
            background-image: linear-gradient(270deg, #ededed21 2%, #F1F1F1 95%);
        }
        
        .news-title-scroll:hover {
            animation-play-state: paused;
        }
        
        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            25% {
                transform: translateY(-36px);
            }
            50% {
                transform: translateY(-72px);
            }
            75% {
                transform: translateY(-108px);
            }
            100% {
                transform: translateY(-144px);
            }
        }
        
        .news-title-item {
            height: 36px;
            display: flex;
            align-items: center;
            padding: 0 16px;
            /* border-bottom: 1px solid #f0f0f0; */
            white-space: nowrap;
        }
        
        .news-title-item:last-child {
            border-bottom: none;
        }
        
        .news-title, .news-title a {
            font-size: 16px;
            line-height: 1.4;
            color: #333;
            overflow: hidden;
            text-overflow: ellipsis;
            position: relative;
            padding-left: 16px;
            font-weight: 400;
            color: #00000080;
        }
        .news-title:before {
            content: '';
            width: 5px;
            height: 5px;
            background: #004EB3;
            display: block;
            position: absolute;
            left: 0;
            top: 8px;
        }
        
        /* 要闻部分 */
        .section-container{
            padding: 0 15px;
            background: #f9f9f9;
        }

        .zhiku-section{            
            background: url('../2026images/bg_home_shade_zhiku@3x.png') no-repeat;
            background-size: auto;
            margin-top: 85px;
        }
        .section-header {
            /* display: flex;
            justify-content: space-between;
            align-items: center; */
            padding: 16px 0 12px;
            position: relative;
        }
        
        .section-title {
            font-size: 18px;
            color: #0056b3;
            font-weight: bold;
            text-align: center;
        }
        
        .more-link {
            color: #666;
            font-size: 14px;
            text-decoration: none;
            position: absolute;
            right: 20px;
            top: 25px;
        }
        
        /* Swiper轮播图通用样式 */
        .section-container .swiper-container {
            width: 100%;
            height: 340px;
            border-radius: 0;
            overflow: hidden;
            position: relative;
            padding-top: 13px;
        }
        .xiansheng-section{padding: 0 15px;}
        .xiansheng-section .swiper-container {
            width: 100%;
            height: 175px;
            border-radius: 0;
            overflow: hidden;
        }
        .xiansheng-section .swiper-container .swiper-slide {
            position: relative;
        }
        .xiansheng-section .swiper-container .swiper-slide .swiper-content {
            position: absolute;
            bottom: 0;
            padding: 0 10px;
            width: 100%;
            height: 56px;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .xiansheng-section .swiper-container .swiper-slide .swiper-content::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            /* opacity: 0.7;
            background-image: linear-gradient(180deg, #F6F9FF 0%, #FFFFFF 77%);
            filter: blur(6px); */
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            background: rgb(255 255 255 / 50%);
            width: 100%;
            height: 56px;
            z-index: -1;
        }
        .xiansheng-section .swiper-container .swiper-slide .swiper-content .swiper-title, .xiansheng-section .swiper-container .swiper-slide .swiper-content .swiper-title a{
            font-weight: 500;
            font-size: 15px;
            color: #000121;
        }
        
        .shengxue-section{
            padding: 15px;
        }
        .shengxue-section .swiper-container {
            width: 100%;
            height: 260px;
            border-radius: 0;
            overflow: hidden;
        }
        
        /* 升学模块图片高度 */
        .shengxue-section .swiper-image {
            height: 145px;
        }
        
        .shengxue-section .swiper-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px 16px;
            background-image: linear-gradient(58deg, #ECF4FF 6%, #E3F1FF 100%);
        }
        /* 升学模块时间样式 */
        .school-time {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
        }
        
        .swiper-slide {
            position: relative;
        }
        
        .swiper-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .swiper-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px 16px;
        }
        
        .swiper-title, .swiper-title a {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            color: #004EB3;
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
        .school-grid-info{
            font-weight: 500;
            font-size: 12px;
            color: #000121;
            margin-top: 10px;
        }
        
        .swiper-pagination {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }
        
        .swiper-pagination-bullet-active {
            background-color: white;
        }
        
        /* 可滑动新闻列表 */
        .sliding-news-container {
            position: relative;
            overflow: hidden;
            /* background-color: white; */
            margin-bottom: 15px;
            /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
        }
        
        .sliding-track {
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .sliding-page {
            flex: 0 0 100%;
            /* display: flex;
            flex-wrap: wrap; */
        }
        
        .sliding-news-item {
            flex: 0 0 50%;
            padding: 15px;
            /* border-right: 1px solid #f0f0f0; */
            border-bottom: 1px solid #DFDFDF;
            box-sizing: border-box;
        }
        
        .sliding-news-item:nth-child(2n) {
            border-right: none;
        }
        
        .sliding-news-item:nth-last-child(-n+2) {
            /* border-bottom: none; */
        }
        
        .new-time{
            display: flex;
            float: left;
            margin-right: 20px;
            width: 62px;
            height: 40px;
            justify-content: center;
            align-items: center;
            padding: 22px 30px 22px 40px;
            position:relative;
        }
        .new-time:hover{
            border: 1px solid #004EB3;
        }
        .new-time:hover:before{
            content:'';
            position:absolute;
            right:0;
            top:0;
            border-left:1px solid #004EB3;
            border-bottom:1px solid #004EB3;
            width: 68px;
            height:40px
        }

        .news-number {
            width: 54px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-weight: 500;
            font-size: 23px;
            color:#000121;
            float: left;
            margin-right: 10px;
        }
        
        .news-title-small, .news-title-small a {
            font-size: 15px;
            line-height: 1.4;
            color: #000121;
            font-weight: 500;
            font-family: "SourceHanSerifCN-Medium";
            min-height: 30px;
        }
        .news-author{
            font-weight: 500;
            font-size: 11.9px;
            color: #00012175;
            margin-top: 9px;
        }
        .region-news-time{
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: right;
            font-weight: 500;
            font-size: 13px;
            color: #00000075;
            margin-top: 8px;
        }
        .region-news-time img{
            width: 13px;
            height: 13px;
            margin-right: 5px;
        }
        
        .news-date {
            font-size: 15px;
            color:#000121;
            margin-top: 0px;
            position:relative;
            text-align: center;
        }
        .news-date:before{
            content:'/';
            position:absolute;
            right: 100%;
            top:5px;
            color:#000121;
        }
        .news-date p{
            font-size: 8px;
            color: #000121;
        }
        
        .sliding-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px;
        }
        
        .sliding-prev, .sliding-next {
            background: none;
            border: none;
            color: #0056b3;
            font-size: 18px;
            cursor: pointer;
        }
        
        .sliding-indicators {
            display: flex;
            gap: 0px;
            background-color: #004DB12e;
            border-radius: 3.5px;
        }
        
        .sliding-indicator {
            width: 22px;
            height: 6px;
            border-radius: 3.5px;
            /* background-color: #004DB12e; */
        }
        
        .sliding-indicator.active {
            background-color: #004DB1;
        }
        
        /* 区域模块 */
        .region-section {
            background-color: white;
            margin-bottom: 40px;
        }
        
        .region-content {
            padding: 16px 20px;
            /* border-bottom: 1px solid #f0f0f0; */
            background: url("../2026images/bg_home_shade_quyu02@3x.png");
            background-size: contain;
            position: relative;
            width: auto;
        }
        
        .region-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            margin-bottom: 12px;
        }
        
        .region-news-title, .region-news-title a{
            font-size: 16px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0px;
            margin-top: -58px;
            position: relative;
            z-index: 1;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            padding: 8px 5px 10px 5px;
            color: #000121;
        }
        .region-news-title:after{
                content:'';
                position:absolute;
                bottom:0;
                backdrop-filter: blur(4px);
                -webkit-backdrop-filter: blur(4px);
                background: rgb(255 255 255 / 50%);
                width: 100%;
                height: 40px;
                left: 0;
                z-index: -1;
        }
        
        
        /* 学校模块 */
        .school-section {
            background-color: white;
            padding: 0 15px;
            position: relative;
        }
        .school-news-list{
            background: url("../2026images/bg_home_shade_mountain@3x.png") no-repeat bottom!important;
            background-size: 100%!important;
            padding-bottom: 60px!important;
        }
        
        /* 小记者模块 */
        .reporter-section {
            margin-bottom: 40px;
            padding: 0 15px;
        }
        .edupaper-section{
            margin-bottom: 10px;
            padding: 0 15px;
        }
        .hnedu-section{
            height: 320px;
            position: relative;
            margin-bottom: 40px;
        }
        .hnedu-section::before{
            content: "";
            position: absolute;
            left: 0;
            top: 55px;
            width: 100%;
            height: 100%;
            background: url("../2026images/bg_home_shade_jiaoyu01@3x.png") no-repeat left bottom;
            background-size: auto 100%;
        }
        .hnedu-section::after{
            content: "";
            position: absolute;
            left: -12px;
            top: -60px;
            width: 100%;
            height: 100%;
            background: url("../2026images/bg_home_shade_jiaoyu02@3x.png") no-repeat left top;
            background-size: 34% auto;
            z-index: -1;
        }
        .hnedu-section .section-hnedu{
            overflow: hidden;
            width: 70%;
            margin: 0 25px;
            float: right;
            margin-top: 35px;
        }
        .hnedu-section .swiper-pagination{
            bottom: -35px;
        }
        
        /* hnedu轮播图样式 - grid布局一列显示两个 */
        .hnedu-swiper .swiper-container {
            width: 100%;
            height: 200px;
            box-shadow: 0 2px 20px 0 #151a211c;
        }
        
        .hnedu-swiper .swiper-slide {
            border-radius: 0px;
            padding: 0 12px;
            display: grid;
            grid-template-rows: auto auto;
            gap: 8px;
            border-bottom: 1px #DFDFDF solid;
            height: 80px!important;
        }
        
        .hnedu-swiper .swiper-slide a {
            font-size: 15px;
            line-height: 1.5;
            color: #000121;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 45px;
        }
        
        .hnedu-swiper .time {
            font-size: 12px;
            color: #999;
            display: flex;
            justify-content: right;
            align-items: center;
            gap: 4px;
            float: right;
        }
        
        .hnedu-swiper .time img {
            width: 14px;
            height: 14px;
        }
        
        /*智库模块*/
        .zhiku-body{
            padding: 0 15px;
        }
        .zhiku-item{
            padding: 20px 22px;
            box-shadow: 0 2px 29px 0 #00000008;
            margin: 20px 0;
            background: #fff;
        }
        .zhiku-body div:nth-child(1){padding-top: 12px;margin-top: 0;}
        .zhiku-item a{
            text-decoration: none;
        }
        .zhiku-item a .zhiku-item-image{
            max-width: 100%;
            min-height: 211px;
        }
        .zhiku-item a .zhiku-item-title{
            font-weight: 700;
            font-size: 15px;
            color: #000121;
            line-height: 24px;
        }
        .zhiku-item a .zhiku-item-desc{
            font-weight: 500;
            font-size: 12px;
            color: #000121;
            text-align: justify;
            line-height: 19px;
            margin-top: 10px;
            margin-bottom: 7px;
        }
        .zhiku-item a .zhiku-item-titme{
            font-weight: 700;
            font-size: 18px;
            color: #D8D8D8;
            line-height: 24px;
        }
        .zhiku-item a .zhiku-item-titme span{
            font-weight: 500;
            font-size: 18px;
            color: #D8D8D8;
            font-family: SourceHanSerifCN-Bold;
        }
        .zhiku-more{float: right;width: 30px; height: 30px;}

        /* 升学模块图片区 */
        .shengxue-images {
            /* display: flex;
            padding: 16px;
            gap: 10px; */
            margin: 12px auto;
            overflow: hidden;
        }
        
        .shengxue-small-image {
            width: 100%;
            min-height: 145px;
            margin: 12px auto;
            float: left;
        }
        
        /* 新闻列表通用样式 */
        .news-list {
            padding: 0;
            background: url("../2026images/bg_home_shade_quyu02@3x.png");
            background-size: contain;
        }
        
        .region-news-list{
            padding: 0 15px;
            height: auto;
            /* overflow-y: auto; */
        }
        .news-list-item {
            display: flex;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .news-list-item:last-child {
            /* border-bottom: none; */
        }
        
        .news-list-content {
            flex: 1;
        }
        
        /* 高教和职教合并模块 - 可滑动切换 */
        .gaojiao-zhijiao-section {
            background-color: white;
            margin-bottom: 40px;
            /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
        }
        
        .tab-header {
            display: flex;
            /* border-bottom: 1px solid #f0f0f0; */
            margin: 0 90px;
            padding-bottom: 0;
            position:relative;
        }
        .tab-header:before{
            content:'';
            position:absolute;
            width:1px;
            height:20px;
            left: 42%;
            top:10px;
            border-right:1px solid #BEBEBE;
        }
        
        .tab-item {
            flex: 1;
            text-align: center;
            padding: 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
        }
        
        .tab-image {
            width: auto;
            height: 40px;
            display: block;
        }
        
        .tab-content {
            position: relative;
            overflow: hidden;
        }
        
        .tab-track {
            display: flex;
            transition: transform 0.3s ease;
        }
        
        .tab-panel {
            flex: 0 0 100%;
            padding: 16px 36px;
            background: url("../2026images/bg_home_shade_gaojiao01@3x.png") no-repeat top;
            background-size: 92% 100%;
            height: 675px;
            position: relative;
            margin-top: 10px;
            padding-top: 30px;
        }
        .tab-panel:before{
                content:"";
                position:absolute;
                right:0;
                bottom:0;
                background:url("../2026images/bg_home_shade_gaojiao02@3x.png") no-repeat bottom;
                background-size: 100%;
                width:140px;
                height:84px;
                padding-bottom: 40px;
        }

        
        .image-grid-container {
            display: grid;
            /* grid-template-columns: 1fr 1fr; */
            gap: 12px;
        }
        
        .image-grid-item {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            cursor: pointer;
            height: 35px;
            border-bottom: 1px solid #DFDFDF;
            margin-top: 0px;
        }
        
        .image-grid-item img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            display: block;
        }
        
        .image-grid-overlay {
        }
        
        .image-grid-title, .image-grid-title a {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            color: #000121;

        }
        
        /* 底部信息 */
        .site-footer {
            background-color: #2f304c;
            color: white;
            padding: 25px 16px 15px;
            text-align: center;
        }
        
        .footer-logo {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: left;
        }
        
        .footer-info {
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .qrcode-section {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            gap: 20px;
        }
        
        .qrcode {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 12px;
            flex-direction: column;
            line-height: 2;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
            width: 92%;
            margin-top: 20px;
        }
        
        .footer-link {
            color: white;
            text-decoration: none;
            font-size: 13px;
            width: 20%;
            padding-left: 10px;
            text-align: left;
            position: relative;
        }
        .footer-link::before{
            content: "";
            position: absolute;
            border: 2px solid white;
            left: 0;
            top: 8px;
        }
        
        .copyright {
            font-size: 12px;
            opacity: 0.6;
            padding-top: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .copyright p{
            text-align: left;
            margin: 5px auto;
        }
        
        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 100px;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            width: 50px;
            text-align: center;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            margin-top: 10px;
        }
        .back-to-top a img{
            width: 50px;
            height: 48px;
        }
        
        /* 响应式调整 */
        @media (max-width: 850px) {
        }
            .headline-title, .headline-title a {
                font-size: 22px;
                color: #004EB3;
                text-align: center;
                position:relative;
            }
            .headline-title:before{
                    content:'';
                    position:absolute;
                    right: -18px;
                    top: -10px;
                    background:url("../2026images/icon_home_stars@3x.png") no-repeat;
                    background-size: contain;
                    width:24px;
                    height:20px;
                    z-index: 9;
            }
            
            .school-section .swiper-container {
                height: 312px;
                position: relative;
                width: 100%;
                overflow: hidden;
                box-shadow: 0 2px 20px 0 #151a2114;
            }
            .swiper-school-pre{
                width: 28px;
                height: 28px;
                background: url("../2026images/icon_home_arrow_grey_right_little@3x.png") no-repeat;
                background-size: contain;
                transform: rotate(180deg);
                position: absolute;
                left: 5px;
                top: 18%;
                z-index: 9;
            }
            .swiper-school-next{
                width: 28px;
                height: 28px;
                background: url("../2026images/icon_home_arrow_grey_right_little@3x.png") no-repeat;
                background-size: contain;
                position: absolute;
                right: 5px;
                top: 18%;
                z-index: 9;
            }
            .school-more{
                text-align: right;
            }
            .school-more img{
                height: 20px;
            }
            .swiper-image{
                height: 200px;
            }
            .school-section .swiper-content{
                position: absolute;
                bottom: auto;
                left: 0;
                right: 0;
                background: none;
                padding: 5px 16px;
                font-weight: 700;
                font-size: 15px;
                color: #000121;
                background: #fff;
                box-shadow: 0 2px 20px 0 #151a2114;
            }
            .section-container .swiper-content {
                position: absolute;
                bottom: auto;
                left: 0;
                right: 0;
                background: none;
                padding: 13px 16px;
                font-weight: 700;
                font-size: 15px;
                color: #000121;
                background: #F1F1F1;
                height: 150px;
            }
            .section-container .swiper-content .swiper-title, .section-container .swiper-content .swiper-title a{
                display: block;
                white-space: break-spaces;
                color: #000121;
                font-weight: 700;
            }

            #div_yaowenSwiper .swiper-slide{

            }
            #div_yaowenSwiper .swiper-slide .swiper-image{height: 240px;display: block;}
            
            #div_yaowenSwiper .swiper-slide .yaowen-times{
                height: 63px;
                width: 60px;
                background: #fff;
                border-top: 3px solid #004EB3;
                text-align: center;
                position: absolute;
                top: -13px;
            }
            #div_yaowenSwiper .swiper-slide .yaowen-times .times{
                position: relative;
                font-weight: 700;
                font-size: 25px;
                color: #000121;
                width: 100%;
                display: block;
                font-family: SourceHanSerifCN-Bold;
            }
            #div_yaowenSwiper .swiper-slide .yaowen-times .times::after{
                content: '';
                position: absolute;
                transform: rotate(-5deg);
                border-bottom: 0.2px solid #979797;
                width: 26px;
                top: 35px;
                left: 50%;
                margin-left: -13px;
            }
            #div_yaowenSwiper .swiper-slide .yaowen-times .date{
                font-size: 7px;
                color: #00011f66;
                line-height: 10px;
                font-family: Helvetica;
                font-family: Helvetica;
                zoom: 0.8;
            }

            #div_yaowenSwiper .slider-pre{
                position: absolute;
                bottom: 8px;
                right: 50px;
                width: 20px;
                height: 20px;
                background: url("../2026images/icon_home_arrow_grey_left01@3x.png") no-repeat;
                background-size: 100% 100%;
                z-index: 9;
            }
            #div_yaowenSwiper .slider-next{
                position: absolute;
                bottom: 8px;
                right: 10px;
                width: 20px;
                height: 20px;
                background: url("../2026images/icon_home_arrow_blue_right@3x.png") no-repeat;
                background-size: 100% 100%;
                z-index: 9;
            }
            .region-image, .school-image {
                height: 210px;
            }
        
        /* 触摸滑动优化 */
        .touch-slide {
            -webkit-overflow-scrolling: touch;
        }
        
        .no-select {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }