
/*** Gallery List ***/
.gallery-list-out {
  margin-bottom: 20%;
}
.gallery-list-out .gallery-list-name {
  margin-top: 10px;
  text-align: center;
}
.gallery-list {
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.gallery-list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.gallery-list .gallery-list-pic {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
}
.gallery-list .gallery-list-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.gallery-list img {
  max-height: 100%;
  transition: all 0.5s ease-in-out;
}
.gallery-list:hover img {
  transform: scale(1.05);
}



/*** Gallery Show ***/
.gallery-description {
  line-height: 1.7rem;
  margin-bottom: 20px;
}
.gallery-show-list-out {
  margin-bottom: 20%;
}
.gallery-show-list {
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 5px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.gallery-show-list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.gallery-show-list .gallery-show-list-pic {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
}
.gallery-show-list .gallery-show-list-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.gallery-show-list img {
  max-height: 100%;
  transition: all 0.5s ease-in-out;
}
.gallery-show-list:hover img {
  transform: scale(1.05);
}