@charset "utf-8";

#tidings .lat {
  width: 100%;
  height: auto;
}

#tidings .lat .basic_li {
  width: 320px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #a9a9a9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
}

#tidings .lat .basic_li .wrap {
  width: 100%;
  height: auto;
}

#tidings .lat .basic_li .wrap .hover {
  position: absolute;
  width: auto;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
}

#tidings .lat .basic_li:hover .wrap .hover {
  opacity: 1;
}

#tidings .lat .basic_li .wrap .lat_title {
  margin-bottom: 10px;
}

#tidings .lat .basic_li .wrap .lat_title a {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 16px;
  color: #E82F3D;
}

#tidings .lat .basic_li .wrap .lat_title a.blue {
  color: #053863;
}

#tidings .lat .basic_li .wrap h3 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#tidings .lat .basic_li .wrap p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-line;
  font-family: 'PB_R';
  font-weight: normal;
  font-size: 16px;
  color: #888;
}

#tidings .lat .basic_li .wrap .line {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  margin: 20px 0;
}

#tidings .lat .basic_li .wrap h4 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 14px;
  color: #888;
}