/* 影视娱乐模板 - 影院红黑风格 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #0d0d0d; color: #e0e0e0; font-size: 14px; line-height: 1.7; }
a { color: #e50914; text-decoration: none; }
a:hover { color: #ff1a1a; }

/* 主容器 */
#app_home { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 头部 */
#app_header { padding: 28px 0; border-bottom: 2px solid #e50914; }
#blogtitle h1 { font-size: 28px; font-weight: 700; color: #e50914; text-transform: uppercase; letter-spacing: 4px; }
#navlist { list-style: none; display: flex; gap: 6px; margin-top: 20px; }
#navlist a { display: block; padding: 10px 22px; background: #1a1a1a; border: 1px solid #333; font-size: 13px; color: #999; transition: all 0.3s; }
#navlist a:hover, #navlist a.cur { background: #e50914; color: #fff; border-color: #e50914; }

/* 横幅 */
#app_banner { margin: 24px 0; border-radius: 4px; overflow: hidden; background: #1a1a1a; }
#app_banner img { width: 100%; height: auto; max-height: 220px; object-fit: contain; display: block; }

/* 主内容区 */
#app_main { display: flex; gap: 28px; padding: 28px 0; }
#maincontent { flex: 1; }

/* 区块标题 */
.section-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.section-title::before { content: ''; width: 4px; height: 24px; background: #e50914; }

/* 影视列表 */
.forflow { display: flex; flex-direction: column; gap: 16px; }
.app_day { background: #1a1a1a; border-left: 3px solid transparent; padding: 18px 20px; transition: all 0.3s; }
.app_day:hover { border-left-color: #e50914; background: #242424; }
.daytitle { display: none; }
.posttitle { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.posttitle a { color: #e0e0e0; }
.posttitle a:hover { color: #e50914; }
.c_b_p_desc { font-size: 14px; color: #888; line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.c_b_p_desc a { color: #e50914; }
.postdesc { font-size: 12px; color: #666; display: flex; gap: 20px; }

/* 侧边栏 */
#app_sidebar { width: 280px; flex-shrink: 0; }
.sidebar-block { background: #1a1a1a; padding: 18px; margin-bottom: 18px; }
.catlisttitle { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #333; }
.sidebar-block ul { list-style: none; }
.sidebar-block li { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #222; }
.sidebar-block li:last-child { border-bottom: none; }
.sidebar-block a { font-size: 14px; color: #999; transition: color 0.2s; }
.sidebar-block a:hover { color: #e50914; }
.clear { clear: both; }

/* 底部 */
#app_footer { text-align: center; padding: 30px 0; color: #666; font-size: 13px; border-top: 1px solid #1a1a1a; margin-top: 20px; }
#app_footer a { color: #e50914; }

/* 文章页 */
#topics { background: #1a1a1a; padding: 28px; margin-bottom: 20px; }
.posttitle { font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.4; }
.postdesc { font-size: 13px; color: #666; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #333; }
.postbody { font-size: 15px; line-height: 1.9; color: #ccc; }
.postbody p { margin-bottom: 14px; }

/* 响应式 */
@media (max-width: 900px) { #app_main { flex-direction: column; } #app_sidebar { width: 100%; } }
