
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimHei", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* Top Bar */
.top-bar {
    padding: 8px 0;
    font-size: 15px;
    color: #333;
    margin-top:20px;
}

    .top-bar .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.search-box a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

    .search-box a:hover {
        color: #c41e3a;
    }

.search-box span {
    color: #ddd;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .search-box input {
        padding: 4px 12px;
        border: 1px solid #ddd;
        border-radius: 15px;
        color: #333;
        font-size: 15px;
        width: 250px;
        height: 33px;
        outline: none;
    }

        .search-box input:focus {
            border-color: #c41e3a;
        }

/* Header */
.header {
    background: #fff;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.05);*/
    position: sticky;
    top: 0;
    z-index: 100;
}

    .header .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.logo-img {
    width: 200px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 16px;
    color: #c41e3a;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 10px;
    color: #999;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-item {
    position: relative;
}

    .nav-item > a {
        display: block;
        padding: 18px 16px;
        color: #333;
        text-decoration: none;
        font-size: 18px;
        transition: all 0.3s;
        font-weight: 500;
    }

        .nav-item > a:hover {
            color: #c41e3a;
            background: #fafafa;
        }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-top: 3px solid #c41e3a;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

    .dropdown a:hover {
        background: #fafafa;
        color: #c41e3a;
        padding-left: 28px;
    }

/* Banner Slider */
.banner-slider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .banner-slide.active {
        opacity: 1;
    }

    .banner-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    border-radius: 50%;
}

    .banner-arrow:hover {
        background: rgba(196,30,58,0.9);
    }

    .banner-arrow.prev {
        left: 30px;
    }

    .banner-arrow.next {
        right: 30px;
    }

.banner-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .banner-dot.active {
        background: #c41e3a;
        border-color: #fff;
        transform: scale(1.2);
    }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 50px 0;
    background: #fff;
}

    .section.gray-bg {
        background: #fafafa;
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #c41e3a;
    }

.more-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .more-link:hover {
        color: #c41e3a;
    }

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

    .news-featured img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 30px;
    color: #fff;
}

    .news-featured-overlay .date {
        font-size: 14px;
        margin-bottom: 10px;
        opacity: 0.95;
        font-weight: 500;
    }

    .news-featured-overlay h3 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .news-featured-overlay p {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.7;
    }

.news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

    .news-item:hover {
        background: #fafafa;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0 -10px;
    }

    .news-item:last-child {
        border-bottom: none;
    }

.news-date-badge {
    flex-shrink: 0;
    text-align: center;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-width: 65px;
}

    .news-date-badge .day {
        font-size: 24px;
        font-weight: bold;
        color: #c41e3a;
        line-height: 1;
        font-family: Arial, sans-serif;
    }

    .news-date-badge .month {
        font-size: 15px;
        color: #999;
        margin-top: 2px;
    }

.news-item-content {
    flex: 1;
}

    .news-item-content h4 {
        font-size: 19px;
        color: #333;
        margin-bottom: 6px;
        line-height: 1.5;
        font-weight: 500;
    }

    .news-item-content p {
        font-size: 16px;
        color: #999;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.card-content {
    padding: 20px;
}

.card .date-tag {
    display: inline-block;
    font-size: 15px;
    color: #c41e3a;
    background: #fff5f7;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: 500;
}

.card h3 {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

/* Section Background Text */
.news-section,
.party-section,
.cooperation-section,
.academic-section,
.links-section {
    position: relative;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /*letter-spacing: 10px;*/
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    font-family: Arial, sans-serif;
}

.news-section .section-header,
.party-section .section-header,
.cooperation-section .section-header,
.academic-section .section-header,
.links-section .section-header {
    position: relative;
    z-index: 1;
}

.news-section .container > div:not(.section-header),
.party-section .container > div:not(.section-header),
.cooperation-section .container > div:not(.section-header),
.academic-section .container > div:not(.section-header),
.links-section .container > div:not(.section-header) {
    position: relative;
    z-index: 1;
}

.cooperation-top-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.cooperation-featured-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: row;
}

    .cooperation-featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .cooperation-featured-card img {
        width: 280px;
        height: 200px;
        object-fit: cover;
        flex-shrink: 0;
    }

