/* 新闻列表整体 */
.newsWrap_7dP3x {
  max-width: 1440px;
  margin: 40px auto;
  background: var(--theme-bg_8dK3a);
  border-radius: var(--theme-radius_8dK3a);
  box-shadow: var(--theme-shadow_8dK3a);
  padding: clamp(18px,3vw,36px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(18px,3vw,36px);
  box-sizing: border-box;
}
.newsLeft_3fK8z {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px,2vw,28px);
  height: 100%;
}
.newsItemBig_8sN4b {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(60,80,120,0.07);
  display: flex;
  flex-direction: column;
 min-height: 500px;
  height: 500px;
  overflow: hidden;
  min-width: 0;
}
.newsImgWrap_2hJ7a {
  width: 100%;
  aspect-ratio: 4/3;
  background: #e5e7eb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsImg_4kP9b {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.newsInfo_6rT2c {
  padding: 18px 18px 12px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.newsTitleBig_9vB2q {
  font-size: var(--title-font-size, 17px);
  font-weight: 600;
  color: var(--theme-title_8dK3a);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.4em * 2);
}
.newsTime_5tN8m {
  font-size: 13px;
  color: var(--theme-time_8dK3a);
  margin-bottom: 8px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newsDescBig_7yQ4w {
  font-size: var(--desc-font-size, 15px);
  color: var(--theme-desc_8dK3a);
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.5em * 3);
}
/* 右侧新闻列表 */
.newsRight_6pR2w {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(60,80,120,0.07);
  padding: 18px 12px;
  height: 100%;
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  box-sizing: border-box;
}
.newsItemSmall_2bQ7x {
  padding: 0 2px 0 2px;
  border-bottom: 1px solid var(--theme-border_8dK3a);
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.newsTitleSmall_3dK8v {
  font-size: var(--title-font-size, 16px);
  font-weight: 500;
  color: var(--theme-title_8dK3a);
  line-height: 1.35;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.35em * 2);
}
.newsDescSmall_1pQ7w {
  font-size: var(--desc-font-size, 14px);
  color: var(--theme-desc_8dK3a);
  line-height: 1.5;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.5em * 3);
}
.newsItemSmall_2bQ7x:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
/* 滚动条美化 */
.newsRight_6pR2w::-webkit-scrollbar {
  width: 6px;
  background: #f5f6fa;
  border-radius: 6px;
}
.newsRight_6pR2w::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 6px;
}
/* 响应式：移动端一列展示 */
@media (max-width: 900px) {
  .newsWrap_7dP3x {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: clamp(10px,4vw,18px);
    height: auto;
    min-height: 0;
  }
  .newsLeft_3fK8z {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
  }
  .newsRight_6pR2w {
    height: auto;
    max-height: 420px;
  }
}
@media (max-width: 600px) {
  .newsWrap_7dP3x {
    padding: clamp(4px,2vw,8px);
    margin: 12px auto;
  }
  .newsItemBig_8sN4b,
  .newsRight_6pR2w {
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(60,80,120,0.04);
  }
  .newsInfo_6rT2c {
    padding: 12px 10px 8px 10px;
  }
}