/* ============ 新闻中心列表页 · 大图卡片风（中英文模板共用） ============ */
.news-cards-page {
  background: #f5f6f8;
  padding: 76px 0 90px;
}

/* ---- 栏目标题区 ---- */
.nc-head {
  text-align: center;
  margin-bottom: 48px;
}
.nc-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #2460f2;
  margin-bottom: 14px;
}
.nc-head h2 {
  font-size: 36px;
  font-weight: 700;
  color: #181c28;
  margin: 0 0 16px;
  line-height: 1.3;
}
.nc-head .nc-bar {
  width: 52px;
  height: 3px;
  background: #2460f2;
  border-radius: 3px;
  margin: 0 auto;
}
.nc-head-desc {
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: #828a99;
  max-width: 640px;
}

/* ---- 卡片网格 ---- */
.nc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.nc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eceef2;
  box-shadow: 0 2px 10px rgba(24, 32, 56, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nc-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 18px 38px rgba(36, 96, 242, 0.13);
}

/* 图片区 */
.nc-img {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e8ebf0;
}
.nc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.nc-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(15, 22, 40, 0.42), rgba(15, 22, 40, 0));
  pointer-events: none;
}
.nc-card:hover .nc-img img {
  transform: scale(1.06);
}
/* 分类小标签（图片左上角） */
.nc-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-block;
  padding: 5px 13px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #2460f2;
  letter-spacing: 0.5px;
  backdrop-filter: blur(2px);
}
/* 日期（图片左下角，两行式） */
.nc-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #ffffff;
  z-index: 2;
}
.nc-date .day {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.nc-date .ym {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.92;
}

/* 正文区 */
.nc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}
.nc-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: #1c2230;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}
.nc-card:hover .nc-title {
  color: #2460f2;
}
.nc-excerpt {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.8;
  color: #7a828f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f1f4;
  font-size: 13px;
  color: #a0a7b3;
}
.nc-views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nc-views i {
  color: #b6bdc8;
}
.nc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #2460f2;
}
.nc-more i {
  transition: transform 0.25s ease;
}
.nc-card:hover .nc-more i {
  transform: translateX(4px);
}

/* ---- 响应式 ---- */
@media (max-width: 991px) {
  .news-cards-page { padding: 60px 0 72px; }
  .nc-head { margin-bottom: 40px; }
  .nc-head h2 { font-size: 30px; }
  .nc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .news-cards-page { padding: 46px 0 60px; }
  .nc-head { margin-bottom: 32px; }
  .nc-head h2 { font-size: 25px; }
  .nc-head-desc { font-size: 14px; }
  .nc-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .nc-title { font-size: 16px; }
}
