   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
      html, body {
    overflow-x: hidden; /* 禁用横向滚动条 */
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Microsoft YaHei', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y; /* 只允许垂直方向的平移手势，阻止横向 */
}


        .top-banner {
            background-color: #fff;
            color: #ec6400;
            padding: 8px 5%;
            text-align: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 101;
            display: flex;
            justify-content: center; /* MODIFIED: Center the slogan */
            align-items: center;
            font-size: 1.05rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .top-banner .slogan {
            font-weight: 400;
            font-size:14px;
            letter-spacing: 1px;
            color:#454545;
        }
        .top-banner .slogan strong {
            display: inline-block;
            opacity: 0;
            transform: translateY(-10px);
            animation: fadeInSlogan 0.8s 0.5s forwards ease-out;
        }
        @keyframes fadeInSlogan {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Phone icon animation removed as phone is removed */
        
        .header {
            background-color: #006999; /* This is the target color for feature items */
            color: #fff;
            z-index: 100; 
            position: fixed;
            width: 100%;
            left: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .container {
            width: 90%;
            margin: 0 auto;
            max-width: 1200px;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .logo { display: flex; align-items: center; }
        .logo-text h1 { font-size: 1.26rem; margin-bottom: 0; color: #fff; }
        .nav-menu { display: flex; list-style: none; }
        .nav-menu li { margin-left: 25px; }
        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-menu a:hover { color: #4dc4ff; }
        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #4dc4ff;
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after { width: 100%; }
        .menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; color: #fff; }
        
      .highlight-blue {
    color: #4590c0; /* 主题蓝色 */
    font-weight: 600; /* 可选：稍微加粗一点以更突出 */
}
	  
.banner {
    padding-top: 70px; /* <<< 这里设置为 Header 的高度 */
    width: 100%;
    position: relative;
    /* 其他 .banner 样式 */
}

.banner .static-banner-image {
    display: block;
    width: 100%;
    height: auto;
    /* 如果之前因为 padding-top 导致图片被推下，
       而你希望图片本身占据 banner 调整后的全部空间，
       确保图片的 height/max-height 适应。
       但通常 padding-top 是为了给 banner 内部的内容腾出空间。
       如果 static-banner-image 是 banner 的唯一内容且希望它从 header 下方开始，
       方法 B 可能更直接。 */
}
/* 
   重要：
   您需要检查并移除/注释掉之前可能为 .banner 或其内部元素
   （如 .swiper-container, .swiper-slide, .swiper-pagination 等）
   编写的任何与 Swiper 轮播相关的 CSS 样式。
   这些样式可能会干扰静态图片的显示。
*/

/* 例如，如果之前有类似这样的样式，需要移除或注释掉：
.banner .swiper-container {
    ...
}
.banner .swiper-wrapper {
    ...
}
.banner .swiper-slide {
    ...
}
.banner .swiper-pagination {
    ...
}
*/		
        .btn {
            display: inline-block;
            background-color: #ff5252;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .btn1 { 
            display: inline-block;
            background-color: #ff5252;
            color: white;
            padding: 10px 25px; 
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.3s, opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
            margin-top: -85px; 
            position:relative;
            z-index: 3;
            opacity: 0;
            transform: translateY(20px) scale(0.9);
            font-size: 0.9rem; 
        }
        .banner.show .btn1 { opacity: 1; transform: translateY(0) scale(1); }
        
        @media (hover: hover) and (pointer: fine) {
            .btn:hover, .btn1:hover {
                background-color: #ff5252;
                transform: translateY(-3px);
                box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            }
            .btn1:hover { transform: translateY(-3px) scale(1.05); }
        }
        
        .section-title { text-align: center; margin-bottom: 40px; position: relative; }
        .section-title h2 {
            font-size: 2rem; 
            color: #4590c0;
            display: inline-block;
            padding-bottom: 10px;
            position: relative;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background-color: #f9a03f;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.6s ease-out 0.3s;
        }
        .fade-in.show .section-title h2::after { width: 70px; }
        
/* ==========================================================================
   News Section Styles
   ========================================================================== */
.news-section {
    padding: 60px 0; /* Or use your .section-padding class if it provides this */
    background-color: #ffffff; /* Or #f9f9f9 for a light grey background */
}

/* If you have a generic .section-padding, you might not need the padding on .news-section itself */
/* .section-padding {
    padding: 60px 0;
} */

/* Title specific to news, if different from generic .section-title */
.news-section .section-title h2 {
    /* color: #your_news_title_color; */ /* Example: #2c3e50 */
}
.news-section .section-title h2 i {
    margin-right: 10px;
    color: #f9a03f; /* Theme orange for the icon */
}
.news-section .section-title p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px auto; /* Center the paragraph and add bottom margin */
}


.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between news items */
}

.news-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* To make content fill height if items have different content lengths */
    flex-direction: column;
    border-top: 4px solid #f9a03f; /* Theme Orange for news item top border */
}

@media (hover: hover) and (pointer: fine) {
    .news-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }
}

.news-content {
    padding: 20px 25px 25px; /* More padding at the bottom for the 'read more' link */
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows content to expand and push 'read more' to bottom */
}

.news-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping if category and date are too long */
}

.news-date {
    margin-right: 15px; /* Space between date and potential category */
    display: inline-flex; /* Align icon and text */
    align-items: center;
}
.news-date i {
    margin-right: 6px;
    color: #4590c0; /* Theme Blue for date icon */
}

/* Optional: Category styling */
.news-category {
    background-color: #e9ecef;
    color: #495057;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}


.news-title {
    font-size: 1.2rem; /* Slightly larger title */
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    /* Removed color here to let <a> tag handle it */
}

.news-title a {
    color: #333; /* Dark color for title link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #f9a03f; /* Theme orange on hover */
}

.news-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1; /* Allows excerpt to take available space before 'read more' */

    /* For truncating text to a specific number of lines */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(0.9rem * 1.6 * 3); /* Fallback height for 3 lines */
}

.news-more {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4590c0; /* Theme Blue */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-top: auto; /* Pushes the link to the bottom of .news-content */
}

.news-more:hover {
    color: #f9a03f; /* Theme Orange on hover */
}

.news-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.news-more:hover i {
    transform: translateX(4px);
}

/* "View All" button specific styling if needed, or use generic .btn */
.news-section .btn-primary { /* Assuming .btn-primary uses one of your theme colors */
    /* background-color: #4590c0; */ /* Example if you want to force blue */
    /* border-color: #4590c0; */
}
.news-section .btn-primary:hover {
    /* background-color: #3a79a7; */
    /* border-color: #3a79a7; */
}      

/* ==========================================================================
   历年成绩 (Achievements Section) Styles
   ========================================================================== */

/* --- 通用区块标题样式 (如果您其他地方也用到了 .section-title，这部分可能已存在) --- */
.section-title {
    text-align: center;
    margin-bottom: 40px; /* 标题和下方内容的间距 */
    position: relative;
}

.section-title h2 {
    font-size: 2rem; /* 标题字号 */
    color: #4590c0;   /* 标题颜色 (主题蓝) */
    display: inline-block; /* 为了让::after伪元素能基于文字宽度定位 */
    padding-bottom: 10px; /* 为下划线留出空间 */
    position: relative;
    font-weight: 700; /* 标题字重 */
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 0; /* 初始宽度为0，通过JS或CSS动画展开 */
    height: 3px; /* 下划线高度 */
    background-color: #f9a03f; /* 下划线颜色 (主题橙) */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* 相对于h2居中 */
    transition: width 0.6s ease-out 0.3s; /* 下划线展开动画 */
}
/* 当.fade-in应用到.section-title且可见时，展开下划线 */
.section-title.fade-in h2::after,
.section-title:not(.fade-in) h2::after { /* 如果没有fade-in也直接显示 */
    width: 60px; /* 下划线最终宽度，可以根据标题长度调整 */
}


/* --- 历年成绩区域特定样式 --- */
.achievements-section {
    padding: 50px 0; /* 上下内边距 */
    background-color: #f9f9f9; /* 背景色 */
}

/* Styling for the main title of this section */
.achievements-section .section-title h2 {
    color: #ff5252; /* 喜报区域主标题改为红色 */
}
.achievements-section .section-title h2 i {
    /* If the icon color was different, adjust it or inherit */
    /* color: #ff5252; /* Example: make icon red too */
    /* color: #f9a03f; /* Or keep it orange as an accent */
}
/* You might have a generic .section-title p rule, if not, and you want to style it: */
/* .achievements-section .section-title p {
    color: #555;
} */


.achievements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.achievement-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* border-top: 4px solid #4590c0; */ /* REMOVED blue top border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
    .achievement-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

.achievement-content {
    padding: 20px; /* Padding remains */
    flex-grow: 1;
    display: flex;
    flex-direction: column;

    /* border-top: 4px solid #ff5252; */ /* REMOVED red top border from content area */

    /* 内容区域的淡红色渐变背景 (Kept) */
    /* 您可以选择以下任一渐变效果，或者自定义： */
    /* 选项 1: 柔和的粉红色调渐变 */
    background-image: linear-gradient(to bottom, #ffebee, #fff5f5);
    /* 选项 2: 基于 #ff5252 的更透明的渐变 */
    /* background-image: linear-gradient(to bottom, rgba(255, 82, 82, 0.1), rgba(255, 82, 82, 0.03)); */
    /* 选项 3: 另一种淡粉色渐变 */
    /* background-image: linear-gradient(to bottom, #fff0f0, #fffafa); */
}

.achievement-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.achievement-date i {
    margin-right: 5px;
    color: #f9a03f; /* 日期图标颜色 (主题橙) - Kept as an accent */
}

.achievement-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff5252; /* 喜报标题颜色 (红色) - Matches section title */
}

.achievement-excerpt {
    font-size: 0.9rem;
    color: #555; /* 摘要颜色 (确保在淡红背景上的对比度) */
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(0.9rem * 1.6 * 3);
    flex-grow: 1;
}

.achievement-more {
    display: inline-block;
    color: #c62828; /* “阅读更多”链接颜色 (较深的红色) */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.achievement-more:hover {
    color: #f9a03f; /* 悬停时变为主题橙色 */
}

.achievement-more i {
    margin-left: 4px;
    transition: transform 0.3s ease;
}
.achievement-more:hover i {
    transform: translateX(3px);
}


.view-all-achievements {
    text-align: center;
    margin-top: 30px;
}


        .about { padding: 50px 0; background-color: #fff; }
        .about-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
        .about-text { flex: 1; width: 100%; }
        .about-text h2 {
            font-size: 2rem; 
            color: ##555;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            text-align: center; 
        }
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%; 
            transform: translateX(-50%); 
            width: 0;
            height: 3px;
            background-color: #f9a03f;
            transition: width 0.6s ease-out 0.3s;
        }
        .fade-in-left.show .about-text h2::after, 
        .fade-in-up.show .about-text h2::after { width: 70px; }
        .about-text p { margin-bottom: 15px; font-size: 0.95rem; color: #555; text-align: justify; }
        .about-text .btn { margin:0 auto; margin-top: 10px;   }
        .about-image {
            flex: 1;
            width: 100%;
            max-width: 560px; 
            margin: 0 auto; 
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative; 
            padding-bottom: 56.25%; 
            height: 0; 
        }
        .about-image iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

        .key-features-section {
            padding: 50px 0;
            background-color: #f9f9f9; /* Section background, items will have header blue */
        }
        .features-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 30px; }
        .feature-item {
    /* 保留您原有的结构和间距样式 */
    padding: 30px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;

    /* --- 新的淡色渐变背景 --- */
    background-image: linear-gradient(
        to bottom,       /* 渐变方向：从上到下 */
        #e6f3f8,         /* 顶部颜色：一个淡雅的蓝色 */
        #fafdff 80%      /* 底部颜色：接近白色，并在80%的位置基本完成过渡 */
    );
    
    /* 备用纯色背景 */
    background-color: #f0f8ff;
}

/* 可选的悬停效果 (保持或调整) */
@media (hover: hover) and (pointer: fine) {
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.09);
    }
}


        .feature-icon {
            font-size: 2.8rem;
            color: #006999; 
            margin-bottom: 15px;
            display: inline-block;
        }
        .feature-item h3 {
            font-size: 1.3rem;
            color: #006999;
            margin-bottom: 8px;
        }
        .feature-item p {
            font-size: 0.9rem;
            color: #454545;
            line-height: 1.5;
        }
        .feature-item p sup { font-size: 0.7em; top: -0.5em; color: #fff; }


  .campus { padding: 50px 0; background-color: #fff; }
        .campus-swiper-container {
            width: 100%;
            padding-top: 10px; /* Space for title */
            padding-bottom: 50px; /* Space for pagination */
            margin-top: 30px;
        }
        .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff; /* Or transparent if items have their own background */
            /* Center slide content vertically */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden; /* Important for border-radius on items */
            border-radius: 8px; /* Apply radius to slide if items don't fill it */
        }

        .campus-item {
            width: 100%; /* Make item fill the slide */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            display: block; /* To make it a clickable block */
            text-decoration: none; /* Remove underline from link */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        @media (hover: hover) and (pointer: fine) {
            .campus-item:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            }
        }

        .campus-item img {
            width: 100%;
            height: 220px; /* Adjust height as needed */
            object-fit: cover;
            display: block;
        }

        .campus-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 20%, transparent);
            color: white;
            transform: translateY(0);
            opacity: 1;
            transition: opacity 0.3s, background 0.3s;
        }
         .campus-item:hover .campus-item-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 30%, transparent);
        }

        .campus-item-overlay h4 {
            margin: 0; /* Reset margin */
            font-size: 1rem;
            font-weight: 600;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        /* Swiper Pagination and Navigation (Optional, customize as needed) */
        .swiper-pagination-bullet {
            background: #aaa;
            opacity: 0.7;
        }
        .swiper-pagination-bullet-active {
            background: #f9a03f; /* Your theme accent color */
            opacity: 1;
        }
        .swiper-button-next, .swiper-button-prev {
            color: #f9a03f; /* Your theme accent color */
            transform: scale(0.8);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 28px;
            font-weight: bold;
        }
        /* --- End of Campus Carousel Styles --- */

        /* Remove old campus grid styles if they conflict */
        /* .campus-gallery { display: grid; ... } */

/* ==========================================================================
   菁英师资 Section Styles
   ========================================================================== */
.teachers-section {
    /* background-color: #f8f9fa; */ /* Or your desired background, if not white */
    /* padding-top and padding-bottom will come from .section-padding */
}

.teachers-section .section-title h2 {
    /* Your h2 styling if needed, e.g., color */
}
.teachers-section .section-title h2 i { /* If you add an icon to the title */
    margin-right: 10px;
    /* color: #4590c0; */
}
.teachers-section .section-title p {
    /* Your p styling for the subtitle */
}

.teachers-swiper-container { /* This is your .swiper-container */
    width: 100%;
    padding-top: 20px; /* Space above slides */
    padding-bottom: 50px; /* Space for pagination below slides */
    position: relative; /* For absolute positioning of nav buttons */
    overflow: hidden; /* Crucial for Swiper */
}

.teacher-card {
    background: #fff;
    border-radius: 8px; /* Rounded corners for the card */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    text-align: left; /* Align text to the left */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* For consistent card height in a row */
    border: 1px solid #eee; /* Optional: light border for definition */
}

@media (hover: hover) and (pointer: fine) {
    .teacher-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }
}

