/*-----------------------------------
    走馬燈
------------------------------------*/
.mq-section{
    background: #121d39;
    padding: 12px 0px;
    height: 45px;
    box-shadow: 0px 0px 17px #e7b350;
    position: relative;
}

  .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;
}

@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: 100%;
          height: 40px;
          padding: 0px 10px;
          /* margin-top: -9px; */
          background: #121d39;
          border: 1px solid #253d79;
          border-radius: 20px;
          box-shadow: inset 0px 0px 17px #253d79;
        }
        .mq-section {
          background: transparent;
          box-shadow: none;
        }
        ul.marquee-content {
          margin: 5px;
        }
}