/*-----------------------------------
    走馬燈
------------------------------------*/
.mq-section{
    padding: 12px 0px;
    height: 45px;
    background: #2c6da07a;
} 

  .mq-icon{
    color: #fff;
  }
  .top-bar {
    width: 100%;
    padding: 0px 10px;
  }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-content li {
  display: inline-block;
  padding: 0 10px;
  white-space: nowrap;
  font-size: 16px;
}

.marquee-content:hover {
  animation-play-state: paused;
}
.marquee-content li a{
  color: #fff;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 768px) {
  .mq-section{height: 55px;}
      .top-bar {
        width: calc(100% - 1.75rem);
        height: 40px;
        padding: 0px 10px;
        box-shadow: 0 2px 6px #0513303f, inset 0 -3px #264073;
        background: linear-gradient(180deg, #4a91c0 0%, #2f6790 1%, #2878be 40%, #2670b1 74%, #336da7 100%);
        border-radius: .5rem;
        margin: 0 .875rem .5rem;
}
      .mq-section {
          background: transparent;
          box-shadow: none;
          overflow: hidden;
      }
      ul.marquee-content {
          margin: 5px;
      }
}