@charset "utf-8";
/* MK体育在线官网 - TAG聚合页样式 tags.css */
/* 布局：G1标签云+列表 */

/* === 标签云 === */
.tag-cloud { background: linear-gradient(135deg, #2C1F15 0%, #4A3728 100%); padding: 100px 0 60px; }
.tag-cloud-title { text-align: center; margin-bottom: 40px; }
.tag-cloud-title h1 { font-size: 32px; color: #E8D5C0; margin-bottom: 12px; }
.tag-cloud-title p { color: rgba(232, 213, 192, 0.5); font-size: 14px; }
.cloud-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 800px; margin: 0 auto; }
.cloud-tag { padding: 8px 20px; border-radius: 25px; background: rgba(139, 94, 60, 0.25); border: 1px solid rgba(232, 213, 192, 0.15); color: #E8D5C0; font-size: 14px; transition: all 0.3s ease; cursor: pointer; }
.cloud-tag:hover, .cloud-tag.active { background: #8B5E3C; border-color: #8B5E3C; color: #FDF8F3; transform: translateY(-2px); }
.cloud-tag .count { font-size: 11px; opacity: 0.6; margin-left: 4px; }

/* === TAG文章列表 === */
.tag-articles { padding: 60px 0; background: #FDF8F3; }
.tag-header { margin-bottom: 32px; }
.tag-header h2 { font-size: 22px; color: #2C1F15; }
.tag-header h2 span { color: #8B5E3C; }
.tag-list { display: flex; flex-direction: column; gap: 16px; }
.tag-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 24px; background: #fff; border-radius: 12px; border: 1px solid rgba(232, 213, 192, 0.3); transition: all 0.3s ease; }
.tag-item:hover { box-shadow: 0 8px 24px rgba(44, 31, 21, 0.06); border-color: #E8D5C0; }
.tag-thumb { width: 160px; height: 110px; border-radius: 8px; background: linear-gradient(135deg, #E8D5C0 0%, #D4B896 100%); display: flex; align-items: center; justify-content: center; color: #8B5E3C; font-size: 11px; flex-shrink: 0; }
.tag-body h3 { font-size: 16px; margin-bottom: 8px; color: #2C1F15; line-height: 1.5; }
.tag-body p { font-size: 13px; color: #4A3728; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tag-body .meta { font-size: 12px; color: #8B5E3C; margin-top: 8px; }

/* === 热门TAG === */
.hot-tags { padding: 40px 0; background: #fff; }
.hot-tags-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.hot-tag-card { padding: 20px 12px; border-radius: 10px; border: 1px solid rgba(232, 213, 192, 0.4); text-align: center; transition: all 0.3s ease; }
.hot-tag-card:hover { background: #FDF8F3; border-color: #E8D5C0; transform: translateY(-4px); }
.hot-tag-card h4 { font-size: 14px; color: #2C1F15; margin-bottom: 6px; }
.hot-tag-card p { font-size: 12px; color: #8B5E3C; }

/* === 响应式 === */
@media (max-width: 768px) {
  .tag-cloud { padding: 80px 0 40px; }
  .tag-cloud-title h1 { font-size: 24px; }
  .cloud-container { padding: 0 16px; }
  .tag-item { grid-template-columns: 1fr; }
  .tag-thumb { width: 100%; height: 160px; }
  .hot-tags-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .hot-tags-grid { grid-template-columns: repeat(2, 1fr); }
}
