.news_box {
  height: auto;
  padding-top: 0;
}

.news_box ul {
  position: static;
  display: flex;
  flex-wrap: wrap;
}

.news_box ul li {
  float: none;
  height: auto;
}

.news_box ul li a {
  height: 210px;
  margin: 1px;
}

@media (max-width: 767px) {
  .news_box ul li a {
    height: auto;
  }

  .news_box ul li:nth-child(3) ~ li {
    display: none;
  }
}

.news_box ul li a .more {
  position: static;
}

.news_box ul li a .type {
  margin-bottom: 0;
  height: 34px;
}

.news_box ul li a p {
  margin-bottom: 28px;
}

.news-pagination {
  display: flex;
  align-content: center;
  justify-content: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .news-pagination {
    display: none;
  }
}

.news-pagination-wrapper {
  display: flex;
  position: relative;
  text-align: center;
}

.news-pagination-item {
  margin: 0 5px;
  color: #fff;
  padding: 8px 3px;
  text-decoration: none !important;
}

.news-pagination-tail {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-top: 2px solid #EA5006;
  border-bottom: 2px solid #EA5006;
  width: 0;
  height: 100%;
  transition: all .3s;
}

@media (max-width: 767px) {
  .news-pagination-tail {
    border-top: none;
  }
}

.news-pagination-item.active {
  color: #EA5006;
}

.news-pagination-item:hover {
  color: rgba(255, 255, 255, .7);
}

.q-tag {
  display: flex;
  height: 420px;
}

.q-tag-title, .q-tag-content {
  height: 100%;
}

.q-tag-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 25%;
  background-image: url(../img/index-tag-bg.jpg);
  background-size: cover;
  background-position: center center;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .q-tag-title {
    display: none;
  }
}

.q-tag-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  width: 75%;
  padding: 75px 50px;
  background-color: #fff;
}

.q-tag-item {
  margin: 1px;
  background-color: #E7E7E7;
  transition: all .3s;
  padding: 10px 15px;
  text-decoration: none !important;
}

.q-tag-item:hover {
  color: #fff;
  background-color: #EA5106;
}

@media (max-width: 767px) {
  .q-tag {
    flex-wrap: wrap;
    height: auto;
  }

  .q-tag-title, .q-tag-content {
    width: 100%;
  }

  .q-tag-title {
    font-size: 16px;
  }

  .q-tag-content {
    padding: 15px;
  }

  .q-tag-item {
    padding: 8px;
    font-size: 12px;
  }
}