.collect { width: 130rpx; display: flex; align-items: center; color: #909795; font-size: 24rpx; padding: 0 10rpx; } .collectImage { position: relative; width: 32rpx; height: 32rpx; margin-right: 10rpx; Image { width: 100%; height: 100%; } } .zoom { top: 0; left: 0; position: absolute; content: ''; width: 32rpx; height: 32rpx; border-radius: 50%; border: 1px solid #FF9E5F; animation: Zooms 300ms ease forwards; opacity: 1; transform-origin: -100%, -100% 0; } .pulse { animation: Pulse 300ms; } @keyframes Zooms { 0% { transform: scale(1); } 30% { transform: scale(1.5); left: -5%; top: -5%; opacity: 1; } 100% { transform: scale(1.5); left: -5%; top: -5%; opacity: 0; } } @keyframes Pulse { 0% { transform: scale(.2); } 60% { transform: scale(1.2); } 80% { transform: scale(.8); } 100% { transform: scale(1); } }