* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	text-decoration: none;
	color: #363636;
}
a:hover{
	color: #227B45;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #363636;
}


/* 栅格系统 - 70列宽12列数40间距 */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    padding: 0 20px;
    margin-bottom: 20px;
}

.col-1 { width: 8.333333%; }
.col-2 { width: 16.666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.333333%; }
.col-5 { width: 41.666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.333333%; }
.col-8 { width: 66.666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* 导航栏 - PC端高度120px */
.navbar {
    background-color: #227B45;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar.transparent {
   background: linear-gradient(to bottom, rgb(11 64 32 / 80%) 0%, rgba(34, 123, 69, 0) 100%);
    box-shadow: none;
}

.navbar.transparent.scrolled {
    background-color: #227B45;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    background-color: #227B45;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

/* 左边LOGO栏 */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    width: auto;
    margin: 24px 0;
    padding-top: 20px;
    border: none;
    outline: none;
}

.logo,
.logo img {
    border: none;
    outline: none;
}

.logo:focus,
.logo img:focus {
    outline: none;
}

.navbar-brand a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* 右边导航栏 */
.navbar-right {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

/* 顶部信息栏 */
.navbar-top {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.navbar-top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    padding-right: 20px;
}

.top-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #fff;
	font-weight: 600;
}

/* 搜索功能 */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    transition: width 0.3s ease;
    opacity: 0;
}

.search-input:focus {
    outline: none;
}

.search-input.active {
    width: 120px;
    opacity: 1;
}

.search-icon {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.search-icon:hover {
    opacity: 0.7;
}

/* 主导航栏 */
.navbar-main {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    gap: 30px;
    padding-right: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #227B45;
    transition: width 0.3s ease;
    display: block;
}

.desktop-nav .nav-link:hover::after {
    width: 100%;
}

.desktop-nav .nav-link:hover {
    color: #f0f0f0;
    font-weight: bold;
}

/* 下拉菜单 */
.nav-item {
    position: relative;
}

.has-dropdown {
    position: relative;
}

.has-dropdown .nav-link {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: fixed;
    top: 120px;
    left: auto;
    background-color: #42A168;
    min-width: 200px;
    padding: 10px 0;
    display: block;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #1a6b3a;
	color: #fff!important;
}

/* 移动端导航栏 */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #227B45;
    height: 80px;
    padding: 0 24px;
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.mobile-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0;
    width: 100%;
    max-width: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    color: #fff;
}

.toggle-icon {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* 移动端导航按钮组 */
.mobile-nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 移动端搜索按钮 */
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #fff;
    font-size: 18px;
}

.mobile-search-btn .search-icon {
    font-size: 18px;
}

/* 移动端搜索界面 */
.mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 123, 69, 0.2);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-container {
    position: relative;
    width: 90%;
    max-width: 400px;
}

.mobile-search-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 5px;
}

.mobile-search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
}

.mobile-search-submit {
    width: 40px;
    height: 40px;
    background-color: #37d375;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/search.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

/* 中英文切换 */
.language-switch {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    justify-content: flex-start;
    width: 100%;
}

.lang-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;

}

.lang-link.active {
    color: #37d375;
    font-weight: bold;
}

.lang-link:hover {
    color: #37d375;
}

/* 移动端导航链接 */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    margin-top: 10px;
    width: 100%;
}

.mobile-nav-links .top-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 10px 0;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-nav-links .top-link:hover {
    color: #37d375;
}

/* 移动端二级导航 */
.mobile-nav-item {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
}
.mobile-nav-item a{
	color: #fff!important;
}
.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-align: left;
}

.mobile-nav-toggle::after {
    content: '';
    font-size:32px;
    color: #fff;
    float: right;
    transition: transform 0.3s ease;
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 40px;
}

.mobile-nav-item:has(.mobile-dropdown) .mobile-nav-toggle::after {
    content: '▸';
    transform: rotate(0deg);
}

.mobile-nav-item:has(.mobile-dropdown) .mobile-nav-toggle.active::after {
    content: '▾';
    transform: rotate(0deg);
}

