
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family:'微软雅黑', 'Microsoft YaHei', 'Segoe UI', 'Roboto', 'Noto Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
			 
            background-color: #FAFBF1;
            color: #3A3A3A;
            line-height: 1.5;
        }

        :root {
            --primary-warm: #D7D1C1;
            --secondary-warm: #C4BCA8;
            --accent-brown: #9B7B5C;
            --accent-dark: #6B4E3A;
            --light-bg: #FFFFFF;
            --card-bg: #FFFFFF;
            --border-light: #E8E2D4;
            --text-dark: #3A3A3A;
            --text-gray: #6B5E4A;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.08);
            --dropdown-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.2);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }
       .container_nav{
		   max-width: 1280px;
            margin: 0 auto;
            padding: 0px 24px;
			}
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 24px;
        }
.main_bg{ 
background:url(../images/main_bg.png) no-repeat; 
width:1360px;
margin:0 auto;}
        /* ========= 头部 ========= */
        .site-header {
            background-color: var(--primary-warm);
            color: var(--text-dark);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-img {
            height: 60px;
            width: auto;
        }
        .logo-img img {
          
            height: 60px;
            width: auto;
        }
        .logo-text h1 {
            font-size: 1.4rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #3A3A3A;
        }
        .logo-text p {
            font-size: 0.75rem;
            opacity: 0.7;
            color: #5A4A38;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .search-btn {
            background: rgba(0,0,0,0.08);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 1.2rem;
            color: var(--text-dark);
        }
        .search-btn:hover {
            background: var(--accent-brown);
            color: white;
            transform: scale(1.05);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0;
        }
        .hamburger span {
            width: 100%;
            height: 2px;
            background-color: var(--text-dark);
            border-radius: 2px;
        }

        /* 桌面导航 */
        .desktop-nav {
            display: block;
            background: var(--light-bg);
            border-bottom: 1px solid var(--border-light);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            justify-content: center;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
		 .main-nav ul ul{
            display: flex;
            list-style: none;
            gap: 0px;
            justify-content: center;
            margin: 0;
            padding: 0;
            flex-wrap: wrap;
        }
        .main-nav li {
            position: relative;
        }
        .main-nav > ul > li > a {
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 0;
            display: inline-block;
            color: var(--text-dark);
            border-bottom: 2px solid transparent;
            transition: 0.2s;
            position: relative;
            white-space: nowrap;
        }
        .main-nav > ul > li > a i {
            margin-left: 6px;
            font-size: 0.7rem;
            transition: transform 0.2s ease;
        }
        .main-nav > ul > li:hover > a {
            color: var(--accent-brown);
            border-bottom-color: var(--accent-brown);
        }
        .main-nav > ul > li:hover > a i {
            transform: rotate(180deg);
        }
        
        /* 二级菜单：圆角10%，每行高度40px */
        .submenu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: var(--light-bg);
            min-width: 220px;
            padding: 12px 0;
            border-radius: 10%;
            box-shadow: var(--dropdown-shadow);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.25s, transform 0.2s ease;
            transform: translateY(-8px);
            z-index: 200;
            list-style: none;
            border: 1px solid var(--border-light);
        }
        .main-nav li:hover > .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .submenu li {
            width: 100%;
        }
        .submenu a {
            display: block;
            padding: 10px 24px;
            line-height: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
            border-bottom: none;
            transition: all 0.2s;
            background: transparent;
        }
        .submenu a:hover {
            background: linear-gradient(90deg, #F5F2E9, #FFFFFF);
            color: var(--accent-brown);
            padding-left: 28px;
        }

        /* 移动端侧边菜单 */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: 0.3s;
        }
        .mobile-menu-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -320px;
            width: 300px;
            height: 100%;
            background: var(--primary-warm);
            box-shadow: -4px 0 20px rgba(0,0,0,0.2);
            padding: 80px 20px 30px;
            transition: right 0.3s ease;
            overflow-y: auto;
        }
        .mobile-menu-overlay.active .mobile-menu-container {
            right: 0;
        }
        .close-mobile-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 28px;
            color: var(--text-dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.2s;
        }
        .close-mobile-menu:hover {
            background: rgba(0,0,0,0.1);
        }
        .mobile-nav-list {
            list-style: none;
        }
        .mobile-nav-list li {
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .mobile-nav-list a {
            display: block;
            padding: 14px 0;
            color: var(--text-dark);
            font-weight: 500;
        }
        .mobile-submenu {
            padding-left: 20px;
            display: none;
            list-style: none;
            margin-bottom: 8px;
        }
        .mobile-submenu.active {
            display: block;
        }
        .mobile-submenu a {
            padding: 10px 0;
            font-size: 0.9rem;
            opacity: 0.85;
        }
        .mobile-has-submenu > a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        .mobile-has-submenu .toggle-icon {
            font-size: 0.8rem;
            transition: transform 0.2s ease;
        }
        .mobile-has-submenu.open .toggle-icon {
            transform: rotate(180deg);
        }

        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
        }
        @media (min-width: 769px) {
            .mobile-menu-overlay { display: none; }
        }
        @media (max-width: 1280px) {
            .main-nav ul { gap: 18px; }
        }
        @media (max-width: 1100px) {
            .main-nav ul { gap: 12px; }
            .main-nav > ul > li > a { font-size: 0.9rem; }
        }

        /* ========= Banner 模块 ========= */
        .module-pc {
            background: #FAFBF1;
            padding: 20px 0 0;
            position: relative;
        }
        .swiper-container3 {
            width: 100%;
            height: 26.2rem;
            overflow: hidden;
            position: relative;
            padding: 0 1px;
        }
        .swiper-container3 .swiper-wrapper {
            display: flex;
            align-items: center;
        }
        .swiper-container3 .swiper-slide {
            width: 12rem;
            border-radius: 20px;
            height: 26.2rem;
            position: relative;
            transition: all 0.3s;
        }
        .swiper-container3 .swiper-slide img {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            box-shadow: 0 0 30px rgba(0,0,0,0.3);
            object-fit: cover;
        }
        .slide-caption-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
            color: white;
            padding: 40px 20px;
            border-radius: 0 0 20px 20px;
            text-align: center;
        }
        .slide-caption-overlay h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .slide-caption-overlay p {
            font-size: 1rem;
            margin-bottom: 12px;
        }
        .slide-caption-overlay .btn-small {
            display: inline-block;
            border: 1px solid white;
            padding: 8px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: 0.25s;
            background: rgba(0,0,0,0.4);
        }
        .slide-caption-overlay .btn-small:hover {
            background: var(--accent-brown);
            border-color: var(--accent-brown);



        }
        .swiper-pagination22 {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 10;
        }
        .swiper-pagination22 .swiper-pagination-bullet {
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            opacity: 0.6;
            margin: 0 6px;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            cursor: pointer;
        }
        .swiper-pagination22 .swiper-pagination-bullet-active {
            background: var(--accent-brown);
            opacity: 1;
            transform: scale(1.2);
            box-shadow: 0 0 8px rgba(155,123,92,0.5);
        }
        .swiper-container3 .prev-a,
        .swiper-container3 .next-a {
            width: 48px;
            height: 48px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            border-radius: 50%;
            color: white;
            transition: all 0.2s;
            z-index: 20;
        }
        .swiper-container3 .prev-a:hover,
        .swiper-container3 .next-a:hover {
            background: var(--accent-brown);
            transform: translateY(-50%) scale(1.05);
        }
        .swiper-container3 .prev-a::after,
        .swiper-container3 .next-a::after {
            font-size: 1.4rem;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .swiper-container3 { height: 16rem; }
            .swiper-container3 .swiper-slide { height: 16rem; }
            .slide-caption-overlay { padding: 20px 12px; }
            .slide-caption-overlay h2 { font-size: 1.1rem; }
            .slide-caption-overlay p { font-size: 0.75rem; }
            .slide-caption-overlay .btn-small { padding: 4px 12px; font-size: 0.7rem; }
            .swiper-pagination22 .swiper-pagination-bullet { width: 0.4rem; height: 0.4rem; }
        }
        @media (max-width: 640px) {
            .swiper-container3 { height: 14rem; }
            .swiper-container3 .swiper-slide { height: 14rem; }
        }

        /* ========= 主体内容区域 - 新布局，右侧图片区与左侧新闻底部对齐 ========= */
        .main-content {
            padding: 56px 0 40px;
        }
        
        /* 第一行：左右两侧自动等高 */
        .row-top {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            align-items: stretch;
        }
        .news-section {
            flex: 1.6;
            min-width: 260px;
        }
        .image-showcase-section {
            flex: 1.2;
            min-width: 280px;
            display: flex;
            flex-direction: column;
			
        }
        
        /* 图片展示区 - 三张卡片等高并填满右侧区域 */
        .image-grid {
            display: flex;
            gap: 3px;
            flex: 1;
            min-height: 0;
			 padding-right:1px;   /* 或 padding: 0 1px 0 0 */
        }
		
        .image-card {
            flex: 1;
            display: flex;
            flex-direction: column;
            background: var(--light-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 0px solid var(--border-light);
			background:#BEB59A;
        }

        .image-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-brown);
        }
        .image-card-img {
            flex: 1;
            width: 100%;
            object-fit: cover;
            display: block;
          
        }
		.image-card1 {
			position:absolute;
			top:936px;
			right:282px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 0px solid var(--border-light);
			background:#BEB59A;
        }
        .image-card1:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-brown);
        }
        .image-card-img1 {
            flex: 1;
            width: 100%;
            object-fit: cover;
            display: block;
            background-color: #BEB59A;
        }
		
        .image-card-title {
            padding: 12px 8px;
            font-weight: 600;
            color: var(--text-dark);
            background: white;
            border-top: 1px solid var(--border-light);
            font-size: 0.9rem;
            text-align: center;
            flex-shrink: 0;
			display:none;
        }
        
        /* 第二行：通知公告 + 友媒报道（各占一半宽度） */
        .row-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        .notice-section {
            flex: 1;          /* 各占一半 */
            min-width: 260px;
            display: flex;
            flex-direction: column;
        }
        .media-section {
            flex: 1;          /* 各占一半 */
            min-width: 280px;
            display: flex;
            flex-direction: column;
        }
        
        /* 公用组件样式 */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            border-left: 5px solid var(--accent-brown);
            padding-left: 16px;
            margin-bottom: 24px;
        }
        .section-header h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .more-link {
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        .more-link:hover {
            color: var(--accent-brown);
        }
        
        /* 新闻网格 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            flex: 1;
        }
        .news-card {
          /*  background: var(--light-bg);*/
		  background:#E4E0D6;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid var(--border-light);
        }
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-brown);
        }
		.news-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

        .card-img {
            height: 180px;
            background-color: #E2DCD0;
            background-size: cover;
            background-position: center center;
        }
        .card-content {
            padding: 16px 16px 20px;
			background:#E4E0D6;
        }
        .card-content h4 {
            font-size: 1.0rem;
            font-weight: 400;
            margin-bottom: 8px;
            color: var(--text-dark);
        }
		/* 学院新闻卡片标题 - 微软雅黑 */