.cooperation-featured-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .cooperation-featured-content h3 {
        font-size: 18px;
        color: #333;
        line-height: 1.5;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .cooperation-featured-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 15px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.cooperation-date {
    font-size: 15px;
    color: #999;
    font-weight: 500;
}

/* Bottom Three Cards */
.cooperation-bottom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cooperation-small-card {
    background: #fff;
    border: 2px solid #c41e3a;
    border-radius: 8px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 100px;
}

    .cooperation-small-card:hover {
        background: #c41e3a;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(196,30,58,0.3);
    }

        .cooperation-small-card:hover h4 {
            color: #fff;
        }

        .cooperation-small-card:hover .cooperation-small-date {
            background: #fff;
            color: #c41e3a;
        }

.cooperation-small-date {
    flex-shrink: 0;
    text-align: center;
    padding: 12px 15px;
    background: #c41e3a;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s;
    min-width: 70px;
}

    .cooperation-small-date .day {
        font-size: 28px;
        font-weight: bold;
        line-height: 1;
        font-family: Arial, sans-serif;
    }

    .cooperation-small-date .month {
        font-size: 15px;
        margin-top: 4px;
        opacity: 0.9;
    }

.cooperation-small-card h4 {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.3s;
}

/* Academic Section */
.academic-tabs {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
    border-bottom: 2px solid #e5e5e5;
    justify-content: center;
}

.tab-btn {
    padding: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    font-weight: 500;
}

    .tab-btn:hover {
        color: #c41e3a;
    }

    .tab-btn.active {
        color: #c41e3a;
    }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 3px;
            background: #c41e3a;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.academic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.academic-card {
    background: #fff;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

    .academic-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .academic-card img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.academic-card-content {
    padding: 18px;
}

.academic-card .title {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.academic-card .info {
    font-size: 15px;
    color: #999;
}

/* Links Section */
.links-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.link-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 22px 12px;
    border-radius: 0px;
    text-align: center;
    text-decoration: none;
    color: #1976d2;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .link-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }

    .link-card:nth-child(2) {
        background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
        color: #7b1fa2;
    }

    .link-card:nth-child(3) {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        color: #388e3c;
    }

    .link-card:nth-child(4) {
        background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        color: #f57c00;
    }

    .link-card:nth-child(5) {
        background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
        color: #c2185b;
    }

    .link-card:nth-child(6) {
        background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
        color: #00796b;
    }

    .link-card:nth-child(7) {
        background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
        color: #f57f17;
    }

    /*列表页开始*/

/* Page Header */
.page-header {
    background: #fff;
    padding: 130px 0 20px;
    position: relative;
    overflow: hidden;
}

.page-header-bg-text {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -80%);
    font-size: 150px;
    font-weight: bold;
    color: rgba(0,0,0,0.04);
    letter-spacing: 10px;
    white-space: nowrap;
}


    .page-header .container {
        display: flex;
        flex-direction: column;
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
    }

.page-title {
    font-size: 48px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* 二级导航样式修改 */
.sub-navigation {
    align-self: center; /* 将二级导航放在右侧 */
    margin-top: -70px; /* 向上移动，使其与标题同一行 */
}

.sub-nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    padding: 15px;
    overflow: hidden;
}

.sub-nav-item {
    flex: auto;
    text-align: center;
}

.sub-nav-link {
    display: block;
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 6px;
    position: relative;
}

    .sub-nav-link:hover {
        background: #fff;
        color: #c41e3a;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .sub-nav-link.active {
        color: #c41e3a;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        font-weight: 600;
    }

        .sub-nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 3px;
            background: #c41e3a;
            border-radius: 3px 3px 0 0;
        }

.page-subtitle {
    font-size: 20px;
    color: #666;
    margin: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    color: #999;
    border-bottom: 2px solid #999;
    height: 53px;
    padding-bottom: 10px;
}

/* 或者使用flex-grow让右侧占据剩余空间 */
.column-name {
    flex-shrink: 0; /* 防止左侧被压缩 */
    border-bottom: 5px solid #991e23;
    padding-bottom: 10px;
}

.current-position {
    flex-grow: 1;
    text-align: right;
}

.breadcrumb a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s;
}

    .breadcrumb a:hover {
        color: #a01828;
    }

.breadcrumb span {
    color: #808080;
}

/* News List Section */
.news-list-section {
    padding: 0px 0 60px;
    background: #fff;
}

    .news-list-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

.news-list-container {
    background: #fff;
}

.news-list-item {
    display: flex;
    gap: 30px;
    margin: 0 0 30px;
    padding: 15px 0;
    border-bottom: 2px solid #991e23;
    border-top: 2px solid #991e23;
    text-decoration: none;
    color: #333;
    background: #fafafa;
    transition: all 0.3s;
}

    .news-list-item:hover {
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        padding-left: 15px;
        padding-right: 15px;
    }

.news-date {
    flex-shrink: 0;
    text-align: center;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 140px;
}

    .news-date .year {
        font-size: 16px;
        color: #999;
        margin-bottom: 5px;
    }

    .news-date .day {
        font-size: 48px;
        font-weight: bold;
        color: #c41e3a;
        line-height: 1;
        font-family: Arial, sans-serif;
    }

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s;
}

.news-list-item:hover .news-title {
    color: #c41e3a;
}

