/* ============================================================
   tk-footer.css — 统一页脚 / 友情链接 / 左栏「最新资讯」样式约束
   调用方式：在任意 HTML 的 <head> 内加入
     <link rel="stylesheet" href="/skins/11/tk-footer.css" />
   全站页脚样式以本文件为唯一来源，改这里即全站（首页 /channel/* /其他页）生效。
   ============================================================ */

/* ---------- 页脚友情链接（与首页底部完全一致：一行居中横排） ---------- */
#footer .tk-flinks { text-align:center; padding:12px 0 4px; }
#footer .tk-flinks .fl-h { display:inline; margin:0 4px 0 0; font-size:15px; font-weight:bold; vertical-align:middle; }
#footer .tk-flinks .l10 { display:inline; margin:0 !important; }
#footer .tk-flinks .l10:before,
#footer .tk-flinks .l10:after { display:none; content:none; }
#footer .tk-flinks .l10.mtb20 { margin:0 !important; }
#footer .tk-flinks .x { display:inline-block; float:none; padding:0 8px !important; min-height:0; vertical-align:middle; }

/* ---------- 频道页左栏「最新资讯」hover ----------
   原 .channel_list li a:hover 会把底色变黑(#26292E)，此处用更高优先级覆盖：
   保留浅灰底(#EEE)，仅文字轻微右移 + 品牌橙，不再黑底。 */
ul.tk-news-list li a { transition: padding-left .2s ease, color .2s ease; }
ul.tk-news-list li a:hover { background:#EEE; color:#F26A14; padding-left:18px; text-decoration:none; }
/* 防串行兜底：左栏窄，强制单行 + 超出显示省略号（完整标题仍在 a 的 title 属性） */
ul.tk-news-list li { overflow:hidden; }
ul.tk-news-list li a { display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%; }
