.mainWrapper{
   background:rgba(242,245,254,1) ; 
}
/* banner部分 */
.newsListBanner {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    position: relative;
    height:80vh;
    overflow: hidden;
    background-size: cover;
    background-position: 100% 0;
  }

  .newsListBanner .bannerContent {
    position: absolute;
    width: 83%;
    z-index: 2;
    color: #ffffff;
    bottom:25%;
  }

  .newsListBanner .newsListBannerTitle {
    margin: 0;
    font-family: "PingFang SC";
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: 0px;
  }
  .newsListBanner .newsListBannerContent {
    margin: 0;
    padding-top: 10px;
    font-family: "PingFang SC";
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0px;
  }
  .newsListBanner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  .articleBox{
    width: 83%;
    margin: 0 auto;
    display: flex;
    gap: clamp(20px, 1.39vw, 1.39vw);
    padding-top:clamp(20px, 2.08vw, 2.08vw);
    padding-bottom:clamp(60px, 6.94vw, 6.94vw);
    align-items: flex-start;
  }
  .news-detail{
    width: 68%;
    background: rgba(255, 255, 255, 1);
    padding: clamp(20px, 2.08vw, 2.08vw) clamp(20px, 2.08vw, 2.08vw) clamp(40px, 4.16vw, 4.16vw) clamp(20px, 2.08vw, 2.08vw);
  }
 .news-title{
font-weight: 500;
font-style: Medium;
font-size: clamp(20px, 1.25rem, 1.25rem);
line-height: 120%;
color: rgba(51, 51, 51, 1);
text-align: center;
 }
 .news-meta {
    display: flex;
    color: rgba(184, 184, 184, 1);
    font-size: 14px;
    justify-content: center; 
    margin-top: clamp(12px, 1vw, 1vw);
}

.meta-item {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.meta-item span {
    margin-right: 5px;
    /* color: #999; */
}
.news-content {
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 1rem, 1rem);
    leading-trim: NONE;
    line-height: 150%;
    color: rgba(51, 51, 51, 1);
    margin-top: clamp(20px, 2.08vw, 2.08vw);
}
.hot-news {
    flex: 1;
    background: rgba(255, 255, 255, 1);
}
.hot-news-title{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('/images/hot-bg.png');
    background-size: cover;
    background-position: center;
    gap: clamp(12px, 1vw, 1vw);
    padding: clamp(20px, 1.875vw, 1.875vw) clamp(20px, 1.39vw, 1.39vw);
}
.hot-news-title-icon{
    background-image: url('/images/hot-icon.png');
    background-size: cover;
    background-position: center;  
    width: clamp(24px, 1.875rem, 1.875rem);
    height: clamp(24px, 1.875rem, 1.875rem);
}
.hot-news-title-text{
font-weight: 600;
font-style: Semibold;
font-size: clamp(16px, 1.25rem, 1.25rem);
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0px;
}
.hot-news-list{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: clamp(10px, 0.69vw, 0.69vw) clamp(20px, 1.39vw, 1.39vw);
}
.hot-news-item{
    display: flex;
    width: 100%;
    padding: clamp(20px, 1.39vw, 1.39vw) 0;
    gap: clamp(12px, 1vw, 1vw);
    border-bottom: 1px solid rgba(234, 234, 234, 1);
}
.hot-news-item:last-child {
    border-bottom: none;
}
.hot-news-item .hot-news-index{
    font-weight: 600;
    font-style: Semibold;
    font-size: clamp(16px, 1.25rem, 1.25rem);
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    color: rgba(165, 169, 204, 1);
    margin-top: 3px;
    flex-shrink: 0; /* 禁止序号压缩 */
}
.hot-news-item:nth-child(1) .hot-news-index {
    color: rgba(12, 87, 230, 1);
}
/* 第2个列表项中的序号 */
.hot-news-item:nth-child(2) .hot-news-index {
    color: rgba(87, 143, 254, 1);
}
/* 第3个列表项中的序号 */
.hot-news-item:nth-child(3) .hot-news-index {
    color: rgba(91, 216, 254, 1);
}
.hot-news-item-text{
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(12px, 0.83vw, 0.83vw);
}
.hot-news-item-title{
font-weight: 400;
font-style: Regular;
font-size: clamp(16px, 1rem, 1rem);
leading-trim: NONE;
line-height: 150%;
letter-spacing: 0px;
color: rgba(51, 51, 51, 1);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.hot-news-item-time{
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 0.875rem, 0.875rem);
    leading-trim: NONE;
    line-height: 100%;    
    color: rgba(184, 184, 184, 1);
}
  @media screen and (max-width: 1024px){
    .newsListBanner {
      max-height:560px;
    }
    .articleBox{
        width: 90%;
        flex-direction: column;
    }
    .news-detail{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .newsListBanner {
      height:48vh;
      background-position: 40% 98%;
      background-size: 370%;
    }
    .newsListBanner .bannerContent {
        width: 90%;
      }
    }