@import url('../css/head-foot.css');
#content .cont-r {
  display: grid;
  grid-template-columns: repeat(auto-fill, 137px);
  grid-template-rows: repeat(auto-fill, 137px);
  grid-gap: 16px;
  justify-content: center;
}
#content .cont-r a {
  width: 100%;
  height: 100%;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 24px;
  border: 2px solid #EEEEEE;
  overflow: hidden;
  position: relative;
}
#content .cont-r a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#content .cont-r a .bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32%, #3a2c2c 100%);
  position: absolute;
  top: 0;
  display: none;
}
#content .cont-r a .bg h4 {
  width: 117px;
  font-size: 16px;
  font-family: s;
  font-weight: 600;
  color: #FFD61B;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  left: 10px;
  bottom: 16px;
}
#content .cont-r a:hover {
  transform: scale(1.2);
  z-index: 2;
  border-color: #FFD61B;
}
#content .cont-r a:hover .bg {
  display: block;
}
