.category {
  padding: 80px 0 60px;
  justify-content: center;
}
.category a {
  flex: none;
  color: #333333;
  font-size: 20px;
  margin: 0 60px;
  padding-bottom: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #45C25B;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.category a.on,
.category a:hover {
  color: #45C25B;
}
.category a.on::after,
.category a:hover::after {
  width: 88px;
  left: calc(50% - 44px);
}
.list_honor {
  display: flex;
  flex-wrap: wrap;
}
.list_honor li {
  width: 23.511%;
  margin-right: 1.964%;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.list_honor li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.list_honor li a div {
  overflow: hidden;
  border-radius: 10px;
}
.list_honor li a img {
  transition: all 0.5s ease;
  border-radius: 10px;
}
.list_honor li a:hover p {
  color: #45C25B;
}
.list_honor li a:hover img {
  transform: scale(1.05);
}
.list_honor li:nth-child(4n) {
  margin-right: 0;
}
.list_honor li p {
  transition: all 0.3s ease;
  color: #333333;
  margin-top: 11px;
  text-align: center;
}
body > .container {
  padding: 20px 0 90px;
}
@media screen and (max-width: 1024px) {
  body > .container {
    padding: 20px 4% 50px;
  }
  .category {
    padding: 30px 0;
    justify-content: flex-start;
  }
  .category a {
    margin: 0 20px!important;
    font-size: 15px!important;
    padding-bottom: 10px;
  }
  .list_honor li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .list_honor li a img {
    max-width: 100%;
  }
}
