@charset "UTF-8";
/* ============================================
   派克影院 - Netflix Style Theme
   深色背景 | 红色强调 | 卡片悬停放大
   ============================================ */

/* ========== 基础变量 ========== */
:root {
  --bg-body: #141414;
  --bg-header: #000000;
  --bg-card: #181818;
  --bg-card-hover: #222222;
  --bg-input: #333333;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --text-muted: #808080;
  --accent: #e50914;
  --accent-hover: #b20710;
  --border-color: #333333;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.8);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 全局重置 ========== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fieldset {
    color: #ffffff;
	padding: 1.25rem;
}

footer p {
    margin-bottom: 0.3rem;
}
body {
  margin: 0;
  padding: 0;
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--text-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text-primary); text-decoration: none; }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ========== 容器 ========== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4%;
}

/* container 内的子元素不需要额外水平 padding（container 已提供） */
.container .nf-grid,
.container .nf-panel-header,
.container .nf-episodes,
.container .nf-pagination,
.container .nf-filter,
.container .nf-detail,
.container .nf-player-wrap,
.container .nf-player-info,
.container .nf-player-nav {
  padding-left: 0;
  padding-right: 0;
}

.container .nf-player-wrap {
  margin-left: 0;
  margin-right: 0;
}

i.fa-star {
    margin-right: 3px;
}

/* ========== 顶部导航 ========== */
.nf-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

.nf-header .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 25px;
}

.nf-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent) !important;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nf-nav .nav-link {
  color: var(--text-secondary) !important;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.nf-nav .nav-link:hover,
.nf-nav .nav-link.active {
  color: var(--text-primary) !important;
  background: rgba(255,255,255,0.15);
}
.nf-nav .nav-link.active {
  position: relative;
}

/* 搜索框 */
.nf-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

.nf-search form {
  display: flex;
  align-items: center;
  gap: 0;
}

.nf-search input {
  background: var(--bg-input);
  border: 1px solid transparent;
  color: var(--text-primary);
  padding: 8px 14px;
  font-size: 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  width: 200px;
  transition: all var(--transition);
  outline: none;
}

.nf-search input:focus {
  border-color: var(--accent);
  width: 260px;
}

.nf-search input::placeholder { color: var(--text-muted); }

.nf-search button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background var(--transition);
}

.nf-search button:hover { background: var(--accent-hover); }

/* 用户区域 */
.nf-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nf-user .avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  object-fit: cover;
}

.nf-user .dropdown-menu {
  background: rgba(0,0,0,0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 160px;
}

.nf-user .dropdown-item {
  color: var(--text-secondary);
  padding: 10px 16px;
  font-size: 13px;
  transition: all var(--transition);
}

.nf-user .dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}

/* 移动端菜单 */
.nf-toggler {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}
.nf-toggler:focus,
.nf-toggler:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.nf-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 4px 0;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .nf-nav { display: none; }
  .nf-nav.show { display: flex; flex-direction: column; align-items: center; position: absolute; top: 65px; left: 0; right: 0; background: rgba(0,0,0,0.95); padding: 16px; gap: 8px; z-index: 999; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nf-nav.show .nf-search { display: flex; justify-content: center; align-items: center; width: 100%; margin-left: 0; position: relative; top: auto; left: auto; right: auto; background: none; padding: 12px 0 0; z-index: auto; }
  .nf-nav.show .nf-search form { width: 100%; max-width: 320px; display: flex; gap: 8px; justify-content: center; align-items: center; }
  .nf-nav.show .nf-search input { flex: 1; width: auto; padding: 10px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: var(--text-primary); font-size: 14px; outline: none; }
  .nf-nav.show .nf-search input:focus { border-color: var(--accent); }
  .nf-search { display: none; }
  .nf-toggler { display: block; margin-left: auto; }
  .nf-header .container { gap: 12px; height: 65px;}

}

/* ========== 面包屑 ========== */
.nf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.nf-breadcrumb a { color: var(--text-secondary); }
.nf-breadcrumb a:hover { color: var(--text-primary); }
.nf-breadcrumb .sep { color: var(--text-muted); margin: 0 2px; }
.nf-breadcrumb .current { color: var(--text-primary); }

/* ========== 卡片容器 ========== */
.nf-panel {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.nf-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  margin-top: 16px;
  padding: 0 4%;
}

