#floatBtn{
	position: unset;
	right: 20px;
	bottom: 80px;
	width: 131px;
	height: 115px;
	background-image: url("../img/zyfdico02.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
	cursor: grab;
	z-index: 999999;
	user-select: none;
	touch-action: none;
	/* 新增：禁止图片原生拖拽，解决光标卡死核心 */
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-ms-user-drag: none;
	user-drag: none;
}
#float:active{
	cursor: grabbing;
}
#floatBtn.is-dragging{
	cursor: grabbing !important;
}

@media screen and (max-width:1366px) {
    #floatBtn{
        width:119px;
        height:105px;
    }
}
@media screen and (max-width:1024px) {
    #floatBtn{
        width:80px;
        height:80px;
    }
}
@media screen and (max-width:500px) {
    #floatBtn{
        width:50px;
        height:45px;
    }
}