* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 头部样式 */
.header {
    height: 176px;
    background: linear-gradient(rgba(42, 57, 98, 0.85), rgba(42, 57, 98, 0.85)), url('../images/top_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 0;
}

.header-top {
    height: 116px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #fff;
}

.logo img {
    height: 80px;
    display: block;
}

.header-right img {
    height: 60px;
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* 导航样式 */
.nav {
    height: 60px;
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    font-size: 16px;
    transition: background 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(166, 42, 36, 0.3);
}

/* 下拉菜单 */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(42, 57, 98, 0.95);
    list-style: none;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown a:hover {
    background: rgba(166, 42, 36, 0.3);
}

/* 响应式布局 */
@media (max-width: 768px) {
    .header {
        height: auto;
        background: linear-gradient(rgba(116, 133, 154, 0.85), rgba(116, 133, 154, 0.85)), url('../images/top_bg.jpg');
        background-size: cover;
        background-position: center;
    }

    .header-top {
        height: 60px;
        border-bottom: none;
    }
    
    .header-top .container {
        padding: 0 15px;
    }

    .logo img {
        height: 40px;
    }

    .header-right {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        padding: 5px;
    }
    
    .mobile-menu-btn span {
        width: 22px;
    }

    .nav {
        height: auto;
        display: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        background: #2A3962;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav .container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 15px 20px;
        position: relative;
    }

    .has-dropdown > .nav-link::after {
        content: '▼';
        position: absolute;
        right: 20px;
        font-size: 12px;
        transition: transform 0.3s;
    }

    .has-dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(22, 37, 68, 1);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .has-dropdown.active .dropdown {
        display: block;
        animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .dropdown li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .dropdown li:last-child {
        border-bottom: none;
    }

    .dropdown a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
    }

    .dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 45px;
        transition: all 0.3s;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* Banner样式 */
.banner {
    width: 100%;
  
    overflow: hidden;
    margin-top: 0;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .banner {
        
    }
}

/* 内容区域 */
.content-section {
    padding: 20px 0;
    background: #fff;
}

.content-section .container {
    position: relative;
    display: block;
}

/* 轮播图样式 */
.slider-container {
    position: relative;
    width: 60%;
    background: #fff;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* 新闻列表样式 */
.news-list {
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 48%;
    background: #fff;
    border: 1px solid #000;
    outline: 1px solid #000;
    outline-offset: 3px;
    padding: 30px;
    z-index: 20;
}

.news-header {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid #2A3962;
}

.news-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.news-subtitle {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.more-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2A3962;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.more-link:hover {
    color: #A62A24;
}

.news-items {
    list-style: none;
}

.news-item {
    border-bottom: 1px dashed #e0e0e0;
    padding: 15px 0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.news-item a:hover {
    color: #A62A24;
    padding-left: 10px;
}

.news-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 15px;
}

.news-date {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .slider-container {
        width: 100%;
    }
    
    .slider {
        height: 250px;
    }
    
    .news-list {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
    }
    
    .news-header h2 {
        font-size: 20px;
    }
    
    .news-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .news-title {
        white-space: normal;
    }
}

/* 通知公告区域 */
.notice-section {
    padding: 60px 0;
    background: #e8e8e8;
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

.section-header .more-link {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #2A3962;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.section-header .more-link:hover {
    color: #A62A24;
}

/* 卡片容器 */
.notice-cards {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1160px;
    margin: 0 auto;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow: hidden;
}

.notice-card {
    background: #fff;
    padding: 25px;
    min-height: 280px;
    width: calc((100% - 60px) / 4);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
}

/* 日期标签 */
.card-date {
    background: #999;
    color: #fff;
    padding: 8px 12px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 15px;
    min-width: 60px;
}

.date-year {
    font-size: 11px;
    margin-bottom: 2px;
}

.date-day {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

/* 卡片内容 */
.card-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    font-weight: normal;
}

.card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 15px;
}

.card-link {
    background: #999;
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    display: inline-block;
    align-self: flex-start;
    font-size: 13px;
    transition: background 0.3s;
}

.card-link:hover {
    background: #777;
}

/* 导航箭头 */
.nav-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: #fff;
    color: #333;
}

.nav-arrow span {
    display: block;
}

/* 响应式 */
@media (max-width: 1024px) {
    .notice-card {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .notice-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .notice-card {
        width: 100%;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* 研究与创新区域 */
.research-section {
    padding: 60px 0;
    background: #fff;
}

.research-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.research-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2A3962;
}

.research-title h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.research-subtitle {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* 左侧研究列表 */
.research-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.research-item {
    display: flex;
    gap: 15px;
}

.research-item a{
    color: #333;
    text-decoration: none;
}
.research-img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    flex-shrink: 0;
}

.research-content {
    flex: 1;
}

.research-item-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: normal;
    line-height: 1.4;
}
.research-item-title a{
    color: #333;
    text-decoration: none;
}

.research-date {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.research-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* 右侧轮播图样式 */
.right-slider {
    position: relative;
    width: 100%;
    height: 240px;
    margin-top: 20px;
    overflow: hidden;
}

.right-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.right-slide.active {
    opacity: 1;
}

.right-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.right-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.right-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.right-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.right-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.right-dot.active {
    background: #fff;
    width: 25px;
    border-radius: 5px;
}

/* 右侧创新教育 */
.innovation-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.innovation-text {
    background: #2A3962;
    color: #fff;
    padding: 25px;
    position: relative;
}

.innovation-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.innovation-more {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

.innovation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.innovation-images-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.innovation-image-item {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.innovation-image-item-two {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.innovation-image-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.innovation-image-item-two img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.innovation-image-item:hover img,
.innovation-image-item-two:hover img {
    transform: scale(1.05);
}

.innovation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.innovation-image-item:hover .innovation-overlay,
.innovation-image-item-two:hover .innovation-overlay {
    transform: translateY(0);
}

.innovation-overlay h4 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}

/* 响应式 */
@media (max-width: 768px) {
    .research-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .research-item {
        flex-direction: column;
    }
    
    .research-img {
        width: 100%;
        height: 200px;
    }
    
    .innovation-images {
        grid-template-columns: 1fr;
    }
    
    .innovation-images img {
        height: 200px;
    }
}

/* 教师风采区域 */
.teachers-section {
    padding: 60px 0;
    background: #e8e8e8;
}

.teachers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teachers-header {
    text-align: center;
    margin-bottom: 40px;
}

.teachers-header h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 5px;
}

.teachers-subtitle {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* 教师滑块 */
.teachers-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1160px;
    margin: 0 auto;
}

.teachers-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow: hidden;
}

.teacher-card {
    background: #fff;
    padding: 30px 20px;
    width: calc((100% - 60px) / 4);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.teacher-card:hover {
    transform: translateY(-5px);
}

.teacher-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.teacher-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.teacher-card:hover .teacher-photo {
    transform: scale(1.05);
}

.teacher-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: normal;
    transition: color 0.3s;
}

.teacher-card:hover .teacher-name {
    color: #A62A24;
}

.teacher-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* 教师箭头 */
.teacher-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s;
    flex-shrink: 0;
}

.teacher-arrow:hover {
    background: #fff;
    color: #333;
}

.teacher-arrow span {
    display: block;
}

/* 响应式 */
@media (max-width: 1024px) {
    .teacher-card {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .teachers-section {
        padding: 40px 0;
    }
    
    .teachers-header h2 {
        font-size: 22px;
    }
    
    .teacher-card {
        width: 100%;
    }
    
    .teacher-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* 底部样式 */
.footer {
    background: #A62A24;
    color: #fff;
    padding: 40px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    padding-bottom: 30px;
}

/* 左侧 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-contact h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-contact p {
    display: flex;
    gap: 20px;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-contact p span:first-child {
    min-width: 60px;
}

/* 中间二维码 */
.footer-center {
    display: flex;
    align-items: flex-start;
}

.footer-qr {
    text-align: center;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 5px;
    margin-bottom: 10px;
}

.footer-qr p {
    font-size: 14px;
}

/* 右侧链接 */
.footer-right h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* 底部版权 */
.footer-bottom {
    background: #8b2220;
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

/* 响应式 */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-center {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* 列表页样式 */
.page-content {
    padding: 40px 0;
    background: #fff;
}

.page-content .container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* 侧边栏 */
.sidebar {
    background: #f5f5f5;
}

.sidebar-title {
    background: #999;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.sidebar-menu a:before {
    content: "○";
    margin-right: 8px;
    color: #999;
}

.sidebar-menu a.active,
.sidebar-menu a:hover {
    background: #e8e8e8;
    color: #A62A24;
    padding-left: 25px;
}

.sidebar-menu a.active:before,
.sidebar-menu a:hover:before {
    content: "●";
    color: #A62A24;
}

/* 主内容区 */
.main-content {
    background: #fff;
}

.breadcrumb {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #2A3962;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #A62A24;
    text-decoration: underline;
}

.page-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2A3962;
}

/* 新闻列表 */
.news-list-page {
    list-style: none;
}

.news-list-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    position: relative;
    padding-left: 20px;
}

.news-list-item a:before {
    content: "●";
    position: absolute;
    left: 0;
    color: #999;
    font-size: 12px;
}

.news-list-item a:hover {
    color: #A62A24;
    padding-left: 10px;
}

.news-list-title {
    flex: 1;
}

.news-list-date {
    color: #999;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 20px;
}

/* 分页 */
.pagination {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a {
    color: #333;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.pagination a:hover {
    background: #2A3962;
    color: #fff;
    border-color: #2A3962;
}

.pagination span,
.pagination a.page-num-current,
.pagination .page-num-current {
    color: #fff;
    padding: 8px 15px;
    border: 1px solid #2A3962;
    background: #2A3962;
    font-size: 14px;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.no-data {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 14px;
}

/* 响应式 */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 35px;
    }
}

/* 响应式 */
@media (max-width: 768px) {
    .page-content .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-bottom: 20px;
    }
    
    .news-list-item a {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding-left: 20px;
    }
    
    .news-list-item a:before {
        top: 15px;
    }
    
    .news-list-date {
        margin-left: 0;
    }
}

/* 文章详情页 */
.article-detail {
    background: #fff;
}

.article-title {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #2A3962;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.article-subtitle {
    font-size: 16px;
    color: #666;
}

.article-date {
    font-size: 14px;
    color: #999;
}

.article-content {
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
    text-align: justify;
}

.article-content p:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* 文章副标题 */
.article-subtitle {
    font-size: 20px;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #74859a;
}

/* 文章导航 */
.article-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.prev-article,
.next-article {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.prev-article a,
.next-article a {
    color: #2A3962;
    text-decoration: none;
    transition: color 0.3s;
}

.prev-article a:hover,
.next-article a:hover {
    color: #A62A24;
}