.nf-panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nf-panel-title .icon {
  color: var(--accent);
  font-size: 18px;
}

.nf-panel-more {
  color: var(--accent);
  font-size: 13px;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  text-decoration: none;
  transition: all var(--transition);
}

.nf-panel-more:hover {
  color: #fff;
  background: var(--accent);
}

/* ========== 标签页 ========== */
.nf-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nf-tab {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.nf-tab:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.nf-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* ========== 影片网格 ========== */
.nf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 0 4%;
}

@media (max-width: 1250px) { .nf-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px) { .nf-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .nf-grid { grid-template-columns: repeat(2, 1fr);} }


/* ========== 影片卡片 ========== */
.nf-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  margin-bottom: 10px;
}

.nf-card:hover {
  transform: scale(1.08);
  z-index: 10;
  box-shadow: var(--shadow-card-hover);
}

.nf-card a {
  display: block;
  text-decoration: none;
}

.nf-card-poster {
  position: relative;
  padding-top: 140%;
  overflow: hidden;
}

.nf-card-title {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
}


.nf-card-meta {
    margin: 5px 0;
    font-size: 13px;
}

.nf-card-poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.nf-card-poster .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 48px;
}

/* 播放按钮覆盖层 */
.nf-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  opacity: 0;
  transition: opacity var(--transition);
}

.nf-card:hover .nf-card-overlay { opacity: 1; }

.nf-card-overlay .play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(229,9,20,0.4);
}

/* 标签 */
.nf-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
  z-index: 2;
}

.nf-badge {
  padding: 2px 8px;
  border-radius: 3px;
}

/* ========== 分页 ========== */
.nf-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 4% 40px;
  flex-wrap: wrap;
}

/* Xiuno pagination() 直接输出 <li>，没有 <ul> 包裹 */
.nf-pagination > li {
  display: inline-flex !important;
  list-style: none !important;
  margin: 2px !important;
}

/* 隐藏 ::marker */
.nf-pagination > li::marker {
  display: none !important;
  content: '' !important;
}

/* 覆盖 Bootstrap .page-link */
.nf-pagination > li > a.page-link,
.nf-pagination > li > a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px !important;
  margin: 0 !important;
  background: var(--bg-card) !important;
  color: var(--text-secondary) !important;
  border: 1px solid transparent !important;
  border-radius: var(--radius) !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all var(--transition);
  float: none !important;
  line-height: 1 !important;
  position: relative;
  z-index: 1;
}

.nf-pagination > li > a.page-link:hover,
.nf-pagination > li > a:hover {
  background: rgba(255,255,255,0.12) !important;
  color: var(--text-primary) !important;
  border-color: rgba(255,255,255,0.15) !important;
}

/* 当前页 - 红色 */
.nf-pagination > li.active > a.page-link,
.nf-pagination > li.active > a {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
  font-weight: 600;
  z-index: 2;
}

/* 禁用态 */
.nf-pagination > li.disabled > a.page-link,
.nf-pagination > li.disabled > a {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* ========== 筛选栏 ========== */
.nf-filter {
  padding: 12px 4% 8px;
}

.nf-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.nf-filter-row:last-child {
  margin-bottom: 0;
}

.nf-filter-label {
  color: var(--text-muted);
  font-size: 13px;
  min-width: 36px;
  flex-shrink: 0;
}

.nf-filter-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nf-tab {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.nf-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.nf-tab.active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* ========== 面包屑修复 ========== */
.nf-breadcrumb {
  padding: 16px 0;
  margin-bottom: 20px;
}

/* ========== 播放页 ========== */
.nf-player-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  position: relative;
}

.nf-player-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.nf-player-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-primary);
  gap: 12px;
}

.nf-player-placeholder .icon {
  font-size: 48px;
  opacity: 0.4;
}

.nf-player-info {
  padding: 20px 0 0;
}

.nf-player-info h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 10px;
}

.nf-player-info h1 a {
  color: inherit;
  text-decoration: none;
}

.nf-player-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* 导航按钮 */
.nf-player-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  gap: 12px;
}

.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.nf-btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.nf-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.nf-btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.nf-btn-outline:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.3);
}

/* 选集 */
.nf-episodes {
  padding: 24px 4% 32px;
}

.nf-episodes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.nf-episodes-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.nf-episodes-count {
  font-size: 13px;
  color: var(--text-muted);
}

