@charset "UTF-8";
* {
	margin:0;
	padding:0;
	border-width:0;
}

body {
	overflow:auto;
	font-family: '宋体','Open Sans','Segoe UI';
	font-size: 13px;
	color: #444;
}

div {
	position:relative;
/* 	display:inline-block; */
	/*background-color:white;*/
}

/*
*/
.size-full {
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:auto;
}
.size-row {
	width:100%;
}

.size-half-row {
	position:relative;
	display:inline-block;
	width:50%;
}
.full-width {
	width:100%;
}
.full-height {
	height:100%;
}
.left {
	text-align:left;
}
.center {
	text-align:center;
}
.right {
	text-align:right;
}
.top {
	vertical-align:top;
}
.middle {
	vertical-align:middle;
}
.bottom {
	vertical-align:bottom;
}

.was-hidden {
	position:fixed;
	display:block;
	left:-10000px;
	top:-10000px;
	width:1px;
	height:1px;
	opacity:0;
}

.button, .link {
	cursor:pointer;
}
/*
animation
*/
@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}
@keyframes run {
	from {
		stroke-dasharray: 10, 5;
	}
	to {
		stroke-dasharray: 40, 5;
	}
}
/*
toast message
*/
#toast-container, #toast-container div {
	display:block;
	background-color:rgba(0,0,0,0);
}
#toast-container > .toast {
	min-height:55px;
}
#toast-container > .toast > .toast-message {
	background:transparent;
}
#toast-container > div {
	opacity:1;
}
/*
bootbox
*/
div.modal, div.modal div {
	display:block;
}
.input-error {
	border:1px solid red;
}
.modal, .modal-backdrop {
	background-color:rgba(0,0,0,0);
}
/*
waiting-state
*/
body > .waiting {
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0);
	z-index:666666;
	cursor:wait;
}
body > .waiting > i {
	position:fixed;
	margin-left:50%;
	margin-top:25%;
	left:-30px;
	top:-30px;
	cursor:wait;
}
/*
widget
*/
.widget-mask {
	position:absolute;
	display:block;
	left:0;
	top:0;
	right:0;
	bottom:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.3);
}
.widget-mask > .widget {
	position:absolute;
	display:block;
	left:32px;
	top:32px;
	right:32px;
	bottom:16px;
}
.widget-mask > .widget > .widget-header {
	position:relative;
	display:block;
	left:0;
	top:0;
	width:100%;
	height:36px;
	white-space:nowrap;
	z-index:1;
}
.widget-mask > .widget > .widget-body {
	position:absolute;
	display:block;
	left:0;
	top:36px;
	bottom:0;
	width:100%;
	overflow:auto;
}
/*
toolbox
*/
.toolbox {
	position:fixed;
	display:block;
	left:0;
	top:0;
	width:100px;
	height:100px;
	background-color:white;
	overflow:hidden;
	-webkit-box-shadow: 1px 0 10px 1px rgba(0,0,0,.3);
	-moz-box-shadow: 1px 0 10px 1px rgba(0,0,0,.3);
	box-shadow: 1px 0 10px 1px rgba(0,0,0,.3);
}
.toolbox > .header {
	position:absolute;
	display:block;
	left:0;
	top:0;
	width:100%;
	height:24px;
	line-height:24px;
	vertical-align:middle;
	white-space:nowrap;
	background-color:lightblue;
	cursor:move;
}
.toolbox > .header > span.caption {
	font-family: 宋体;
	font-size:12px;
	font-weight:normal;
	padding-left:5px;
	height:24px;
	line-height:24px;
	vertical-align:middle;
	display:block;
}
.toolbox > .body {
	position:absolute;
	display:block;
	left:0;
	top:24px;
	right:0;
	bottom:0;
	width:100%;
	overflow:auto;
	background-color:white;
	line-height:0;
}
