/* 新闻滚动容器样式 */
.news-scroll-container {
  width: 100%;
  overflow: hidden;
  background: #f8f9fa;
  padding: 10px 0;
}

/* 滚动内容包装器 */
.news-scroll-wrapper {
  display: flex;
}

/* 滚动内容区域 */
.news-scroll-content {
  display: flex;
  transition: transform 0.3s linear;
}

/* 单个新闻项样式 */
.news-item {
  flex: 0 0 auto;
  width: 300px;
  margin: 0 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 新闻图片样式 */
.news-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* 新闻元信息样式 */
.news-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

/* 新闻标题样式 */
.news-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* 新闻描述样式 */
.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}