.news-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.pagination-text {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 4px;
}

    .pagination a:hover {
        border-color: #c41e3a;
        color: #c41e3a;
        background: #fff5f7;
    }

.pagination .active {
    background: #c41e3a;
    color: #fff;
    border-color: #c41e3a;
    font-weight: bold;
}

.pagination .dots {
    border: none;
    background: none;
    cursor: default;
}

    /*列表也结束*/
    
    /*学院名师*/
/* Breadcrumb */
.breadcrumb {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

    .breadcrumb .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #999;
    }

    .breadcrumb a {
        color: #c41e3a;
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: #a01828;
        }

    .breadcrumb span {
        color: #ccc;
    }

/* Teachers Section */
.teachers-section {
    padding: 60px 0;
    background: #fff;
}

    .teachers-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.teacher-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

    .teacher-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

.teacher-photo {
    flex-shrink: 0;
    width: 160px;
    height: 200px;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f5f5;
}

    .teacher-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.teacher-info {
    flex: 1;
}

.teacher-name {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 8px;
}

.teacher-title {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.teacher-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.8;
}

/*师资团队*/
/* Teachers Section */
.teachers-team-section {
    padding: 60px 0;
    background: #fff;
}

    .teachers-team-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

.section-team-title {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 35px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

.teachers-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.teacher-team-card {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

    .teacher-team-card:hover {
        transform: translateY(-5px);
    }

.teacher-team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    background: #f5f5f5;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .teacher-team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.teacher-team-card:hover .teacher-team-photo img {
    transform: scale(1.05);
}

.teacher-position {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.teacher-name {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/*展厅*/
/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #fff;
}

    .gallery-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Featured Exhibition */
.featured-exhibition {
    position: sticky;
    top: 100px;
}

.exhibition-poster {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

    .exhibition-poster img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Exhibition List */
.exhibition-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.exhibition-item {
    padding: 15px 30px;
    border-bottom: 2px solid #991e23;
    border-top: 2px solid #991e23;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    position: relative;
    background: #fff;
    margin-bottom: 20px;
}

    .exhibition-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #c41e3a;
        transform: scaleY(0);
        transition: transform 0.3s;
    }

    .exhibition-item:hover {
        background: #fafafa;
        padding-left: 40px;
        border-bottom-color: #c41e3a;
    }

        .exhibition-item:hover::before {
            transform: scaleY(1);
        }

    .exhibition-item h3 {
        font-size: 18px;
        color: #333;
        font-weight: 600;
        transition: color 0.3s;
    }

    .exhibition-item:hover h3 {
        color: #c41e3a;
    }
    /*作品展*/
/* Exhibition Detail Section */
.exhibition-detail-section {
    padding: 60px 0;
    background: #fff;
}

    .exhibition-detail-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

.exhibition-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.exhibition-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

/* Student Group */
.student-group {
    margin-bottom: 80px;
    display: flex;
    gap: 40px;
}

.group-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.group-leader {
    display: grid;
    align-items: center;
    gap: 20px;
}

.leader-photo {
    width: 100px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
    border: 6px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .leader-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.leader-info {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.group-divider {
    flex: 1;
    width: 130px;
    height: 2px;
    background: linear-gradient(to right, #333 0%, #333 200px, transparent 200px);
    margin-left: 30px;
}

.group-members {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.member-card {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

    .member-card:hover {
        transform: translateY(-5px);
    }

.member-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
    border: 8px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

.member-card:hover .member-photo img {
    transform: scale(1.05);
}

.member-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}


/* Footer */
.footer {
    background: url(/msx/image/foodbg.png) center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 100px 0 0;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .footer .container {
        position: relative;
        z-index: 1;
    }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3e3e3b;
    font-weight: 600;
}

.footer-section img {
    width: 90%;
}

.footer-section p {
    color: #535251;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .footer-logo img {
        width: 100px;
        height: auto;
    }

.footer-logo-text h3 {
    font-size: 18px;
    color: #3e3e3b;
    margin-bottom: 5px;
}

.footer-logo-text p {
    font-size: 12px;
    color: #999;
}

.footer-qr {
    gap: 15px;
    margin-top: 15px;
}

.qr-item {
    text-align: center;
}

    .qr-item img {
        width: 120px;
        background: #fff;
        padding: 5px;
        border-radius: 6px;
        margin-bottom: 6px;
    }

    .qr-item p {
        font-size: 11px;
        color: #999;
    }

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    background: #991e23;
}

/* Responsive */
@media (max-width: 1200px) {
    .academic-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .group-members {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid,
    .card-grid,
    .cooperation-grid,
    .academic-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .banner-slider {
        height: 350px;
    }

    .group-members {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 0;
    }

    .group-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .group-divider {
        display: none;
    }

    .page-title {
        font-size: 32px;
    }

    .exhibition-title {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }
}
