.bbpress-page-title {
  padding: 16px 18px;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.bbpress-page-title h3{
  font-weight: 600;
    color: #1d1d1f;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}
/*分页*/
.list-pagination .pagination{
  margin: 0;
  padding: 0;
}
.list-pagination .pagination{
  display: flex;
  gap: 5px;
}
.list-pagination .pagination button{
  all: unset; /* 清除所有默认样式 */
  display: block; /* 让它像 div 一样是块级元素 */
  width: 100%; /* 可选，设置宽度为100%（视需要） */
  height: auto; /* 高度自动调整（视需要） */
  background: none; /* 去掉背景 */
  border: none; /* 去掉边框 */
  padding: 0; /* 去掉内边距 */
  margin: 0; /* 去掉外边距 */
  text-align: left; /* 可选，根据需要对齐文本 */
}
.list-pagination .pagination span{
  display: flex;
    align-items: center;
    justify-content: center;
}
.list-pagination .pagination button{
  font-size: 15px;
    line-height: 26px;
    height: 26px;
    padding: 0 8px;
/*    border: 1px solid #e1e1e1;*/
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    color: #1d1d1f;
    font-weight: 400;
}
.list-pagination .pagination button:disabled{
  cursor: not-allowed;
  color: #9e9e9e;
/*  border-color: #e1e1e1;*/
}
.list-pagination .pagination button.active{
  background-color: #1772f6;
  color: #fff;
  font-weight: 600;
}
.list-pagination .pagination button:not(.active):hover{
  background-color: #eee;
}
.list-pagination .pagination button:disabled:hover{
  background-color: inherit;
}
.forum-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.top-control {
    margin-bottom: 10px;
}
/*信息流*/
.forum-loop ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
li.forum{
  padding: 16px 18px;
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px;
}
.forum-box{
  display: flex;
  justify-content: space-between;
}
.forum-box .l{
  width: 52px;
}
.forum-box .l a{
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 4px;
  overflow: hidden;
}
.forum-box .l a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.forum-box .r{
  width: calc(100% - 72px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.forum-box .r .forum-title{
  font-size: 15px;
  color: #1d1d1f;
  font-weight: 600;
  line-height: 1.5;
}
.forum-box .r .forum-title a{
  color: inherit;
}
.forum-box .r .forum-title a:hover{
  color: #0f5ada;
}
.forum-box .r .forum-description{
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, .6);
}
.forum-box .r .forum-statistics{
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, .6);
  line-height: 1.5;
}
.sub-forums{
  padding: 40px 0 40px 40px;
  position: relative;
}
.sub-forums ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media(max-width: 734px){
  .list-pagination{
    width: 100%;
  }
  .list-pagination .pagination span{
    display: none;
  }
  .list-pagination .pagination{
    width: 100%;
    justify-content: space-between;
  }
  .list-pagination .pagination span:first-child,
  .list-pagination .pagination span:last-child{
    display: flex;
    width: calc(50% - 8px);
  }
  .list-pagination .pagination span:first-child,
  .list-pagination .pagination span:last-child{
  }
  .list-pagination .pagination button {
    font-weight: 600;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #e1e1e1;
  }
    .list-pagination .pagination button:disabled {
      cursor: not-allowed;
      color: #9e9e9e;
  }
  .order-select{
    display: none;
  }
}
@media only screen and (max-width: 734px){
  .forum-box .l{
    width: 40px;
  }
  .forum-box .r{
    width: calc(100% - 48px);
    gap: 6px;
  }
  .sub-forums{
    padding: 26px 0 26px 26px;
  }
  .sub-forums ul{
    gap: 16px;
  }
}
