<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --s: 6;
  --h: 36;
  --speed: 5s;
}

.g-container {
  width: auto;
  /*margin: auto;*/
  height: calc(var(--h) * 1px);
  line-height: calc(var(--h) * 1px);
  font-size: 20px;
  /*background: #673ab7;*/
	background:#ffffff;	
  color: #fff;
  overflow: hidden;
text-overflow: ellipsis;	
}

.g-container ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.g-container ul li {
  flex-shrink: 0;
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
}

.g-container ul {
  animation: move calc(var(--speed) * var(--s)) steps(var(--s)) infinite;
}

.g-container ul li {
  white-space: nowrap;
  cursor: pointer;
  animation: liMove calc(var(--speed)) infinite;
}

.g-container ul li a {
  color: steelblue !important;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, calc(var(--s) * var(--h) * -1px));
  }
}

@keyframes liMove {
  0% {
    transform: translate(0, 0);
  }
  80%,
  100%  {
    transform: translate(0, calc(var(--h) * -1px));
  }
}

@media (min-width: 0px) and (max-width: 767.98px) {
	.g-container {
		/*margin: auto;
		text-align:left;*/
		visibility: hidden;
		height: 0px;
	}
	
	
	.g-container-m {
		margin: auto;
		text-align:left;
  width: auto;
  /*margin: auto;*/
  height: calc(var(--h) * 1px);
  line-height: calc(var(--h) * 1px);
  font-size: 15px;
  /*background: #673ab7;*/
	background:#ffffff;	
  color: #fff;
  overflow: hidden;
text-overflow: ellipsis;	
}

.g-container-m ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}

.g-container-m ul li {
  flex-shrink: 0;
  width: 100%;
  padding-left: 10px;
  box-sizing: border-box;
}

.g-container-m ul {
  animation: move calc(var(--speed) * var(--s)) steps(var(--s)) infinite;
}

.g-container-m ul li {
  white-space: nowrap;
  cursor: pointer;
  animation: liMove calc(var(--speed)) infinite;
}

.g-container-m ul li a {
  color: steelblue !important;
}
}</pre></body></html>