.box {
	width:240px;
	height:180px;
	background:red;
	position:absolute;
	left:10px;
	top:10px
}
.box:hover {
	cursor:move;
}
.container-box {
	width:800px;
	height:500px;
	border:1px solid blue;
	margin:0 auto;
	position:relative;
}
.box-dot {
	width:5px;
	height:5px;
	background:green;
	position:absolute;
	cursor:se-resize;
	right:0;
	bottom:0;
}
更新时间:2021-02-08 23:35:02