@import url("../fonts/opensans.css");
@import url("../fonts/roboto.css");
@import url("grid.css");

/************全局/Global************/
:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent; /* For some Androids */ 
}

body {
	/*font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;*/
	font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
	font-size: 12px;
	color: #676a6c;
	/*background-color: #466d8a;*/
	margin: 0;
}

html,body {
	height: 100%;
	overflow-x: hidden;
}

body.global-move {
	user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
}

body.modal-show {
	overflow: hidden;
}

body.dialog-show {
	overflow: hidden;
}

factory:focus {
	outline: none;
}

factory > .loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0;
	z-index:998;
}

factory > .loadinghint {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 300px;
	text-align: center;
	padding: 15px 0;
	border: 1px solid #1c84c6;
	background-color: white;
	z-index:999;
	transform: translateX(-50%) translateY(-50%);
}

layout,multi-layout,page-layout {
	display: block;
	outline: none;
	user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

page-layout {
	width: 100%;
	height: 100%;
	overflow: auto;
}

layout:after,multi-layout:after,page-layout:after,uniquery:after {
	content:"";
	clear:both;
	display: block;
}

input[type="checkbox"] {
	/*visibility: hidden;*/
	font-size: 13px;
	width: 12px;
	height: 12px;
	margin: 0;
	font: normal normal normal 13px/1 FontAwesome;
}

input[type="checkbox"]::after {
	content: "";
	width: 15px;
	height: 15px;
	background-color: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 3px;
	display: inline-block;
	visibility: visible;
	margin-top: -1px;
	margin-left: -1px;
}

input[type="checkbox"]:checked::after {
	font: normal normal normal 13px/1 FontAwesome;
	/*width: 15px;
	height: 15px;*/
	content: "\f00c";
	color: #006936;
	font-size: 13px;
	/*border: 1px solid #e2e2e2;
	border-radius: 3px;*/
}

input[type="radio"] {
	visibility: hidden;
	font-size: 13px;
	width: 12px;
	height: 12px;
	margin: 0;
	font: normal normal normal 13px/1 FontAwesome;
}

input[type="radio"]::after {
	content: "";
	width: 13px;
	height: 13px;
	background-color: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 6px;
	display: inline-block;
	visibility: visible;
}

input[type="radio"]:checked::after {
	font: normal normal normal 13px/1 FontAwesome;
	/*width: 6px;
	height: 6px;*/
	width: 13px;
	height: 13px;
	content: "\f00c";
	color: #006936;
	font-size: 12px;
}

.block {
	display: block;
}
.clear {
	display: block;
	overflow: hidden;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 100;
}
h1 {
	font-size: 30px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 10px;
}
h3,h4,h5 {
	margin-top: 5px;
	font-weight: 600;
}

img {
	outline-width: 0px;
	vertical-align: top;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

li {
	display: block;
}

a {
	cursor: pointer;
	text-decoration: none;
}

a:hover,a:focus {
	text-decoration: none;
}

span {
	cursor: default;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none; 
    margin: 0; 
}
input::-webkit-contacts-auto-fill-button {
	visibility: hidden;
	display: none !important;
	pointer-events: none;
	position: absolute;
	right: 0;
}

input {
    -moz-appearance:textfield;
}

input.required::-webkit-input-placeholder {
	color: #ed5565;
}

input.required::-moz-placeholder {
	color: #ed5565;
}

input.required:-moz-placeholder {
	color: #ed5565;
}

input.required:-ms-input-placeholder {
	color: #ed5565;
}

combo.required > input::-webkit-input-placeholder {
	color: #ed5565;
}

combo.required > input::-moz-placeholder {
	color: #ed5565;
}

combo.required > input:-moz-placeholder {
	color: #ed5565;
}

combo.required > input:-ms-input-placeholder {
	color: #ed5565;
}

textarea:focus {
	border-color: #1a7bb9;
	outline: 0;
}

textarea:disabled, textarea:read-only {
	background-color: #f6f6f6;
}

.font-bold {
	font-weight: 600;
}

.font-normal {
	font-weight: 400;
}

.text-uppercase {
	text-transform: uppercase;
}

.font-italic {
	font-style: italic;
}

.collapse {
	display: none;
}
.collapse.in {
	display: block;
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-timing-function: ease;
         -o-transition-timing-function: ease;
            transition-timing-function: ease;
	-webkit-transition-duration: .35s;
         -o-transition-duration: .35s;
            transition-duration: .35s;
	-webkit-transition-property: height, visibility;
         -o-transition-property: height, visibility;
            transition-property: height, visibility;
}

/************mouse move panel************/
.mousemove-panel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	opacity: 0;
	z-index: 9999;
	user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none;
    cursor: default;
	overflow: hidden;
}

/************Grid 布局/Grid layout************/
.row:before {
	display: table;
	content: " ";
}
.row:after {
	display: table;
	content: " ";
	clear: both;
}

.row.rowbottom {
	border-bottom: 1px solid #f3f3f4;
}

@media (min-width: 1200px) {
	.row.billhead {
		width: 993px;
	}
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	float: left;
}
.col-1 {
	width: 8.33333333%;
}
.col-2 {
	width: 16.66666667%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.33333333%;
}
.col-5 {
	width: 41.66666667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33333333%;
}
.col-8 {
	width: 66.66666667%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.33333333%;
}
.col-11 {
	width: 91.66666667%;
}
.col-12 {
	width: 100%;
}

@media (min-width: 768px) {
	.col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12 {
		float: left;
	}
	.col-s-1 {
		width: 8.33333333%;
	}
	.col-s-2 {
		width: 16.66666667%;
	}
	.col-s-3 {
		width: 25%;
	}
	.col-s-4 {
		width: 33.33333333%;
	}
	.col-s-5 {
		width: 41.66666667%;
	}
	.col-s-6 {
		width: 50%;
	}
	.col-s-7 {
		width: 58.33333333%;
	}
	.col-s-8 {
		width: 66.66666667%;
	}
	.col-s-9 {
		width: 75%;
	}
	.col-s-10 {
		width: 83.33333333%;
	}
	.col-s-11 {
		width: 91.66666667%;
	}
	.col-s-12 {
		width: 100%;
	}
}

@media (min-width: 992px) {
	.col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12 {
		float: left;
	}
	.col-m-1 {
	    width: 8.33333333%;
	}
	.col-m-2 {
	    width: 16.66666667%;
	}
	.col-m-3 {
	    width: 25%;
	}
	.col-m-4 {
	    width: 33.33333333%;
	}
	.col-m-5 {
	    width: 41.66666667%;
	}
	.col-m-6 {
		width: 50%;
	}
	.col-m-7 {
		width: 58.33333333%;
	}
	.col-m-8 {
		width: 66.66666667%;
	}
	.col-m-9 {
		width: 75%;
	}
	.col-m-10 {
		width: 83.33333333%;
	}
	.col-m-11 {
		width: 91.66666667%;
	}
	.col-m-12 {
		width: 100%;
	}
}

@media (min-width: 1200px) {
	.col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
		float: left;
	}
	.col-l-1 {
		width: 8.33333333%;
	}
	.col-l-2 {
		width: 16.66666667%;
	}
	.col-l-3 {
		width: 25%;
	}
	.col-l-4 {
		width: 33.33333333%;
	}
	.col-l-5 {
		width: 41.66666667%;
	}
	.col-l-6 {
		width: 50%;
	}
	.col-l-7 {
		width: 58.33333333%;
	}
	.col-l-8 {
		width: 66.66666667%;
	}
	.col-l-9 {
		width: 75%;
	}
	.col-l-10 {
		width: 83.33333333%;
	}
	.col-l-11 {
		width: 91.66666667%;
	}
	.col-l-12 {
		width: 100%;
	}
	.col-l-3-50 {
		width: 12.5%;
	}
}
/************Tab************/
.tab layout {
	position: relative;
	float: left;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	min-width: 80px;
	text-align: center;
	margin-top: 2px;
	margin-left: 5px;
	background-color: #f2f2f2;
	cursor: pointer;
}
.tab layout.active {
	background-color: #1c84c6;
	color: white;
}
.tab layout li {
	padding: 9px 20px 9px 20px;
	min-height: 35px;
}
.tab layout span {
	position: absolute;
	left: 100%;
	top: 5px;
	margin-left: -20px;
}
.tab layout i {
	position: absolute;
	left: 100%;
	top: 2px;
	margin-left: -16px;
	font-size: 8px;
	padding: 3px;
	display: none;
	/*transition: all 0.2s;*/
	cursor: default;
}
.tab layout:not(.active):hover {
	 /*background-color: #ccc;*/
}
.tab layout:hover i {
	display: block;
}
.tab layout i:hover {
	background-color: #e2e2e2;
	border-radius: 2px;
}
/************程序标题/app title************/
/*.apptitle {
	min-height: 69px;
}

.apptitle .appname {
	float: left
	;display: block;
	font-size: 24px;
	color: #676a6c;
	font-weight: 600;
	padding: 17px 15px;
	cursor: default;
}

@media (max-width: 992px) {
	.apptitle .appname {
		padding-left: 5px;
	}
}

.apptitle .user-panel {
	float:right;
}

.apptitle .user-panel .usericon {
	float:left;
	width: 41px;
	height: 41px;
	margin:14px 0px;
	border-radius: 25px;
}

.apptitle .user-panel ul {
	float: left;
	padding: 16px 10px;
	display: block;
	cursor: default;
}

.apptitle .user-panel .msg-panel {
	float:left;
	display:block;
	position:relative;
	cursor: pointer;
}

.apptitle .user-panel .msg-panel i {
	float:left;
	padding:28px 10px;
}

.apptitle .user-panel .msg-panel span {
	display:block;
	position:absolute;
	top:15px;
	right:0px;
	margin-right:-1px;
	padding: 2px 5px;
	border-radius:0.25em;
	background-color:#f8ac58;
	color:#ffffff;
	line-height:12px;
	font-size:10px;
	font-weight:600;
	text-shadow:none;
}

.apptitle .user-panel .applogout {
	float:left;
	display:block;
	padding:0px 20px 0px 20px;
	cursor: pointer;
}

.apptitle .user-panel .applogout i {
	padding:28px 3px 28px 0px;
}*/

