.notice-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  margin: 2rem auto;
  max-width: 1200px;
}
.notice-bar .notice-content {
  position: relative;
  height: 2rem;
  overflow: hidden;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.notice-bar .notice-fixed-icon {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
.notice-bar .notice-item {
  position: absolute;
  width: calc(100% - 3rem);
  left: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.notice-bar .notice-item.active {
  opacity: 1;
  transform: translateY(0);
}
.notice-bar .notice-item .notice-text {
  font-size: 1rem;
  text-align: center;
}
.notice-bar .notice-item:hover {
  transform: translateY(0) scale(1.02);
}
.notice-bar .notice-item:hover .notice-text {
  color: #e74c3c;
}
.notice-bar .notice-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.notice-bar .notice-dots .dot {
  cursor: pointer;
  opacity: 0.6;
}
.notice-bar .notice-dots .dot:hover {
  opacity: 1;
  transform: scale(1.2);
}
.notice-bar .notice-dots .dot.active {
  opacity: 1;
  background: #e74c3c;
  transform: scale(1.2);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .notice-bar {
    margin: 1rem;
    padding: 0.8rem;
  }
}
