/* 新闻资讯 */
body {
  background-color: #fff;
}
.banner {
  height: 435px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.banner .wrap {
  position: relative;
  z-index: 1;
}
.banner .text1 {
  font-size: 20px;
}
.banner .text2 {
  font-size: 48px;
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.banner .text1,
.banner .text2 {
  opacity: 0;
  animation: fadeInUp 1s forwards;
  -webkit-animation: fadeInUp 1s forwards;
}
.news-list {
  padding: 0 0 70px 0;
}
.news-item {
  border-radius: 25px;
  background: rgba(3, 110, 183, 0.05);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  margin-top: 24px;
}
.news-item .col-l {
  flex: 1;
  width: 0;
}
.news-item .col-r {
  flex-shrink: 0;
  width: 330px;
}
.news-item .col-r img {
  width: 330px;
  height: 275px;
  background-color: #fff;
}
.news-item .title a {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.news-item .title a:hover {
  color: var(--primary-color);
}
.news-item .desc {
  font-size: 20px;
  line-height: 28px;
  color: #323f4d;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  overflow: hidden;
  height: 140px;
  margin: 30px 0;
  word-break: break-all;
}
.news-item .tiem {
  font-size: 12px;
}
.news-detail {
  padding: 30px 0;
}
.news-detail h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
.news-subtitle {
  display: flex;
  margin-top: 18px;
}
.news-subtitle h3 {
  font-size: 15px;
  font-weight: 500;
}
.news-subtitle .time {
  font-size: 14px;
  color: #7e878c;
  margin-left: 70px;
}
.news-wrap {
  margin-top: 24px;
  border-radius: 20px;
  background: rgba(3, 110, 183, 0.05);
  padding: 30px;
}
.news-wrap .actions {
  margin-top: 20px;
  line-height: 30px;
}
.news-wrap .actions a {
  color: #323f4d;
}
.news-wrap .actions a:hover {
  color: var(--primary-color);
}
.news-content {
  font-size: 15px;
  line-height: 30px;
  word-break: break-all;
}
.news-content img {
  max-width: 100%;
  margin: 15px auto;
}
