#divMask {
	position: absolute;
	z-index: 1000;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background-color: #333333;
	opacity: 0.3;
	display: none;
}

.divDialog {
	position: fixed;
	z-index: 998;
	display: none;
	width: 960px;
	height: 560px;
	top: 0px;
	left: 0px;
	box-shadow: 3px 3px 10px 0px #666;
	border-radius: 8px;
}

.divDialogHeader {
	position: absolute;
	z-index: 3;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
}

.divDialogTitle {
	float: left;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	font-family: '微软雅黑';
	margin-left: 10px;
	margin-right: 40px;
	overflow: auto;
	color: #666666;
}

.divDialogClose {
	float: right;
	width: 24px;
	height: 24px;
	margin-top: 8px;
	margin-right: 5px;
	cursor: pointer;
	border-radius: 6px;
}

.divDialogClose:hover {
	background-color: #f0f0f0;
}

.divDialogContent {
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding-top: 40px;
	padding-bottom: 6px;
	background-color: #FFFFFF;
	border: #dddddd solid 1px;
	border-radius: 8px;
}

#divToast {
	position: absolute;
	z-index: 999999;
	width: 240px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #333333;
	color: #FFFFFF;
	font-size: 14px;
	left: calc(50% - 120px);
	bottom: 20px;
	border-radius: 25px;
	opacity: 0.9;
	display: none;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 20px;
	padding-right: 20px;
}

#divSysHint {
	width: 400px;
	height: 150px;
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 8px 8px 8px 8px;
	box-shadow: 3px 3px 8px #999999;
	display: none;
}

#divImageViewer {
	position: absolute;
	z-index: 998;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
    background-color: #333333;
    display:  none;
}

#divImageViewer img {
	position: absolute;
	z-index: 10;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.sys-hint-title {
	width: 100%;
	height: 30px;
}
.sys-hint-title label {
	float: left;
	margin-left: 20px;
	line-height: 30px;
	color: #666666;
}
.sys-hint-title img {
	float: right;
	line-height: 30px;
	margin-right: 10px;
	margin-top: 8px;
	cursor: pointer;
}

.sys-hint-top {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sys-hint-icon {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 80px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sys-hint-content {
	height: 70px;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: 20px;
	overflow: auto;
}

.sys-hint-content pre {
	line-height: 150%;
	white-space: pre-wrap;
	word-wrap: break-word; 
}

.sys-hint-bottom {
	width: 100%;
	height: 50px;
	display: flex;
	margin-top: 10px;
	padding-right: 20px;
	justify-content: flex-end;
	align-items: flex-start;
	box-sizing: border-box;
}

.sys-hint-bottom div {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 60px;
	height: 30px;
	line-height: 30px;
	border-radius: 8px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
}

.divDrawer {
	position: absolute;
	z-index: 999;
	top: 0;
	right: -960px;
	bottom: 0;
	width: 960px;
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	border-left: 1px solid #CCCCCC;
}

.divDrawerHeader {
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 40px;
}

.divDrawerIcon {
	float: left;
	margin-left: 10px;
	margin-top: 15px;
}

.divDrawerTitle {
	float: left;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: bold;
	color: #333333;
	margin-left: 10px;
}

.divDrawerButtons .divDrawerButtonOK {
	float: right;
	width: 60px;
	height: 30px;
	line-height: 30px;
	margin-top: 10px;
	margin-right: 10px;
	text-align: center;
	background-color: #0099FF;
	border: 1px solid #0099FF;
	border-radius: 4px;
	color: #FFFFFF;
	cursor: pointer;
	display: none;
}

.divDrawerButtons .divDrawerButtonCancel {
	float: right;
	width: 60px;
	height: 30px;
	line-height: 30px;
	margin-top: 10px;
	margin-right: 10px;
	text-align: center;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #333;
	cursor: pointer;
}

.divDrawerClose {
	float: right;
	width: 24px;
	height: 24px;
	margin-top: 5px;
	margin-right: 5px;
	cursor: pointer;
	border-radius: 6px;
	display: none;
}

.divDrawerClose:hover {
	background-color: #f0f0f0;
}

.divDrawerContent {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: auto;
	width: 100%;
	background-color: #FFFFFF;
}
