a {
  text-decoration: none;
}

.head-img {
  width: 100%;
  display: block;
  background-color: #00215A;
  margin-top: -74px;
}

/* 文章列表页面 */
.article-cat {
  height: 75px;
  line-height: 75px;
  font-size: 18px;
  border-bottom: 1px solid #cdcdcd;
  position: relative;
}

.article-cat a {
  position: relative;
  height: 100%;
  display: inline-block;
  text-decoration: none;
}

.article-cat a.active::after {
  content: '';
  display: block;
  width: 95%;
  height: 3px;
  background-color: #046EB8;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.article-cat a {
  padding: 0 25px;
}

.article-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #e2e2e2;
}

.article-item .img {
  width: 200px;
  height: 125px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 50px;
}

.article-item h3 {
  font-size: 24px;
  font-weight: 700;
  padding-top: 10px;
  margin-bottom: 30px;
}

.article-item a {
  text-decoration: none;
  flex: 1;
  color: #333;
}

.article-item .desc {
  position: relative;
  font-size: 16px;
}

.article-item .desc .time {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* 分页 */
.paging {
  padding: 23px 0 38px;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .article-cat {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }

  .head-img {
    padding-top: 74px;
  }

  .article-item-m {
    display: flex;
    padding: 14px;
    border-bottom: 1px solid #e2e2e2;
  }

  .article-item-m .img {
    width: 100px;
    height: 72px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 14px;
  }

  .article-item-m>a {
    flex: 1;
  }

  .article-item-m h3 {
    font-size: 18px;
    width: auto;
  }

  .article-item-m .time {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
  }
}