.news-detail-title {
  font-size: 30px;
  font-weight: bold;
  height: 400px;
  background-image: url("/static/images/news/artical-bg.png");
  background-size: 100% 100%;
}

.news-artical {
  background-color: #fff;
  padding: 10px 60px;
  margin: 40px auto;
  border-radius: 20px;
}

.news-artical .date {
  margin-top: 20px;
}

.news-artical .tag-cloud {
  display: inline-flex;
  margin-left: 20px;
  transform: translateY(-1px);
}

.news-artical .thumb {
  height: 250px;
  margin-right: 1em;
}

.news-artical .line {
  height: 1px;
  width: 100%;
  margin: 20px 0;
  background-color: #ccc;
}

.news-artical .content {
  text-indent: 2em;
  text-wrap: wrap !important;
  overflow: hidden;
  overflow-wrap: break-word;
  text-align: justify;
  font-size: 18px;
  margin-bottom: 50px;
}

.news-artical .content p {
  text-wrap: wrap !important;
}

.news-artical .content span {
  text-wrap: wrap !important;
}

.news-banner {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: auto 100%;
  background-color: #ccc;
  color: #fff;
}

.news-banner h2 {
  font-size: 50px;
}

.news-banner p {
  font-size: 20px;
  max-width: 400px;
}

.news-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.news-list .news-item-card {
  display: flex;
  height: 250px;
  column-gap: 50px;
  padding: 20px;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

.news-list .news-item-card .news-thumb {
  height: 100%;
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ccc;
  font-size: 30px;
  font-weight: bold;
  color: #9baab3;
}

.news-list .news-item-card .news-thumb img {
  object-fit: cover;
}

.news-list .news-item-card .news-info {
  position: relative;
  overflow: hidden;
  text-align: justify;
  width: calc(100% - 350px);
}

.news-list .news-item-card .news-info-title {
  font-size: 25px;
}

.news-list .news-item-card .news-info-abstract {
  font-size: 15px;
  text-wrap: wrap;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.news-list .news-item-card .news-info-date {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #397EF0;
  font-size: 20px;
}

.news-list .news-item-card:hover {
  box-shadow: 0 0 10px #90c0ff;
}

.load-more {
  margin-top: 50px;
  margin-bottom: 50px;
}

.load-more #load-more-btn {
  background-color: #EBF2FD;
}

@media (max-width: 1200px) {
  .news-banner {
    height: 200px;
    padding: 20px;
  }
  .news-banner div {
    width: 100%;
  }
  .news-banner h2 {
    font-size: 30px;
  }
  .news-banner p {
    font-size: 16px;
  }
  .news-list {
    width: 100%;
    margin-top: 20px;
  }
  .news-list .news-item-card {
    flex-direction: column;
    row-gap: 20px;
    height: auto;
    overflow: visible;
  }
  .news-list .news-item-card .news-thumb {
    width: 100%;
    height: 200px;
  }
  .news-list .news-item-card .news-info {
    flex: 1;
    width: 100%;
    height: 200px;
    overflow: visible;
  }
  .news-list .news-item-card .news-info-title {
    font-size: 20px;
  }
  .news-list .news-item-card .news-info-abstract {
    font-size: 14px;
  }
  .news-list .news-item-card .news-info-date {
    font-size: 16px;
    transform: translateY(30px);
  }
}
