 .drag-dialog {
 	position: absolute;
 	top: 200px;
 	left: 200px;
 	width: 300px;
 	height: 200px;
 	background: white;
 	box-sizing: border-box;
 	display: flex;
 	flex-direction: column;

	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	border: 1px solid #ccc;
	padding: 15px;
 }

 .drag-header {
 	padding: 8px;
 	background: #ddd;
 	cursor: move;
 	display: flex;
 	justify-content: space-between;
 }

 .drag-content {
 	flex: 1;
 	padding: 10px;
	overflow: auto;
 }

 .drag-content>div>ul{
	margin: 0;
	padding: 0;
 }

 .drag-resize-handle {
 	width: 16px;
 	height: 16px;
 	background: #999;
 	position: absolute;
 	bottom: 0;
 	right: 0;
 	cursor: se-resize;
 }