html {
  font-size: 1vw;
  overflow-x: hidden;
}
.news-project-main {
  background: #f7f7f7;
  min-height: 100vh;
  padding: 0;
  font-family: var(--font-family, "Microsoft YaHei", Arial, sans-serif);
}

/* 第一屏 */
.news-hero {
  position: relative;
  height: 42rem;
  color: #fff;
}
.news-hero-images {
  position: absolute;
  right: 0;
  top: 5rem;
  gap: 1.5rem;
  background: var(--theme-color2);
  width: 55rem;
  padding: 4rem;
  box-sizing: border-box;
  z-index: 1;
  height: 37rem;
}
.news-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 41rem;
  height: 26rem;
  object-fit: cover;
}
.news-hero-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100rem;
  height: 40rem;
  background: var(--theme-color1);
  padding: 8rem 61rem 4rem 4rem;
  box-sizing: border-box;
  z-index: 0;
}
.news-hero-info h2 {
  margin-top: 0;
  font-size: 3.5rem;
  margin-bottom: 6rem;
}
.news-item-info p {
  font-size: 1rem;
  margin: 0;
  line-height: 2;
}

.news-list {
  margin: 0rem 0;
  padding-bottom: 6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.news-list > * {
  margin-bottom: 3rem;
}

.news-list > *:last-child {
  margin-bottom: -3rem;
}
