/* Only the four-character label moves. The button, HOT and click target stay still. */
/* The old GIF contains baked-in text and hides live text; replace that image locally. */
body.sgc-home-active .sgc-home-shell[data-home-module="homepage"] > .sgc-home-links[data-home-module="partners"] button.sgc-home-mall-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  background-image: linear-gradient(110deg, #c64f07, #d92f46);
  color: #fff;
}
button.sgc-home-mall-entry > .sgc-home-mall-title-v12 {
  display: inline-block;
  font-family: KaiTi, STKaiti, "楷体", FangSong, "仿宋", serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  animation: sgc-mall-title-bounce-v12 1.8s ease-in-out infinite;
  animation-play-state: paused;
}
body.sgc-home-active.sgc-mall-title-visible-v12 button.sgc-home-mall-entry > .sgc-home-mall-title-v12 {
  animation-play-state: running;
}
@keyframes sgc-mall-title-bounce-v12 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
  button.sgc-home-mall-entry > .sgc-home-mall-title-v12 { animation: none; transform: none; }
}
