/* ==========================================================================
   首页专属样式
   ========================================================================== */

/* hero 文字逐字浮现 */
.hero h1 .yel {
  display: inline-block;
  animation: floatUp 1s 0.5s both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 首页资讯列表区块间距微调 */
#news .news-list {
  margin-bottom: 20px;
}

#news .news-list:last-of-type {
  margin-bottom: 0;
}
