/*-----------------------------------
    走馬燈
------------------------------------*/
.mq-section{
    padding: 12px 0px;
    height: 45px;
    background: #e5dacb;
    background: linear-gradient(180deg, #ffe4be 20%, #c3a064 70%, #ffdbab 100%);
} 

  .mq-icon{
    color: #fff;
  }
  .top-bar {
    width: 100%;
    padding: 0px 10px;
  }

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  color: #424242;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scroll-left 90s 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: #424242;
}
@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 #cfa452;
              background: #e5dacb;
              background: linear-gradient(180deg, #ffe4be 20%, #efcc91 70%, #ffdbab 100%);
              border-radius: .5rem;
              margin: 0 .875rem .5rem;
        }
      .marquee-content li a {
          color: #775a2c;
      }
      .mq-section {
          background: transparent;
          box-shadow: none;
      }
      ul.marquee-content {
          margin: 5px;
      }
}