
.contribution-alert[data-v-f9bd17ce] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 12px;
  z-index: 1000;
  animation: scroll-f9bd17ce 10s linear infinite;
  box-shadow: none;
}
.alert-content[data-v-f9bd17ce] {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9500;
  font-size: 16px;
  gap: 10px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
@keyframes scroll-f9bd17ce {
0% {
    transform: translateX(100%);
}
100% {
    transform: translateX(-100%);
}
}

/* 添加闪烁效果 */
.contribution-alert[data-v-f9bd17ce] {
  animation: scroll-f9bd17ce 10s linear infinite,blink-f9bd17ce 2s infinite;
}
@keyframes blink-f9bd17ce {
0%, 100% {
    opacity: 1;
}
50% {
    opacity: 0.8;
}
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  padding-top: 0;
}
