.psmsg{
	height: auto;
	background: #fff;
	border: none; border-radius: 5px;
	box-shadow: 0 5px 20px rgba(0,0,0,.3);
	display: none;
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	-webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
}
.psmsg .psmsg_header{
	padding: 0 10px 0 15px;
	height: 40px;
	background: #ececec;
	display: flex; justify-content: space-between; align-items: center;
	box-sizing: border-box;
}
.psmsg .psmsg_header .psmsg_title{
	color: #333;
	font-size: 14px; font-weight: bolder;
}
.psmsg .psmsg_header .psmsg_close{
	padding: 0;
	color: #333; font-size: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
}
.psmsg .psmsg_body{
	padding: 15px;
	min-height: 100px; max-height: 600px;
	font-size: 14px; word-break: break-word;
	box-sizing: border-box;
	overflow: auto;
}
.psmsg .psmsg_footer{
	padding: 0 15px;
	height: 50px;
	text-align: right; line-height: 50px;
	background: #ececec;
	display: flex; justify-content: flex-end; align-items: center; gap: 5px;
	box-sizing: border-box;
}
.psmsg .psmsg_footer button{
	padding: 5px 10px;
	color: #333; font-size: 14px;
	background: #fff; border: 1px solid #999;
	border-radius: 3px;
	cursor: pointer;
}
.psmsg .psmsg_footer button:hover{
	box-shadow: 0 0 5px rgba(0,0,0,.5);
}
.psmsg .psmsg_footer button.psmsg_btn_ok{
	padding: 5px 40px;
}
.psmsg .dp_none{
	display: none;
}


