/**
 * 常熟家政 · 家政人员数字化成长中心
 * 学习中心专用样式库 (study.css)
 */

/* 适老化与移动端触控优化 */
html, body {
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* 脉冲光圈特效 (用于图片找茬热区提示) */
@keyframes pulse-ring {
  0% { transform: scale(0.85); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 0.3; }
  100% { transform: scale(0.85); opacity: 0.9; }
}
.animate-pulse-ring {
  animation: pulse-ring 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* 烫金渐变文字 (用于学习护照勋章与排雷战绩) */
.gold-gradient-text {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 隐藏滚动条 (保留滑动物理效果同时界面整洁) */
.no-scrollbar::-webkit-scrollbar { 
  display: none; 
}
.no-scrollbar { 
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}
