* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.container {
  display: flex;
  width: 70%;
  height: calc(100vh - 60px);
  overflow: hidden;
  margin: 0 auto;
}



.content-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.section-header {
  background-color: #f8f9fa;
  padding: 10px 20px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-header h2 {
  font-size: 16px;
  color: #333;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.update-time {
  font-size: 12px;
  color: #666;
  margin: 0;
}

/* 项目列表 */
.items-list {
  padding: 10px;
  background-color: #fff;
  font-size: 14px;
}

.item {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.item:last-child {
  border-bottom: none;
}

.item-title {
  font-weight: bold;
  color: #202020;
  margin-bottom: 5px;
}

.item-date {
  font-size: 12px;
  color: #999;
  margin-left: 8px;
  font-weight: normal;
}
.item-remark {
  color: #666;
  margin-bottom: 5px;
}

.item-link {
  color: #666;
}

.item-link a {
  color: #1989fa;
  text-decoration: none;
  word-break: break-all;
}

.item-link a:hover {
  text-decoration: underline;
}

/* 空内容状态 */
.no-content {
  text-align: center;
  color: #999;
  padding: 40px 0;
  font-size: 14px;
}

/* 全局暂无数据状态 */
.no-data {
  text-align: center;
  color: #999;
  padding: 80px 0;
  font-size: 16px;
  font-style: italic;
}

/* 顶部标题样式已移至layout.ejs */

.user-info {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 15px;
}

.username {
  font-weight: 500;
  color: #333;
}

.action-dropdown {
  cursor: pointer;
}

.notification {
  display: flex;
  align-items: center;
}

.ai-assistant {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 免责声明样式 */
.important-notice {
  background-color: #fff0f6;
  border: 1px solid #ffadd2;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notice-icon {
  color: #fa541c;
  font-size: 18px;
  margin-top: 2px;
}

.notice-text {
  flex: 1;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 类型标签样式 */
.type-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 8px;
  color: white;
}

.type-tag.movie {
  background-color: #67c23a;
}

.type-tag.tv {
  background-color: #e6a23c;
}

.type-tag.animation {
  background-color: #f56c6c;
}

.type-tag.documentary {
  background-color: #909399;
}

.type-tag.music {
  background-color: #c06c84;
}

.type-tag.variety {
  background-color: #722ed1;
}

.type-tag.other {
  background-color: #13c2c2;
}

/* 分页样式 */
.pagination-container {
  margin: 30px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pagination-info {
  font-size: 14px;
  color: #666;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.page-btn {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #dcdfe6;
  border-radius: 4px;
  background-color: #fff;
  color: #606266;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover {
  background-color: #ecf5ff;
  border-color: #c6e2ff;
  color: #409eff;
}

.page-btn.current {
  background-color: #409eff;
  border-color: #409eff;
  color: white;
}

.page-btn.prev-btn, .page-btn.next-btn {
  min-width: 80px;
}

.page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.page-btn:disabled:hover {
  background-color: #fff;
  border-color: #dcdfe6;
  color: #606266;
}

/* 响应式设计已移至layout.ejs */

/* 搜索提示样式 */
.search-tip {
  background-color: #fff7e6;
  border: 1px solid #ffd591;
  border-radius: 4px;
  padding: 10px 15px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tip-icon {
  color: #fa8c16;
  font-size: 16px;
}

.tip-text {
  flex: 1;
  font-size: 14px;
  color: #666;
}

/* 容器样式调整，避免内容被导航栏遮挡 */
.container {
  margin-top: 60px;
}

/* 移动端容器样式，确保有足够空间避免导航栏遮挡 */
@media (max-width: 768px) {
  .container {
    margin-top: 70px;
  }
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Firefox滚动条样式 */
* {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

/* 首页特定样式 */
.home-container {
  max-width: 888px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 首页头部样式 */
.home-header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.home-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-logo {
  display: flex;
  align-items: center;
}

.home-logo img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.home-update-info {
  font-size: 14px;
  color: #666;
}

/* 首页广告横幅 */
.home-banner {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 30px 0;
  margin: 20px 0;
  text-align: center;
  border-radius: 8px;
}

.home-banner h2 {
  font-size: 28px;
  font-weight: normal;
}

/* 首页免责声明 */
.home-notice {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ff9ff3;
}

.home-notice p {
  margin-bottom: 10px;
}

.home-notice .warning {
  color: #ff6b6b;
  font-weight: bold;
}

/* 首页功能区块 */
.home-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

/* 响应式设计 - 手机端 */
@media (max-width: 768px) {
  .home-features {
    grid-template-columns: 1fr;
  }
  
  .home-banner h2 {
    font-size: 20px;
  }
  
  .home-container {
    padding: 0 10px;
  }
  
  .home-notice {
    padding: 15px;
  }
  
  /* 菜单按钮在移动端显示 */
  .menu-toggle {
    display: block;
  }
  
  /* 侧边栏和内容区域响应式 */
  .container {
    width: 100%;
    flex-direction: column;
  }
  
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    transform: translateX(-100%);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    padding: 10px;
    margin-left: 0;
    transition: margin-left 0.3s ease;
  }
  
  .main-content.sidebar-open {
    margin-left: 200px;
  }
  
  /* 项目列表响应式 */
  .items-list {
    padding: 15px;
  }
  
  .item {
    padding: 12px 0;
  }
  
  .item-title {
    font-size: 14px;
    font-weight: bold;
  }
  
  .item-link {
    font-size: 14px;
  }
}

.home-feature-item {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.home-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.home-feature-item img{
  width: 100%;
  height: 100%;
}

/* 首页页脚 */
.home-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

