/* MGM 官网前端 overlay：公告栏样式 + 登录页文案隐藏 */
/* ---- 首页公告栏：字号增大 + 横向循环滚动 ---- */
.home .van-notice-bar {
  --van-notice-bar-font-size: 16px !important;
  --van-notice-bar-height: 34px !important;
  --van-notice-bar-line-height: 34px !important;
  --van-notice-bar-icon-size: 20px !important;
}
.home .van-notice-bar .notice-swipe {
  height: 34px;
  line-height: 34px;
}
.home .van-notice-bar > .van-notice-bar__wrap {
  display: none !important;
}
.mgm-notice-marquee-wrap {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
.mgm-notice-marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation-name: mgm-notice-marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 20s;
}
.mgm-notice-marquee-text {
  display: inline-block;
  white-space: nowrap;
}
@keyframes mgm-notice-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---- 登录页：去掉 "TripAdvisor" 文字（仅 #/login，注册页保留） ---- */
html.mgm-page-login .loginWrap .loginWrap_cont_title .brand-name {
  display: none !important;
}
