/* 标题 start */
.news {
  color: #f0f0f0;
  padding: 15px 0;
  text-align: center;
  font-size: 25px;
  background-color: #0e58c8;
}
/* 标题 end */
/* 新闻列表 start */
.news-tabs ul {
  display: grid;
  width: 83rem;
  grid-template-columns: 25% 25% 25% 25%;
  text-align: center;
  list-style: none;
  height: 30px;
  color: #525050;
  line-height: 30px;
  padding: 0;
  margin: 0;
  font-size: 20px;
  cursor: pointer;
  border-bottom: 1.5px solid #0e58c8;
  padding-bottom: 10px;
  margin: 20px auto;
}

.news-tabs-active {
  font-size: 25px;
  color: rgb(0, 102, 255);
  font-weight: bolder;
  padding-bottom: 7px;
  border-bottom: 3px solid #0e58c8;
}
.news-tabs-active a {
  font-size: 25px;
  color: rgb(0, 102, 255);
  font-weight: bolder;
  padding-bottom: 8px;
  border-bottom: 3px solid #0e58c8;
  
}

.news-list {
  width: 83rem;
  margin: 50px auto;
}

.news-list li {
  list-style: none;
  font-size: 14px;
  margin: 0 0 25px 0;
  padding: 0 0 30px 0;
  display: flex;
  height: 150px;
  width: 100%;
  color: #525050;
  border-bottom: 1.5px solid #e3e3e3;
}

.news-list li img {
  height: 150px;
  width: 340px;
  object-fit: cover;
}

.news-detail {
  position: relative;
  width: 100%;
  height: 150px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}
.news-footer {
  position: absolute;
  bottom: 0;
  left: 15px;
  display: flex;
  width: 95%;
  justify-content: space-between;
}
/* 新闻列表 end */
/* 分页器 start */
.news-page {
  display: flex;
  font-size: 26px;
  width: 100%;
  justify-content: center;
  margin-bottom: 30px;
}
.news-page div {
  margin-right: 60px;
  font-weight: bold;
  color: #0D58C8;
}
.news-active {
  color: #afadad;
}
/* 分页器 end */
