.album-list-wrap {
  padding-bottom: 120px;
}

.album-list-wrap li {
  width: 25%;
  position: relative;
  cursor: pointer;
  float: left;
}

.album-list-wrap img {
  width: 100%;
}

.album-list-wrap .hover-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}

.album-list-wrap li:hover .hover-info {
  opacity: 1;
}

.album-list-wrap .hover-info h3 {
  font-size: 24px;
}

.album-list-wrap .hover-info p {
  font-size: 12px;
}

.album-list-wrap .hover-info .more {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 0.8;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: #057dba;
  font-size: 24px;
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .album-list-wrap li {
    width: 25%
  }
}

@media (max-width: 992px) {
  .album-list-wrap li {
    width: 33.333333%
  }
}

@media (max-width: 768px) {
  .album-list-wrap li {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .album-list-wrap li {
    width: 100%;
  }
}