#loading{position:fixed;width:100%;height:100%;background-color:#fff;z-index:999;}.boxLoading{width:50px;height:50px;margin:auto;position:absolute;left:0;right:0;top:0;bottom:0;}.boxLoading:before{content:'';width:50px;height:5px;background:#000;opacity:0.1;position:absolute;top:59px;left:0;border-radius:50%;animation:shadow 0.5s linear infinite;}.boxLoading:after{content:'';width:50px;height:50px;background:#ffb3cc;animation:animate 0.5s linear infinite;position:absolute;top:0;left:0;border-radius:3px;}@keyframes animate{17%{border-bottom-right-radius:3px;}25%{transform:translateY(9px) rotate(22.5deg);}50%{transform:translateY(18px) scale(1,0.9) rotate(45deg);border-bottom-right-radius:40px;}75%{transform:translateY(9px) rotate(67.5deg);}100%{transform:translateY(0) rotate(90deg);}}@keyframes shadow{0%,100%{transform:scale(1,1);}50%{transform:scale(1.2,1);}}


<style>
	@media screen and (max-width: 1198px){
		.footer-tool{
			display: none!important;
		}
	}
	.footer-tool{
		width: 100%;
		height: 48px;
		background: #f3f7fb;
		border: 1px solid #d6e6f5;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5px 0;
	}
	.tool-list{
		position: relative;
		width: 20%;
		height: 36px;
	}
	.tool-list a{
		color: #555666;
		font-size: 16px;
		line-height: 36px;
		text-decoration: none;
		padding: 0 12px;
		box-sizing: border-box;
		border-radius: 4px;
		display: block;
		text-align: center;
	}
	.tool-list a:hover{
		background: rgba(39,124,204,0.1);
	}
	.tool-list:hover .tool-prompt{
		display: block;
	}
	.tool-prompt{
		display: none;
		width: 180px;
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 0 5px rgba(0,0,0,.4);
		padding: 5px 10px;
		box-sizing: border-box;
		text-align: center;
		position: absolute;
		bottom: 36px;
		left: 50%;
		margin-left: -90px;
	}
	.tool-prompt img{
		max-width: 100%;
		max-height: 160px;
	}
	.tool-prompt p{
		color: #555666;
		font-size: 16px;
	}
</style>