@charset "utf-8";

.honor ul li {
  width: 22%;
  padding: 4px;
  border: 1px solid #e1e1e1;
  float: left;
  margin: 0 4% 70px 0;
  position: relative;
  transition: all 0.3s;
}
.honor ul li:after {
  padding-bottom: 120%;
}
.honor ul li .zzc {
  width: 97%;
  height: 100%;
  position: absolute;
  background: #000;
  filter: alpha(opacity=50);
  background: rgba(0, 0, 0, 0.5);
  display: block;
  opacity: 0;
  transition: all 0.3s;
}
.honor ul li .zzc .zzctxt {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.honor ul li .zzc .zzctxt span {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  overflow: hidden;
}
.honor ul li .zzc .zzctxt .line {
  width: 30px;
  height: 1px;
  background: #fff;
  margin: 5px auto;
}
.honor ul li:hover {
  border: 1px solid #eb6438; /*红线*/
}
.honor ul li:hover .zzc {
  opacity: 1;
}
.honor-mobile {
  width: 100%;
  margin: 20px auto;
  display: none;
}
.honor-mobile ul li {
  width: 100%;
}
.honor-mobile ul li:after {
  padding-bottom: 120%;
}
.honor-mobile .slick-dots li {
  display: inline-block;
  width: 10px;
}
.honor-mobile .slick-dots li button {
  background: #ddd;
}
.honor-mobile .slick-dots li.slick-active button {
  background: #EB6438;
}

@media (max-width: 768px) {
  .honor-mobile {
    display: block;
  }
  .honor {
    display: none;
  }
}