@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 10px;
}

#pic_lt ul li a {
  display: block;
  max-height: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

#pic_lt ul li a.text {
  padding: 10px;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #888;
  text-align: center;
}