.news-card .card-content h4 {
    font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
}
        .card-date {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .card-desc {
            font-size: 0.85rem;
            color: #5A5A5A;
            line-height: 1.4;
        }
        
        /* 标签页和通知列表（左侧） */
        .tabs-container {
            background: var(--light-bg);
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1;
            border: 1px solid var(--border-light);
        }
        .tabs-header {
            display: flex;
            background: #F5F2E9;
            border-bottom: 1px solid var(--border-light);
        }
        .tab-btn {
            flex: 1;
            text-align: center;
            padding: 14px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            background: #F5F2E9;
            color: var(--text-gray);
            border: none;
            font-size: 1rem;
        }
        .tab-btn.active {
            background: var(--light-bg);
            color: var(--accent-brown);
            border-bottom: 2px solid var(--accent-brown);
            font-weight: 700;
        }
        .tab-pane {
            display: none;
            padding: 20px 16px;
        }
        .tab-pane.active {
            display: block;
        }
        .notice-list {
            list-style: none;
        }
        .notice-list li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .notice-list li a {
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
			white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;
        }
        .notice-list li a:hover {
            color: var(--accent-brown);
        }
        .notice-date {
            font-size: 0.75rem;
            color: var(--text-gray);
            background: #F5F2E9;
            padding: 2px 8px;
            border-radius: 20px;
			flex-shrink: 0;
        }
		/* 列表项内部：标题自适应，日期不换行，整体不溢出 */
.notice-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;   /* 禁止换行，保证一行显示 */
    gap: 12px;
}

