/* ============================================
   公共基础
   ============================================ */
* { 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: #0a1628; color: #cbd5e1; line-height: 1.6; }
a { color: #06b6d4; text-decoration: none; }
a:hover { color: #22d3ee; }
img { max-width: 100%; height: auto; }

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

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

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

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

/* 通用卡片 */
.qs-card { background: #0f1d36; border: 1px solid #1e3a5f; border-radius: 12px; overflow: hidden; transition: 0.3s; }
.qs-card:hover { border-color: #06b6d4; box-shadow: 0 0 20px rgba(6,182,212,0.2); transform: translateY(-4px); }
.qs-card-link { text-decoration: none; color: inherit; display: block; }
.qs-card-poster { position: relative; padding-bottom: 140%; overflow: hidden; background: #111; }
.qs-card-poster img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.qs-card:hover .qs-card-poster img { transform: scale(1.05); }
.qs-card-badge { position: absolute; top: 8px; left: 8px; background: #06b6d4; color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.qs-card-score { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #22d3ee; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid rgba(34,211,238,0.3); }
.qs-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; }
.qs-card:hover .qs-card-overlay { background: rgba(6,182,212,0.15); }
.qs-card-play { font-size: 36px; color: #22d3ee; opacity: 0; transition: 0.25s; text-shadow: 0 0 16px rgba(6,182,212,0.6); }
.qs-card:hover .qs-card-play { opacity: 1; }
.qs-card-body { padding: 12px; }
.qs-card-title { font-size: 14px; font-weight: 600; color: #cbd5e1; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qs-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; }
.qs-card-meta { font-size: 11px; color: #555; }
.qs-card-meta span { margin-right: 8px; }

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

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

/* 筛选条（水平） */
.qs-filter { background: rgba(6,182,212,0.03); padding: 20px; border-bottom: 1px solid #1e3a5f; position: relative; z-index: 3; }
.qs-filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.qs-filter-row:last-child { margin-bottom: 0; }
.qs-filter-key { font-weight: 600; color: #22d3ee; min-width: 50px; font-size: 13px; }
.qs-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 #1e3a5f; }
.qs-filter-pill:hover { border-color: #06b6d4; color: #22d3ee; }
.qs-filter-pill.active { background: #06b6d4; color: #fff; border-color: transparent; }

/* 分页 */
.qs-pager { display: flex; gap: 6px; margin-top: 20px; justify-content: center; flex-wrap: wrap; }
.qs-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 #1e3a5f; }
.qs-page-item:hover { border-color: #06b6d4; color: #22d3ee; }
.qs-page-item.active { background: #06b6d4; color: #fff; border-color: transparent; }

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

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

/* 线路和选集 */
.qs-line-tabs { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.qs-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 #1e3a5f; font-weight: 500; }
.qs-line-tab.active { background: #06b6d4; color: #fff; border-color: transparent; }
.qs-eps-section { margin-bottom: 24px; }
.qs-eps-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.qs-eps-title { font-size: 14px; font-weight: 600; color: #22d3ee; }
.qs-eps-tools { display: flex; gap: 8px; }
.qs-eps-tool { padding: 6px 14px; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); border-radius: 4px; cursor: pointer; font-size: 12px; color: #22d3ee; transition: 0.2s; }
.qs-eps-tool:hover { background: rgba(6,182,212,0.2); }
.qs-eps-search { padding: 6px 14px; border: 1px solid rgba(6,182,212,0.2); border-radius: 4px; background: rgba(255,255,255,0.04); color: #cbd5e1; font-size: 12px; }
.qs-eps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 6px; }
.qs-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(6,182,212,0.08); }
.qs-ep-item:hover { border-color: #06b6d4; color: #22d3ee; }
.qs-ep-item.active { background: #06b6d4; color: #fff; border-color: transparent; }

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

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

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

/* FAQ */
.qs-faq-item { margin-bottom: 16px; padding: 16px; background: rgba(6,182,212,0.04); border: 1px solid #1e3a5f; border-radius: 8px; }
.qs-faq-item:last-child { margin-bottom: 0; }
.qs-faq-q { font-size: 14px; font-weight: 600; color: #22d3ee; margin-bottom: 8px; }
.qs-faq-a { font-size: 13px; color: #666; line-height: 1.6; }
.qs-faq-a p { margin: 0; }
.qs-faq-a a { color: #06b6d4; text-decoration: none; }

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

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

/* ============================================
   模板7: 量子盾甲 - 独特布局
   ============================================ */

/* 导航: Logo左 + 内联菜单 + 搜索 + 右侧下拉按钮 */
.qs-header { position: sticky; top: 0; z-index: 100; background: rgba(10,22,40,0.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(6,182,212,0.15); }
.qs-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; height: 60px; }
.qs-logo { margin: 0; flex-shrink: 0; }
.qs-logo a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.qs-logo img { height: 32px; width: auto; }
.qs-logo-text { font-size: 17px; font-weight: 800; background: linear-gradient(90deg, #06b6d4, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.qs-nav-inline { display: flex; gap: 24px; margin-left: 32px; flex: 1; }
.qs-nav-link { text-decoration: none; color: #777; font-size: 14px; font-weight: 500; transition: 0.2s; }
.qs-nav-link:hover { color: #22d3ee; }
.qs-search { display: flex; align-items: center; margin-left: auto; margin-right: 16px; }
.qs-search-input { width: 180px; padding: 8px 14px; border: 1px solid rgba(6,182,212,0.2); border-radius: 8px; font-size: 14px; background: rgba(255,255,255,0.04); color: #cbd5e1; transition: 0.2s; }
.qs-search-input:focus { outline: none; border-color: #06b6d4; box-shadow: 0 0 12px rgba(6,182,212,0.2); }
.qs-search-input::placeholder { color: #444; }
.qs-search-btn { background: none; border: none; cursor: pointer; color: #06b6d4; padding: 4px; }
.qs-burger { display: flex; background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.2); cursor: pointer; flex-direction: column; gap: 4px; padding: 10px; border-radius: 8px; transition: 0.2s; }
.qs-burger:hover { border-color: #06b6d4; }
.qs-burger span { width: 18px; height: 2px; background: #22d3ee; transition: 0.3s; border-radius: 2px; }

/* 下拉式导航网格 */
.qs-dropdown-nav { display: none; position: absolute; top: 60px; right: 20px; width: 320px; background: rgba(15,29,54,0.98); backdrop-filter: blur(16px); border: 1px solid rgba(6,182,212,0.2); border-radius: 12px; z-index: 99; padding: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.qs-dropdown-nav.active { display: block; }
.qs-dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.qs-dropdown-item { display: block; padding: 12px 8px; text-align: center; text-decoration: none; color: #888; font-size: 13px; border-radius: 8px; transition: 0.2s; border: 1px solid transparent; }
.qs-dropdown-item:hover { color: #22d3ee; background: rgba(6,182,212,0.06); border-color: rgba(6,182,212,0.2); }

/* 首页: 三栏布局 */
.qs-hero { background: linear-gradient(135deg, #0a1628 0%, #0f1d36 50%, #0a1628 100%); padding: 50px 20px; text-align: center; border-bottom: 1px solid #1e3a5f; position: relative; z-index: 3; }
.qs-hero-inner { max-width: 1400px; margin: 0 auto; }
.qs-hero-title { font-size: 36px; font-weight: 900; background: linear-gradient(90deg, #06b6d4, #22d3ee, #06b6d4); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: qsShimmer 4s ease-in-out infinite; margin-bottom: 12px; }
@keyframes qsShimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.qs-hero-desc { font-size: 15px; color: rgba(203,213,225,0.5); }

.qs-layout-3col { max-width: 1400px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 200px 1fr 280px; gap: 24px; position: relative; z-index: 3; }
.qs-left-sidebar { }
.qs-lsb-card { background: #0f1d36; border: 1px solid #1e3a5f; border-radius: 12px; padding: 16px; margin-bottom: 16px; position: sticky; top: 80px; }
.qs-lsb-title { font-size: 14px; font-weight: 700; color: #22d3ee; margin-bottom: 12px; }
.qs-lsb-cats { display: flex; flex-direction: column; gap: 4px; }
.qs-lsb-cat { display: block; padding: 8px 12px; text-decoration: none; color: #777; font-size: 13px; border-radius: 6px; transition: 0.2s; }
.qs-lsb-cat:hover { color: #22d3ee; background: rgba(6,182,212,0.06); }
.qs-lsb-links { list-style: none; }
.qs-lsb-links li { margin-bottom: 6px; }
.qs-lsb-links a { color: #06b6d4; text-decoration: none; font-size: 12px; }
.qs-content-center { }
.qs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* 列表页: 横向长条卡片 + 侧栏 */
.qs-layout-2col { max-width: 1400px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: 1fr 280px; gap: 24px; position: relative; z-index: 3; }
.qs-content-main { }
.qs-hlist { display: flex; flex-direction: column; gap: 16px; }
.qs-hcard { background: #0f1d36; border: 1px solid #1e3a5f; border-radius: 12px; overflow: hidden; transition: 0.3s; }
.qs-hcard:hover { border-color: #06b6d4; box-shadow: 0 0 16px rgba(6,182,212,0.15); }
.qs-hcard-link { display: flex; text-decoration: none; color: inherit; }
.qs-hcard-poster { flex-shrink: 0; width: 140px; height: 180px; position: relative; overflow: hidden; }
.qs-hcard-poster img { width: 100%; height: 100%; object-fit: cover; }
.qs-hcard-badge { position: absolute; top: 6px; left: 6px; background: #06b6d4; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 600; }
.qs-hcard-score { position: absolute; bottom: 6px; right: 6px; background: rgba(0,0,0,0.7); color: #22d3ee; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.qs-hcard-info { flex: 1; padding: 16px; display: flex; flex-direction: column; justify-content: center; }
.qs-hcard-title { font-size: 16px; font-weight: 700; color: #cbd5e1; margin-bottom: 8px; }
.qs-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; }
.qs-hcard-meta { font-size: 12px; color: #555; }
.qs-hcard-meta span { margin-right: 12px; }

/* 详情页: sticky海报 + 右滚动 */
.qs-show-sticky-layout { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: flex; gap: 30px; position: relative; z-index: 3; }
.qs-show-poster-sticky { flex-shrink: 0; width: 220px; position: sticky; top: 80px; align-self: flex-start; }
.qs-show-poster-sticky img { width: 100%; border-radius: 12px; border: 2px solid rgba(6,182,212,0.2); }
.qs-show-mark { position: absolute; top: 10px; right: 10px; background: #06b6d4; color: #fff; padding: 4px 12px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.qs-show-score-box { text-align: center; margin-top: 12px; }
.qs-show-score-box strong { display: block; font-size: 28px; color: #22d3ee; font-weight: 800; }
.qs-show-score-box em { font-size: 12px; color: #555; font-style: normal; }
.qs-show-actions-vertical { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.qs-show-actions-vertical a { text-align: center; }
.qs-show-scroll-info { flex: 1; }
.qs-show-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.qs-show-chips { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }

/* 双层边框卡片 */
.qs-card { border: 1px solid #1e3a5f; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(6,182,212,0.05); }
.qs-card:hover { border-color: #06b6d4; box-shadow: inset 0 0 12px rgba(6,182,212,0.08), 0 0 20px rgba(6,182,212,0.15); }

/* 响应式 */
@media (max-width: 1100px) {
    .qs-layout-3col { grid-template-columns: 1fr 260px; }
    .qs-left-sidebar { display: none; }
    .qs-layout-2col { grid-template-columns: 1fr; }
    .qs-show-sticky-layout { flex-direction: column; }
    .qs-show-poster-sticky { position: relative; top: auto; width: 180px; }
    .qs-show-actions-vertical { flex-direction: row; }
    .qs-grid-related { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .qs-nav-inline { display: none; }
    .qs-search { display: none; }
    .qs-dropdown-nav.active { display: block; width: calc(100vw - 40px); right: 20px; }
    .qs-layout-3col { grid-template-columns: 1fr; }
    .qs-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .qs-hero-title { font-size: 24px; }
    .qs-hcard-poster { width: 100px; height: 140px; }
    .qs-show-title { font-size: 22px; }
    .qs-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .qs-grid-related { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .qs-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .qs-hero-title { font-size: 20px; }
    .qs-hcard-link { flex-direction: column; }
    .qs-hcard-poster { width: 100%; height: 180px; }
    .qs-show-poster-sticky { width: 140px; }
    .qs-show-title { font-size: 18px; }
    .qs-eps-grid { grid-template-columns: repeat(4, 1fr); }
    .qs-feature-grid { grid-template-columns: 1fr; }
    .qs-grid-related { grid-template-columns: repeat(2, 1fr); }
}
