/* ==========================================
   基础重置
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 64%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================
   顶部 Header
   ========================================== */
header {
    height: 7.3vw;
    background-image: url('./images/top.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    color: white;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-placeholder img {
    height: 4.7vw;
    max-width: 100%;
    object-fit: contain;
}

/* 工具和搜索区域容器 */
.tools-area {
    display: flex;
    align-items: center;
    gap: 1.56vw;
}

.search-box {
    display: flex;
    background-color: #3b629c;
    border-radius: 1.3vw;
    padding: 0.6vw;
    align-items: center;
    width: 12.5vw;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    flex: 1;
    font-size: 0.73vw;
}

.search-box input::placeholder {
    color: white;
    opacity: 0.9;
}

.search-box .separator {
    width: 1px;
    height: 0.94vw;
    background-color: white;
    margin: 0 0.63vw;
    opacity: 0.8;
}

.search-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.search-icon img {
    width: 0.94vw;
    height: 0.94vw;
    display: block;
}

.header-links {
    display: flex;
    gap: 1.3vw;
}

.icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.31vw;
    color: white;
    font-size: 0.68vw;
}

.icon-link:hover {
    color: #cce0ff;
}

.icon-circle {
    width: 2.1vw;
    height: 2.1vw;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.icon-circle svg {
    width: 1.25vw;
    height: 1.25vw;
}

/* ==========================================
   导航栏
   ========================================== */
nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list>li {
    position: relative;
    flex: 1;
    text-align: center;
}

.nav-list>li>a {
    display: block;
    padding: 0.94vw 0;
    font-size: 1.04vw;
    font-weight: bold;
    color: #0D4081;
    transition: all 0.3s;
}

.nav-list>li:hover>a,
.nav-list>li.active>a {
    background-color: #1F68B5;
    color: white;
}

.nav-list .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #1F68B5;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-list .dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-list .dropdown li:last-child {
    border-bottom: none;
}

.nav-list .dropdown a {
    display: block;
    padding: 0.63vw 0;
    font-size: 0.83vw;
    font-weight: normal;
    color: white;
    background: none;
    transition: background-color 0.2s;
}

.nav-list .dropdown a:hover {
    background-color: #0D4081;
    color: white;
}

.nav-list>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================
   Banner
   ========================================== */
.banner {
    width: 100%;
    height: 24vw;
    position: relative;
    overflow: hidden;
    background-color: #e0e8f5;
}

.banner-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.banner-item.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.34vw;
    height: 2.34vw;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 1.25vw;
    font-family: monospace;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: background-color 0.3s, opacity 0.3s;
}

.btn-left {
    left: 1.04vw;
}

.btn-right {
    right: 1.04vw;
}

.banner-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.banner:hover .banner-btn {
    opacity: 1;
}

.banner-dots {
    position: absolute;
    bottom: 1.04vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.42vw;
    z-index: 10;
}

.banner-dot {
    width: 0.83vw;
    height: 0.21vw;
    background-color: #69C6F0;
    cursor: pointer;
    transition: background-color 0.3s, width 0.3s;
}

.banner-dot.active {
    background-color: #2587E7;
    height: 0.42vw;
    width: 2.08vw;
}

/* ==========================================
   通用区块标题
   ========================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 0.52vw;
    margin-bottom: 1.04vw;
}

.section-title-img {
    height: 2.6vw;
    width: auto;
    display: block;
}

.more-img {
    height: 1.7vw;
    width: auto;
    display: block;
    transition: opacity 0.3s;
}

.more-link-img:hover .more-img {
    opacity: 0.8;
}

/* ==========================================
   主体内容区
   ========================================== */
main {
    background-color: white;
}