.mobile-dropdown {
    display: none;
    flex-direction: column;
    padding: 0;
    border-top: none;
    margin-top: 0;
}
.mobile-dropdown a{
	color: #fff;
}
.mobile-dropdown.active {
    display: flex;
}

.mobile-dropdown-item {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 24px 10px 48px;
    background-color: transparent;
    border-radius: 0;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 轮播图区域 */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out;
    opacity: 0;
}

.slide.active {
    transform: translateX(0);
    opacity: 1;
}

.slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.slide.next {
    transform: translateX(100%);
    opacity: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* 轮播图箭头 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* 轮播图导航点 */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background-color: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #fff;
}

.indicator:hover {
    background-color: rgba(255,255,255,0.8);
}

/* 新闻中心 */
/* 当前位置链接样式 */
.breadcrumb-link {
    color: #696969;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #227B45;
    text-decoration: none;
}

.news {
    padding: 60px 0;
    background-image: url('../images/news-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
}

/* 模块标题容器 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header img,
.new-img,
.media-img,
.example-img,
.Link-img,
.Highlights-img {
    max-height: 48px;
    height: auto;
    display: block;
}

.Notice-img {
    max-width: 100px;
    width: 100%;
    height: auto;
    display: block;
    margin: auto 0;
}

.media-img,
.example-img,
.Link-img,
.Highlights-img {
    margin-bottom: 20px;
}

.section-more {
    color: #B3B3B3;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-more:hover {
    color: #227B45;
}

.news h2 {
    text-align: left;
    font-size: 32px;
    color: #227B45;
}

/* 校园动态 */
.campus-news {
    padding: 60px 0;
    background-color: #fff;
}

.campus-news h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

/* 媒体报道 */
.media {
    padding: 60px 0;
    background-color: #fff;
}

.media h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.news-item {
    background-color: #fff;
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item.flex {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.news-item.flex .col-6 {
    padding: 0;
}

.news-item.flex .col-6:last-child {
    padding: 24px;
}

.news-item.flex .col-6:last-child h3 {
    position: relative;
    padding-top: 40px;
    font-size: 36px;
    color: #333;
    transition: color 0.3s ease;
}

.news-item.flex .col-6:last-child h3:hover {
    color: #227B45;
}

.news-item.flex .col-6:last-child h3::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 80px;
    height: 6px;
    background-color: #227B45;
}

.news-item.flex .col-6:last-child p {
    font-size: 14px;
    color: #666;
    margin-top: 24px;
    margin-bottom: 15px;
}

.news-item.flex .col-6:last-child .date {
    font-size: 12px;
    color: #999;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-item h3 a{
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
	text-decoration: none;
}

.news-item h3 a:hover {
    color: #227B45;
}

.news-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.news-item .date {
    font-size: 12px;
    color: #227B45;
}

.item-img {
    padding: 0;
}

.item-text {
    padding: 24px;
}

/* 学校概况 */
.about {
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

/* 数据统计 */
.stats {
    padding: 60px 0;
    background-image: url('../images/number-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

.stats h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .number {
    font-size: 36px;
    font-weight: bold;
    color: #227B45;
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: #666;
}

/* 荣誉资质 */
.honors {
    padding: 60px 0;
}

.honors h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.honor-item {
    text-align: center;
}

.honor-item img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 学校视频 */
.videos {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.videos h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.video-item {
    position: relative;
    overflow: hidden;

 
}

.video-item img {
    width: 100%;
    height: auto;
    display: block;
}

.video-item .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(36, 158, 85, 0.8);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-item .play-btn:hover {
    background-color: rgba(36, 158, 85, 1);
}

/* 党建工作 */
.party-work {
    padding: 60px 0;
}

.party-work h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.party-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.party-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.party-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.party-item p {
    font-size: 14px;
    color: #666;
}

/* 通知公告 */
.notices {
    padding-top: 60px;
    background-color: #fff;
}

.notices .col-2 {
    min-width: 120px;
}

.notices .col-2 > div {
    padding: 0 !important;
}

.notices .col-10 {
    flex: 1;
}

.notice-container {
    background-color: transparent;
    overflow: hidden;
    position: relative;
}

.notice-list {
    animation: scrollUp 30s linear infinite;
}

.notice-list:hover {
    animation-play-state: paused;
}

.notice-item {
    height: 32px;
    display: flex;
    align-items: center;
   
}

.notice-item a {
    text-decoration: none;
    color: #363636;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item a:hover {
    color: #227B45;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* 媒体报道 */
.media {
    padding: 60px 0;
    background-color: #FAFAFA;
}

.media h2 {
  
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.media .container {
    padding: 0;
}

.media .row {
    margin: 0;
}

.media .col-6 {
    padding: 0;
    margin-bottom: 0;
}

.media-image-container {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.media-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.media-image-container:hover .media-image {
    transform: scale(1.05);
}

.media-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.media-image-title h3 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    transition: color 0.3s ease;
}

.media-image-title h3:hover {
    color: #37d375;
}

.media-image-title  a{
    color: #fff;
    font-size: 20px;
    margin: 0;
    transition: color 0.3s ease;
	text-decoration: none;
}

.media-image-title  a:hover {
    color: #37d375;
}

.media-item {
    height: 160px;
    padding: 24px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #efefef;
}

.media-item h3 a{
    
    margin-bottom: 10px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    transition: color 0.3s ease;
	text-decoration: none;
}

.media-item h3 a:hover {
    color: #227B45 !important;
}

.media-item .date {
    font-size: 12px;
    color: #999;
}

/* 校园风光 */
.campus-view {
    width: 100%;
    height: 660px;
    position: relative;
    overflow: hidden;
}

.campus-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.campus-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 保持图片比例，覆盖容器 */
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(0,0,0,0.7);
}

.play-icon {
    color: #fff;
    font-size: 40px;
    margin-left: 10px;
}

.campus-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-background {
    background-image: url('../images/example-background.png');
    position: relative;
}
/*/* 学校榜样 */
.school-model {
    position: relative;
    padding: 60px 0;
}

.school-model::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://p3-flow-sign.byteimg.com/tos-cn-i-qvj2lq49k0/bc060a9541c24d5b8f48892748a3e32c~tplv-49obo7mizy-720x720.image?rk3s=38803b17&x-expires=1755157288&x-signature=4YpO6p9bP2Lp%2F1r6%2F%2B7sJ9zX9%2F8%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.school-model .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.school-model .row {
    margin: 0;
}

.school-model .col-6 {
    padding: 0;
    margin-bottom: 0;
}

.school-model h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 40px;
    color: #227B45;
}

.model-item {
    height: 160px;
    padding: 20px 20px 0;
    background-color: #ffffff;
    display: flex;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}

.model-item-image {
    width: 220px;
    height: 122px;
    background-size: cover;
    background-position: center;
    margin-right: 16px;
    transition: transform 0.3s;
}

.model-item:hover .model-item-image {
    transform: scale(1.05);
}

.model-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-item-content h3 a {
    
    margin-bottom: 10px;
    color: #333;
	text-decoration: none;
    transition: color 0.3s ease;
}

.model-item-content h3 a:hover {
    color: #227B45;
}

.model-item-content .date {
    font-size: 12px;
    color: #999;
	padding-top: 20px;
}

/* 专题网站 */
.special-sites {
    position: relative;
}

.special-sites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://p3-flow-sign.byteimg.com/tos-cn-i-qvj2lq49k0/bc060a9541c24d5b8f48892748a3e32c~tplv-49obo7mizy-720x720.image?rk3s=38803b17&x-expires=1755157288&x-signature=4YpO6p9bP2Lp%2F1r6%2F%2B7sJ9zX9%2F8%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.special-sites .container {
    position: relative;
    z-index: 1;
    padding: 0;
}

.special-sites .row {
    margin: 0;
    gap: 40px;
}

.special-sites .col-4 {
    padding: 0;
    flex: 1;
    width: calc((100% - 80px) / 3);
}

.special-sites h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #227B45;
    font-size: 32px;
}

.special-site-item {
    height: 200px;
    overflow: hidden;
}

.special-site-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.special-site-item:hover .special-site-image {
    transform: scale(1.05);
}

/* 常用链接 */
.links {
    position: relative;
    padding: 60px 0;
}

.links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://p3-flow-sign.byteimg.com/tos-cn-i-qvj2lq49k0/bc060a9541c24d5b8f48892748a3e32c~tplv-49obo7mizy-720x720.image?rk3s=38803b17&x-expires=1755157288&x-signature=4YpO6p9bP2Lp%2F1r6%2F%2B7sJ9zX9%2F8%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.links .container {
    position: relative;
    z-index: 1;
}

.links h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #227B45;
    font-size: 32px;
}

.link-item {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 10px 0;
    color: #696969;
    transition: color 0.3s ease;
}

.link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: #696969;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.link-item:hover::after {
    width: 100%;
    background-color: #227B45;
}

