/* ============================================================
   page-mac-mini-jiage.css — 价格页专属样式
   公共导航 / 动效见 site-chrome.css
   ============================================================ */

/* 切换计费周期时价格数字闪动 */
@keyframes price-flash {
  0% {
    transform: scale(1);
    color: #dc2626;
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.price-flash {
  animation: price-flash 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