/************页面标题/page head************/
.moduletitle {
	display: block;
	float: left;
	cursor: pointer;
	padding: 10px 10px;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
.moduletitle strong:nth-of-type(2) {
	padding: 0px 10px;
}
.pageclose {
	margin: 12px 2px;
}
.toolbar button {
	display: block;
	float: left;
	padding: 6px 10px;
	outline: 0;
	border: none;
	background-color: inherit;
	/*background-color: #1c84c6;*/
	font-size: 12px;
	margin: 2px 0px;
	border-radius: 2px;
	/*margin: 0px 10px 0px 0px;*/
	/*border-right: 1px solid #ccc;*/
	font-family: inherit;
	color: inherit;
	/*color: white;*/
}
.toolbar button.disable {
	color: #ccc;
}
.toolbar button span {
	margin-left: 3px;
}
.toolbar button:not(.disable):hover {
	background-color: #1c84c6;
	color: white;
}
.toolbar button:not(.disable):active {
	transform: translateX(1px) translateY(1px);
}

/************页面标题/page header************/
/*.pagehead {
	position: relative;
	margin-top: 1px;
	min-height: 38px;
	outline: 0;
}

.pagehead .pagetext {
	display: block;
	float: left;
	padding: 10px 10px;
	cursor: pointer;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .pagesplit {
	display: block;
	float: left;
	padding: 10px 1px;
	cursor: pointer;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .pageclose {
	margin: 13px 10px 13px 5px;
}

.pagehead .sheetsplit {
	display: block;
	float:left;
	padding: 10px 1px;
}

.pagehead .sheetlist {
	display: block;
	float: left;
	min-width:90px;
	padding: 10px 5px;
	text-align:center;
	cursor:pointer;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .sheetlist.active {
	background-color:#f3f3f4;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	font-weight:600;
}

.pagehead .sheets li {
	display: block;
	position: relative;
	float: left;
	min-width:90px;
	padding: 10px 25px 10px 10px;
	cursor: pointer;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .sheets span {
	display: block;
	float:left;
	padding: 10px 1px;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .sheets li i {
	position: absolute;
	top: 4px;
	right: 6px;
	font-size: 10px;
	color: #a9a9a9;
}

.pagehead .sheets li.active {
	background-color:#f3f3f4;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	font-weight:600;
}

.pagehead .sheets li.active i {
	color: gray;
}

.pagehead .pagelist {
	display: none;
	position: absolute;
	top: 42px;
	left: 10px;
	background-color: #ffffff;
	box-shadow: 0 0 3px rgba(86, 96, 117, 0.7);
	border: medium none;
    border-radius: 3px;
    z-index: 2001;
}

.pagehead .pagelist li, .pagehead .pagelist span {
	display: block;
	min-width: 160px;
	margin: 4px;
	line-height: 25px;
	padding: 3px 15px;
	cursor: default;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.pagehead .pagelist li:hover, .pagehead .pagelist span:hover {
	background-color: #f5f5f5;
	color: #262626;
}

.pagehead .pagelist b {
	display: block;
	margin: 4px 0px;
	height: 1px;
    background-color: #e5e5e5;
    overflow: hidden;
}*/

/************简单菜单/simple menu************/
[dtype="SimpleMenu"] ul {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
[dtype="SimpleMenu"] a {
	cursor: default;
}
[dtype="SimpleMenu"] li > a {
	display: block;
	padding: 8px 10px 8px 10px;
}
[dtype="SimpleMenu"] li > a:hover, [dtype="SimpleMenu"] dd > a:hover {
	background-color: #466d8a;
	color: white;
}
[dtype="SimpleMenu"] li > a > i:first-of-type {
	margin-right: 4px;
}
[dtype="SimpleMenu"] .expand {
	float: right;
}
[dtype="SimpleMenu"] .expand:before {
	content: "\f104";
}
[dtype="SimpleMenu"] li.active .expand:before{
	content: "\f107";
}
[dtype="SimpleMenu"] dl {
	margin: 0px;
	display: none;
}
[dtype="SimpleMenu"] li.active dl{
	display: block;
}
[dtype="SimpleMenu"] dd {
	margin: 0px;
}
[dtype="SimpleMenu"] dd > a {
	display: block;
	padding: 7px 10px 7px 47px;
}
[dtype="SimpleMenu"] li > a:active, [dtype="SimpleMenu"] dd > a:active {
	transform: translateX(1px) translateY(1px);
}

/************弹出菜单/popup menu************/
[dtype="PopupMenu"] {
	outline: 0;
}
[dtype="PopupMenu"] li {
	display: block;
	min-width: 160px;
	max-width: 300px;
	margin: 4px;
	line-height: 25px;
	padding: 3px 37px 3px 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	overflow: hidden;
	cursor: default;
	-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
[dtype="PopupMenu"] b {
	display: block;
	margin: 4px 0px;
	height: 1px;
    background-color: #e5e5e5;
    overflow: hidden;
}
[dtype="PopupMenu"] li:hover {
	background-color: #f5f5f5;
	color: #262626;
}
[dtype="PopupMenu"] li > i {
	position: absolute;
	right: 10px;
	line-height: 25px;
}
[dtype="PopupMenu"] li:not(.sel) > i {
	display: none;
}

/************树状列表/tree veiw************/
tree {
	display: block;
	cursor: default;
}
tree li {
	display: block;
}
tree a {
	display: block;
	padding: 8px;
	cursor: default;
}
tree li ul {
	padding: 0px 20px;
}
tree a>i:nth-of-type(1) {
	min-width: 8px;
	margin-right: 8px;
}
tree a>i:nth-of-type(2) {
	margin-right: 8px;
	color: #0099ff;
	font-size: 14px;
	/*padding: 1px;*/
	/*border-radius: 3px;*/
	display: none;
}
tree.showcheck a>i:nth-of-type(2) {
	display: inline-block;
}
tree a>i:nth-of-type(3) {
	margin-right: 8px;
	/*color: #1ab394;*/
	color: #0099ff;
	font-size: 14px;
	display: none;
}
tree a>i:nth-of-type(3).show {
	display: inline-block;
}
tree a>i:nth-of-type(4) {
	margin-right: 4px;
}
/************分组列表/group veiw************/
groupview > layout {
	/*margin: 0px 2px;*/
	border: 1px solid #e2e2e2;
	border-top: none;
}
groupview > layout > span {
	padding: 8px;
	background-color: #f6f6f6;
	border-bottom: 1px solid #e2e2e2;
	display: block;
	font-weight: bold;
}
groupview > layout > span > i {
	margin-right: 6px;
}
groupview > layout > layout {
	float: left;
	text-align: center;
	padding: 8px 4px 0px 4px;
}
groupview > layout > layout > i {
	display: block;
	padding: 4px 0px;
	color: #0099ff;
}
groupview > layout > layout > span {
	display: block;
	height: 34px;
}

/************通用查询/universal query************/
.layout-uniquery {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	/*overflow: hidden;*/
}
.layout-uniquery > .searchmode {
	display: block;
	float: left;
	padding: 10px 6px;
}
.layout-uniquery > .searchlogic {
	display: block;
	float: right;
	padding: 10px 6px;
}
.layout-uniquery .layout-simple,
.layout-uniquery .layout-adv {
	position: absolute;
	top: 37px;
	left: 0;
	right: 0;
	bottom: 40px;
	border-top: 1px solid #e2e2e2;
}
.layout-uniquery .layout-simple {
	padding: 10px 10px;
}
.layout-uniquery .layout-button {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 40px;
}
.layout-uniquery .layout-simple .field {
	padding: 5px 5px 5px 105px;
	max-height: 40px;
}
.layout-uniquery .layout-simple .field > span {
	position: absolute;
	margin-left: -100px;
	line-height: 30px;
	width: 100px;
	display: block;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.layout-uniquery .layout-simple .field > input {
	width: 100%;
}
.layout-uniquery .layout-condition {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 40px;
}
.layout-uniquery .layout-condition .layout-left {
	/*width: 50%;
	height: 100%;*/
	position: absolute;
	left: 0px;
	top: 0px;
	right: 50%;
	bottom: 0px;
	/*margin-right: 1px;*/
	border-right: 1px solid #ccc;
	overflow: hidden;
}
.layout-uniquery .layout-condition .layout-right {
	/*width: 50%;
	height: 100%;*/
	position: absolute;
	left: 50%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	/*margin-left: 1px;
	border-left: 1px solid #ccc;*/
	overflow: hidden;
}
.layout-uniquery .layout-condition radio-group {
	display: block;
	float: right;
	padding: 6px 6px;
}
.layout-uniquery .layout-condition .layout-fields {
	position: absolute;
	top: 30px;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 0 4px 4px 4px;
	overflow-y: auto;
}
.layout-uniquery .layout-condition .field {
	width: 100%;
	height: 40px;
	border-left:  1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding-left: 185px;
	padding-right: 34px;
	position: relative;
}
.layout-uniquery .layout-condition .field > span {
	width: 100px;
	text-align: center;
	margin-left: -185px;
	float: left;
}
.layout-uniquery .layout-condition .field > input {
	width: 100%;
	/*margin: 4px 0px;*/
	float: left;
}
.layout-uniquery .layout-condition .field > combo:nth-of-type(1) {
	position: absolute;
	/*top: 4px;*/
	width: 80px;
	margin-left: -85px;
}
.layout-uniquery .layout-condition .field > combo:nth-of-type(2) {
	/*top: 4px;*/
	width: 100%;
	height: 30px;
}
.layout-uniquery .layout-condition .field .add,.layout-uniquery .field .del {
	position: absolute;
	top: 0px;
	left: 100%;
	width: 30px;
	height: 100%;
	margin-left: -30px;
}
.layout-uniquery .layout-condition .add > i {
	margin: 13px 11px;
}
.layout-uniquery .layout-condition .field .add:hover i {
	color: #1c84c6;
}
.layout-uniquery .layout-condition .field .add:active i,.layout-uniquery .field .del:active i {
	transform: translateX(1px) translateY(1px);
}
.layout-uniquery .layout-condition .del > i {
	margin: 11px 8px;
	font-size: 16px;
}
.layout-uniquery .layout-condition .field .del:hover i {
	color: red;
}
.layout-uniquery .layout-adv .layout-left {
	/*width: 50%;
	height: 100%;*/
	position: absolute;
	left: 0px;
	top: 0px;
	right: 50%;
	bottom: 0px;
	/*margin-right: 1px;*/
	border-right: 1px solid #ccc;
	overflow: hidden;
}
.layout-uniquery .layout-adv .layout-right {
	/*width: 50%;
	height: 100%;*/
	position: absolute;
	left: 50%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	/*margin-left: 1px;
	border-left: 1px solid #ccc;*/
	overflow: hidden;
}
.layout-uniquery .layout-condition-title {
	border-bottom: 1px solid #ccc;
	
}
.layout-uniquery .layout-condition-title span {
	margin:6px 10px;
	float: left;
}
.layout-uniquery .layout-adv radio-group {
	float: right;
	padding: 6px 6px 6px 0px;
}
.layout-uniquery .layout-adv .layout-fields {
	position: absolute;
	top: 30px;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 0 4px 4px 4px;
	overflow-y: auto;
}
/*.layout-uniquery .layout-adv .layout-fields .field:first-of-type {
	border-top: 1px solid #ccc;
}*/
.layout-uniquery .layout-adv .field {
	width: 100%;
	height: 40px;
	/*border-left:  1px solid #ccc;
	border-right: 1px solid #ccc;*/
	border-bottom: 1px solid #ccc;
	padding-left: 185px;
	padding-right: 34px;
	position: relative;
}
.layout-uniquery .layout-adv .field > span {
	width: 100px;
	text-align: center;
	margin-left: -185px;
	/*margin: 10px 0px 10px -185px;*/
	float: left;
}
.layout-uniquery .layout-adv .field > input {
	width: 100%;
	/*margin: 4px 0px;*/
	float: left;
}
.layout-uniquery .layout-adv .field > combo:nth-of-type(1) {
	position: absolute;
	/*top: 4px;*/
	width: 80px;
	margin-left: -85px;
}
.layout-uniquery .layout-adv .field > combo:nth-of-type(2) {
	/*top: 4px;*/
	width: 100%;
	height: 30px;
}
.layout-uniquery .layout-adv .field .add,.layout-uniquery .field .del {
	position: absolute;
	top: 0px;
	left: 100%;
	width: 30px;
	height: 100%;
	margin-left: -30px;
}
.layout-uniquery .layout-adv .add > i {
	margin: 13px 11px;
}
.layout-uniquery .layout-adv .field .add:hover i {
	color: #1c84c6;
}
.layout-uniquery .layout-adv .field .add:active i,.layout-uniquery .field .del:active i {
	transform: translateX(1px) translateY(1px);
}
.layout-uniquery .layout-adv .del > i {
	margin: 11px 8px;
	font-size: 16px;
}
.layout-uniquery .layout-adv .field .del:hover i {
	color: red;
}
.layout-uniquery .layout-button {
	border-top: 1px solid #e2e2e2;
	background-color: #f5f5f5;
}
.layout-uniquery .layout-button .layout-left {
	float: left;
	margin-left: 4px;
}
.layout-uniquery .layout-button .layout-right {
	float: right;
	margin-right: 4px;
}
.layout-uniquery .layout-button button {
	margin: 4px;
}
.layout-uniquery .layout-button .layout-right button {
	padding-left: 16px;
	padding-right: 16px;
}
/************按钮/button************/
/*标准按钮*/
.btn {
	display: inline-block;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	text-transform: none;
	overflow: visible;
	-webkit-appearance: button;
	border-radius: 3px;
}

.btn:active {
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
	transform: translateX(1px) translateY(1px);
}

.btn:focus {
	outline: none !important;
	/*outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;*/
}

.btn:active:focus {
	/*outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;*/
}

/*.btn i {
	margin-right:5px;
}*/

/*大号按钮*/
.btn-lg {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
}

/*小号按钮*/
.btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
}

/*超小号按钮*/
.btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
}

/*标准圆形按钮*/
.btn-circle {
	width: 30px;
	height: 30px;
	padding: 6px 0;
	border-radius: 15px;
	text-align: center;
	font-size: 12px;
	line-height: 1.428571429
}

/*大号圆形按钮*/
.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	border-radius: 25px;
	font-size: 18px;
	line-height: 1.33
}

/*圆角矩形按钮*/
.btn-rounded {
	border-radius: 50px;
}

/*中等最小宽度按钮*/
.btn.middle-width {
	min-width: 120px;
}

.btn.default {
	background-color: white;
	border-color: #e7eaec;
	color: inherit;
}

.btn.default:hover,.btn.default:focus {
	background-color: #e6e6e6;
	border-color: #d2d2d2;
}

.btn.default:active {
	background-color: #d4d4d4;
}

.btn.green {
	background-color: #1ab394;
	border-color: #1ab394;
	color: #ffffff;
}

.btn.green:hover,.btn.green:focus {
	background-color: #18a689;
	border-color: #18a689;
	color: #ffffff;
}

.btn.blue {
	background-color: #1c84c6;
	border-color: #1c84c6;
	color: #ffffff;
}

.btn.blue:hover,.btn.blue:focus {
	background-color: #1a7bb9;
	border-color: #1a7bb9;
}

.btn.cyan {
	background-color: #23c6c8;
	border-color: #23c6c8;
	color: #ffffff;
}

.btn.cyan:hover,.btn.cyan:focus {
	background-color: #21b9bb;
	border-color: #21b9bb;
}

.btn.orange {
	background-color: #f8ac58;
	border-color: #f8ac58;
	color: #ffffff;
}

.btn.orange:hover,.btn.orange:focus{
	background-color: #f7a54a;
	border-color: #f7a54a;
}

.btn.red {
	background-color: #ed5565;
	border-color: #ed5565;
	color: #ffffff;
}

.btn.red:hover,.btn.red:focus {
	background-color: #ec4758;
	border-color: #ec4758;
}

.btn.hred {
	background-color: red;
	border-color: red;
	color: #ffffff;
}

.btn.hred:hover,.btn.hred:focus {
	background-color: red;
	border-color: red;
}

.btn.hblue {
	background-color: #0099ff;
	border-color: #0099ff;
	color: #ffffff;
}

.btn.hblue:hover,.btn.hblue:focus {
	background-color: #0099ff;
	border-color: #0099ff;
}

.btn.btn-outline {
	background-color: transparent;
	transition: all .5s;
}

.btn.green.btn-outline {
	color: #1ab394;
}

.btn.blue.btn-outline {
	color: #1c84c6;
}

.btn.cyan.btn-outline {
	color: #21b9bb;
}

.btn.orange.btn-outline {
	color: #f7a54a;
}

.btn.red.btn-outline {
	color: #ed5565;
}

.btn.hred.btn-outline {
	color: red;
}
.btn.hblue.btn-outline {
	color: #0099ff;
}

.btn.green.btn-outline:hover, .btn.blue.btn-outline:hover, .btn.cyan.btn-outline:hover, .btn.orange.btn-outline:hover, .btn.red.btn-outline:hover, .btn.hred.btn-outline:hover, .btn.hblue.btn-outline:hover {
    color: #fff;
}

/*开关按钮*/
.switch {
	border: 1px solid #dfdfdf;
	border-radius: 20px;
	cursor: pointer;
	vertical-align: middle;
	position: relative;
	display: block;
	float: left;
	background-color: #ffffff;
    border-color: #dfdfdf;
    box-shadow: #dfdfdf 0px 0px 0px 0px inset;
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 0.4s ease 0s;
}

.switch small {
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    transition: left 0.2s ease 0s;
}

.switch.xs {
	height: 12px;
	width: 25px;
}

.switch.xs small {
	height: 10px;
	width: 10px;
	left: 10px;
	margin-left: -10px;
}

.switch.sm {
	height: 15px;
	width: 32px;
}

.switch.sm small {
	height: 13px;
	width: 13px;
	left: 13px;
	margin-left: -13px;
}

.switch.md {
	height: 20px;
	width: 44px;
}

.switch.md small {
	height: 18px;
	width: 18px;
	left: 18px;
	margin-left: -18px;
}

.switch.lg {
	height: 25px;
	width: 55px;
}

.switch.lg small {
	height: 23px;
	width: 23px;
	left: 23px;
	margin-left: -23px;
}

.switch.short.xs {
	height: 12px;
	width: 19px;
}

.switch.short.sm {
	height: 15px;
	width: 24px;
}

.switch.short.md {
	height: 20px;
	width: 32px;
}

.switch.short.lg {
	height: 25px;
	width: 40px;
}

/*.switch.on {
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}*/

.switch.on small {
	left: 100%;
	/*transition: background-color 0.4s ease 0s, left 0.2s ease 0s;*/
    background-color: #ffffff;
}

.switch.green1.on {
	background-color: #1ab394;
	border-color: #1ab394;
	box-shadow: #1ab394 0px 0px 0px 16px inset;
}

.switch.green.on {
	background-color: #1c84c6;
	border-color: #1c84c6;
	box-shadow: #1c84c6 0px 0px 0px 16px inset;
}

.switch.blue.on {
	background-color: #1c84c6;
	border-color: #1c84c6;
	box-shadow: #1c84c6 0px 0px 0px 16px inset;
}

.switch.red.on {
	background-color: #ed5565;
	border-color: #ed5565;
	box-shadow: #ed5565 0px 0px 0px 16px inset;
}

.switch.cyan.on {
	background-color: #23c6c8;
	border-color: #23c6c8;
	box-shadow: #23c6c8 0px 0px 0px 16px inset;
}

.switch.orange.on {
	background-color: #f8ac58;
	border-color: #f8ac58;
	box-shadow: #f8ac58 0px 0px 0px 16px inset;
}

.flip {
	position: relative;
	display: block;
	cursor: pointer;
	border: 1px solid #dfdfdf;
	border-radius: 3px;
	overflow: hidden;
	transition: border 0.3s ease 0s;
}

.flip.one {
	width: 42px;
}

.flip.two {
	width: 56px;
}

.flip .text {
	width: 200%;
	display: inline-block;
	margin-left: -100%;
	transition: margin 0.3s ease-in 0s;
}

.flip i {
	width: 50%;
	display: inline-block;
    color: #ffffff;
    padding-right: 18px;
    font-style: normal;
    text-align: center;
}

.flip b {
	width: 50%;
	display: inline-block;
	background-color: #ffffff;
    color: #919191;
    padding-left: 18px;
    font-weight: normal;
    text-align: center;
}

.flip .press {
	display: block;
	width: 18px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18px;
	margin-left: -17px;
	background: #ffffff;
	border-right: 1px solid #dfdfdf;
	border-radius: 2px;
    transition: left 0.3s ease-in 0s;
}

.flip.on .text {
	margin-left: 0;
}

.flip.on .press {
	left: 100%;
}

.flip.green.on {
	border: 1px solid #1ab394;
}

.flip.green i {
	background-color: #1ab394;
}

.flip.blue.on {
	border: 1px solid #1ab394;
}

.flip.blue i {
	background-color: #1c84c6;
}

.flip.red.on {
	border: 1px solid #ed5565;
}

.flip.red i {
	background-color: #ed5565;
}

.flip.cyan.on {
	border: 1px solid #23c6c8;
}

.flip.cyan i {
	background-color: #23c6c8;
}

.flip.orange.on {
	border: 1px solid #f8ac58;
}

.flip.orange i {
	background-color: #f8ac58;
}

/*输入框*/
.edt {
	background-color: #ffffff;
	border: 1px solid #e5e6e7;
	border-radius: 2px;
	padding: 5px 5px;
	height: 30px;
	font-size: 12px;
	line-height: 1.42857143;
	outline: 0;
	display: block;
	font: inherit;
	font-size: inherit;
	/*float: left;*/
	/*transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s, ease-in-out 0s;*/
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

.edt:focus {
	border-color: #1a7bb9;
}

.edt:disabled, .edt:read-only {
	background-color: #f6f6f6;
}

.edt-num::-webkit-outer-spin-button, .edt-num::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

range {
	display: block;
	position: relative;
	width: 100%;
	padding-left: 30px;
}
range:after {
	content:"";
	clear:both;
	display: block;
}
range > input {
	float: left;
	width: 50%;
}
range > input:first-of-type {
	margin-left: -30px;
}
range > span {
	background-color: transparent;
	display: block;
	float: left;
	width: 30px;
	padding: 5px 0;
	text-align: center;
}

/*下拉输入框*/
combo {
	width: 100%;
	vertical-align: middle;
	/*display: inline-block;*/
	position: relative;
	outline: 0;
	display: block;
}
combo:after {
	content:"";
	clear:both;
	display: block;
}

/*combo > span {
	background-color: #ffffff;
	border: 1px solid #e5e6e7;
	border-radius: 2px;
	width: 100%;
	min-height: 30px;
	padding: 4px 26px 4px 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}*/

combo > input {
	border: 1px solid #e5e6e7;
	border-radius: 2px;
	height: 30px;
	width: 100%;
	outline: 0;
	padding: 0px 26px 0px 6px;
	font: inherit;
	font-size: inherit;
	display: block;
}

combo > i {
	background: url(../img/combo.png) no-repeat 0 7px;
	display: block;
	width: 18px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

combo.daterange {
	padding-left: 30px;
	border: 1px solid #e5e6e7;
	height: 30px;
}

combo.daterange > input {
	float: left;
	width: 50%;
	height: 28px;
	border: none;
}

combo.daterange > input:focus {
	border: none;
}

combo.daterange.active > input {
	border: none;
}

combo.daterange.active {
	border: 1px solid #006936;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

combo.daterange > input:first-of-type {
	margin-left: -30px;
	padding-right: 6px;
	text-align: right;
}

combo.daterange > span {
	background-color: transparent;
	display: block;
	float: left;
	width: 30px;
	padding: 5px 0;
	text-align: center;
}

combo > input:disabled {
	background-color: #f6f6f6;
}

combo > input:disabled +i {
	display: none;
}

.combolist {
	position: absolute;
	max-height: 271px;
	background-color: #ffffff;
	z-index: 4000;
	display: block;
	border: 1px solid #ccc;
	/*border: 1px solid #1a7bb9;*/
	/*border-top: none;*/
	overflow-x: hidden;
	overflow-y: auto;
	min-height: 30px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
table.combolist {
	table-layout: fixed;
	/*border-collapse: collapse;*/
	display: table;
}
.combolist table {
	/*table-layout: fixed;
	display: table;*/
	width: 100%;
}
.combolist > li {
	cursor: pointer;
	line-height: 1.42857;
	list-style: none;
	padding: 5px 5px;
}
.combolist > li em {
	cursor: pointer;
	line-height: 1.42857;
	list-style: none;
	padding: 2px 0px;
	font-style: normal;
	/*background-color: #efefef;
	color: #0479fd;*/
	background-color: yellow;
}
.combolist .highlight {
	background-color: #1c84c6;
	color: #ffffff;
}
.combolist .highlight em {
	background-color: #1c84c6;
	color: yellow;
}
.combolist td {
	line-height: 27px;
	white-space: nowrap;
	overflow: hidden;
	word-break: break-all;
	text-overflow: ellipsis;
	display: inline-block;
	padding: 0px 4px;
	cursor: default;
}
.combolist td em {
	background-color: yellow;
}


/*combo > ul {
	position: absolute;
	top:100%;
	width: 100%;
	max-height: 240px;
	background-color: #ffffff;
	z-index: 2003;
	display: none;
	border: 1px solid #e5e6e7;
	margin-top: -1px;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0px 1px;
}*/

/*combo > ul > li {
	cursor: pointer;
	line-height: 1.42857;
	list-style: none;
	padding: 5px 5px;
}*/

/*combo > ul > li em {
	cursor: pointer;
	line-height: 1.42857;
	list-style: none;
	padding: 2px 0px;
	font-style: normal;
	background-color: yellow;
}*/

combo.active > input {
	border: 1px solid #1a7bb9;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	transition: border linear 0.2s, box-shadow linear 0.2s;
}

combo > input:focus {
	border: 1px solid #1a7bb9;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	transition: border linear 0.2s, box-shadow linear 0.2s;
	outline: 0;
}

combo > input:focus + i {
	background-position: 0 -13px;
}

combo.active > i {
	background-position: -18px -13px !important;
}

/*combo.active > ul {
	display: block;
}

combo > ul .highlight {
	background-color: #1c84c6;
	color: #ffffff;
}

combo > ul .highlight em {
	background-color: #1c84c6;
	color: yellow;
}*/

/*单选输入框*/
radio-group {
	outline: 0;
	display: block;
}
radio-group:after {
	content:"";
	clear:both;
	display: block;
}
radio-group item {
	display: block;
	float: left;
	margin: 0px 3px;
}
radio-group i {
	width: 13px;
	height: 13px;
	display: block;
	float: left;
	border: 1px solid #cccccc;
	border-radius: 50%;
	padding: 3px;
	margin: 2px 3px;
}
radio-group b {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
radio-group.animate i {
	transition: border 0.15s ease-in-out;
}
radio-group.animate b {
	transition: background-color 0.15s ease-in-out;
}
radio-group.green .check i {
	border: 1px solid #1ab394;
}
radio-group.green .check b {
	background-color: #1ab394;
}
radio-group.blue .check i {
	border: 1px solid #1c84c6;
}
radio-group.blue .check b {
	background-color: #1c84c6;
}
radio-group.red .check i {
	border: 1px solid #ed5565;
}
radio-group.red .check b {
	background-color: #ed5565;
}
radio-group.cyan .check i {
	border: 1px solid #23c6c8;
}
radio-group.cyan .check b {
	background-color: #23c6c8;
}
radio-group.orange .check i {
	border: 1px solid #f8ac58;
}
radio-group.orange .check b {
	background-color: #f8ac58;
}
radio-group.hred .check i {
	border: 1px solid red;
}
radio-group.hred .check b {
	background-color: red;
}
radio-group.hblue .check i {
	border: 1px solid #0099ff;
}
radio-group.hblue .check b {
	background-color: #0099ff;
}
radio-group.gray .check i {
	border: 1px solid #cccccc;
}
radio-group.gray .check b {
	background-color: #555555;
}

.radio {
	outline: 0;
}
.radio span {
	display: inline-block;
	position: relative;
	padding: 2px 10px 2px 20px;
}

.radio i {
	width: 13px;
	height: 13px;
	display: block;
	border: 1px solid #cccccc;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}

.radio b {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}

.radio.default i {
	padding: 3px;
	transition: border 0.15s ease-in-out;
}

.radio.default b {
	transition: background-color 0.15s ease-in-out;
}

.radio.solid i {
	padding: 4px;
	transition: background-color 0.15s ease-in-out;
}

.radio.solid b {
	background-color: #ffffff;
}

.radio.default.green .check i {
	border: 1px solid #1ab394;
}

.radio.default.green .check b {
	background-color: #1ab394;
}

.radio.solid.green .check i {
	background-color: #1ab394;
	border: none;
}

.radio.default.blue .check i {
	border: 1px solid #1c84c6;
}

.radio.default.blue .check b {
	background-color: #1c84c6;
}

.radio.solid.blue .check i {
	background-color: #1c84c6;
	border: none;
}

.radio.default.red .check i {
	border: 1px solid #ed5565;
}

.radio.default.red .check b {
	background-color: #ed5565;
}

.radio.solid.red .check i {
	background-color: #ed5565;
	border: none;
}

.radio.default.cyan .check i {
	border: 1px solid #23c6c8;
}

.radio.default.cyan .check b {
	background-color: #23c6c8;
}

.radio.solid.cyan .check i {
	background-color: #23c6c8;
	border: none;
}

.radio.default.orange .check i {
	border: 1px solid #f8ac58;
}

.radio.default.orange .check b {
	background-color: #f8ac58;
}

.radio.solid.orange .check i {
	background-color: #f8ac58;
	border: none;
}

.radio.default.hred .check i {
	border: 1px solid red;
}

.radio.default.hred .check b {
	background-color: red;
}

.radio.solid.hred .check i {
	background-color: red;
	border: none;
}

.radio.default.hblue .check i {
	border: 1px solid #0099ff;
}

.radio.default.hblue .check b {
	background-color: #0099ff;
}

.radio.solid.hblue .check i {
	background-color: #0099ff;
	border: none;
}

.radio.default.gray .check i {
	border: 1px solid #cccccc;
}

.radio.default.gray .check b {
	background-color: #555555;
}

.radio.solid.gray .check i {
	background-color: #555555;
	border: none;
}

/*复选输入框*/
.checkbox {
	cursor: default;
	vertical-align: middle;
	position: relative;
	display: block;
	float: left;
	background-color: #ffffff;
}

.checkbox.thick {
	padding: 2px 10px 2px 20px;
}

.checkbox.thin {
	padding: 2px 10px 2px 17px;
}

.checkbox i {
	color: white;
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	position: absolute;
	left:0;
	transition: background-color 0.1s ease 0s;
}

.checkbox.thick i {
	padding: 1px;
	top: 3px;
}

.checkbox.thin i {
	width: 12px;
	height: 12px;
	top: 5px;	
}

.checkbox.circle i {
	border-radius: 50%;
}

.checkbox.thin.check i {
	background: url(../img/check.png) no-repeat 2px 3px;
}

.checkbox.default.check i {
	background-color: #efefef;
	color: #636363;
}

.checkbox.green.check i {
	background-color: #1ab394;
	border-color: #1ab394;
}

.checkbox.blue.check i {
	background-color: #1c84c6;
	border-color: #1c84c6;
}

.checkbox.red.check i {
	background-color: #ed5565;
	border-color: #ed5565;
}

.checkbox.cyan.check i {
	background-color: #23c6c8;
	border-color: #23c6c8;
}

.checkbox.orange.check i {
	background-color: #f8ac58;
	border: none;
}

.checkbox.hred.check i {
	background-color: red;
	border-color: red;
}

.checkbox.hblue.check i {
	background-color: #0099ff;
	border-color: #0099ff;
}

.checkbox.gray.check i {
	background-color: #555555;
	border-color: #555555;
}

/*日期输入框*/
.combodate {
	position: relative;
	padding-left: 38px;
}

.combodate i {
	position: absolute;
	left: 0;
	top: 0;
	width: 38px;
	height: 30px;
	border: 1px solid #e5e6e7;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	border-right: 0;
}

.combodate input {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.combodate input:focus {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

/*日期范围输入框*/
/*.daterange {
	position: relative;
	padding-left: 30px;
}

.daterange.ic {
	padding-left: 68px;
}

.daterange input {
	float: left;
	width: 50%;
}

.daterange input:first-child {
	margin-left: -30px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.daterange input:first-child:focus {
	border-top-right-radius: 2px;
	border-bottom-right-radius: 2px;
}

.daterange.ic input:first-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.daterange.ic input:first-child:focus {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.daterange input:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.daterange input:last-child:focus {
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
}

.daterange i {
	position: absolute;
	left: 0;
	top: 0;
	width: 38px;
	height: 30px;
	border: 1px solid #e5e6e7;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	border-right: 0;
}

.daterange span {
	width: 25px;
	height: 30px;
	float: left;
	text-align: center;
	line-height: 30px;
	font-size: 13px;
	background-color: #eeeeee;
	border-top: 1px solid #e5e6e7;
	border-bottom: 1px solid #e5e6e7;
}*/

/*日历选择框*/
.datepicker {
	position:absolute;
	border:1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	min-width: 160px;
	background-color: #ffffff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	outline: 0;
	z-index: 4000;
}

.datepicker .days {
	width: 220px;
}

.datepicker .years, .datepicker .months {
	width: 205px;
}

.datepicker .pre, .datepicker .next {
	width:15%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-weight:bold;
	border-radius: 4px;
}

.datepicker .cur {
	width:70%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:bold;
	border-radius: 4px;
}

.datepicker .calendarlist {
	padding: 0px 5px;
}

.datepicker .weekday {
	padding: 0px 5px;
}

.datepicker .weekday label {
	width: 30px;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:bold;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.years .calendarlist span, .months .calendarlist span {
	width:22.94%;
	height:54px;
	line-height:54px;
	margin: 2px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 4px;
}

.months .calendarlist span {
	font-weight: bold;
}

.days .calendarlist span {
	width:30px;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 4px;
}

.days .calendarlist span.rel {
	color: #999999;
}

.datepicker .calendarlist span.sel {
	color: #ffffff;
	background-color: #3276b1;
	border-color: #285e8e;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	font-weight: bold;
}

.datepicker .calendarlist span.selopp {
	color: #ffffff;
	background-color: #999999;
	border-color: #555555;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	font-weight: bold;
}

.datepicker .calendarlist span.range {
	background-color: #eeeeee;
	border-radius: 0;
}

.datepicker .today {
	width: 100%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight:bold;
}

.datepicker span:hover {
	background-color: #eeeeee;
}

/*日期时间选择框*/
.datetimepicker {
	position:absolute;
	border:1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	min-width: 160px;
	background-color: #ffffff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	outline: 0;
	z-index: 4000;
}

.datetimepicker .date {
	float: left;
	border-right: 1px solid #e2e2e2;
}

.datetimepicker .time {
	position: relative;
	float: right;
	width: 200px;
	height: 270px;
}

.datetimepicker .days {
	width: 220px;
}

.datetimepicker .years, .datetimepicker .months {
	width: 205px;
}

.datetimepicker .pre, .datetimepicker .next {
	width:15%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-weight:bold;
	border-radius: 4px;
}

.datetimepicker .cur {
	width:70%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:bold;
	border-radius: 4px;
}

.datetimepicker .calendarlist {
	padding: 0px 5px;
}

.datetimepicker .weekday {
	padding: 0px 5px;
}

.datetimepicker .weekday label {
	width: 30px;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight:bold;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/*.years .calendarlist span, .months .calendarlist span {
	width:22.94%;
	height:54px;
	line-height:54px;
	margin: 2px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 4px;
}

.months .calendarlist span {
	font-weight: bold;
}

.days .calendarlist span {
	width:30px;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 4px;
}

.days .calendarlist span.rel {
	color: #999999;
}*/

.datetimepicker .calendarlist span.sel {
	color: #ffffff;
	background-color: #3276b1;
	border-color: #285e8e;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	font-weight: bold;
}

.datetimepicker .calendarlist span.selopp {
	color: #ffffff;
	background-color: #999999;
	border-color: #555555;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	font-weight: bold;
}

.datetimepicker .calendarlist span.range {
	background-color: #eeeeee;
	border-radius: 0;
}

.datetimepicker .today {
	width: 100%;
	height:30px;
	line-height:30px;
	display:block;
	float:left;
	cursor: pointer;
	text-align:center;
	color:#333333;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight:bold;
}

.datetimepicker span:hover {
	background-color: #eeeeee;
}

.datetimepicker .timetitle {
	display: block;
	height:30px;
	line-height:30px;
	color:#333333;
	font-weight:bold;
	border-bottom: 1px solid #e2e2e2;
}
.datetimepicker .timetitle > label {
	display: block;
	float: left;
	width: 33.33%;
	text-align: center;
}

.datetimepicker .now {
	display: block;
	height:30px;
	line-height:30px;
	text-align:center;
	cursor: pointer;
	color:#333333;
	font-weight:bold;
}

.datetimepicker .timepanel.timedata,
.datetimepicker .timepanel.timeslide {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	bottom: 30px;
	/*user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;*/
}

.datetimepicker .timepanel.timecurrent {
	position: absolute;
	top: 120px;
	left: 0;
	width:100%;
	height: 32px;
	background-color: #fcfcfc;
	border-top: 1px solid #e2e2e2;
	border-bottom: 1px solid #e2e2e2;
	font-weight: bold;
}

.datetimepicker .timepanel > div {
	height: 100%;
	width: 33.33%;
	float: left;
	overflow-x: hidden;
	overflow-y: auto;
	cursor: pointer;
	user-select: none;
	/*-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;*/
}

.datetimepicker .timepanel > div::-webkit-scrollbar {
	width: 0 !important;
	display: none;
}

.datetimepicker .timepanel li {
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.datetimepicker .confirm {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height:30px;
	line-height:30px;
	text-align:center;
	cursor: pointer;
	color:#333333;
	font-weight:bold;
}

.datetimepicker .confirm:hover {
	background-color: #3276b1;
	color: white;
}

/*对话框*/
.dialog-modal {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: black;
}

/*.dialog-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 3002;
	display: none;
}*/

.dialog {
	position: absolute;
	width: 600px;
	max-width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	outline: none;
}

.dialog .title {
	padding: 10px 15px;
}

.dialog .title i:first-child {
	padding-right:5px;
}

.dialog .title i:last-child {
	float: right;
	font-size: 18px;
}

.dialog .title i:last-child:hover {
	color: #dddddd;
}

.dialog .content {
	padding: 15px 15px;
	/*margin: 15px 0px;*/
	min-height: 55px;
	max-height: 150px;
	background-color: #ffffff;
	overflow: auto;
}

.dialog .footer {
	background-color: #f5f5f5;
	padding: 5px 15px;
	text-align: right;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #f5f5f5;
    border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.dialog .footer button:last-child {
	margin-left: 8px;
}

.dialog.green {
	border: 1px solid #1ab394;
}

.dialog.green .title {
	background-color: #1ab394;
	color: #ffffff;
}

.dialog.blue {
	border: 1px solid #1c84c6;
}

.dialog.blue .title {
	background-color: #1c84c6;
	color: #ffffff;
}

.dialog.cyan {
	border: 1px solid #23c6c8;
}

.dialog.cyan .title {
	background-color: #23c6c8;
	color: #ffffff;
}

.dialog.orange {
	border: 1px solid #f8ac58;
}

.dialog.orange .title {
	background-color: #f8ac58;
	color: #ffffff;
}

.dialog.red {
	border: 1px solid #ed5565;
}

.dialog.red .title {
	background-color: #ed5565;
	color: #ffffff;
}

.dialog.progress .content .total {
	width: 100%;
	height: 12px;
	margin-top: 20px;
	background-color: #ccc;
}

.dialog.progress .content .position {
	height: 12px;
	background-color: #1c84c6;
	margin-top: -12px;
}

.dialog.progress .content .positiontxt {
	padding: 3px;
	color: black;
}

.dialog.progress .content .rat {
	float: left;
}

.dialog.progress .content .per {
	float: right;
}

/*模态窗口*/
.modal-bg {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: black;
}

/*.modal-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1002;
	display: none;
}*/

.modal-tlogin-bg {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2901;
	background-color: black;
	display: none;
}
.modal-tlogin-panel {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2902;
	display: none;
}

/*@media (min-width:768px){
	.modal {
		min-width: 300px;
		min-height: 150px;
	}
}*/

.modal {
	/*position: relative;*/
	position: absolute;
	margin: 0 auto;
	max-width: 90%;
	max-height: 90%;
	min-width: 200px;
	min-height: 100px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;;
	background-color: #ffffff;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	/*padding-top: 38px;*/
	/*overflow: hidden;*/
	outline: none;
}

.modal .modal-title {
	/*margin-top: -38px;
	height: 38px;
	padding: 10px 15px;*/
	/*position: absolute;*/
	/*left: 0px;
	top: 0px;
	right: 0px;*/
	height: 38px;
	padding: 10px 15px;
}

.modal .modal-title i:first-child {
	padding-right:5px;
}

.modal .modal-title i:last-child {
	float: right;
	font-size: 18px;
}

.modal .modal-title i:last-child:hover {
	color: #ddd;
}
.modal .modal-title i:last-child:active {
	transform: translateX(1px) translateY(1px);
}

.modal .modal-content {
	position: absolute;
	left: 0px;
	top: 38px;
	right: 0px;
	bottom: 0px;
	/*overflow: auto;*/
}

.modal.green {
	border: 1px solid #1ab394;
}

.modal.green .modal-title {
	background-color: #1ab394;
	color: #ffffff;
}

.modal.blue {
	border: 1px solid #1c84c6;
}

.modal.blue .modal-title {
	background-color: #1c84c6;
	color: #ffffff;
}

.modal.cyan {
	border: 1px solid #23c6c8;
}

.modal.cyan .modal-title {
	background-color: #23c6c8;
	color: #ffffff;
}

.modal.orange {
	border: 1px solid #f8ac58;
}

.modal.orange .modal-title {
	background-color: #f8ac58;
	color: #ffffff;
}

.modal.red {
	border: 1px solid #ed5565;
}

.modal.red .modal-title {
	background-color: #ed5565;
	color: #ffffff;
}

/*.page-print {
	display: none;
}

@media print {
	body > div, body > nav {
		display: none !important;
	}
	
	.page-print {
		display: block !important;
	}
}*/

/*pptx2html*/
.pptx .hidden {
	display: none;
}

.pptx pre {
	width: 100%;
	height: 360px;
	overflow: scroll;
}

.pptx section {
	width: 100%;
	/*max-width: 920px;*/
	height: 690px;
	position: relative;
	border: 1px solid #333;
	background-color: #EFEFEF;
	text-align: center;
	border-radius: 10px;
	box-shadow: 1px 1px 3px #AAA;
	overflow: hidden;
	/*transform: scale(0.85);*/
}

.pptx section div.block {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
}

.pptx section div.content {
	display: flex;
	flex-direction: column;
	/*
	justify-content: center;
	align-items: flex-end;
	*/
}

.pptx section div.v-up {
	justify-content: flex-start;
}
.pptx section div.v-mid {
	justify-content: center;
}
.pptx section div.v-down {
	justify-content: flex-end;
}

.pptx section div.h-left {
	align-items: flex-start;
	text-align: left;
}
.pptx section div.h-mid {
	align-items: center;
	text-align: center;
}
.pptx section div.h-right {
	align-items: flex-end;
	text-align: right;
}

.pptx section div.up-left {
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
}
.pptx section div.up-center {
	justify-content: flex-start;
	align-items: center;
}
.pptx section div.up-right {
	justify-content: flex-start;
	align-items: flex-end;
}
.pptx section div.center-left {
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}
.pptx section div.center-center {
	justify-content: center;
	align-items: center;
}
.pptx section div.center-right {
	justify-content: center;
	align-items: flex-end;
}
.pptx section div.down-left {
	justify-content: flex-end;
	align-items: flex-start;
	text-align: left;
}
.pptx section div.down-center {
	justify-content: flex-end;
	align-items: center;
}
.pptx section div.down-right {
	justify-content: flex-end;
	align-items: flex-end;
}
.pptx section span.text-block {
	/* display: inline-block; */
}
.pptx li.slide {
	margin: 10px 0px;
	font-size: 18px;
}
.pptx div.footer {
	text-align: center;
}
.pptx section table {
	position: absolute;
}
.pptx section table, section th, section td {
	border: 1px solid black;
}
.pptx section svg.drawing {
	position: absolute;
	overflow: visible;
}
.field {
	position: relative;
	padding: 5px 5px 5px 85px;
}
.field > span {
	float: left;
	margin-left: -80px;
	line-height: 30px;
	width: 80px;
	text-align: center;
}
.field > input {
	width: 100%;
}
uniquery {
	position: relative;
	display: block;
	width: 100%;
	padding-right:75px;
}
uniquery.nopopup {
	padding-right: 0px;
}
uniquery .more {
	position: absolute;
	display: block;
	right: 0px;
	bottom: 0px;
	padding: 5px 5px 0px 5px;
	font-size: 11px;
}
uniquery .more > i {
	padding-right: 3px;
}
uniquery .more:hover {
	color: #e94e36;
}
uniquery .more:active{
	transform: translateX(1px) translateY(1px);
}
uniquery .more > b {
	display: none;
	float: right;
	width: 6px;
	height: 6px;
	margin-left: 4px;
	margin-top: 5px;
	border-radius: 3px;
	background-color: #ed5565;
}

uniquery .more.use > b {
	display: block;
}