.feedFlow {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
}

.feed-wrapper {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite;
}

.feed-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.feed-card img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.feed-content {
  flex: 1;
}

.feed-source {
  font-size: 12px;
  color: #007AFF;
  font-weight: 600;
}

.feed-content h3 {
  font-size: 14px;
  margin: 4px 0;
  color: #333;
}

.feed-content p {
  font-size: 12px;
  color: #555;
  margin: 0 0 4px;
}

.feed-time {
  font-size: 11px;
  color: #999;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}