.newslist_outer {
  margin-bottom: 80px;
}

.index_news_block {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 74px;
  border-bottom: solid 1px #DFDFDF;
  width: 100%;
}
.index_news_block:hover {
  background-color: #e4e4e4;
}

.news_date,
.news_title {
  font-size: 16px;
}

.news_date {
  width: 120px;
  color: #717171;
  flex-shrink: 0;
  white-space: nowrap;
}

.news_title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #444;
}

.flag {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  background-color: #ff2323;
  padding: 2px 4px;
  margin-right: 16px;
}

.flag1 {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  background-color: #ff2323;
  padding: 2px 4px;
  margin-left: 16px;
  width: 40px;
  display: none;
}

/**/
.numberPagenation {
  width: 310px;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  padding: 0 10px;
  margin-left: auto;
  margin-right: auto;
}
.numberPagenation .pageLink {
  width: 32px;
  height: 32px;
  color: #444;
  background-color: #F8F8F8;
  font-size: 16px;
  line-height: 32px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border-radius: 16px;
  transition: 0.3s;
}
.numberPagenation .pageLink:hover {
  color: #fff;
  background-color: #1851B6;
}
.numberPagenation .pageNow {
  width: 32px;
  height: 32px;
  color: #fff;
  background-color: #1851B6;
  font-size: 16px;
  line-height: 32px;
  border-radius: 16px;
  text-align: center;
}
.numberPagenation .nextIcon {
  position: relative;
  display: inline-block;
  width: 5.9px;
  height: 10.9px;
}
.numberPagenation .nextIcon::before,
.numberPagenation .nextIcon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #444;
  transform-origin: calc(100% - 0.5px) 50%;
}
.numberPagenation .nextIcon::before {
  transform: rotate(45deg);
}
.numberPagenation .nextIcon::after {
  transform: rotate(-45deg);
}
.numberPagenation .prevIcon {
  position: relative;
  display: inline-block;
  width: 5.9px;
  height: 10.9px;
}
.numberPagenation .prevIcon::before,
.numberPagenation .prevIcon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #444;
  transform-origin: 0.5px 50%;
}
.numberPagenation .prevIcon::before {
  transform: rotate(45deg);
}
.numberPagenation .prevIcon::after {
  transform: rotate(-45deg);
}
.numberPagenation .iconOuter {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  transition: 0.3s;
  background-color: #F8F8F8;
}
.numberPagenation .iconOuter:hover {
  background-color: #1851B6;
}
.numberPagenation .iconOuter:hover .nextIcon::before,
.numberPagenation .iconOuter:hover .nextIcon::after,
.numberPagenation .iconOuter:hover .prevIcon::before,
.numberPagenation .iconOuter:hover .prevIcon::after {
  background-color: #fff;
}
@media (max-width: 960px) {
  .news_date {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .newslist_outer {
    margin-bottom: 60px;
  }
  .index_news_block {
    display: block;
    height: fit-content;
    padding: 12px 0;
  }
  .news_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
  }
  .flag {
    width: 40px;
    display: none;
  }
  .flag1 {
    width: 40px;
    display: inline;
  }
  .numberPagenation {
    width: 280px;
  }
  .numberPagenation .pageLink {
    transition: 0s;
    font-size: 14px;
  }
  .numberPagenation .pageNow {
    transition: 0s;
    font-size: 14px;
  }
  .numberPagenation .iconOuter {
    transition: 0s;
    font-size: 14px;
  }
}