


.news-list {
  margin-left: 15%;
  margin-right: 15%;
  width: 70%;
  margin-top: 40px;
}

.news-list-item {
  display: flex;
  color: #333333;
  border-bottom: 2px solid #eeeeee;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
}

@keyframes newsAnimate {
  from{
    color: #333333;
  }
  to {
    color: #53b1da;
  }
}

.news-list-item:hover {
  animation: newsAnimate 0.5s;
  color: #53b1da;
}

.news-list-item-date {
  width: 120px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}

.news-list-item-day {
  font-size: 90px;
}

.news-list-item-year {
  font-size: 22px;
  
}

.news-list-item-intro {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-right: 40px;
  flex: 1;
}

.news-list-item-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news-list-item-content {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 40px;
}

.news-list-item-img {
  width: 400px;
	height: 280px;
  overflow: hidden;
}

.news-list-item-img > img {
  width: 100%;
	height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.news-list-item:hover .news-list-item-img > img {
	transform: scale(1.05);
}


@media screen and (max-width: 1400px) {
  .news-list {
    margin-left: 10%;
    margin-right: 10%;
  }

  .news-list-item-img {
    width: 350px;
    height: 230px;
  }
}

@media screen and (max-width: 1200px) {
  .news-list {
    margin-left: 5%;
    margin-right: 5%;
  }

  .news-list-item-img {
    width: 280px;
    height: 200px;
  }
}

@media screen and (max-width: 1000px) {
  .news-list-item-date {
    display: none;
  }

  .news-list-item-content {
    margin-bottom: 10px;
  }

  .news-list-item-intro {
    padding-right: 10px;
  }
}

@media screen and (max-width: 800px) {
  .news-list-item-img {
		width: 120px;
		height: 80px;
  }

  .news-list-item-title {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .news-list-item-content {
    font-size: 12px;
  }
}

.news-pagination {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 20px;
}

.news-pagination-prev:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.news-pagination-next:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.news-pagination-item:hover {
  background-color: rgb(102,186,222);
  color: white;
  transition: all .2s;
}

.news-pagination-item-active {
  background-color: rgb(102,186,222);
  color: white;
}

.news-pagination-prev {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.news-pagination-next {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}

.news-pagination-item {
  height: 45px;
  width: 45px;
  border: 2px solid rgb(102,186,222);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
}
