/*
  POYI个人引导页 - 禁用头像翻转特效
  Original Source: https://github.com/AsisYu/html-starter-qwpicu.git
  License: Open Source
*/

/* ========== 完全禁用头像翻转特效 ========== */
.ih-item.circle.effect a:hover .img,
.ih-item.circle.effect.right_to_left a:hover .img,
.ih-item.circle.effect.bottom_to_top a:hover .img,
.ih-item.circle.effect.top_to_bottom a:hover .img,
.ih-item.circle.effect.left_to_right a:hover .img {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

/* 禁用所有过渡动画 */
.ih-item.circle.effect .img {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}

/* 禁用hover时的所有变换 */
.ih-item a:hover,
.ih-item.circle.effect a:hover,
.ih-item.circle.effect.right_to_left a:hover,
.ih-item.circle.effect.bottom_to_top a:hover,
.ih-item.circle.effect.top_to_bottom a:hover,
.ih-item.circle.effect.left_to_right a:hover {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
/* ========== 禁用头像翻转特效 ========== */
