
/* ===== News Tabs ===== */
.news-tabs{display:flex;gap:4px;margin-bottom:40px;background:var(--section);padding:4px;border-radius:100px;width:fit-content}
.news-tab{padding:10px 28px;border-radius:100px;font-size:14px;font-weight:500;color:var(--text2);cursor:pointer;transition:var(--ease);border:none;background:transparent;font-family:'Noto Sans SC',sans-serif;min-height:44px;display:flex;align-items:center;-webkit-tap-highlight-color:transparent}
.news-tab:hover{color:var(--text)}
.news-tab.active{background:#fff;color:var(--red);box-shadow:var(--shadow-sm)}

/* ===== News Section ===== */
.news-section{padding:60px 0 100px;background:var(--white)}
.news-layout{display:grid;grid-template-columns:1fr 320px;gap:40px;align-items:start}

/* News List */
.news-list{display:flex;flex-direction:column;gap:20px}
.news-card{display:grid;grid-template-columns:280px 1fr;background:#fff;border-radius:var(--radius-xl);overflow:hidden;border:1px solid rgba(0,0,0,.04);transition:all .35s var(--ease);cursor:pointer;position:relative}
.news-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--red),var(--gold));transform:scaleX(0);transform-origin:left;transition:transform .4s var(--ease)}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:transparent}
.news-card:hover::after{transform:scaleX(1)}
.news-card .nc-img-wrap{overflow:hidden;min-height:180px;position:relative}
.news-card .nc-img-wrap::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(196,30,58,.05),transparent);opacity:0;transition:opacity .3s ease}
.news-card:hover .nc-img-wrap::after{opacity:1}
.news-card .nc-img{width:100%;height:100%;object-fit:cover;min-height:180px;transition:transform .6s var(--ease)}
.news-card:hover .nc-img{transform:scale(1.06)}
.news-card .nc-body{padding:28px;display:flex;flex-direction:column;justify-content:center}
.news-card .nc-tag{display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:var(--red);background:var(--red-light);padding:3px 10px;border-radius:100px;margin-bottom:12px;width:fit-content;transition:var(--ease)}
.news-card:hover .nc-tag{background:var(--red);color:#fff}
.news-card .nc-tag.industry{color:#3B5998;background:#EBF0FF}
.news-card:hover .nc-tag.industry{background:#3B5998;color:#fff}
.news-card .nc-tag.policy{color:#2D7D46;background:#E8F5E9}
.news-card:hover .nc-tag.policy{background:#2D7D46;color:#fff}
.news-card h3{font-family:'Noto Serif SC',serif;font-size:18px;font-weight:700;line-height:1.5;margin-bottom:10px;transition:color .2s}
.news-card:hover h3{color:var(--red)}
.news-card p{font-size:14px;color:var(--text2);line-height:1.8;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-card .nc-meta{display:flex;align-items:center;gap:16px;margin-top:16px;font-size:14px;color:var(--text3)}
.news-card .nc-meta svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}

/* News Skeleton Loading */
.news-skeleton .skeleton-card{display:grid;grid-template-columns:280px 1fr;gap:0;border-radius:var(--radius-xl);overflow:hidden;margin-bottom:20px}
.news-skeleton .skeleton-card .skeleton-img{border-radius:0}
.news-skeleton .skeleton-card .skeleton-body{padding:28px;display:flex;flex-direction:column;justify-content:center;gap:12px}

/* Sidebar */
.news-sidebar{position:sticky;top:100px}
.sidebar-block{background:#fff;border-radius:var(--radius-lg);border:1px solid rgba(0,0,0,.04);overflow:hidden;margin-bottom:24px}
.sidebar-block .sb-header{padding:18px 20px;border-bottom:1px solid var(--section);display:flex;align-items:center;gap:8px}
.sidebar-block .sb-header h3{font-size:15px;font-weight:700;color:var(--text)}
.sidebar-block .sb-header .sb-dot{width:4px;height:16px;background:var(--red);border-radius:2px}
.hot-list{padding:8px 12px}
.hot-item{display:flex;align-items:flex-start;gap:12px;padding:12px 8px;border-radius:var(--radius);transition:var(--ease);cursor:pointer;text-decoration:none;color:inherit;min-height:44px}
.hot-item:hover{background:var(--red-lighter);transform:translateX(4px)}
.hot-item .hot-rank{width:24px;height:24px;border-radius:6px;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;flex-shrink:0;margin-top:2px}
.hot-item:nth-child(1) .hot-rank{background:var(--red);color:#fff}
.hot-item:nth-child(2) .hot-rank{background:var(--red-dark);color:#fff}
.hot-item:nth-child(3) .hot-rank{background:var(--gold);color:#fff}
.hot-item:nth-child(n+4) .hot-rank{background:var(--section);color:var(--text3)}
.hot-item .hot-title{font-size:14px;color:var(--text);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;font-weight:500}
.hot-item:hover .hot-title{color:var(--red)}

/* Pagination */
.pagination{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:48px}
.page-btn{width:44px;height:44px;min-width:44px;min-height:44px;border-radius:12px;border:1px solid rgba(0,0,0,.08);background:#fff;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:500;color:var(--text2);cursor:pointer;transition:all .25s var(--ease);font-family:'Noto Sans SC',sans-serif;-webkit-tap-highlight-color:transparent}
.page-btn:hover{border-color:var(--red);color:var(--red);background:var(--red-lighter);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.page-btn.active{background:var(--red);color:#fff;border-color:var(--red);box-shadow:0 4px 16px rgba(196,30,58,.25)}
.page-btn.disabled{opacity:.4;cursor:not-allowed;pointer-events:none}
.page-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2}

@media(max-width:1024px){
  .news-layout{grid-template-columns:1fr}
  .news-sidebar{position:static}
  .news-card{grid-template-columns:220px 1fr}
  .news-skeleton .skeleton-card{grid-template-columns:220px 1fr}
}

@media(max-width:768px){
  .news-tabs{flex-wrap:wrap;width:100%}
  .news-tab{padding:8px 20px;font-size:14px}
  .news-card{grid-template-columns:1fr}
  .news-card .nc-img-wrap{min-height:200px}
  .news-card .nc-body{padding:20px}
  .news-card h3{font-size:16px}
  .pagination{flex-wrap:wrap;gap:6px}
  .news-skeleton .skeleton-card{grid-template-columns:1fr}
  .news-skeleton .skeleton-card .skeleton-img{aspect-ratio:16/9;border-radius:var(--radius-lg) var(--radius-lg) 0 0}
  .news-skeleton .skeleton-card .skeleton-body{padding:20px}
}
