/* === 标签云：三等分均分整行，右侧不留空（统一到 plugin_product 的样式） === */
.tag-cloud-card .card-header{
  padding:12px 16px;
  background:#fafbfe;
  font-weight:600;
}

/* 三等分栅格：每行 3 个，自动换行填满整行 */
.tag-cloud{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 三等分 */
  gap: 12px;                         /* 行列间距 */
  padding: 12px 16px 16px;           /* 内边距 */
  box-sizing: border-box;
}

/* 兼容 tagcloud.js 生成的各种元素：a / span / .tag / .tag-item 都兜底 */
.tag-cloud a,
.tag-cloud .tag,
.tag-cloud .tag-item,
.tag-cloud span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;                       /* 填满格子 */
  min-height: 44px;                  /* 稍大更易点按 */
  padding: 8px 10px;
  border: 1px solid #e9eef5;
  border-radius: 12px;
  background: #f6f8fb;
  color: #333;
  font-size: 15px;                   /* 统一字号 */
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  margin: 0 !important;              /* 防止外部 .tag 增加 margin 干扰 */
}

/* 悬停与焦点反馈 */
.tag-cloud a:hover,
.tag-cloud .tag:hover,
.tag-cloud .tag-item:hover,
.tag-cloud span:hover,
.tag-cloud a:focus{
  background:#eef5ff;
  border-color:#d7e6ff;
  color:#0b5ed7;
  transform: translateY(-1px);
  transition: all .15s ease;
}

/* 大屏微调 */
@media (min-width: 1200px){
  .tag-cloud a,
  .tag-cloud .tag,
  .tag-cloud .tag-item,
  .tag-cloud span{
    min-height: 36px;
    font-size: 14.5px;
  }
}
/* 简介分割线（明显款） */
.intro-sep{
  height: 2px;
  width: 100%;
  margin: 40px 0 20px;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.2) 20%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.2) 80%,
    rgba(0,0,0,0) 100%
  );
}