@charset "utf-8";

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

#committee .lat .basic_li {
  width: 320px;
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-top: 50px;
  position: relative;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

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

#committee .lat .basic_li .wrap h4 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #000;
}

#committee .lat .basic_li .wrap .line {
  width: 95%;
  height: 1px;
  background: #e8e8e8;
  margin: 35px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

#committee .lat .basic_li .wrap .line span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #053863;
  background: linear-gradient(70deg, rgba(5, 56, 99, 1) 0%, rgba(11, 67, 140, 1) 50%, rgba(5, 56, 99, 1) 100%);
}

#committee .lat .basic_li .wrap .line span:nth-of-type(2) {
  width: 15px;
  height: 15px;
}

#committee .lat .basic_li .wrap h3 {
  white-space: pre-line;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
}