.archive-hero {
    position: relative;
}

.container {
    width: 100%;
    height: 125px;
    background-image: url(https://www.cn-helloworld.com/wp-content/uploads/2025/11/img_471833-150x150.jpg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 120%;
    position: relative;
    margin-bottom: 30px;
}

.container ::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .35);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.archive-hero-text {
    width: 1200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.archive-hero-text p {
    color: #dfe0e5;
    font-size: 15px;
    font-weight: 300;
}

.archive-hero-text h1 {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
}


/* 资讯模块容器 */
.news-section {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid 布局容器 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列布局 */
  gap: 20px;
}

/* 资讯卡片 */
.news-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease; /* hover 动效过渡 */
}

/* 卡片 hover 效果：上移 + 阴影增强 */
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* 卡片图片（懒加载占位） */
.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* 懒加载图片初始状态（可选） */
.lazy-load {
  opacity: 0;
}

.lazy-load.loaded {
  opacity: 1;
}

/* 卡片元信息容器 */
.news-meta {
  padding: 15px;
}

/* 资讯标签 */
.news-tag {
  display: inline-block;
  font-size: 12px;
  color: #4285f4;
  margin-bottom: 8px;
}

/* 资讯标题 */
.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 资讯描述 */
.news-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 资讯信息（时间、点赞、浏览） */
.news-info {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 15px;
  justify-content: space-between;
}