.info_container{
    margin-top: 80px;
    display: grid;
    justify-items: center;
    gap: 25px;
}

.big_title h1{
    font-size: 1.4rem;
    user-select: none;
}

.active_header{
    background: #e9e9eb;
}







/*主要区域*/
.wall_container{
    width: 650px;
    min-width: 380px;
    margin-top: 70px;
    display: grid;
    justify-items: center;
    gap: 20px;
}
.active_header{
    background: #e9e9eb;
}


/*信息流分类控件*/
.wall_cgi{
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    gap: 13px;
}
.wallcgi_btn{
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #8d8d8d;
    user-select: none;
    transition: all 0.15s ease-in-out;
}
.wallcgi_btn:hover{
    background: #e3e3e3de;
    color: #595959;
}
.wallcgi_active{
    background: #e3e3e3;
    color: #2b2b2b;
}
.wallcgi_active:hover{
    background: #e3e3e3 !important;
    color: #2b2b2b !important;
}







section{
    width: 650px;
    min-width: 380px;
    margin-top: 20px;
    display: grid;
    justify-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #ededed9e;
}

/*置顶信息*/
.activity-item-top {
    width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      background: none;
      transition: all 0.2s ease;
      opacity: 1 !important;
      transform: translateY(0px) !important;
      animation: none !important;
      border: #c3c3c3 2px solid;
      border-radius: 7px;
}
.activity-item-top .activity-title{
    color: #595959;
    cursor: default;
}
.activity-title{
    font-size: 0.95rem !important;
}
.activity-item{
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0px) !important;
}




.pagination {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    padding: 0;
    list-style-type: none;
    gap: 8px;
}

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    text-decoration: none;
    color: #3b82f6;
    transition: all 0.3s;
    font-size: 16px;
    min-width: 36px;
    text-align: center;
}

.pagination a:hover {
    background: #f8fafc;
    border-color: #3b82f6;
}

.pagination .current {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    font-weight: 500;
}

.pagination .disabled {
    color: #cbd5e1;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.pagination .step-links {
    display: flex;
    gap: 5px;
}

@media (max-width: 600px) {
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 14px;
    }
}









/*响应式布局*/
@media (max-width: 768px){

}