.find_item_img:hover{transform: translateX(-5px);}
.find_item_img{transition: transform .4s ease-out;position: absolute;bottom: 5px; right: 10px;width: 80px;height: 80px;}

关键点:
position: 绝对定位
:hover 方式改变位置:transform: translateX(-5x); 可以进行2D 转3D效果
transition:对这个transform属性效果执行动作