.notice-bar {
  background: #f5f0e8;
  border-top: 1px solid #ddd6c4;
  border-bottom: 1px solid #ddd6c4;
  padding: 10px 20px;
}
.notice-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.notice-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E1F5EE;
  border: 1px solid #9FE1CB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-bubble {
  flex: 1;
  overflow: hidden;
}
.notice-author {
  font-size: 10px;
  color: #999;
  margin: 0 0 2px;
}
.notice-marquee-wrap {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.notice-marquee {
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  color: #5a4f3a;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
