/* 新闻页面样式 */
.container_news_wrapper {
    padding-bottom: 20px;
    margin: 40px auto !important;
}

/* 分页导航样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;padding: 0 8px;
}

.pagination a.active {
    background-color: #f39800;
    color: #fff;
}.pagination .active a{
    background-color: #f39800;
    color: #fff;
}

.pagination a:hover:not(.active) {
    background-color: #e0e0e0;
}

.pagination a.next {
    width: auto;
    padding: 0 15px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .school-life-header h1 {
        font-size: 28px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-placeholder {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .pagination a {
        width: 32px;
        height: 32px;
        margin: 0 3px;
    }
}