/*-----------------------------------
    走馬燈
------------------------------------*/
.mq-section{
    padding: 12px 0px;
    height: 45px;
    background: var(--primary);
} 

  .mq-icon{
    color: #fff;
  }
  .top-bar {
    width: 100%;
    padding: 0px 10px;
  }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  color:#fdfef6;
}

.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: #fdfef6;
}
@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 var(--color-shadow-dark);
              background: var(--primary);
              border-radius: .5rem;
              margin: 0 .875rem .5rem;
        }
      .marquee-content li a {
          color: var(--color-text-light);
      }
      .mq-section {
          background: transparent;
          box-shadow: none;
      }
      ul.marquee-content {
          margin: 5px;
      }
}