.news-list {
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  grid-gap: 60px 40px;
  margin-bottom: 60px;
}
.pagination {
  margin-bottom: 60px;
}
.img {
  aspect-ratio: 840/150;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
}
.category-search {
  border-top: solid 1px #ebebeb;
  border-bottom: solid 1px #ebebeb;
  padding: 12px 20px;
  display: flex;
  align-items: baseline;
}
.category-search .label {
  min-width: 80px;
  font-size: 18px;
  margin-right: 80px;
}
.category-search .category-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 5px;
}
.category-search .category-list .category-item {
  display: block;
  font-size: 18px;
  color: #777;
  line-height: 42px;
}
.category-search .category-list .category-item.active {
  color: #e68000;
}
.mobile-category-list {
  display: none;
}
.news-list .box .img-box {
  flex: 0.3;
  margin-right: 20px;
  overflow: hidden;
}
.news-list .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.news-list .box .news-desc {
  color: #777;
  line-height: 1.5;
  margin-bottom: 15px;
}

.news-list .box .title {
  font-weight: bold;
  font-size: 22px;
  color: #111111;
  line-height: 32px;
  margin: 20px 0 0;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .box .time {
  font-size: 16px;
  color: #777777;
}
.news-list .box {
  position: relative;
  padding-bottom: 25px;
  padding-top: 25px;
}
.news-list .box::after,
.news-list .box::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  background: #ebebeb;
}
.news-list .box::before {
  width: 0;
  z-index: 1;
  transition: all 0.3s;
}
.news-list .box:hover .title {
  color: #025872;
}
.news-list .box img:hover {
  transform: scale(1.2);
}
.news-list .box:hover::before {
  width: 100%;
  background: #025872;
}
.page {
  padding: 60px 0;
}
.page ul {
  text-align: center;
}
.page li {
  display: inline-block;
  margin: 0 8px;
}
.page li a {
  font-weight: 400;
  font-size: 18px;
  color: #111111;
  width: 38px;
  line-height: 38px;
  text-align: center;
  display: block;
  border-radius: 100%;
}
.page li a.active {
  background: #025872;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .category-search .category-list {
    display: none;
  }
  .category-search .label {
    min-width: 62px;
    margin-right: 20px;
    font-size: 14px;
  }
  .mobile-category-list {
    display: block;
    width: 100%;
  }
  .mobile-category-list .layui-form-select .layui-input {
    border-color: #ebebeb;
  }
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px 0;
  }

  .news-list .box {
    padding-bottom: 20px;
  }
  .news-list .box .title {
    font-size: 16px;
    margin: 15px 0 20px;
    height: auto;
    line-height: 24px;
  }
  .news-list .box .time {
    font-size: 14px;
  }
  .page {
    padding: 30px 0;
  }
  .page li {
    margin: 0 5px;
  }
  .page li a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
