/* 荣誉资质列表 */
.honor_list {
  width: 100%;
  height: auto;
  background: #eee;
  position: relative;
}
.honor_list .honor_item {
  width: 370px;
  height: 580px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  margin-right: 45px;
  float: left;
  margin-bottom: 20px;
}
.honor_list .honor_item .honor_cover_wrp {
  width: 100%;
  height: 525px;
  background: #fefefe;
}
.honor_list .honor_item>span {
  display: block;
  text-align: center;
  line-height: 55px;
  height: 55px;
  width: 100%;
  padding: 0px 5px;
  font-size: 18px;
  transition: all 0.4s ease;
}
.honor_list .honor_item:nth-child(3n) {
  margin-right: 0px;
}
.honor_list .honor_item:hover {
  background: #3488ea;
  box-shadow: 0px 0px 10px #ccc;
}
.honor_list .honor_item:hover>span {
  color: #fff;
}

/* 荣誉资质点击预览大图 */
.honor_display_wrp {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1000;
}
.honor_display_wrp .honor_display_back {
  background: #000;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.7;
}
.honor_display_img {
  display: none;
}
.honor_display_wrp .honor_display_img {
  position: relative;
  max-height: 80vh;
  border: 10px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.8s ease;
  display: block;
}
.honor_display_img:hover {
  box-shadow: 0px 0px 100px #fff;
}