.nf-source-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.nf-episodes-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.nf-ep-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 6px;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 13px;
  text-decoration: none;
  transition: all var(--transition);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nf-ep-btn:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
}

.nf-ep-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

/* 标签页内容 */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ========== 详情页 ========== */
.nf-detail {
  padding: 0;
}

.nf-detail-hero {
  display: flex;
  gap: 32px;
  padding-bottom: 24px;
}

/* 海报 */
.nf-detail-poster {
  flex-shrink: 0;
  width: 220px;
}

.nf-detail-poster img {
  width: 220px;
  height: 330px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
.nf-detail-poster img {
  width: 180px;
  height: 270px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
}
/* 信息区 */
.nf-detail-info {
  flex: 1;
  min-width: 0;
}

.nf-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
  line-height: 1.3;
}

/* 标签 */
.nf-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nf-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.nf-badge-score {
  background: rgba(229, 9, 20, 0.15);
  color: #e50914;
}

.nf-badge-hd {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.nf-badge-remark {
  background: rgba(229, 9, 20, 0.1);
  color: #ff6b6b;
}

/* 元信息 */
.nf-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.nf-detail-meta .label {
  color: var(--text-muted);
}

/* 简介 */
.nf-detail-desc {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 操作按钮 */
.nf-detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.nf-btn-primary {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 32px !important;
  font-size: 16px !important;
  font-weight: 600;
  border-radius: var(--radius) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.nf-btn-primary:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.4);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .nf-detail-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  .nf-detail-poster {
    width: 180px;
  }
  
  .nf-detail-badges {
    justify-content: center;
  }
  
  .nf-detail-meta {
    justify-content: center;
  }
  
  .nf-detail-actions {
    justify-content: center;
  }
  
  .nf-detail-title {
    font-size: 22px;
  }
}

/* 选集按钮响应式 */
@media (max-width: 992px) { .nf-episodes-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 768px) { .nf-episodes-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; } }
@media (max-width: 480px) { .nf-ep-btn { font-size: 12px; height: 32px; } }

/* ========== 搜索表单 ========== */
.nf-search-form {
  max-width: 800px;
  margin: 0 auto;
}

.nf-search-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.nf-search-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nf-search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.2);
}

.nf-search-input::placeholder {
  color: var(--text-muted);
}

.nf-search-btn {
  padding: 14px 28px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nf-search-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nf-search-btn:active {
  transform: translateY(0);
}

.nf-search-options {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nf-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nf-radio-label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nf-radio-input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.nf-radio-text {
  color: var(--text-secondary);
  font-size: 14px;
}

.nf-radio-input:checked + .nf-radio-text {
  color: var(--text-primary);
}

/* 帖子列表样式 */
.nf-post-list {
  padding: 0 4%;
}

.nf-post-list .media {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition);
}

.nf-post-list .media:hover {
  background: rgba(255, 255, 255, 0.02);
}

.nf-post-list .media:last-child {
  border-bottom: none;
}

.nf-post-list .avatar-3 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nf-post-list .media-body {
  flex: 1;
  margin-left: 16px;
}

.nf-post-list .username a {
  color: var(--text-primary);
  font-weight: 600;
}

.nf-post-list .date {
  color: var(--text-muted);
  font-size: 12px;
}

.nf-post-list .message {
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

.nf-post-list .message h6 {
  margin: 0 0 8px 0;
}

.nf-post-list .message h6 a {
  color: var(--text-primary);
  font-weight: 600;
}

.nf-post-list .message h6 a:hover {
  color: var(--accent);
}

/* 移动端响应式 */
@media (max-width: 768px) {
  .nf-search-input-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .nf-search-btn {
    width: 100%;
    justify-content: center;
  }
  
  .nf-search-options {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
    .nf-btn-primary {
    padding: 5px 10px !important;
    font-size: 14px !important;
}
.nf-player-info h1 {
    font-size: 16px;
}

.container .nf-player-wrap {
    width: calc(100vw - 0px);
    margin-left: calc(-50vw + 50%);
}

}

/* 图片懒加载 */
.nf-card-poster img.lazy-load,.nf-detail-poster img.lazy-load{opacity:1;transition:opacity .3s}
.nf-card-poster img.lazy-loaded,.nf-detail-poster img.lazy-loaded{opacity:1}
