/* ==========================================================
   Ritsuai 律合官网 · 布局共享样式
   包含：页脚涂字 Tooltip（原各页内联样式收敛）
   ========================================================== */

/* ----- 页脚社交按钮 Tooltip ----- */
.tooltip-text {
  pointer-events: none;
  color: #fff;
}
.paint-text::after {
  content: attr(data-text);
  display: inline-block;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}
.group:hover .paint-text::after {
  animation: paintIn 0.8s ease-out forwards;
}
@keyframes paintIn {
  from { width: 0; }
  to { width: 100%; }
}

/* ----- 移动端：隐藏页脚悬浮提示（避免窄屏横向溢出与误触） ----- */
@media (max-width: 640px) {
  .tooltip-text { display: none; }
}
