/* 右下区域整体容器 */
.right-bottom {
  flex: 1; /* 占据右侧下方剩余空间 */
  min-height: 0; /* 允许内部滚动 */
  overflow: hidden; /* 防止外部滚动 */
  padding: 12px;
  background-color: #f9f9f9;
  border-top: 1px solid #eee; /* 与右上区域分隔 */
}

/* 卡片容器：启用垂直滚动 */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 响应式列 */
  gap: 16px;
  max-height: 100%;
  overflow-y: auto; /* 关键：允许垂直滚动 */
  padding-right: 8px; /* 为滚动条留空间 */
}

/* 单个信息卡片 */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #333;
}

.card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 最多显示3行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card .time {
  font-size: 12px;
  color: #999;
}