@charset "utf-8";
/* MK体育在线官网 - 文章详情页样式 article.css */
/* 排版：T5故事叙述 */

/* === 文章主体 === */
.article-main { padding: 40px 0 60px; background: #FDF8F3; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }

/* === 文章内容 T5故事叙述 === */
.article-content { background: #fff; padding: 48px; border-radius: 16px; box-shadow: 0 4px 20px rgba(44, 31, 21, 0.05); }
.article-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(232, 213, 192, 0.4); }
.article-header h1 { font-size: 26px; color: #2C1F15; margin-bottom: 16px; line-height: 1.4; }
.article-meta { display: flex; gap: 20px; font-size: 13px; color: #8B5E3C; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 6px; }

/* 故事叙述排版 */
.article-body { font-size: 15px; line-height: 1.95; color: #4A3728; }
.article-body h2 { font-size: 20px; color: #2C1F15; margin: 40px 0 20px; padding-bottom: 12px; border-bottom: 2px solid #E8D5C0; }
.article-body h3 { font-size: 17px; color: #2C1F15; margin: 32px 0 16px; }
.article-body p { margin-bottom: 20px; text-align: justify; }
.article-body strong { color: #2C1F15; }
.article-body blockquote { margin: 28px 0; padding: 24px 28px; background: #FDF8F3; border-left: 4px solid #8B5E3C; border-radius: 0 8px 8px 0; font-style: italic; color: #4A3728; }
.article-body ul, .article-body ol { margin: 20px 0; padding-left: 24px; }
.article-body ul li { margin-bottom: 10px; position: relative; padding-left: 16px; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #8B5E3C; }
.article-body a { color: #8B5E3C; border-bottom: 1px solid rgba(139, 94, 60, 0.3); }
.article-body a:hover { border-bottom-color: #8B5E3C; }

/* === 标签 === */
.article-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(232, 213, 192, 0.4); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.article-tags span { font-size: 13px; color: #8B5E3C; }
.article-tags a { padding: 4px 12px; background: #E8D5C0; border-radius: 4px; font-size: 12px; color: #4A3728; }
.article-tags a:hover { background: #8B5E3C; color: #FDF8F3; }

/* === 侧边栏 === */
.sidebar > div { background: #fff; padding: 28px; border-radius: 12px; margin-bottom: 24px; box-shadow: 0 4px 20px rgba(44, 31, 21, 0.05); }
.sidebar h3 { font-size: 16px; margin-bottom: 20px; color: #2C1F15; padding-bottom: 12px; border-bottom: 2px solid #E8D5C0; }
.sidebar-list li { padding: 12px 0; border-bottom: 1px solid rgba(232, 213, 192, 0.3); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { font-size: 14px; color: #4A3728; line-height: 1.5; display: block; }
.sidebar-list a:hover { color: #8B5E3C; }
.sidebar-list .date { font-size: 12px; color: #8B5E3C; margin-top: 4px; }

/* === 相关推荐 I5推荐阅读型 === */
.related-section { background: #fff; padding: 40px 0; }
.related-title { text-align: center; margin-bottom: 32px; }
.related-title h2 { font-size: 22px; color: #2C1F15; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.related-item { padding: 24px; border: 1px solid rgba(232, 213, 192, 0.4); border-radius: 10px; transition: all 0.3s ease; }
.related-item:hover { border-color: #E8D5C0; box-shadow: 0 6px 20px rgba(44, 31, 21, 0.06); }
.related-item .tag { display: inline-block; padding: 2px 8px; background: #E8D5C0; border-radius: 4px; font-size: 11px; color: #8B5E3C; margin-bottom: 8px; }
.related-item h4 { font-size: 15px; color: #2C1F15; margin-bottom: 8px; line-height: 1.5; }
.related-item p { font-size: 13px; color: #8B5E3C; line-height: 1.6; }

/* === 响应式 === */
@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-content { padding: 28px 20px; }
  .article-header h1 { font-size: 22px; }
  .article-body { font-size: 14px; }
  .article-body h2 { font-size: 18px; }
  .related-grid { grid-template-columns: 1fr; }
  .sidebar > div { padding: 20px; }
}
