/* noise-home主页rss-CSS样式 */
.rss-container {
  position: fixed;
  color: white; 
  display: flex;
  text-align: left; /* 文本左对齐 */
  flex-direction: column; /* 使内容垂直排列 */
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* 半透明黑色背景 */
  overflow: hidden; /* 防止内容溢出 */
  padding: 20px; /* 添加内边距 */
}

/* 修改选择器为 .rss-link a */
.rss-link {
  display: flex;
  flex-direction: column; /* 使内容垂直排列 */
  align-items: flex-start; /* 文本左对齐 */
  width: 100%; /* 使链接宽度与容器一致 */
  margin-bottom: 20px; /* 使每个RSS项之间有间距 */
}

.rss-link a {
  font-size: 13px;
  color: white;
  text-decoration: none;
  width: 100%; /* 使链接宽度与容器一致 */
  text-align: left; /* 文本左对齐 */
}

/* 图片样式 */
.rss-link img {
  width: 100%; /* 图片宽度与容器一致 */
  height: auto; /* 高度按比例自适应 */
  border-radius: 5px; /* 可选：给图片添加圆角 */
  margin-top: 5px; /* 使图片与文本之间有间距 */
}