.teacher-image-link {
    display: block; /* Make link a block to contain image correctly */
    /* aspect-ratio: 4/3; */ /* Optional: to maintain image aspect ratio */
    overflow: hidden; /* If using aspect-ratio to crop */
    /* border-bottom: 1px solid #eee; */ /* Separator line below image */
}

.teacher-card img {
    width: 100%; /* Image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
    /* height: 200px; */ /* Or a fixed height if you prefer, with object-fit */
    /* object-fit: cover; */ /* If using fixed height, to cover and crop */
    display: block; /* Remove extra space below image */
    transition: transform 0.3s ease;
}

.teacher-card:hover img {
    /* transform: scale(1.05); */ /* Slight zoom on image hover */
}

.teacher-info {
    padding: 15px; /* Padding for the text content */
    flex-grow: 1; /* Allows this part to expand */
    display: flex;
    flex-direction: column;
}

.teacher-info h3 {
    font-size: 1.1rem; /* Name size */
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.teacher-info h3 a {
    color: #333; /* Name link color */
    text-decoration: none;
}
.teacher-info h3 a:hover {
    color: #f9a03f; /* Theme orange on hover */
}

.teacher-subject {
    font-size: 0.85rem;
    color: #555; /* Subject color */
    font-weight: normal;
}

.teacher-summary {
    font-size: 0.85rem; /* Summary text size */
    color: #666;
    line-height: 1.6;
    margin-top: auto; /* Pushes summary down if name/subject height varies a bit */
    /* Text truncation for summary (optional) */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Show 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(0.85rem * 1.6 * 3); /* Fallback for 3 lines height */
}


/* Swiper Pagination and Navigation Styles for Teachers Swiper */
.teachers-swiper-container .teachers-swiper-pagination.swiper-pagination-bullets {
    bottom: 10px; /* Position pagination at the bottom */
}

.teachers-swiper-container .swiper-pagination-bullet {
    background-color: #cccccc; /* Default bullet color */
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.teachers-swiper-container .swiper-pagination-bullet-active {
    background-color: #f9a03f; /* Theme orange for active bullet */
    transform: scale(1.2);
}

.teachers-swiper-container .teachers-swiper-button-next,
.teachers-swiper-container .teachers-swiper-button-prev {
    color: #333; /* Arrow color */
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    border-radius: 50%;
    width: 40px; /* Adjust size */
    height: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.teachers-swiper-container .teachers-swiper-button-next:hover,
.teachers-swiper-container .teachers-swiper-button-prev:hover {
    background-color: #f9a03f;
    color: #fff;
}

.teachers-swiper-container .teachers-swiper-button-next::after,
.teachers-swiper-container .teachers-swiper-button-prev::after {
    font-size: 1rem; /* Adjust arrow icon size */
    font-weight: 900;
}

/* Ensure nav buttons are above content */
.teachers-swiper-container .teachers-swiper-button-next,
.teachers-swiper-container .teachers-swiper-button-prev {
    z-index: 10;
}

/* Adjust nav button positions if needed */
.teachers-swiper-container .teachers-swiper-button-prev {
    left: 10px;
}
.teachers-swiper-container .teachers-swiper-button-next {
    right: 10px;
}

/* Hide nav buttons on very small screens if they clutter (optional) */
@media (max-width: 575px) {
    .teachers-swiper-container .teachers-swiper-button-next,
    .teachers-swiper-container .teachers-swiper-button-prev {
        /* display: none; */ /* Uncomment to hide */
    }
}

        .footer { background-color: #4590c0; color: white; padding: 100px 0 20px; }
        .footer-content { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; text-align: center; }
        .footer-column h3 { font-size: 1.2rem; margin-bottom: 15px; position: relative; padding-bottom: 10px; }
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%; 
            transform: translateX(-50%); 
            width: 0;
            height: 2px;
            background-color: #f9a03f;
            transition: width 0.6s ease-out 0.3s;
        }
        .fade-in-up.show .footer-column h3::after { width: 40px; }
        .footer-column p { margin-bottom: 10px; opacity: 0.8; font-size: 0.9rem; }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 8px; }
        .footer-column ul li a { color: white; text-decoration: none; opacity: 0.8; font-size: 0.9rem; }
        .footer .contact-info { justify-content: center; margin-bottom: 8px; }
        .footer .contact-info i { margin-right: 8px; font-size: 1rem; color: #f9a03f; }
        .copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: 0.85rem; opacity: 0.7; }
        
        @media (max-width: 768px) {
            body { }
            .top-banner { padding: 6px 3%; font-size: 1.26rem; }
            .top-banner .slogan { font-size: 12px; }
            .header { padding: 10px 0; }
            .header-content { padding: 0 15px; }
            .logo-text h1 { font-size: 1.26rem; }
            .nav-menu {
                position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; max-width: 280px;
                background-color: rgba(0, 84, 122, 0.98); backdrop-filter: blur(5px);
                flex-direction: column; justify-content: flex-start; align-items: flex-start;
                padding-top: 80px; padding-left: 30px;
                transition: right 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2); z-index: 1000;
            }
            .nav-menu.active { right: 0; }
            .nav-menu li { margin: 0; width: 100%; }
            .nav-menu a { display: block; padding: 15px 0; font-size: 1.1rem; color: #fff; }
            .nav-menu a:hover, .nav-menu a.active-link { color: #f9a03f; }
            .nav-menu a::after { display: none; }
            .menu-toggle { display: block; z-index: 1001; font-size: 1.6rem; padding: 5px; }
            .menu-toggle.active i::before { content: "\f00d"; }
.banner {
    padding-top: 70px; /* <<< 这里设置为 Header 的高度 */
    width: 100%;
    position: relative;
    /* 其他 .banner 样式 */
}

.banner .static-banner-image {
    display: block;
    width: 100%;
    height: auto;
    /* 如果之前因为 padding-top 导致图片被推下，
       而你希望图片本身占据 banner 调整后的全部空间，
       确保图片的 height/max-height 适应。
       但通常 padding-top 是为了给 banner 内部的内容腾出空间。
       如果 static-banner-image 是 banner 的唯一内容且希望它从 header 下方开始，
       方法 B 可能更直接。 */
}/* 
   重要：
   您需要检查并移除/注释掉之前可能为 .banner 或其内部元素
   （如 .swiper-container, .swiper-slide, .swiper-pagination 等）
   编写的任何与 Swiper 轮播相关的 CSS 样式。
   这些样式可能会干扰静态图片的显示。
*/

/* 例如，如果之前有类似这样的样式，需要移除或注释掉：
.banner .swiper-container {
    ...
}
.banner .swiper-wrapper {
    ...
}
.banner .swiper-slide {
    ...
}
.banner .swiper-pagination {
    ...
}
*/            .btn1 { margin-top: -70px; padding: 10px 22px; font-size: 0.85rem; }
            .section-title h2 { font-size: 1.7rem; }
            .overlay {
                position: fixed; top: 0; left: 0; width: 100%; height: 100%;
                background-color: rgba(0, 0, 0, 0.5); z-index: 998; 
                display: none; opacity: 0; transition: opacity 0.3s ease;
            }
            .overlay.active { display: block; opacity: 1; }
        }
        @media (max-width: 480px) {
            .top-banner .slogan { display: none; } /* If slogan is also hidden, top-banner might appear empty */
            /* .top-banner { justify-content: center; } already handled by main style if phone removed */
            .btn1 { margin-top: -60px; }
        }
        
        .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
        .fade-in.show { opacity: 1; transform: translateY(0); }
        .fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
        .fade-in-left.show { opacity: 1; transform: translateX(0); }
        .fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
        .fade-in-right.show { opacity: 1; transform: translateX(0); }
        .fade-in-up { opacity: 0; transform: translateY(50px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
        .fade-in-up.show { opacity: 1; transform: translateY(0); }

.floating-btn {
            position: fixed;
            color: white;
            padding: 10px 15px;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            cursor: pointer;
            z-index: 999;
            font-size: 0.9rem;
            text-decoration: none;
            /* MODIFIED: Initial state for appearance */
            opacity: 0;
            transform: translateY(40px); /* Start below viewport */
            visibility: hidden; /* Hidden and not interactive */
            /* MODIFIED: Transition properties for appearance and hover */
            transition: opacity 0.4s ease-out,
                        transform 0.4s ease-out,
                        visibility 0s linear 0.4s, /* Delay visibility change when hiding */
                        background-color 0.2s;
        }
        .floating-btn i { font-size: 1.3em; margin-right: 8px; }

        /* MODIFIED: Class to make floating buttons visible */
        .floating-btn.floating-btn-active {
            opacity: 1;
            transform: translateY(0); /* Active: in final position */
            visibility: visible;
            transition-delay: 0s; /* Applies to all, ensuring visibility delay is 0 for appearing */
        }


		.floating-wechat-btn {
            right: 25px;
            bottom: 25px;
            background-color: #07c160;
            animation: pulseWechat 2s infinite ease-in-out;
        }
        .floating-wechat-btn:hover {
            background-color: #06ad56;
            transform: translateY(0) scale(1.05); /* MODIFIED: Ensure Y position is maintained on hover */
            animation-play-state: paused;
        }
        @keyframes pulseWechat {
            0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
            50% { transform: scale(1.05); box-shadow: 0 6px 18px rgba(7, 193, 96, 0.4); }
            100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
        }
        /* MODIFIED: Adjust keyframes if buttons start with translateY */
        @keyframes pulseWechat {
            0% { transform: translateY(0) scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
            50% { transform: translateY(0) scale(1.05); box-shadow: 0 6px 18px rgba(7, 193, 96, 0.4); }
            100% { transform: translateY(0) scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
        }


        .floating-policy-btn {
            right: 150px;
            bottom: 25px;
            background-color: #1e88e5;
            animation: pulsePolicy 2.2s infinite ease-in-out;
        }
        .floating-policy-btn:hover {
            background-color: #1976d2;
            transform: translateY(0) scale(1.05); /* MODIFIED: Ensure Y position is maintained on hover */
            animation-play-state: paused;
        }
        /* MODIFIED: Adjust keyframes if buttons start with translateY */
        @keyframes pulsePolicy {
            0% { transform: translateY(0) scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
            50% { transform: translateY(0) scale(1.05); box-shadow: 0 6px 18px rgba(30, 136, 229, 0.4); }
            100% { transform: translateY(0) scale(1); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }
        }

        .wechat-modal-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: none; align-items: center; justify-content: center;
            z-index: 1001; opacity: 0; transition: opacity 0.3s ease-in-out;
            padding: 15px;
        }
        .wechat-modal-overlay.show { display: flex; opacity: 1; }
        .wechat-modal-content {
            background-color: white; padding: 25px 30px; border-radius: 10px;
            text-align: center; position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            max-width: 320px; width: 90%;
            transform: scale(0.9); opacity: 0;
            transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease-in-out;
        }
        .wechat-modal-overlay.show .wechat-modal-content { transform: scale(1); opacity: 1; }
        .wechat-modal-close {
            position: absolute; top: 10px; right: 15px;
            font-size: 1.8rem; color: #aaa; cursor: pointer;
            line-height: 1; transition: color 0.2s;
        }
        .wechat-modal-close:hover { color: #333; }
        .wechat-modal-content h3 { color: #333; font-size: 1.3rem; margin-top: 0; margin-bottom: 10px; }
        .wechat-modal-content p { color: #555; font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; }
        .wechat-modal-content img#wechat-qr-code {
            width: 100%; max-width: 180px; height: auto;
            margin: 10px auto 15px; border: 1px solid #eee; display: block;
        }
        .wechat-modal-content .wechat-id { font-size: 1rem; color: #333; margin-bottom: 10px; }
        .wechat-modal-content .wechat-id strong { color: #07c160; user-select: all; }
        .wechat-modal-content .wechat-tip { font-size: 0.8rem; color: #777; margin-bottom: 0; }

        @media (min-width: 576px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: repeat(2, 1fr); text-align: left; }
            .footer-column h3::after { left: 0; transform: translateX(0); }
        }
        @media (min-width: 992px) {
            .features-grid { grid-template-columns: repeat(4, 1fr); }
            .news-list { grid-template-columns: repeat(3, 1fr); }
            .about-content { flex-direction: row; }
            .about-text { text-align: left; }
            .about-text h2 { text-align: left; }
            .about-text h2::after { left: 0; transform: translateX(0); }
            .campus-gallery { grid-template-columns: repeat(4, 1fr); }
            .teachers-container { grid-template-columns: repeat(3, 1fr); }
            .footer-content { grid-template-columns: repeat(3, 1fr); }
        } /* CSS Document */
		
		/* === CSS MODIFICATIONS FOR SECTION TITLES (excluding footer) === */

/* 1. Ensure parent containers for titles are left-aligned */
.section-title,
.about-text {
    text-align: left; /* Titles will be left-aligned within these containers */
}

/* 2. Remove old underline pseudo-elements from these titles */
.section-title h2::after,
.about-text h2::after {
    display: none;
}

/* 3. Common styling for the targeted section titles */
#about .about-text h2,
#key-features .section-title h2,
#news .section-title h2,
#campus .section-title h2,
#teachers .section-title h2,
#achievements .section-title h2 {
    display: inline-block; /* Crucial for background to fit content */
    color: white;
    /* text-align: left; is implicitly handled by parent and inline-block nature */
    
    font-size: 1.2rem; /* MODIFIED: Smaller font size for these titles */
    
    /* Adjust padding (Top, Right, Bottom, Left) for the new font size */
    padding: 8px 25px 8px 15px; 
    
    /* The slanted shape using clip-path, adjusted for smaller height */
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0% 100%); 
    /* '15px' can be adjusted for slant aggressiveness */

    margin-bottom: 25px; /* Consistent bottom margin */
    margin-left: 0;     /* Ensure it aligns to the very left */
    position: relative; /* Good practice, though not strictly needed here */
}

/* 4. Specific background colors for titles */

/* Default blue for most specified titles */
#about .about-text h2,
#key-features .section-title h2,
#campus .section-title h2,
#news .section-title h2,
#teachers .section-title h2 {
    background-color: #006999; /* Your header blue */
}

/* Special red background for "学校新闻" (历年成绩) title */

#achievements .section-title h2 {
     background-color: #ff5252; /* MODIFIED: Special red color */
}

/* 5. Centering "了解更多" button within "鹏举风华" (.about-text) */
.about-text .btn {
    display: block; /* Change from inline-block to block */
    width: fit-content; /* Make width only as wide as its content + padding */
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px; /* Add some top margin */
    /* Existing .btn styles (background, color, padding, border-radius, etc.) will apply */
}

/* === END OF CSS MODIFICATIONS === */


/* Add these to your existing CSS or a new shared stylesheet for inner pages */
.page-hero {
    background-color: #f0f4f7; /* Light neutral background */
    padding: 30px 0;
    text-align: center;
    margin-top: 50px; /* Adjust if header height changes, assuming header is ~50px */
}

@media (max-width: 768px) {
    .page-hero {
        margin-top: 40px; /* Adjust for mobile header height */
        padding: 20px 0;
    }
}

.page-hero h1 {
    font-size: 2.2rem;
    color: #006999; /* Main blue */
    margin-bottom: 5px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #555;
}

.breadcrumbs a {
    color: #006999;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 5px;
}

.main-content-area {
    padding: 40px 0;
}

/* Pagination Styles (for list pages) */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px;
    border: 1px solid #ddd;
    color: #006999;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
    background-color: #006999;
    color: white;
    border-color: #006999;
}

.pagination .current {
    background-color: #006999;
    color: white;
    border-color: #006999;
}

.pagination .disabled {
    color: #aaa;
    pointer-events: none;
    border-color: #eee;
}

/* Styling for content within info pages or article details */
.content-prose {
    line-height: 1.8;
    font-size: 1rem; /* Or 1.05rem */
    color: #333;
}
.content-prose h2, .content-prose h3, .content-prose h4 {
    color: #006999;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}
.content-prose h2 { font-size: 1.8rem; }
.content-prose h3 { font-size: 1.5rem; }
.content-prose h4 { font-size: 1.2rem; }
.content-prose p { margin-bottom: 1.2em; }
.content-prose ul, .content-prose ol { margin-bottom: 1.2em; padding-left: 25px; }
.content-prose li { margin-bottom: 0.5em; }
.content-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.content-prose blockquote {
    border-left: 4px solid #006999;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}
.content-prose a {
    color: #f9a03f; /* Using orange for links within content */
    text-decoration: none;
    font-weight: 600;
}
.content-prose a:hover {
    text-decoration: underline;
}














