.activity {
    width: 1200px;
    margin: 0 auto;
    padding-top: 80px;;
}

.game_nav {
    padding: 18px 0px;
    border-bottom: .01rem solid hsla(0, 0%, 100%, .1);
    margin-bottom: 30px;
    color: #8d8ca4;
}

span {
    padding: 10px;
}

.game_nav a {
    color: #8d8ca4;
    text-decoration: none;
    margin: 10px;
}
.game_nav a:last-child{
    color: #ffffff;
}
.game_nav a:hover {
    color: #ffffff;
}
.activity {
    width: 1200px;
    margin: 0 auto;
}
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列布局 */
    gap: 20px; /* 项目间距 */
}



.blog-list a{
    text-decoration: none;
}

.blogd-list {
    display: grid;
    gap: 20px; /* 项目间距 */
}
.blogd-list a{
    text-decoration: none;
}
.blogd-list a em{
    float: right;
    color:#fff;
    font-style: normal;
    height: 44px;
    line-height: 44px;;
}

.blog-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
.blog-text {
    width: 386px;
    padding: 10px;
    /*text-align: center;*/
    font-size: 18px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 12px;
    height: 30px;
    line-height: 30px;;
}
.pagination a{
    
    color: #fff;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}

.pagination__item {
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.1);
    text-decoration: none;
    color: #a1a1a6;
    border-radius: 4px;
    font-size: 14px;
}
.pagination__item-on{
    background-color: #ffcc00;
    color: #000;
}
.pagination__item:hover{
    color: #fff;
}
/* 分页核心样式：控制资讯列表显示/隐藏 */
.blog-list .blog-item {
    display: block; /* 默认隐藏所有资讯项 */
}
.blog-list .blog-item.active {
    display: block; /* 显示当前页项，保持布局 */
}

/* 分页控件禁用状态样式 */
.pagination__item.disabled {
    background-color: rgba(255, 255, 255, 0.05);
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}
.footer_border{
    height: 121px;
    /*border-bottom: 1px solid #3b3b43;*/
    margin-bottom: 80px;
}