.special-cat {
  position: relative;
}
.special-cat article {
  -webkit-columns: 5;
     -moz-columns: 5;
          columns: 5;
}
.special-cat section {
  margin-bottom: 15px;
}
.special-cat .images {
  -webkit-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
}
.special-cat .images img {
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px #5a5a5a;
          box-shadow: 0px 0px 10px 0px #5a5a5a;
  border-radius: 2px;
}
.special-cat .images:hover, .special-cat .images:active {
  -webkit-transition: 0.25s all;
  -o-transition: 0.25s all;
  transition: 0.25s all;
  -webkit-box-shadow: 0 0 10px #fb3;
          box-shadow: 0 0 10px #fb3;
  z-index: 9999;
}
.special-cat .images.inactive {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  opacity: 0.75;
}
@media screen and (max-width: 1200px) {
  .special-cat article {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}
@media screen and (max-width: 600px) {
  .special-cat section {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 560px) {
  .special-cat article {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
  .special-cat section {
    margin-bottom: 8px;
  }
}
.special-cat .promotion-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.35;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.special-cat .promotion-layer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.special-cat .promotion-layer .hand-tap {
  position: absolute;
  left: 50%;
  top: 18%;
  -webkit-transform: translate(-50%, -80%);
      -ms-transform: translate(-50%, -80%);
          transform: translate(-50%, -80%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  min-width: 260px;
}
.special-cat .promotion-layer .hand-tap p {
  font-weight: 600;
  font-size: 18px;
  text-shadow: 0 0 10px #fb3;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  line-height: 26px;
  font-family: Arial;
}
.special-cat .promotion-layer .hand-tap p span {
  font-weight: 600;
  color: #FFF1FA;
}
.special-cat .promotion-layer .hand-tap p span + span {
  color: yellow;
}
.special-cat .promotion-layer .hand-tap p span + span + span {
  color: #5DF15D;
}
@media screen and (max-width: 600px) {
  .special-cat .promotion-layer .hand-tap p {
    font-size: 13px;
    line-height: 18px;
  }
}
.special-cat .promotion-popup {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9999;
}
.special-cat .promotion-popup .promotion-content {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-height: 300px;
  max-width: 600px;
  text-align: center;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}