/* ============ 新闻列表 + 新闻详情 ============ */
/* ---- 栏目页分类 tab ---- */
.cat-tabs{display:flex;justify-content:center;gap:14px;margin-bottom:44px;flex-wrap:wrap;}
.chip{
  padding:8px 20px;border-radius:20px;font-size:13.5px;cursor:pointer;
  border:1px solid #dde1e6;color:var(--ink-2);transition:all .2s;background:#fff;display:inline-block;
}
.chip:hover{border-color:var(--brand);color:var(--brand);}
.chip.on{background:var(--brand);border-color:var(--brand);color:#fff;}

/* ---- 横排新闻卡片 ---- */
.news-list{display:grid;grid-template-columns:1fr 1fr;gap:24px;max-width:1180px;margin:0 auto;}
.news-row{
  display:grid;grid-template-columns:220px 1fr;overflow:hidden;
  background:var(--card);border-radius:var(--radius);box-shadow:0 3px 14px rgba(0,0,0,.05);
  transition:all .3s;
}
.news-row:hover{transform:translateY(-5px);box-shadow:var(--shadow);}
.news-row .pic{
  height:100%;min-height:150px;display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:800;letter-spacing:2px;font-size:18px;
}
.news-row .body{padding:20px 24px;}
.news-row h3{font-size:16px;line-height:1.55;margin-bottom:10px;color:var(--ink);}
.news-row p{font-size:13px;color:var(--ink-2);line-height:1.75;margin-bottom:12px;}
.news-row .meta{font-size:12.5px;color:var(--ink-3);}

/* ---- 文章详情 ---- */
.article-wrap{max-width:860px;margin:0 auto;}
.article-head{text-align:center;margin-bottom:44px;}
.article-head .cat{
  display:inline-block;font-size:12.5px;color:var(--brand);
  border:1px solid var(--brand);border-radius:16px;padding:4px 16px;margin-bottom:20px;
}
.article-head h1{font-size:30px;line-height:1.5;margin-bottom:18px;}
.article-head .meta{font-size:13.5px;color:var(--ink-3);}
.article-visual{
  height:340px;border-radius:var(--radius);margin-bottom:44px;
  display:flex;align-items:center;justify-content:center;color:#fff;
  font-size:30px;font-weight:800;letter-spacing:4px;
}
/* 有特色图时铺满裁切 */
.article-visual.has-img,.news-row .pic.has-img,.news-grid .news-pic.has-img{
  background-size:cover;background-position:center;
}
.article-body p{font-size:16px;line-height:2.15;color:#333;text-align:justify;margin-bottom:26px;}
.article-body h2{font-size:21px;margin:40px 0 20px;padding-left:14px;border-left:4px solid var(--brand);}
.article-body blockquote{
  margin:30px 0;padding:22px 28px;background:#f0fbf6;border-radius:10px;
  border-left:4px solid var(--brand);font-size:15px;color:var(--ink-2);line-height:2;
}
.article-foot{
  display:flex;justify-content:space-between;align-items:center;
  margin-top:56px;padding-top:26px;border-top:1px solid #eceef1;font-size:14px;
}
.article-foot a{color:var(--ink-2);transition:color .2s;}
.article-foot a:hover{color:var(--brand);}
.share{display:flex;gap:10px;}
.share span{
  width:34px;height:34px;border-radius:50%;border:1px solid #dde1e6;
  display:flex;align-items:center;justify-content:center;font-size:12px;color:var(--ink-3);cursor:pointer;
}
.share span:hover{border-color:var(--brand);color:var(--brand);}

@media (max-width:960px){
  .news-list{grid-template-columns:1fr;}
  .news-row{grid-template-columns:1fr;}
  .news-row .pic{min-height:130px;}
  .article-visual{height:200px;font-size:22px;}
}
