.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border: 0px solid #ccc;
}

.nomal-marquee-font {
  font-size: x-large;
  font-weight: bold;
  background-color: rgba(0, 119, 119, 0.921);
  color: white;
}

.warning-marquee-font {
  font-size: x-large;
  font-weight: bold;
  background-color: orange;
  color: white;
}

.Urgent-marquee-font {
  font-size: x-large;
  font-weight: bold;
  background-color: red;
  color: yellow;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

.marquee-span-right-margin {
  margin-right: 20px;
  padding: 5px 10px;
}

/* 👇 鼠标移上去暂停 */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