.link-item:hover {
    color: #227B45;
}

.link-text {
    color: #696969;
    transition: color 0.3s ease;
}

.link-item:hover .link-text {
    color: #227B45;
}

/* 内容页面样式 */
.content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.content table,
.content .wp_editor_art_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.content table th,
.content table td,
.content .wp_editor_art_table th,
.content .wp_editor_art_table td {
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #000;
}

.content table th,
.content .wp_editor_art_table th {
    font-weight: bold;
    background-color: #f5f5f5;
}


/* 页脚 */
.footer {
    background-color: #227B45;
    color: #fff!important;
    padding: 40px 0;
    text-align: center;
}
.footer p {
    color: #fff !important;
}
.footer a {
    color: #fff !important;
}
.footer-contact p { color: #fff !important; }
.footer-contact .contact-label { color: #fff !important; }
.footer-contact .contact-value { color: #fff !important; }
.footer .container {
    display: flex;
    flex-direction: column;
}
.footer-copyright {
    color: rgba(255,255,255,0.8) !important;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.footer-contact {
    
    min-width: 300px;
    margin-bottom: 20px;
    text-align: left;
	font-size: 0.9rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-label {
    min-width: 146px;
    text-align: right;
    margin-right: 10px;
    text-align: justify;
    text-justify: inter-character;
	color: #fff;
}

.contact-value {
    text-align: left;
	color: #fff;
}

.footer-qrcode {
    flex: 1;
    min-width: 150px;
    margin-bottom: 20px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-image {
    margin: 0 auto 10px;
}

.qrcode-item p {
    font-size: 14px;
	color: #fff;
}
.pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px;
    color: #999;
    text-decoration: none;
   
    border-radius: 0;
  
    cursor: not-allowed;
}

.pagination .page-dot {
    display: inline-block;
    padding: 8px 16px;
    color: #999;
    border: none;
    background: none;
    cursor: default;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.news-list-image{
	height: 140px;
}
.news-list-image img{
	 background-size: cover;    /* 关键：铺满且不变形 */
	  background-position: center; /* 图片居中 */
	  background-repeat: no-repeat;
	  object-fit: cover;
}
/* 响应式设计 */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
 .news-list-image{
	height: 140px;
}
    .desktop-nav .navbar-nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .news-item.flex .col-6 {
        padding: 0;
    }
    
    .news-item.flex .col-6:last-child {
        padding: 20px;
    }
    
    .campus-view {
        height: 500px;
    }
    
    .media-image-container {
        height: 400px;
    }
    
    .model-item {
        height: 140px;
    }
    
    .model-item-image {
        width: 180px;
        height: 100px;
    }
    
    .special-site-item {
        height: 160px;
    }
    
    .col-md-1 { width: 8.333333%; }
    .col-md-2 { width: 16.666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-5 { width: 41.666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333333%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333333%; }
    .col-md-11 { width: 91.666667%; }
    .col-md-12 { width: 100%; }
}
@media (max-width: 768px) {
       .news-list-image {
			height: 140px;
		}
    }

@media (max-width: 1280px) {
	
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    @media (max-width: 768px) {
        .container {
            max-width: 720px;
        }
        .item-img img{
            max-height: 280px;
        }
    }
    
    .mobile-nav .navbar-brand {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
    }
    
    .mobile-nav .navbar-brand a {
        color: #fff;
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: flex;
        align-items: center;
    }
    
    .mobile-nav .navbar-logo {
        height: 32px;
        max-width: 100%;
        margin: 20px 0;
        padding-top: 0;
    }
    
    .mobile-nav-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        background-color: #227B45;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: calc(100vh - 80px);
        box-sizing: border-box;
        z-index: 9999;
        padding: 0 24px;
        opacity: 0;
        visibility: hidden;
    }
    
    .mobile-nav-menu.active {
        max-height: calc(100vh - 80px);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .navbar-toggle.active .toggle-icon {
        background-color: #37d375;
    }
    
    .mobile-nav-menu .container {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    
    .mobile-nav-menu .nav-link {
        display: block;
        padding: 10px 15px;
        text-align: left;
        width: 100%;
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: bold;
        text-align: left;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 80px;
        padding-top: 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .news-item.flex {
        flex-direction: column;
    }
    
    .news-item.flex .col-6 {
        width: 100%;
    }
    .news-big {
        width: 100%;height: 460px;
    }
    .news-item.flex .col-6:first-child {
        height: auto;
        
        position: relative;
    }
    
    .news-item.flex .col-6:first-child .item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }
    
    .campus-view {
        height: 400px;
    }
    
    .media .col-6,
    .school-model .col-6 {
        width: 100%;
    }
    
    .special-sites .row {
        gap: 0;
        flex-wrap: wrap;
    }
    
    .special-sites .col-4 {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .campus-news .col-4,
    .news .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .media-image-container {
        height: 300px;
    }
    
    .special-site-item {
        height: 400px;
    }
    
    .links .col-2 {
        width: 33.333333%;
    }
    
    .stats .col-3 {
        width: 50%;
    }
    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    
    .footer-content .col-3 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-content .col-3:nth-child(1) {
        order: 1;
    }
    
    .footer-content .col-3:nth-child(2) {
        order: 2;
    }
    
    .footer-content .col-3:nth-child(3),
    .footer-content .col-3:nth-child(4) {
        order: 3;
        width: 50%;
        max-width: 150px;
    }
    
    .footer-contact p {
        justify-content: left;
        text-align: center;
        padding-left: 200px;
    }
    
    .col-sm-1 { width: 8.333333%; }
    .col-sm-2 { width: 16.666667%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.333333%; }
    .col-sm-5 { width: 41.666667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.333333%; }
    .col-sm-8 { width: 66.666667%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.333333%; }
    .col-sm-11 { width: 91.666667%; }
    .col-sm-12 { width: 100%; }
    
    .footer-content .col-sm-12 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-content .col-sm-6 {
        width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 428px) {
	.news-list-image {
    height: 220px;
}
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .row {
        margin: 0 -15px;
    }
    
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding: 0 15px;
    }
    
    .mobile-nav {
        padding: 0 24px;
    }
    
    .mobile-nav .navbar-brand a {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .campus-view {
        height: 300px;
    }
    
    .media-image-container {
        height: 250px;
    }
    
    .model-item {
        flex-direction: column;
        height: auto;
        padding: 16px;
    }
    
    .model-item-image {
        width: 100%;
        height: 150px;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .special-site-item {
        height: 200px;
    }
    
    .links .col-2 {
        width: 50%;
    }
    
    .special-sites .row {
        gap: 0;
        flex-wrap: wrap;
    }
    
    .special-sites .col-4 {
        width: 100%;
        flex-basis: 100%;
        margin-bottom: 20px;
    }
    
    .campus-news .col-4,
    .news .col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .news-item.flex .col-6:first-child {
        height: auto;
        
        position: relative;
    }
    
    .news-item.flex .col-6:first-child .item-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0;
    }
    
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    
    .footer-content .col-3 {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-content .col-3:nth-child(1) {
        order: 1;
    }
    
    .footer-content .col-3:nth-child(2) {
        order: 2;
    }
    
    .footer-content .col-3:nth-child(3),
    .footer-content .col-3:nth-child(4) {
        order: 3;
        width: 50%;
        max-width: 150px;
    }
    
    .footer-contact p {
        flex-direction: row;
        justify-content: left;
        text-align: left;
        white-space: nowrap;
		padding-left: 30px;
    }
    
    .contact-label {
        min-width: auto;
        text-align: right;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .news, .notices, .campus-news, .stats, .media, .school-model, .special-sites, .links {
        padding: 40px 0;
    }
    
    .notices .col-2 {
        width: 33.333333%;
    }
    
    .notices .col-10 {
        width: 66.666667%;
    }
    
    .stats .col-3 {
        width: 100%;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    .col-xs-1 { width: 8.333333%; }
    .col-xs-2 { width: 16.666667%; }
    .col-xs-3 { width: 25%; }
    .col-xs-4 { width: 33.333333%; }
    .col-xs-5 { width: 41.666667%; }
    .col-xs-6 { width: 50%; }
    .col-xs-7 { width: 58.333333%; }
    .col-xs-8 { width: 66.666667%; }
    .col-xs-9 { width: 75%; }
    .col-xs-10 { width: 83.333333%; }
    .col-xs-11 { width: 91.666667%; }
    .col-xs-12 { width: 100%; }
    
    .section-header img,
    .new-img,
    .media-img,
    .example-img,
    .Link-img,
    .Highlights-img {
        max-width: 180px;
        width: 100%;
    }
    
    .Notice-img {
        max-width: 90px;
    }
    
    .news-item.flex .col-6:last-child h3 {
        font-size: 24px;
    }
}

/* 最小屏幕布局 (<320px) */
@media (max-width: 320px) {
    .section-header img,
    .new-img,
    .media-img,
    .example-img,
    .Link-img,
    .Highlights-img {
        max-width: 160px;
        width: 100%;
    }
    
    .Notice-img {
        max-width: 80px;
    }
    
    .news-item.flex .col-6:last-child h3 {
        font-size: 20px;
    }
}


/* 分页 */
.pagination {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pagination .page-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    color: #333;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination .page-btn:hover:not(.disabled) {
    background-color: #33AB63;
    border-color: #33AB63;
    color: white;
}

.pagination .page-btn.current,
.pagination .page-btn.active,
.pagination span.page-btn.active {
    background-color: #33AB63 !important;
    border-color: #33AB63 !important;
    color: white !important;
}


.pagination .page-no {
    display: inline-block;
    padding: 8px 16px;
    background-color: #e0e0e0;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 14px;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
}

.pagination li {
    margin: 0;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    background-color: white;
    color: #333;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #33AB63;
    border-color: #33AB63;
    color: white;
}

.pagination .current {
    display: inline-block;
    padding: 8px 16px;
    background-color: #33AB63;
    color: white;
    border: 1px solid #33AB63;
    border-radius:0;
    font-weight: bold;
    font-size: 14px;
}

/* 搜索弹窗样式 */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 123, 69, 0.2);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.search-overlay.active {
    display: flex;
}

.search-overlay .search-container {
    background-color: #fff;

    border-radius: 0;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.search-overlay .search-box {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
	width: 100%;
}

.search-overlay .search-input {
    flex: 1;
    width: auto !important;
    min-width: 200px;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    outline: none;
    color: #333;
    background-color: #fff;
    cursor: text;
    display: block;
    opacity: 1 !important;
    transition: none;
}

.search-overlay .search-input:focus {
    outline: none;
    border-color: #227B45;
}

.search-overlay .search-input::placeholder {
    color: #999;
    opacity: 1;
}

.search-overlay .search-input::-webkit-input-placeholder {
    color: #999;
}

.search-overlay .search-input:-moz-placeholder {
    color: #999;
}

.search-overlay .search-input::-moz-placeholder {
    color: #999;
}

.search-overlay .search-input:-ms-input-placeholder {
    color: #999;
}

.search-overlay .search-submit {
    background-color: #227B45;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-overlay .search-submit:hover {
    background-color: #1a6336;
}

/* 桌面端搜索按钮样式 */
.navbar-news .search-container {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.navbar-news .search-container:focus {
    outline: none;
}
.navbar-news .search-container:hover {
    opacity: 0.7;
}

.navbar-news .search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}