/* ==========================================================================
   首页专属样式（尧图网站建设）
   ========================================================================== */

/* 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;
}

/* 首页特色：本地化亮点标签云 */
.locale-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.locale-tags .loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  color: var(--body);
  transition: all 0.3s ease;
}

.locale-tags .loc-tag:hover {
  background: var(--pink-mist);
  border-color: var(--pink-soft);
  color: var(--pink-deep);
  transform: translateY(-3px);
}

.locale-tags .loc-tag .loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow-deep);
}
