/* ==========================================================================
   触摸设备样式
   ========================================================================== */

/* H5 移动端触摸支持 */
@media (hover: none) and (pointer: coarse) {
  .social-link:active .social-text {
    transform: scale(1.1);
  }
  
  /* 触摸反馈 */
  .social-link:active {
    opacity: 0.8;
  }
  
  /* 触摸区域优化 */
  .social-link {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* 触摸反馈动画 */
  .social-link:active {
    transition: opacity 0.1s ease;
  }
}