.scroll-intermittent {
  width: 70%;
  height: 20px;
  overflow: hidden;
}

@keyframes moveup {
  0% {
    transform: translateY(0px);
  }
  19% {
    transform: translateY(0px);
  }
  /* 两贞使用相同的偏移，达成停下展示效果，展示时长=两贞百分比差x总动画时差，即：19%x10s=1.9s */
  20% {
    transform: translateY(-20px);
  }
  39% {
    transform: translateY(-20px);
  }
  40% {
    transform: translateY(-40px);
  }
  59% {
    transform: translateY(-40px);
  }
  60% {
    transform: translateY(-60px);
  }
  79% {
    transform: translateY(-60px);
  }
  80% {
    transform: translateY(-80px);
  }
  99% {
    transform: translateY(-80px);
  }
  100% {
    transform: translateY(-100px);
  }
}
.content {
  animation: 15s moveup linear infinite normal;
}
.item {
  height: 20px;
  line-height: 20px;
  padding-left: 5px;
  /*color: #515a6e;*/
  color: #ffffff;
  font-size: 14px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  white-space: nowrap;
}

#hk {
  overflow-x: auto; /* Enable horizontal scrolling */
  white-space: nowrap; /* Prevent slides from wrapping */
}

.hk_l {
  display: inline-block; /* Slide next to each other */
  /*padding: 10px; !* Optional padding *!*/
  width: 33.3333%;
}
.hk_l1{
  color: #cccccc
}
.hk_l2{
  color: #03bf7b;font-size: 20px
}
.hk_l3{
  color: #03bf7b
}
.hk_l4{
  color: #7a7474;font-size: 12px
}


.weui-media-box_appmsg {
    margin-right: 10px; /* 设置需要的间距 */
    /* 其他样式 */
}