.header_bannerBar {
        height: 45px;
        line-height: 21px;
        text-align: left;
        padding: 0px 10px;
}

.g-container {
  background-color: #000;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 列表 */
.g-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  width: 100%;
  text-align: center;
}

.g-container li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;         
  align-items: center;
  justify-content: center;
}

.g-container li.active {
  opacity: 1;
}

/* 連結文字 */
.g-container a {
  color: #FF7F50;
  font-weight: 900;
  text-decoration: none;
  font-size: 16px;
  line-height: normal;   
  display: inline-block;   
}

/* 手機版可選擇放大字體 */
@media (max-width: 768px) {
  .g-container a {
    font-size: 16px;
  }
}