/* ============================================
   公共基础
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif; background: #1a1a1a; color: #d6d3d1; line-height: 1.6; }
a { color: #f97316; text-decoration: none; }
a:hover { color: #fb923c; }
img { max-width: 100%; height: auto; }

.fw-body { background: #1a1a1a; }
.fw-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

/* 快讯栏 */
.fw-ticker { background: rgba(249,115,22,0.06); padding: 12px 20px; display: flex; align-items: center; gap: 16px; overflow: hidden; border-bottom: 1px solid rgba(249,115,22,0.1); position: relative; z-index: 3; }
.fw-ticker-label { background: #f97316; color: #fff; padding: 4px 14px; border-radius: 4px; font-size: 12px; font-weight: 700; flex-shrink: 0; letter-spacing: 2px; }
.fw-ticker-track { flex: 1; overflow: hidden; }
.fw-ticker-track p { animation: fwScroll 30s linear infinite; white-space: nowrap; color: #666; font-size: 13px; }
@keyframes fwScroll { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

/* 面包屑 */
.fw-crumb { background: rgba(249,115,22,0.04); padding: 12px 20px; border-bottom: 1px solid rgba(249,115,22,0.1); position: relative; z-index: 3; }
.fw-crumb-inner { max-width: 1200px; margin: 0 auto; font-size: 13px; color: #555; }
.fw-crumb-sep { margin: 0 8px; color: #333; }
.fw-crumb-cur { color: #fb923c; font-weight: 600; }
.fw-crumb a { color: #f97316; text-decoration: none; }

/* 区块标题 */
.fw-section { margin-bottom: 30px; position: relative; z-index: 3; }
.fw-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.fw-section-title { font-size: 20px; font-weight: 800; color: #fb923c; }
.fw-section-title::before { content: ""; display: inline-block; width: 4px; height: 20px; background: #f97316; border-radius: 2px; margin-right: 10px; vertical-align: middle; }
.fw-section-more { color: #f97316; font-size: 13px; font-weight: 500; }
.fw-section-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.fw-tab-pill { display: inline-block; padding: 5px 14px; background: rgba(249,115,22,0.1); color: #f97316; text-decoration: none; border-radius: 4px; font-size: 12px; border: 1px solid rgba(249,115,22,0.2); transition: 0.2s; }
.fw-tab-pill:hover { background: rgba(249,115,22,0.25); border-color: #f97316; }

/* 通用卡片 */
.fw-card { background: #242424; border: 1px solid #404040; border-radius: 0px; overflow: hidden; transition: 0.3s; }
.fw-card:hover { border-color: #f97316; box-shadow: 0 0 20px rgba(249,115,22,0.2); transform: translateY(-4px); }
.fw-card-link { text-decoration: none; color: inherit; display: block; }
.fw-card-poster { position: relative; padding-bottom: 140%; overflow: hidden; background: #111; }
.fw-card-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fw-card:hover .fw-card-poster img { transform: scale(1.05); }
.fw-card-badge { position: absolute; top: 8px; left: 8px; background: #f97316; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.fw-card-score { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #fb923c; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid rgba(251,146,60,0.3); }
.fw-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: 0.25s; }
.fw-card:hover .fw-card-overlay { background: rgba(249,115,22,0.15); }
.fw-card-play { font-size: 36px; color: #fb923c; opacity: 0; transition: 0.25s; text-shadow: 0 0 16px rgba(249,115,22,0.6); }
.fw-card:hover .fw-card-play { opacity: 1; }
.fw-card-body { padding: 12px; }
.fw-card-title { font-size: 14px; font-weight: 600; color: #d6d3d1; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fw-card-desc { font-size: 12px; color: #666; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 4px; }
.fw-card-meta { font-size: 11px; color: #555; }
.fw-card-meta span { margin-right: 8px; }

/* 特色区块 */
.fw-features { padding: 0 0 20px; }
.fw-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fw-feature-item { text-align: center; padding: 24px 16px; background: rgba(249,115,22,0.04); border: 1px solid #404040; border-radius: 0px; transition: 0.2s; }
.fw-feature-item:hover { border-color: #f97316; box-shadow: 0 0 16px rgba(249,115,22,0.15); }
.fw-feature-icon { font-size: 28px; margin-bottom: 12px; }
.fw-feature-item h3 { font-size: 14px; font-weight: 700; color: #fb923c; margin-bottom: 8px; }
.fw-feature-item p { font-size: 12px; color: #666; }

/* 列表页头部 */
.fw-list-hero { background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%); padding: 40px 20px; position: relative; border-bottom: 1px solid #404040; z-index: 3; }
.fw-list-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.fw-list-hero-title { font-size: 32px; font-weight: 800; color: #fb923c; margin-bottom: 10px; }
.fw-list-hero-desc { font-size: 14px; color: #666; }
.fw-list-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fw-list-title { font-size: 18px; font-weight: 700; color: #d6d3d1; }
.fw-list-count { font-size: 13px; color: #555; }

/* 筛选条（水平） */
.fw-filter { background: rgba(249,115,22,0.03); padding: 20px; border-bottom: 1px solid #404040; position: relative; z-index: 3; }
.fw-filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.fw-filter-row:last-child { margin-bottom: 0; }
.fw-filter-key { font-weight: 600; color: #fb923c; min-width: 50px; font-size: 13px; }
.fw-filter-pill { display: inline-block; padding: 5px 14px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; font-size: 12px; transition: 0.2s; border: 1px solid #404040; }
.fw-filter-pill:hover { border-color: #f97316; color: #fb923c; }
.fw-filter-pill.active { background: #f97316; color: #fff; border-color: transparent; }

/* 分页 */
.fw-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.fw-page-item { display: inline-block; padding: 8px 14px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; font-size: 13px; transition: 0.2s; border: 1px solid #404040; }
.fw-page-item:hover { border-color: #f97316; color: #fb923c; }
.fw-page-item.active { background: #f97316; color: #fff; border-color: transparent; }

/* SEO文字区 */
.fw-seo { background: rgba(255,255,255,0.03); border: 1px solid #404040; padding: 24px; border-radius: 0px; margin-top: 20px; }
.fw-seo-title { font-size: 16px; font-weight: 700; color: #fb923c; margin-bottom: 12px; }
.fw-seo p { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 12px; }

/* 播放器 */
.fw-player-block { background: #242424; border: 1px solid #404040; border-radius: 0px; overflow: hidden; margin-bottom: 24px; }
.fw-player-frame { position: relative; padding-bottom: 56.25%; overflow: hidden; background: #050510; }
.fw-player-mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.fw-player-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) saturate(0.5); }
.fw-player-shade { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.fw-player-bigplay { position: relative; z-index: 10; background: rgba(249,115,22,0.3); border: 2px solid rgba(249,115,22,0.5); color: #fb923c; font-size: 36px; cursor: pointer; width: 72px; height: 72px; border-radius: 50%; transition: 0.2s; }
.fw-player-bigplay:hover { background: rgba(249,115,22,0.5); box-shadow: 0 0 30px rgba(249,115,22,0.4); }
.fw-player-info { position: relative; z-index: 10; text-align: center; color: #d6d3d1; margin-top: 12px; }
.fw-player-info h3 { font-size: 18px; margin-bottom: 6px; }
.fw-player-info p { font-size: 13px; color: #555; }
.fw-player-bar { background: rgba(249,115,22,0.04); padding: 12px 20px; display: flex; gap: 20px; font-size: 12px; color: #555; border-top: 1px solid #404040; }

/* 线路和选集 */
.fw-line-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.fw-line-tab { display: inline-block; padding: 8px 18px; background: rgba(255,255,255,0.04); color: #888; border-radius: 4px; font-size: 13px; cursor: pointer; transition: 0.2s; border: 1px solid #404040; font-weight: 500; }
.fw-line-tab.active { background: #f97316; color: #fff; border-color: transparent; }
.fw-eps-section { margin-bottom: 24px; }
.fw-eps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.fw-eps-title { font-size: 14px; font-weight: 600; color: #fb923c; }
.fw-eps-tools { display: flex; gap: 8px; }
.fw-eps-tool { padding: 6px 14px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); border-radius: 4px; cursor: pointer; font-size: 12px; color: #fb923c; transition: 0.2s; }
.fw-eps-tool:hover { background: rgba(249,115,22,0.2); }
.fw-eps-search { padding: 6px 14px; border: 1px solid rgba(249,115,22,0.2); border-radius: 4px; background: rgba(255,255,255,0.04); color: #d6d3d1; font-size: 12px; }
.fw-eps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 6px; }
.fw-ep-item { display: block; padding: 8px; background: rgba(255,255,255,0.04); color: #888; text-decoration: none; border-radius: 4px; text-align: center; font-size: 12px; transition: 0.2s; cursor: pointer; border: 1px solid rgba(249,115,22,0.08); }
.fw-ep-item:hover { border-color: #f97316; color: #fb923c; }
.fw-ep-item.active { background: #f97316; color: #fff; border-color: transparent; }

/* 按钮 */
.fw-btn-play { display: inline-block; padding: 10px 28px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; background: #f97316; color: #fff; box-shadow: 0 0 16px rgba(249,115,22,0.3); transition: 0.25s; }
.fw-btn-play:hover { box-shadow: 0 0 24px rgba(249,115,22,0.5); color: #fff; }
.fw-btn-ghost { display: inline-block; padding: 10px 28px; border-radius: 6px; text-decoration: none; font-size: 14px; font-weight: 600; background: rgba(249,115,22,0.1); color: #fb923c; border: 1px solid rgba(249,115,22,0.3); transition: 0.25s; }
.fw-btn-ghost:hover { background: rgba(249,115,22,0.2); border-color: #f97316; }

/* 详情页通用 */
.fw-chip { display: inline-block; padding: 5px 14px; background: rgba(249,115,22,0.1); color: #fb923c; border-radius: 4px; font-size: 12px; text-decoration: none; border: 1px solid rgba(249,115,22,0.2); }
.fw-chip-pri { background: #f97316; color: #fff; border-color: transparent; text-decoration: none; display: inline-block; padding: 5px 14px; border-radius: 4px; font-size: 12px; }
.fw-show-meta { list-style: none; font-size: 13px; color: #777; }
.fw-show-meta li { margin-bottom: 8px; }
.fw-show-meta span { font-weight: 600; color: #fb923c; min-width: 60px; display: inline-block; }
.fw-show-meta a { color: #f97316; text-decoration: none; }
.fw-show-meta a:hover { text-decoration: underline; }
.fw-status { color: #f97316; font-weight: 600; }

/* 简介/标签/上下篇 */
.fw-block { background: #242424; border: 1px solid #404040; border-radius: 0px; padding: 28px; margin-bottom: 24px; position: relative; z-index: 3; }
.fw-block-title { font-size: 18px; font-weight: 700; color: #fb923c; margin-bottom: 16px; }
.fw-block-title::before { content: ""; display: inline-block; width: 4px; height: 18px; background: #f97316; border-radius: 2px; margin-right: 10px; vertical-align: middle; }
.fw-body-text { font-size: 14px; color: #777; line-height: 1.8; margin-bottom: 20px; }
.fw-tags { margin-bottom: 20px; }
.fw-tags-label { font-weight: 600; color: #fb923c; }
.fw-tag-link { display: inline-block; margin: 4px 6px 4px 0; padding: 4px 14px; background: rgba(249,115,22,0.1); color: #fb923c; text-decoration: none; border-radius: 4px; font-size: 12px; border: 1px solid rgba(249,115,22,0.15); }
.fw-tag-link:hover { background: #f97316; color: #fff; }
.fw-prev-next { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid #404040; font-size: 13px; color: #555; }
.fw-prev-next a { color: #f97316; text-decoration: none; }
.fw-grid-related { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

/* FAQ */
.fw-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(249,115,22,0.04); border: 1px solid #404040; border-radius: 8px; }
.fw-faq-item:last-child { margin-bottom: 0; }
.fw-faq-q { font-size: 14px; font-weight: 600; color: #fb923c; margin-bottom: 8px; }
.fw-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.fw-faq-a p { margin: 0; }
.fw-faq-a a { color: #f97316; text-decoration: none; }

/* 侧栏 */
.fw-sidebar { }
.fw-sb-card { background: #242424; border: 1px solid #404040; border-radius: 0px; padding: 20px; margin-bottom: 20px; }
.fw-sb-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.fw-sb-title { font-size: 14px; font-weight: 700; color: #d6d3d1; }
.fw-sb-tag { background: #f97316; color: #fff; padding: 2px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.fw-sb-more { color: #f97316; text-decoration: none; font-size: 12px; }
.fw-rank { list-style: none; }
.fw-rank-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(249,115,22,0.06); font-size: 12px; }
.fw-rank-item:last-child { border-bottom: none; }
.fw-rank-num { display: inline-flex; width: 22px; height: 22px; background: rgba(249,115,22,0.15); color: #fb923c; align-items: center; justify-content: center; border-radius: 4px; font-weight: 700; flex-shrink: 0; font-size: 11px; }
.fw-rank-item:nth-child(1) .fw-rank-num { background: #f97316; color: #fff; }
.fw-rank-item:nth-child(2) .fw-rank-num { background: #fb923c; color: #fff; }
.fw-rank-item:nth-child(3) .fw-rank-num { background: #ea580c; color: #fff; }
.fw-rank-title { flex: 1; color: #d6d3d1; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fw-rank-title:hover { color: #fb923c; }
.fw-rank-heat { color: #444; font-size: 11px; }
.fw-sb-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.fw-mini-card { display: block; text-decoration: none; color: inherit; }
.fw-mini-poster { position: relative; padding-bottom: 150%; overflow: hidden; background: #111; border-radius: 6px; border: 1px solid #404040; }
.fw-mini-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.fw-mini-score { position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,0.7); color: #fb923c; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; }
.fw-mini-title { font-size: 12px; font-weight: 600; color: #d6d3d1; margin-top: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fw-mini-meta { font-size: 11px; color: #555; }
.fw-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.fw-tag { display: inline-block; padding: 5px 14px; background: rgba(249,115,22,0.08); color: #888; text-decoration: none; border-radius: 4px; font-size: 12px; transition: 0.2s; border: 1px solid #404040; }
.fw-tag:hover { background: #f97316; color: #fff; border-color: #f97316; }
.fw-friend-list { list-style: none; }
.fw-friend-list li { margin-bottom: 8px; }
.fw-friend-list a { color: #f97316; text-decoration: none; font-size: 12px; }
.fw-friend-list a:hover { text-decoration: underline; }

/* 底部 */
.fw-footer { background: rgba(26,26,26,0.95); border-top: 1px solid #404040; padding: 40px 20px; margin-top: 30px; position: relative; z-index: 3; }
.fw-footer-inner { max-width: 1200px; margin: 0 auto; }
.fw-footer-content { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #404040; }
.fw-footer-content p { font-size: 12px; color: #444; margin-bottom: 6px; }
.fw-footer-content a { color: #fb923c; text-decoration: none; }
.fw-footer-tip { color: #333; line-height: 1.6; font-size: 12px; }
.fw-footer-nav { text-align: center; }
.fw-footer-nav a { color: #f97316; text-decoration: none; font-size: 12px; }

/* ============================================
   模板3: 防火长城 - 独特布局
   ============================================ */

/* 导航: 顶部精简条 + 左侧固定侧边导航 */
.fw-header { position: sticky; top: 0; z-index: 100; background: rgba(26,26,26,0.95); backdrop-filter: blur(10px); border-bottom: 2px solid #f97316; }
.fw-topbar { max-width: 1400px; margin: 0 auto; padding: 0 20px 0 70px; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.fw-logo { margin: 0; }
.fw-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.fw-logo img { height: 32px; width: auto; }
.fw-logo-text { font-size: 17px; font-weight: 800; color: #f97316; letter-spacing: 2px; text-transform: uppercase; }
.fw-search { display: flex; align-items: center; }
.fw-search-input { width: 240px; padding: 8px 14px; border: 2px solid #404040; border-radius: 0; font-size: 14px; background: rgba(255,255,255,0.04); color: #d6d3d1; transition: 0.2s; }
.fw-search-input:focus { outline: none; border-color: #f97316; }
.fw-search-input::placeholder { color: #555; }
.fw-search-btn { background: #f97316; border: none; cursor: pointer; color: #fff; padding: 8px 14px; }
.fw-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.fw-burger span { width: 24px; height: 2px; background: #f97316; transition: 0.3s; }

/* 左侧固定侧边导航 */
.fw-sidenav { position: fixed; top: 56px; left: 0; width: 60px; height: calc(100vh - 56px); background: rgba(36,36,36,0.98); border-right: 2px solid #404040; z-index: 90; overflow-y: auto; transition: width 0.3s; }
.fw-sidenav:hover { width: 200px; }
.fw-sidenav-inner { padding: 10px 0; }
.fw-sidenav-link { display: flex; align-items: center; gap: 12px; padding: 14px 18px; text-decoration: none; color: #888; transition: 0.2s; white-space: nowrap; overflow: hidden; border-left: 3px solid transparent; }
.fw-sidenav-link:hover { color: #f97316; background: rgba(249,115,22,0.06); border-left-color: #f97316; }
.fw-sidenav-icon { font-size: 18px; flex-shrink: 0; }
.fw-sidenav-text { font-size: 13px; font-weight: 500; opacity: 0; transition: opacity 0.3s; }
.fw-sidenav:hover .fw-sidenav-text { opacity: 1; }

.fw-mobile-nav { display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0; background: rgba(26,26,26,0.98); z-index: 200; flex-direction: column; padding-top: 20px; }
.fw-mn-link { display: block; padding: 14px 24px; text-decoration: none; color: #888; border-bottom: 2px solid #404040; font-weight: 500; }
.fw-mn-link:hover { color: #f97316; background: rgba(249,115,22,0.06); }

/* 首页: 全宽+侧边导航偏移 */
.fw-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 50%, #1a1a1a 100%); padding: 50px 20px; text-align: center; border-bottom: 2px solid #404040; position: relative; z-index: 3; }
.fw-hero-inner { max-width: 1200px; margin: 0 auto; }
.fw-hero-title { font-size: 36px; font-weight: 900; color: #f97316; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.fw-hero-desc { font-size: 15px; color: rgba(214,211,209,0.5); margin-bottom: 20px; }
.fw-hero-stats { display: flex; justify-content: center; gap: 40px; }
.fw-hero-stats div { text-align: center; }
.fw-hero-stats span { display: block; font-size: 24px; font-weight: 800; color: #f97316; }
.fw-hero-stats em { display: block; font-size: 12px; color: #555; font-style: normal; }

.fw-with-sidenav { margin-left: 60px; }
.fw-fullwidth { max-width: 1200px; margin: 0 auto; padding: 30px 20px; position: relative; z-index: 3; }
.fw-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* 直角无圆角工业风卡片 */
.fw-card { border: 2px solid #404040; border-radius: 0; }
.fw-card:hover { border-color: #f97316; box-shadow: 0 0 20px rgba(249,115,22,0.15); }

/* 列表页: 全宽横向列表视图 */
.fw-hlist { display: flex; flex-direction: column; gap: 12px; }
.fw-hcard { background: #242424; border: 2px solid #404040; overflow: hidden; transition: 0.3s; }
.fw-hcard:hover { border-color: #f97316; }
.fw-hcard-link { display: flex; text-decoration: none; color: inherit; }
.fw-hcard-poster { flex-shrink: 0; width: 120px; height: 160px; position: relative; overflow: hidden; }
.fw-hcard-poster img { width: 100%; height: 100%; object-fit: cover; }
.fw-hcard-badge { position: absolute; top: 6px; left: 6px; background: #f97316; color: #fff; padding: 2px 8px; font-size: 10px; font-weight: 600; }
.fw-hcard-info { flex: 1; padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.fw-hcard-title { font-size: 16px; font-weight: 700; color: #d6d3d1; margin-bottom: 8px; }
.fw-hcard-desc { font-size: 13px; color: #666; margin-bottom: 8px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.fw-hcard-meta { font-size: 12px; color: #555; }
.fw-hcard-meta span { margin-right: 12px; }

/* 详情页: 全宽横向信息卡片 */
.fw-show-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 50%, #1a1a1a 100%); padding: 30px 20px; border-bottom: 2px solid #404040; position: relative; z-index: 3; }
.fw-show-hero-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 30px; }
.fw-show-poster { flex-shrink: 0; width: 180px; position: relative; }
.fw-show-poster img { width: 100%; border: 2px solid #404040; }
.fw-show-detail { flex: 1; }
.fw-show-title { font-size: 28px; font-weight: 800; color: #f97316; letter-spacing: 2px; margin-bottom: 12px; }
.fw-show-score { margin-bottom: 12px; }
.fw-show-score strong { font-size: 28px; color: #fb923c; font-weight: 800; }
.fw-show-score em { font-size: 12px; color: #555; font-style: normal; margin-left: 6px; }
.fw-show-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.fw-show-actions { display: flex; gap: 12px; margin-top: 20px; }

/* 响应式 */
@media (max-width: 1100px) {
    .fw-sidenav { display: none; }
    .fw-with-sidenav { margin-left: 0; }
    .fw-topbar { padding-left: 20px; }
    .fw-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .fw-show-hero-inner { flex-direction: column; }
    .fw-show-poster { width: 140px; }
    .fw-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fw-burger { display: flex; }
    .fw-mobile-nav.active { display: flex; }
    .fw-search { display: none; }
    .fw-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .fw-hero-title { font-size: 24px; }
    .fw-hcard-poster { width: 90px; height: 120px; }
    .fw-show-title { font-size: 22px; }
    .fw-show-actions { flex-direction: column; }
    .fw-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .fw-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .fw-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .fw-hero-title { font-size: 20px; }
    .fw-hcard-link { flex-direction: column; }
    .fw-hcard-poster { width: 100%; height: 200px; }
    .fw-show-title { font-size: 18px; }
    .fw-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .fw-feature-grid { grid-template-columns: 1fr; }
    .fw-grid-related { grid-template-columns: repeat(2, 1fr); }
}

/* 列表页双栏布局 */
.fw-layout-list { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 1fr 280px; gap: 24px; position: relative; z-index: 3; }
@media (max-width: 1100px) { .fw-layout-list { grid-template-columns: 1fr; } }
