html{
height: 100%;
}
body{
    min-height: 100%;
    background: #f5f5f5;
    position: relative;
}
.news ,.newsDetails{
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}
.news{
    padding-bottom: 50px;
}

.news .news-list{
    width: 1100px;
    height: 100%;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}
.news .news-list .news-item {
    display: flex;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: #fff;
}
.news-item .news-left{
    width: 150px;
    height: 100px;
    margin-right: 30px;
}
.news-item .news-left img{
    width: 100%;
    height: 100%;
}
.news-item .news-right .news-title {
    display: flex;
    font-size: 23px;
    margin-bottom: 17px;
}
.news-item .news-right .news-title .title{
    color: #2944a3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item .news-right .news-content{
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsDetails{
    overflow: hidden;
}
.newsDetailsBox{
    width: 1100px;
    height: 100%;
    margin: 0 auto;
    margin-top: 30px;
    background: #fff;
}

.newsDetailsBox img{
    width: 100%;
}
.newsDetails_content .newsTitle{
   text-align: center;
}
.newsDetails_content .newsTitle .title{
    font-size: 25px;
 }

.pageable{
    height: 70px;
}
.pageable ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
} 
.pageable .page_numbers{
    display: flex;
    justify-content: center;
}
.pageable ul .page_numbers li{
    width: 25px;
    text-align: center;
    border: 1px solid #767676;
    margin: 0px 5px;
}
.el-pager { 
  display: flex; 
  gap: 8px; 
  list-style: none; 
  padding: 0; 
}
.el_pager_item { 
  padding: 4px 12px; 
  border: 1px solid #dcdfe6; 
  border-radius: 4px; 
  cursor: pointer; 
}
.el_pager_item.active { 
  background: #adadad; 
  color: white; 
  border-color: #adadad; 
}
.more { 
  padding: 4px 8px; 
  cursor: default; 
}
.el_pagination_prev, .el_pagination_next { 
  padding: 4px 12px; 
  border: 1px solid #dcdfe6; 
  border-radius: 4px; 
  cursor: pointer; 
}


/* 详情article */
.article{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 50px;
    width: 1100px;
    height: 50px;
}
.article_btn{
    background-color: #dddddd;
    padding: 10px 15px;
    border-radius: 4px;
    border: 0px;
    font-size: 16px;
}