.weixin {
	position: relative;
}

.weixin::after {
	content: url(../../wp-content/uploads/2022/08/weixin.jpg);
	position: absolute;
	right: -60px;
	top: -192px;
	z-index: 99;
	width: 160px;
	height: 187px;
	border: 5px solid #0095ba;
	border-radius: 4px;
	-webkit-transform-origin: top right;
	transform-origin: top right;
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}

.weixin:hover::after {
	transform: scale(1);
	opacity: 1;
}