.section-wrapper {
    width: 100%;
    padding: 2.6vw 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.section-wrapper1 {
    background-image: url('./images/bg1.png');
}

.section-wrapper2 {
    background-image: url('./images/bg2.png');
}

.section-wrapper3 {
    background-image: url('./images/bg3.png');
}

.section-wrapper4 {
    background-image: url('./images/bg4.png');
}

.section-wrapper5 {
    padding: 5.2vw 0;
    background-image: url('./images/bg5.png');
}

.row {
    display: flex;
    gap: 2.6vw;
}

.col-half {
    flex: 1;
    width: 0;
    min-width: 0;
}

/* ==========================================
   新闻列表样式
   ========================================== */
.news-list li {
    display: flex;
    margin-bottom: 1.04vw;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1.04vw;
}

.news-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-list li a {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.news-date {
    width: 3.65vw;
    height: 3.65vw;
    display: flex;
    flex-direction: column;
    margin-right: 1.04vw;
    flex-shrink: 0;
    border: 1px solid #A4C8DF;
}

.news-date .day {
    width: 100%;
    height: 50%;
    font-size: 1.25vw;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #104283;
}

.news-date .year-month {
    width: 100%;
    height: 50%;
    font-size: 0.68vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #104283;
    background-color: white;
}

.news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    overflow: hidden;
    min-width: 0;
}

.news-content h4 {
    font-size: 0.83vw;
    color: #333;
    margin: 0 0 0.42vw 0;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.news-content h4:hover {
    color: #2587e7;
}

.news-content p {
    font-size: 0.73vw;
    color: #999;
    margin: 0 0 0.31vw 0;
    line-height: 1.6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.time-meta {
    font-size: 0.68vw;
    color: #aaa;
    display: flex;
    align-items: center;
}

.icon-time {
    width: 0.73vw;
    height: 0.73vw;
    margin-right: 0.26vw;
    vertical-align: middle;
}

/* ==========================================
   通知公告
   ========================================== */
.notice-top {
    display: flex;
}

.notice-top .separator {
    display: none;
}

.notice-zs {
    font-size: 1.35vw;
    font-weight: bold;
    color: #7396c4;
    display: none;
}

.notice-list li {
    margin-bottom: 0.78vw;
    padding-right: 0.78vw;
    border-radius: 0.42vw;
    transition: background-color 0.3s ease;
}

.notice-list li a {
    display: flex;
    align-items: center;
}

.notice-date {
    width: 3.4vw;
    height: 3.65vw;
    background-color: #dbe8fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1.04vw;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.notice-date .day {
    font-size: 1.25vw;
    font-weight: bold;
    color: #1a73e8;
    line-height: 1.2;
}

.notice-date .year-month {
    font-size: 0.68vw;
    color: #666;
    margin-top: 0.1vw;
}

.notice-title {
    font-size: 0.83vw;
    color: #333;
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.notice-list li:hover,
.notice-list li.active {
    background-color: #23528b;
}

.notice-list li:hover .notice-date,
.notice-list li.active .notice-date {
    background-color: transparent;
}

.notice-list li:hover .notice-date .day,
.notice-list li.active .notice-date .day,
.notice-list li:hover .notice-date .year-month,
.notice-list li.active .notice-date .year-month,
.notice-list li:hover .notice-title,
.notice-list li.active .notice-title {
    color: #ffffff;
}

/* ==========================================
   图片速览区
   ========================================== */
.gallery-title {
    position: relative;
}

.title-container {
    position: absolute;
    left: 45%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.04vw;
    max-width: 100%;
}

.gallery-grid a {
    width: 100%;
    min-width: 0;
}

.gallery-item {
    background: white;
    box-shadow: 0 0.21vw 0.52vw rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img-placeholder {
    width: 100%;
    height: 11.5vw;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.gallery-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item p {
    padding: 0.78vw;
    font-size: 0.73vw;
    text-align: center;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   学术动态
   ========================================== */
.academic-list li {
    margin-bottom: 0.63vw;
}

.academic-item {
    display: flex;
    align-items: center;
    color: inherit;
    border-radius: 0.31vw;
    background-color: transparent;
    padding-right: 0.78vw;
    transition: all 0.3s ease;
    height: 3.23vw;
}

.academic-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.7vw;
    height: 1.77vw;
    background-color: #4a77b4;
    color: #ffffff;
    font-size: 0.73vw;
    border-radius: 0 0.89vw 0.89vw 0;
    margin-right: 0.78vw;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.academic-title {
    flex: 1;
    font-size: 0.78vw;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.academic-item:hover,
.active .academic-item {
    background-color: #23528b;
}

.academic-item:hover .academic-tag,
.active .academic-item .academic-tag {
    background: linear-gradient(to right, #ffb347, #ff7f00);
}

.academic-item:hover .academic-title,
.active .academic-item .academic-title {
    color: #ffffff;
}

/* ==========================================
   师生风采
   ========================================== */
.student-card {
    display: flex;
    gap: 1.04vw;
    background: #ffffff;
    padding: 1.04vw;
    margin-bottom: 1.04vw;
    border: 1px solid #e0e0e0;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.student-img-placeholder {
    width: 10.4vw;
    height: 6.77vw;
    background: #e0e0e0;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.student-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.student-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    overflow: hidden;
}

.student-info h4 {
    font-size: 0.83vw;
    margin: 0 0 0.52vw 0;
    color: #0b2654;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.student-info p {
    font-size: 0.73vw;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.52vw;
    transition: color 0.3s ease;
}

.student-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.student-bottom .date {
    font-size: 0.73vw;
    color: #333;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: color 0.3s ease;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 0.42vw;
    font-size: 0.68vw;
    color: #666;
    transition: color 0.3s ease;
}

.more-en {
    border: 1px solid #999;
    border-radius: 0.63vw;
    padding: 0.1vw 0.52vw;
    font-family: Arial, sans-serif;
    font-size: 0.63vw;
    line-height: 1;
    transition: all 0.3s ease;
}

.student-card:hover,
.student-card.active {
    background: linear-gradient(to right, #1f4f89, #2864a6);
    border-color: #1f4f89;
    box-shadow: 0 8px 20px rgba(31, 79, 137, 0.3);
}

.student-card:hover h4,
.student-card.active h4,
.student-card:hover p,
.student-card.active p,
.student-card:hover .date,
.student-card.active .date,
.student-card:hover .more-btn,
.student-card.active .more-btn {
    color: #ffffff;
}

.student-card:hover .more-en,
.student-card.active .more-en {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1f4f89;
    font-weight: bold;
}

/* ==========================================
   党建思政区
   ========================================== */
.party-building-box {
    margin-left: 10.4vw;
}

.party-building {
    position: relative;
    padding-bottom: 1.04vw;
}

.party-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.08vw;
}

.party-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 1.04vw;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: inherit;
    transition: all 0.3s ease;
    min-width: 0;
}

.party-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.party-img {
    width: 100%;
    height: 15.1vw;
    background: #eee;
    margin-bottom: 1.04vw;
    overflow: hidden;
}

.party-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.party-card:hover .party-img img {
    transform: scale(1.05);
}

.party-info {
    flex-grow: 1;
    min-width: 0;
    width: 100%;
}

.party-info h4 {
    font-size: 0.83vw;
    color: #333;
    margin: 0 0 0.78vw 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.party-card:hover .party-info h4 {
    color: #2587e7;
}

.party-info p {
    color: #888;
    font-size: 0.73vw;
    line-height: 1.8;
    margin-bottom: 1.3vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.party-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.78vw;
}

.party-bottom .date {
    font-size: 0.73vw;
    color: #999;
    font-family: Arial, sans-serif;
}

.party-bottom .more-btn {
    display: flex;
    align-items: center;
    gap: 0.42vw;
    font-size: 0.73vw;
    color: #0b2654;
    font-weight: bold;
}

.party-bottom .more-en {
    border: 1px solid #0b2654;
    border-radius: 0.73vw;
    padding: 0.1vw 0.63vw;
    font-family: Arial, sans-serif;
    font-size: 0.63vw;
    font-weight: normal;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.party-card:hover .more-en {
    background-color: #0b2654;
    color: #ffffff;
}

/* ==========================================
   友情链接
   ========================================== */
.links-header {
    justify-content: center;
}

.links-section {
    text-align: center;
}

.links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    transition: transform 0.3s ease;
}

.link-item span {
    font-size: 0.83vw;
    text-align: center;
    color: var(--theme-color);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}


.link-item:hover {
    transform: translateY(-5px);
}

.link-img {
    width: 5.2vw;
    height: 5.2vw;
    object-fit: contain;
    margin-bottom: 0.78vw;
    transition: all 0.3s ease;
}

.link-item:hover .link-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.link-item span {
    font-size: 0.83vw;
    text-align: center;
    color: var(--theme-color);
    line-height: 1.4;
}

/* ==========================================
   页脚
   ========================================== */
.site-footer {
    background: url('./images/bottom.png') center/cover no-repeat;
    background-color: #0b2654;
    color: #ffffff;
    padding: 2.6vw 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.08vw;
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.56vw 2.08vw;
}

.f-link-item {
    display: flex;
    align-items: center;
    gap: 0.63vw;
    color: #ffffff;
    font-size: 0.83vw;
    transition: opacity 0.3s;
}

.f-link-item:hover {
    opacity: 0.8;
}

.f-icon {
    width: 1.67vw;
    height: 1.67vw;
    object-fit: contain;
}

.footer-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0 2.08vw;
}

.footer-logo {
    width: 20.8vw;
    object-fit: cover;
    margin-bottom: 1.04vw;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.56vw;
}

.footer-motto {
    width: 20.8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-motto img {
    object-fit: contain;
    opacity: 0.8;
}

.qr-code-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-img {
    width: 5.2vw;
    height: 5.2vw;
    background-color: #ffffff;
    padding: 0.26vw;
    border-radius: 4px;
    margin-bottom: 0.42vw;
    object-fit: cover;
}

.qr-text {
    font-size: 0.83vw;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    margin: 0.16vw 0;
    font-size: 0.83vw;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    white-space: nowrap;
}

/* ==========================================
  二级内页通用布局样式
  ========================================== */

/* 内页 Banner */
.inner-banner {
    width: 100%;
    height: 13vw;
    overflow: hidden;
}

.inner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 内页主体布局 */
.inner-page {
    display: flex;
    gap: 1.56vw;
    padding: 2.08vw 0 3.13vw 0;
    min-height: 31.25vw;
}

/* ==========================================
  左侧边栏 (Sidebar)
  ========================================== */
.sidebar {
    width: 13.5vw;
    flex-shrink: 0;
}

.sidebar-header {
    background-color: #0D4081;
    color: white;
    padding: 1.3vw 1.04vw;
    text-align: center;
}

.sidebar-header h3 {
    font-size: 1.25vw;
    margin-bottom: 0.26vw;
    font-weight: bold;
    letter-spacing: 2px;
}

.sidebar-header p {
    font-size: 0.63vw;
    opacity: 0.7;
    text-transform: uppercase;
}

.sidebar-menu {
    background-color: white;
    border: 1px solid #e0e8f5;
    border-top: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 0.83vw 1.04vw;
    font-size: 0.83vw;
    color: #333;
    transition: all 0.3s;
    position: relative;
}

.sidebar-menu li:hover a,
.sidebar-menu li.active a {
    color: #1F68B5;
    background-color: #f8fbff;
    font-weight: bold;
}

.sidebar-menu li.active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #1F68B5;
}

/* ==========================================
  右侧内容区通用
  ========================================== */
.content-area {
    flex: 1;
    background-color: white;
    padding: 1.56vw 2.08vw;
    border: 1px solid #e0e8f5;
}

.breadcrumb {
    font-size: 0.73vw;
    color: #666;
    padding-bottom: 0.78vw;
    border-bottom: 2px solid #0D4081;
    margin-bottom: 1.56vw;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #1F68B5;
}

.breadcrumb span {
    color: #0D4081;
    font-weight: bold;
}

/* ==========================================
  列表页样式 (List Page)
  ========================================== */
.article-list {
    margin-bottom: 2.08vw;
}

.article-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.94vw 0;
    border-bottom: 1px dashed #ddd;
    transition: background-color 0.3s;
}

.article-list li:hover {
    background-color: #fcfcfc;
}

.article-link {
    display: flex;
    align-items: center;
    gap: 0.52vw;
    flex: 1;
    overflow: hidden;
}

.article-link .dot {
    width: 0.31vw;
    height: 0.31vw;
    background-color: #0D4081;
    border-radius: 50%;
    flex-shrink: 0;
}

.article-link .title {
    font-size: 0.83vw;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.article-link:hover .title {
    color: #1F68B5;
}

.article-list .date {
    color: #999;
    font-size: 0.73vw;
    flex-shrink: 0;
    margin-left: 1.04vw;
    font-family: Arial, sans-serif;
}

/* 分页控件 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.52vw;
}

.pagination a {
    display: inline-block;
    padding: 0.42vw 0.78vw;
    border: 1px solid #ddd;
    color: #666;
    font-size: 0.73vw;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #0D4081;
    color: white;
    border-color: #0D4081;
}

.pagination a.disabled {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

/* ==========================================
  正文页样式 (Article Detail Page)
  ========================================== */
.article-detail {
    padding: 0.52vw 0;
}

.article-title {
    font-size: 1.35vw;
    color: #333;
    text-align: center;
    margin-bottom: 1.04vw;
    line-height: 1.4;
}

.article-meta {
    text-align: center;
    color: #888;
    font-size: 0.68vw;
    padding-bottom: 1.3vw;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 1.56vw;
}

.article-meta span {
    margin: 0 0.78vw;
}

.article-body {
    font-size: 0.83vw;
    color: #444;
    line-height: 2;
    text-align: justify;
}

.article-body p {
    text-indent: 2em;
}

.article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.04vw auto;
}

.article-navigation {
    margin-top: 2.6vw;
    padding-top: 1.04vw;
    border-top: 1px solid #eee;
    font-size: 0.73vw;
}

.article-navigation a {
    display: block;
    color: #555;
    margin-bottom: 0.52vw;
    transition: color 0.3s;
}

.article-navigation a:hover {
    color: #1F68B5;
}

/* ==========================================
  教师列表页专用样式
  ========================================== */
.teacher-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3vw;
    margin-bottom: 2.08vw;
}

.teacher-card {
    display: block;
    background-color: #fff;
    border: 1px solid #eef2f9;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 64, 129, 0.1);
    border-color: #b3cce6;
}

.teacher-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f7fa;
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-photo img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 0.78vw;
    text-align: center;
}

.teacher-info .name {
    font-size: 0.94vw;
    color: #0D4081;
    margin-bottom: 0.26vw;
}

.teacher-info .title {
    font-size: 0.73vw;
    color: #666;
    margin-bottom: 0.26vw;
}

.teacher-info .direction {
    font-size: 0.68vw;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
  检索结果页专用样式
  ========================================== */
.search-result-page {
    min-height: 31.25vw;
    background-color: white;
    border: 1px solid #e0e8f5;
    margin-top: 1.56vw;
    margin-bottom: 1.56vw;
    padding: 2.08vw 3.13vw;
}

.search-header-box {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.56vw;
    margin-bottom: 1.56vw;
}

.search-title {
    font-size: 1.46vw;
    color: #0D4081;
    margin-bottom: 1.3vw;
}

.large-search-bar {
    display: flex;
    justify-content: center;
    max-width: 36.46vw;
    margin: 0 auto 1.04vw auto;
    height: 2.6vw;
}

.large-search-bar input {
    flex: 1;
    border: 2px solid #0D4081;
    border-right: none;
    padding: 0 1.04vw;
    font-size: 0.83vw;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.large-search-bar button {
    width: 6.25vw;
    background-color: #0D4081;
    color: white;
    border: none;
    font-size: 0.94vw;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.3s;
}

.large-search-bar button:hover {
    background-color: #1F68B5;
}

.search-summary {
    font-size: 0.73vw;
    color: #666;
}

.search-summary strong {
    color: #e50000;
    font-size: 0.83vw;
}

.highlight {
    color: #e50000;
    font-weight: bold;
}

/* 结果列表区 */
.result-list {
    margin-bottom: 2.08vw;
}

.result-item {
    padding: 1.3vw 0;
    border-bottom: 1px dashed #ddd;
}

.result-item h3 {
    font-size: 0.94vw;
    margin-bottom: 0.52vw;
    line-height: 1.4;
}

.result-item h3 a {
    color: #0D4081;
}

.result-item h3 a:hover {
    text-decoration: underline;
}

.result-item .snippet {
    font-size: 0.73vw;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.52vw;
}

.result-item .meta {
    font-size: 0.68vw;
    color: #999;
    display: flex;
    gap: 1.04vw;
}

/* ==========================================
  单篇简介页专用样式
  ========================================== */
.intro-container {
    padding: 0.52vw 0;
}

.intro-main-title {
    font-size: 1.46vw;
    color: #0D4081;
    text-align: center;
    margin-bottom: 1.82vw;
    font-weight: bold;
    position: relative;
    padding-bottom: 0.78vw;
}

.intro-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2.6vw;
    height: 3px;
    background-color: #ff8c00;
}

.intro-body {
    font-size: 0.83vw;
    color: #333;
    line-height: 1.8;
    text-align: justify;
}

.intro-body .lead-paragraph {
    font-size: 0.94vw;
    font-weight: bold;
    color: #0D4081;
    line-height: 1.6;
    text-indent: 0;
    padding: 0.78vw 1.04vw;
    background-color: #f8fbff;
    border-left: 4px solid #0D4081;
    margin-bottom: 1.56vw;
}

.intro-body p {
    margin-bottom: 1.15vw;
    text-indent: 2em;
}

.intro-body h3 {
    font-size: 1.04vw;
    color: #0D4081;
    margin-top: 1.82vw;
    margin-bottom: 0.78vw;
    font-weight: bold;
    text-indent: 0;
}

.intro-featured-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.56vw auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.intro-body blockquote {
    margin: 2.08vw 0 1.04vw 0;
    padding: 1.04vw;
    background-color: #fafafa;
    border-left: 4px solid #ff8c00;
    font-style: italic;
    color: #555;
    text-indent: 0;
}

/* ==========================================
  导航下拉小箭头
  ========================================== */
.nav-arrow {
    display: inline-block;
    width: 0.42vw;
    height: 0.42vw;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.31vw;
    vertical-align: middle;
    position: relative;
    top: -0.1vw;
    transition: transform 0.3s ease;
}

.nav-list>li:hover .nav-arrow {
    transform: rotate(225deg);
}

/* ==========================================
  移动端汉堡按钮 (PC端隐藏)
  ========================================== */
.nav-container {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: right;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0D4081;
    margin: 5px 0 5px auto;
    transition: all 0.3s ease;
}

/* ==========================================
  滚动渐变动画 (Scroll Reveal)
  ========================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ==========================================
  响应式布局 / 移动端适配 (Media Queries)
  ========================================== */

/* 平板 (小于 992px) */
@media screen and (max-width: 992px) {

    .link-item span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
    }

    .container {
        width: 92%;
    }

    header {
        height: auto;
        padding: 20px 0;
        background-size: cover;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .logo-placeholder img {
        height: 60px;
    }

    .tools-area {
        gap: 20px;
    }

    .search-box {
        width: 240px;
        padding: 12px;
        border-radius: 25px;
    }

    .search-box input {
        font-size: 14px;
    }

    .search-box .separator {
        height: 18px;
        margin: 0 12px;
    }

    .search-icon img {
        width: 18px;
        height: 18px;
    }

    .header-links {
        gap: 25px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .icon-link {
        font-size: 13px;
        gap: 6px;
    }

    /* 汉堡菜单 */
    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list>li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list>li>a {
        padding: 15px 20px;
        font-size: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-list .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: #f8fbff;
    }

    .nav-list .has-children.open .dropdown {
        display: block;
    }

    .nav-list .has-children.open>a .nav-arrow {
        transform: rotate(225deg);
    }

    .nav-list .dropdown a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
        color: #333;
        border-bottom: 1px solid #eef2f9;
    }

    .nav-list .dropdown a:hover {
        background-color: #e0e8f5;
        color: #0D4081;
    }

    .nav-arrow {
        width: 8px;
        height: 8px;
    }

    /* Banner */
    .banner {
        height: 300px;
    }

    .banner-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .banner-dots {
        bottom: 15px;
        gap: 6px;
    }

    .banner-dot {
        width: 14px;
        height: 3px;
    }

    .banner-dot.active {
        width: 30px;
        height: 6px;
    }

    .inner-banner {
        height: 180px;
    }

    /* 区块 */
    .section-wrapper {
        padding: 40px 0;
        background-size: cover;
    }

    .section-wrapper5 {
        padding: 60px 0;
    }

    .section-header {
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .section-title-img {
        height: 40px;
    }

    .more-img {
        height: 28px;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .col-half {
        width: 100%;
    }

    /* 新闻 */
    .news-list li {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .news-date {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }

    .news-date .day {
        font-size: 20px;
    }

    .news-date .year-month {
        font-size: 12px;
    }

    .news-content h4 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .news-content p {
        font-size: 13px;
    }

    .time-meta {
        font-size: 12px;
    }

    .icon-time {
        width: 13px;
        height: 13px;
    }

    /* 通知公告 */
    .notice-list li {
        margin-bottom: 12px;
        padding-right: 12px;
    }

    .notice-date {
        width: 55px;
        height: 60px;
        margin-right: 15px;
    }

    .notice-date .day {
        font-size: 20px;
    }

    .notice-date .year-month {
        font-size: 12px;
    }

    .notice-title {
        font-size: 15px;
    }

    /* 图片速览 */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-img-placeholder {
        height: 180px;
    }

    .gallery-item p {
        padding: 12px;
        font-size: 13px;
    }

    /* 学术动态 */
    .academic-list li {
        margin-bottom: 10px;
    }

    .academic-item {
        height: 50px;
        padding-right: 12px;
    }

    .academic-tag {
        width: 90px;
        height: 30px;
        font-size: 13px;
        margin-right: 12px;
    }

    .academic-title {
        font-size: 14px;
    }

    /* 师生风采 */
    .student-card {
        gap: 15px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .student-img-placeholder {
        width: 160px;
        height: 110px;
    }

    .student-info h4 {
        font-size: 15px;
    }

    .student-info p {
        font-size: 13px;
    }

    .student-bottom .date {
        font-size: 13px;
    }

    .more-btn {
        font-size: 12px;
    }

    .more-en {
        font-size: 11px;
        padding: 2px 8px;
    }

    /* 党建思政 */
    .party-building-box {
        margin-left: 0;
    }

    .party-grid {
        gap: 25px;
    }

    .party-card {
        padding: 15px;
    }

    .party-img {
        height: 200px;
        margin-bottom: 15px;
    }

    .party-info h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .party-info p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .party-bottom {
        padding-top: 12px;
    }

    .party-bottom .date {
        font-size: 13px;
    }

    .party-bottom .more-btn {
        font-size: 13px;
    }

    .party-bottom .more-en {
        font-size: 11px;
    }

    /* 友情链接 */
    .link-img {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .link-item span {
        font-size: 14px;
    }

    /* 页脚 */
    .site-footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 30px 0;
        width: 100%;
    }

    .footer-logo {
        width: 300px;
    }

    .footer-motto {
        width: 250px;
    }

    .footer-link-grid {
        gap: 20px 30px;
    }

    .f-link-item {
        font-size: 14px;
        gap: 10px;
    }

    .f-icon {
        width: 28px;
        height: 28px;
    }

    .footer-right {
        gap: 25px;
    }

    .qr-img {
        width: 80px;
        height: 80px;
        padding: 4px;
        margin-bottom: 6px;
    }

    .qr-text {
        font-size: 13px;
    }

    .contact-info p {
        font-size: 14px;
    }

    /* 内页 */
    .inner-page {
        flex-direction: column;
        padding: 30px 0 40px 0;
        min-height: auto;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-header {
        padding: 20px 15px;
    }

    .sidebar-header h3 {
        font-size: 20px;
    }

    .sidebar-header p {
        font-size: 11px;
    }

    .sidebar-menu a {
        padding: 14px 18px;
        font-size: 15px;
    }

    .content-area {
        padding: 25px 30px;
    }

    .breadcrumb {
        font-size: 13px;
        padding-bottom: 12px;
        margin-bottom: 25px;
    }

    .article-list li {
        padding: 15px 0;
    }

    .article-link .title {
        font-size: 15px;
    }

    .article-list .date {
        font-size: 13px;
    }

    .pagination a {
        padding: 7px 12px;
        font-size: 13px;
    }

    .article-title {
        font-size: 22px;
    }

    .article-meta {
        font-size: 12px;
    }

    .article-body {
        font-size: 15px;
    }

    .article-navigation {
        font-size: 13px;
        margin-top: 40px;
    }

    /* 教师列表 */
    .teacher-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .teacher-info {
        padding: 12px;
    }

    .teacher-info .name {
        font-size: 16px;
    }

    .teacher-info .title {
        font-size: 13px;
    }

    .teacher-info .direction {
        font-size: 12px;
    }

    /* 检索页 */
    .search-result-page {
        padding: 30px 40px;
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .search-title {
        font-size: 24px;
    }

    .large-search-bar {
        max-width: 100%;
        height: 45px;
    }

    .large-search-bar input {
        font-size: 14px;
        padding: 0 15px;
    }

    .large-search-bar button {
        width: 100px;
        font-size: 16px;
    }

    .result-item h3 {
        font-size: 16px;
    }

    .result-item .snippet {
        font-size: 13px;
    }

    .result-item .meta {
        font-size: 12px;
    }

    /* 简介页 */
    .intro-main-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .intro-body {
        font-size: 15px;
    }

    .intro-body .lead-paragraph {
        font-size: 16px;
        padding: 12px 15px;
    }

    .intro-body h3 {
        font-size: 18px;
    }
}

/* 手机端 (小于 768px) */
@media screen and (max-width: 768px) {

    .container {
        width: 92%;
    }

    /* 顶部工具栏 */
    .tools-area {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .search-box {
        width: 100%;
    }

    .header-links {
        width: 100%;
        justify-content: center;
    }

    /* Banner */
    .banner {
        height: 200px;
    }

    .inner-banner {
        height: 150px;
    }

    .banner-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    /* 区块标题 */
    .section-title-img {
        height: 35px;
    }

    .more-img {
        height: 24px;
    }

    /* 新闻列表 */
    .news-content h4 {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 14px;
    }

    .news-content p {
        display: none;
    }

    .news-date {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }

    .news-date .day {
        font-size: 16px;
    }

    .news-date .year-month {
        font-size: 11px;
    }

    /* 通知公告 */
    .notice-date {
        width: 50px;
        height: 55px;
        margin-right: 12px;
    }

    .notice-date .day {
        font-size: 18px;
    }

    .notice-date .year-month {
        font-size: 11px;
    }

    .notice-title {
        font-size: 14px;
    }

    /* 师生风采卡片 */
    .student-card {
        flex-direction: column;
        padding: 12px;
    }

    .student-img-placeholder {
        width: 100%;
        height: 200px;
    }

    .student-info h4 {
        font-size: 14px;
    }

    .student-info p {
        font-size: 12px;
    }

    /* 党建思政 */
    .party-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .party-img {
        height: 180px;
    }

    /* 学术动态 */
    .academic-item {
        height: 45px;
    }

    .academic-tag {
        width: 80px;
        height: 26px;
        font-size: 12px;
        margin-right: 10px;
    }

    .academic-title {
        font-size: 13px;
    }

    /* 友情链接 */
    .links-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .link-item {
        width: 40%;
    }

    .link-img {
        width: 60px;
        height: 60px;
    }

    .link-item span {
        font-size: 12px;
    }

    /* 页脚 */
    .footer-right {
        flex-direction: column;
    }

    .footer-link-grid {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        width: 80%;
        max-width: 260px;
    }

    .footer-motto {
        width: 70%;
        max-width: 200px;
    }

    .qr-img {
        width: 70px;
        height: 70px;
    }

    /* 内页 */
    .content-area {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 20px;
    }

    .article-body {
        font-size: 14px;
    }

    /* 检索页 */
    .search-result-page {
        padding: 20px 15px;
    }

    .search-title {
        font-size: 20px;
    }

    .large-search-bar {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .large-search-bar input {
        border-radius: 4px;
        border-right: 2px solid #0D4081;
        height: 40px;
    }

    .large-search-bar button {
        width: 100%;
        border-radius: 4px;
        height: 40px;
    }

    /* 教师列表 */
    .teacher-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .teacher-info .name {
        font-size: 14px;
    }

    .teacher-info .title {
        font-size: 12px;
    }

    /* 简介页 */
    .intro-main-title {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .intro-body {
        font-size: 14px;
    }

    .intro-body .lead-paragraph {
        font-size: 15px;
    }

    .intro-body h3 {
        font-size: 16px;
    }
}

/* 超小屏幕手机 (小于 480px) */
@media screen and (max-width: 480px) {

    /* 图片速览变 1列 */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img-placeholder {
        height: 200px;
    }

    /* 教师列表变 1列 */
    .teacher-grid {
        grid-template-columns: 1fr;
    }

    /* 新闻日期更小 */
    .news-date {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .news-date .day {
        font-size: 14px;
    }

    .news-date .year-month {
        font-size: 10px;
    }

    .news-content h4 {
        font-size: 13px;
    }

    /* 通知 */
    .notice-date {
        width: 45px;
        height: 50px;
        margin-right: 10px;
    }

    .notice-date .day {
        font-size: 16px;
    }

    .notice-title {
        font-size: 13px;
    }

    .links-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .link-item {
        flex: none;
        width: 30%;
    }

    /* 页脚 */
    .f-link-item {
        font-size: 13px;
    }

    .contact-info p {
        font-size: 13px;
    }
}