.news-body {
  background-color: #EFEFF5;
}
.news-body .title {
  padding-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news-body .title p {
  margin-left: 24px;
  color: #222222;
  font-size: 36px;
}
.news-body .title img {
  width: 32px;
}
.news-body .top {
  display: block;
  height: 416px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 120px;
}
.news-body .top .left {
  margin-top: 50px;
  width: 580px;
  height: 100%;
}
.news-body .top .left .time {
  color: #666666;
  font-size: 18px;
}
.news-body .top .left .name {
  color: #003DA7;
  font-size: 24px;
  margin: 27px 0 44px 0;
}
.news-body .top .left .des {
  color: #666666;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
.news-body .top .right {
  width: 700px;
  height: 100%;
}
.news-body .top .right img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.news-body .content .list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.news-body .content .list .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 340px;
  padding: 60px 0 80px;
  gap: 68px;
}
.news-body .content .list .card .item-img {
  width: 268px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.news-body .content .list .card .item-img img {
  width: 268px;
  height: 180px;
  object-fit: cover;
}
.news-body .content .list .card .item-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-body .content .list .card .item-title .name {
  color: #333333;
  font-size: 24px;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news-body .content .list .card .item-title .des {
  color: #666666;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-body .content .list .card .item-title .action {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.news-body .content .list .card .item-title .action span {
  color: #003DA7;
  font-size: 18px;
}
.news-body .pagers {
  max-width: 300px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
.news-body .pagers .pager {
  max-width: 300px;
  height: 100%;
  font-size: 20px;
  gap: 14px;
}
.news-body .pagers .btn.ghost {
  color: #003DA7;
  height: 30px;
  line-height: 30px;
}
.news-body .pagers .scroll {
  padding-top: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: 300px;
  height: 100%;
  overflow-x: scroll;
}
.news-body .pagers .scroll::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
