/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "SimHei", "SimSun", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* 懒加载动画效果 */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* 延迟动画 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Logo区域 */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 100%;
}
.nav-icon-img {
    width: 40px;
}
.university-info {
    display: flex;
    flex-direction: column;
}

.university-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.university-name-en {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

/* 部门名称 */
.department-name h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

/* 搜索区域 */
.search-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-input {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    outline: none;
}

.search-btn {
    background: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-btn:hover {
    background: #2c3e50;
}

/* 顶部导航栏 */
.dept-navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dept-navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dept-navbar__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.dept-navbar__item {
    position: relative;
}

.dept-navbar__link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.dept-navbar__link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dept-navbar__item--has-dropdown .dept-navbar__link {
    padding-right: 32px;
}

.dept-navbar__arrow {
    position: absolute;
    right: 12px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dept-navbar__item--has-dropdown:hover .dept-navbar__arrow {
    transform: rotate(180deg);
}

/* 下拉菜单 */
.dept-navbar__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dept-navbar__item--has-dropdown:hover .dept-navbar__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dept-navbar__dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dept-navbar__dropdown-link:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding-left: 24px;
}

/* 汉堡菜单按钮（移动端） */
.dept-navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.dept-navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.dept-navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.dept-navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.dept-navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 移动端响应式 */
@media (max-width: 1024px) {
    .dept-navbar__link {
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .dept-navbar__toggle {
        display: flex;
    }
    
    .dept-navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dept-navbar__menu.active {
        max-height: 600px;
        padding: 10px 0;
    }
    
    .dept-navbar__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dept-navbar__link {
        padding: 14px 20px;
        width: 100%;
        justify-content: space-between;
    }
    
    .dept-navbar__item--has-dropdown .dept-navbar__link {
        padding-right: 20px;
    }
    
    .dept-navbar__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
    }
    
    .dept-navbar__item--has-dropdown.active .dept-navbar__dropdown {
        max-height: 500px;
    }
    
    .dept-navbar__dropdown-link {
        padding: 10px 40px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .dept-navbar__dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 40px;
    }
    
    .dept-navbar__arrow {
        position: static;
        margin-left: auto;
    }
}

/* 主要内容区域 */
.main-content {
    padding:  0;
    min-height: 50vh;
    position: relative;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 15px 0;
}

/* 静态背景图区域（用于新闻列表和详情页） */
.dept-hero-section {
    width: 100%;
    height: 200px;
    background-image: url('../images/banner2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.dept-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* 轮播区域 */
.carousel-section {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin: 0;
}

.carousel-container {
    position: relative;
    height: 300px;
}

.carousel-slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* 轮播内容 */
.slide-content {
    text-align: center;
    color: white;
    padding: 50px;
    position: relative;
    z-index: 1;
    background: rgba(30, 60, 114, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.slide-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 18px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 轮播控制按钮 */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(30, 60, 114, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    pointer-events: all;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(30, 60, 114, 1);
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: #1e3c72;
}

/* 内容模块区域 */
.content-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* 模块通用样式 */
.module {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.module-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-logo {
    height: 24px;
    width: auto;
}

.module-title h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.more-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #ffd700;
}

.module-content {
    padding: 25px;
}

/* 新闻动态模块 */
.featured-news {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-image {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-image:hover img {
    transform: scale(1.05);
}

.news-info {
    flex: 1;
}

.news-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.news-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-info h3 a:hover {
    color: #1e3c72;
}

.news-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    color: #999;
    font-size: 12px;
}

.news-list {
    list-style: none;
}

.news-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.news-list li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    border-radius: 6px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list .news-date {
    flex-shrink: 0;
    width: 80px;
    font-size: 12px;
    color: #999;
}

.news-list a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.news-list a:hover {
    color: #1e3c72;
}

/* 通知公告模块 */
.notice-list {
    list-style: none;
}

.notice-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.notice-list li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    border-radius: 6px;
}

.notice-list li:last-child {
    border-bottom: none;
}

.notice-date {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.notice-date .day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.notice-date .month {
    font-size: 12px;
    opacity: 0.9;
}

.notice-content {
    flex: 1;
}

.notice-content a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.notice-content a:hover {
    color: #1e3c72;
}

.notice-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 党建工作模块 */
.party-news-list {
    list-style: none;
}

.party-news-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.party-news-list li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
    border-radius: 6px;
}

.party-news-list li:last-child {
    border-bottom: none;
}

.party-news-list .party-date {
    flex-shrink: 0;
    width: 80px;
    font-size: 12px;
    color: #999;
}

.party-news-list a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.party-news-list a:hover {
    color: #1e3c72;
}

/* 部门简介模块 */
.intro-content {
    display: flex;
    gap: 30px;
}

.intro-text {
    flex: 2;
}

.intro-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #1e3c72;
}

.intro-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.intro-text ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.intro-text li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.intro-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 10px;
    color: white;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

/* 底部导航区域 */
.footer {
    background: white;
    padding: 20px 20px 30px;
    position: relative;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    margin: 0 auto;
    max-width: 900px;
}

/* 导航按钮样式 */
.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 80px;
    background: white;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.nav-btn:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.nav-btn:hover,
.nav-btn.active {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 25px rgba(30, 60, 114, 0.4);
    z-index: 10;
    border-color: #1e3c72;
}

.nav-btn:active {
    transform: translateY(-5px) scale(1.04);
}

/* 按钮图标样式 */
.btn-icon {
    font-size: 24px;
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 5;
    position: relative;
    margin-right: 10px;
}

.nav-btn:hover .btn-icon,
.nav-btn.active .btn-icon {
    transform: scale(1.1);
}

.btn-text {
    z-index: 5;
    position: relative;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    line-height: 1;
    transition: all 0.4s ease;
    color: #333;
    letter-spacing: 0.5px;
}

.nav-btn:hover .btn-text,
.nav-btn.active .btn-text {
    color: white;
    font-weight: 800;
}

/* 网站底部信息样式 */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 0;
}

.site-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 上部分：四个信息列 */
.footer-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.footer-content {
    flex: 1;
}

.footer-content p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-content strong {
    color: white;
    font-weight: 600;
}

/* 快速链接样式 */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 12px;
}

.footer-links a:hover {
    color: #3498db;
}

/* 社交媒体图标 */
.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: #3498db;
    border-color: #3498db;
    transform: translateY(-2px);
}

.social-icon span {
    font-size: 18px;
    color: white;
}

.icon-weibo {
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* 分隔线 */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 30px 0;
}

/* 版权信息 */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    margin: 5px 0;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-copyright p:first-child {
    font-weight: 500;
    color: #ecf0f1;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .content-modules {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-section {
        justify-content: center;
    }

    .university-name {
        font-size: 20px;
    }

    .department-name h2 {
        font-size: 24px;
    }

    .search-input {
        width: 150px;
    }

    .carousel-container {
        height: 300px;
    }

    .slide-content h3 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .content-modules {
        margin-top: 20px;
    }

    .module-header {
        padding: 15px 20px;
    }

    .module-content {
        padding: 20px;
    }

    .featured-news {
        flex-direction: column;
        gap: 15px;
    }

    .news-image {
        width: 100%;
        height: 150px;
    }

    .party-news-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
    }
    
    .party-news-list .party-date {
        width: auto;
        font-size: 11px;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        width: 100%;
        max-width: 300px;
        border-radius: 12px;
    }

    /* 网站底部响应式 */
    .site-footer .footer-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .site-footer .footer-title {
        font-size: 16px;
    }

    .site-footer .footer-content p {
        font-size: 14px;
    }

    .site-footer .social-icons {
        justify-content: flex-start;
    }

    .site-footer .social-icon {
        width: 35px;
        height: 35px;
    }

    .site-footer .social-icon span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        height: 40px;
    }

    .university-name {
        font-size: 18px;
    }

    .university-name-en {
        font-size: 10px;
    }

    .department-name h2 {
        font-size: 20px;
    }

    .search-input {
        width: 120px;
        font-size: 12px;
    }

    .search-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .main-content {
        padding: 15px 15px;
    }

    .carousel-container {
        height: 250px;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .slide-content h3 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .module-header {
        padding: 12px 15px;
    }

    .module-title h2 {
        font-size: 18px;
    }

    .module-content {
        padding: 15px;
    }

    .notice-list li {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .notice-date {
        align-self: center;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    /* 网站底部移动端响应式 */
    .site-footer {
        padding: 30px 0 15px;
    }

    .site-footer-container {
        padding: 0 15px;
    }

    .site-footer .footer-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .site-footer .footer-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .site-footer .footer-links a {
        font-size: 14px;
    }

    .site-footer .social-icons {
        gap: 10px;
    }

    .site-footer .social-icon {
        width: 32px;
        height: 32px;
    }

    .site-footer .social-icon span {
        font-size: 14px;
    }

    .site-footer .footer-copyright p {
        font-size: 12px;
    }
}