.notice-list li a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;        /* flex 子项防止溢出 */
}

.notice-date {
    flex-shrink: 0;      /* 日期固定宽度 */
}

/* 移动端窄屏时，若一行放不下，改为纵向排列 */
@media (max-width: 940px) {
    .notice-list li {
        flex-wrap: wrap;
        gap: 6px;
    }
    .notice-list li a {
        white-space: normal;
        word-break: break-word;
        flex: auto;
        width: 100%;
    }
}
        
        /* 右侧友媒报道标签页样式（与左侧保持一致） */
        .media-tabs-container {
            background: var(--light-bg);
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            flex: 1;
            border: 1px solid var(--border-light);
        }
        .media-tabs-header {
            display: flex;
            background: #F5F2E9;
            border-bottom: 1px solid var(--border-light);
        }
        .media-tab-btn {
            flex: 1;
            text-align: center;
            padding: 14px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            background: #F5F2E9;
            color: var(--text-gray);
            border: none;
            font-size: 1rem;
        }
        .media-tab-btn.active {
            background: var(--light-bg);
            color: var(--accent-brown);
            border-bottom: 2px solid var(--accent-brown);
            font-weight: 700;
        }
        .media-tab-pane {
            display: none;
            padding: 20px 16px;
        }
        .media-tab-pane.active {
            display: block;
        }
        .media-list {
            list-style: none;
        }
        .media-list li {
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .media-list li:last-child {
            border-bottom: none;
        }
       
  .media-list li a {
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            min-width: 0; /* 防止溢出 */
        }
        .media-list li a i {
            color: var(--accent-brown);
            width: 20px;
            flex-shrink: 0;
        }
        .media-list li a .media-title {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex: 1;
        }
        .media-list li a:hover {
            color: var(--accent-brown);
        }
        .media-date {
            font-size: 0.75rem;
            color: var(--text-gray);
            background: #F5F2E9;
            padding: 2px 8px;
            border-radius: 20px;
            flex-shrink: 0;
        }
.media-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}
.media-list li a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.media-date {
    flex-shrink: 0;
}
@media (max-width: 940px) {
    .media-list li {
        flex-wrap: wrap;
    }
    .media-list li a {
        white-space: normal;
        word-break: break-word;
        width: 100%;
    }
}
        /* 响应式：移动端图片区改为堆叠，高度自然 */
        @media (max-width: 992px) {
			.logo-img {
            height: auto;
            width: 260px;
        }
        .logo-img img {
          
            height: auto;
            width: 260px;
        }
			.main_bg{ width:auto;}
            .row-top, .row-bottom { flex-direction: column; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
            .image-grid { 
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                flex: none;
                height: auto;
            }
            .image-card {
                min-height: auto;
				height: 260px;
                overflow: hidden;
            }
            .image-card-img {
                min-height: 160px;
            }
        }
        @media (max-width: 640px) {
            .logo-text h1 { font-size: 1.1rem; }
            .logo-text p { font-size: 0.65rem; }
            .news-grid { grid-template-columns: 1fr; }
            .image-grid { grid-template-columns: 1fr; }
            .tabs-header .tab-btn, .media-tabs-header .media-tab-btn { font-size: 0.85rem; padding: 10px 0; }
            .container { padding: 0 18px; }
        }

        /* 画廊等其他模块样式保持不变 */
        .gallery-section {
            margin: 0 auto;
        }
		  .gallery-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 24px;
            border-left: 5px solid var(--accent-brown);
            padding-left: 16px;
        }
        .gallery-header h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-dark);
        }
     /*   .gallery-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 32px;
            color: var(--text-dark);
            position: relative;
        }*/
        .gallery-title:after {
            content: '';
            width: 70px;
            height: 3px;
            background: var(--accent-brown);
            display: block;
            margin: 12px auto 0;
            border-radius: 4px;
        }
		
		.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
   /* background-color: var(--primary-warm); */  /* 暖灰色背景 */
    padding: 10px 20px;
    border-radius: 40px;                     /* 圆角药丸形状 */
    margin-bottom: 24px;
}
.gallery-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.gallery-header .more-link {
    color: var(--text-gray);
}
.gallery-header .more-link:hover {
    color: var(--accent-brown);
}

        .gallery-swiper {
            width: 100%;
            padding: 8px 0 40px;
        }
        .gallery-swiper .swiper-slide {
            text-align: center;
            border-radius: 24px;
            overflow: hidden;
            background: #FAFBF1;
            box-shadow: var(--shadow-sm);
        }
        .gallery-swiper .swiper-slide img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .gallery-swiper .swiper-slide:hover img {
            transform: scale(1.02);
        }
        .slide-caption {
            padding: 12px;
            font-weight: 500;
            background: #FAFBF1;
          /*  color: var(--text-dark);*/
			color: var(--accent-dark);
        }
        .faculty-student-section {
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
        }
        .section-title:after {
            content: '';
            width: 100%;
            height: 3px;
            background: var(--accent-brown);
            display: block;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .fs-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: stretch;
		
        }
        .student-side {
            flex: 0 0 70%;
            background: var(--light-bg);
            border-radius: 28px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
				height:1050px;
        }
        .teacher-side {
            flex: 0 0 calc(30% - 30px);
            background: var(--light-bg);
            border-radius: 28px;
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            overflow: hidden;
				height:1050px;
        }
        .fs-subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--accent-brown);
            border-left: 4px solid var(--accent-brown);
            padding-left: 12px;
            flex-shrink: 0;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }
        .fs-subtitle .more-link {
            font-size: 0.85rem;
            font-weight: normal;
        }
        .teacher-scroll-container {
            flex: 1;
            overflow: hidden;
            position: relative;
        }
        .teacher-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            animation: scrollUp 20s linear infinite;
			height:600px;
        }
        .teacher-list:hover {
            animation-play-state: paused;
        }
        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .teacher-item {
            display: flex;
            gap: 16px;
            align-items: center;
            padding: 12px;
            border-radius: 16px;
            transition: all 0.3s;
            background: #FAFBF1;
        }
        .teacher-item:hover {
            background: #F5F2E9;
            transform: translateX(5px);
        }
        .teacher-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }
        .teacher-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .teacher-info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .teacher-info p {
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        .student-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }
        .student-card {
            flex: 0 0 calc(24.6% - 16px);
            background: #FAFBF1;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid var(--border-light);
        }
        .student-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .student-img {
            height: 190px;
            overflow: hidden;
        }
        .student-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        .student-card:hover .student-img img {
            transform: scale(1.05);
        }
        .student-info {
            padding: 16px;
        }
        .student-info h4 {
            font-size: 1.0rem;
            font-weight: 400;
            margin-bottom: 6px;
			  font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
        }
        .student-info p {
            font-size: 0.85rem;
            color: var(--text-gray);
            margin-bottom: 8px;
        }
        .student-tag {
            display: inline-block;
            background: var(--primary-warm);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            color: var(--accent-dark);
        }
        @media (max-width: 1024px) {
            .student-card { flex: 0 0 calc(50% - 12px); }
            .fs-container { flex-direction: column; }
            .student-side, .teacher-side { flex: 0 0 100%; }
            .teacher-side { min-height: 400px; }
			.main_bg{ width:auto;}
        }
        @media (max-width: 640px) {
            .student-card { flex: 0 0 100%; }
            .teacher-item { flex-direction: column; text-align: center; }
        }
        .portfolio-section {
            margin: 0 auto;
        }
        .portfolio-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 24px;
            border-left: 5px solid var(--accent-brown);
            padding-left: 16px;
        }
        .portfolio-header h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .portfolio-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
        }
        .portfolio-title:after {
            content: '';
            width: 100%;;
            height: 3px;
            background: var(--accent-brown);
            display: block;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .portfolio-masonry {
            column-count: 4;
            column-gap: 24px;
        }
        .portfolio-item {
            break-inside: avoid;
            margin-bottom: 24px;
          /*  background: var(--light-bg);*/
			 background: #FAFBF1;
        
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--border-light);
        }
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .portfolio-img img {
            width: 100%;
            height: 200px;/*auto*/
            display: block;
			overflow:hidden;
        }
        .portfolio-caption {
            padding: 12px;
			margin-bottom:10px;
            text-align: center;
            font-weight: 500;
          /*  background: white;*/
			 background: #FAFBF1;
        
            border-top: 1px solid var(--border-light);
			height:60px;
			  line-height: 1.5;
			  color: var(--accent-dark);
			   font-family: '微软雅黑', 'Microsoft YaHei', sans-serif;
			 display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
        }
        @media (max-width: 1024px) {
            .portfolio-masonry { column-count: 3; }
        }
        @media (max-width: 768px) {
            .portfolio-masonry { column-count: 2; }
        }
        @media (max-width: 480px) {
            .portfolio-masonry { column-count: 1; }
        }
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.92);
            backdrop-filter: blur(8px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .search-overlay.active {
            visibility: visible;
            opacity: 1;
        }
        .search-modal {
            width: 90%;
            max-width: 600px;
            background: #fff;
            border-radius: 56px;
            padding: 8px 8px 8px 24px;
            display: flex;
            align-items: center;
            transform: translateY(30px);
            transition: transform 0.3s ease;
        }
        .search-overlay.active .search-modal {
            transform: translateY(0);
        }
        .search-modal input {
            flex: 1;
            border: none;
            padding: 18px 8px;
            font-size: 1.2rem;
            outline: none;
            background: transparent;
        }
        .search-modal button {
            background: var(--accent-brown);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            cursor: pointer;
            transition: 0.2s;
        }
        .search-modal button:hover {
            background: var(--accent-dark);
        }
        .close-search {
            position: absolute;
            top: 40px;
            right: 40px;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }
        .close-search:hover {
            background: var(--accent-brown);
            transform: rotate(90deg);
        }
        .site-footer {
            background-color: var(--primary-warm);
            padding: 40px 0 24px;
            margin-top: 20px;
            border-top: 1px solid var(--border-light);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
        }
        .footer-copyright {
            text-align: center;
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(0,0,0,0.1);
            font-size: 0.8rem;
        }
        .footer-links a:hover {
            color: var(--accent-brown);
        }

        /* ========= 新增：图片通栏模块样式（专题专栏） ========= */
        .partner-section {
            margin: 60px auto 0;
        }
        .partner-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: var(--text-dark);
            position: relative;
        }
        .partner-title:after {
            content: '';
            width: 100%;;
            height: 3px;
            background: var(--accent-brown);
            display: block;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        /* 使用grid自动适应，使卡片填满整行 */
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .partner-item {
            background: var(--light-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid var(--border-light);
			 background: #FAFBF1;
        }
        .partner-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-brown);
        }
        .partner-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .partner-caption {
            padding: 16px;
            text-align: center;
            font-weight: 500;
            color: var(--text-dark);
          /*  background: white;*/
			 background: #FAFBF1;
      
            border-top: 1px solid var(--border-light);
			  color: var(--accent-dark);
        }
        /* 移动端适配：较小屏幕时卡片自动换行 */
        @media (max-width: 768px) {
            .partner-grid {
                gap: 20px;
            }
        }
  /* CSS Document */

