.news-list {
    display: flex;
    flex-direction: column; /* 或者使用 grid 布局 */
}

.news-item {
    background-color: white;
    margin-bottom: 20px;
    padding: 10px 20px 20px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    display:flex;
}

.news-item h1 {
    margin: 0 0 10px 0;
}

.news-item h1 a {
    text-decoration: none; /* 去掉链接下划线 */
    color: #333; /* 设置链接颜色 */
}

.news-item h1 a:hover {
    color: #E45151; /* 鼠标悬停时改变颜色 */
}

.news-item p {
    margin: 5px 0; /* 控制段落间距 */
    padding-top: 20px;
}

#newsbox {
margin-top: 20px;
width:90%;
height:auto;
min-height: 500px;
}

figure {
    display: flex;
    text-indent:2em;
    align-items: center;
}
figcaption {
    margin-left: 30px; /* 根据需要调整 */
    font-size:20px;
   /*display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

figcaption a:hover {
    color: #E45151; /* 鼠标悬停时改变颜色 */
}

figcaption h2 {
display: flex;
}

figcaption div {
display: flex;
justify-content: space-between;
color: #6e6b6b;
}

article:hover
{
border:3px solid #e45451;
}

.newbee-pagenavi {
    height: 30px;
    padding: 15px 0;
    text-align: center;
}

.newbee-pagenavi .numbers {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    width: 48px;
    height: 24px;
    padding: 3px 0;
    margin: 0 7px;
    font-size: 18px;
    font-weight: 200;
    line-height: 24px;
    color: #b0b0b0;
}

.newbee-pagenavi .iconfont {
    font-size: 24px;
    vertical-align: bottom;
}

.newbee-pagenavi .current {
    background-color: #757575;
    color: #fff;
}

.newbee-pagenavi a.numbers {
    -webkit-transition: all .2s linear;
    transition: all .2s linear
}

.newbee-pagenavi a.numbers:hover {
    background: #b0b0b0;
    color: #fff
}

.newbee-pagenavi {
    height: 30px;
    padding: 15px 0;
    text-align: center;
}




