@charset "utf-8";

#pic_lt {
  width: 100%;
  height: auto;
}

#pic_lt ul {
  width: 100%;
  height: auto;
}

#pic_lt ul li {
  width: auto;
  height: auto;
  border: 1px solid #888;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 20px;
}

#pic_lt ul li a {
  display: block;
  max-height: 250px;
  overflow: hidden;
}

#pic_lt ul li a img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s;
}

#pic_lt ul li:hover a img {
  scale: 1.1;
}

#pic_lt ul li a.text {
  padding: 20px 0;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #888;
}