/* 清除浮动样式，用于漂浮对象换行 */
.clearfloat {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}



/* 基础链接样式 */
a {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #6a9aea;
	text-decoration: none;
}

/* 连接按钮样式 */
a.link-botton {
	
}

a.link-botton:link {
	color: #333;
	text-decoration: none;
}

a.link-botton:hover {
	color: #333;
	border-bottom: 1px dotted #333;
	text-decoration: none;
}

a.link-botton:visited {
	color: #333;
	text-decoration: none;
}

table th,
table td{
	color:#333;
}

/* 查询表格默认样式 */
table.search th {
	width: 80px;
}
table.search td {
	width: 130px;
}
table.search td:last-child {
	width: auto;
}

/* 适应表格样式 */
.condition {
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
	background: #fefefe;
	width: 100%;
}

.condition th {
	background: white;
	font-size: 14px;/* 12px; */
	text-align: right;
	vertical-align: middle;
	height: 20px;
	border-bottom: 1px dotted #dedede;
	color:#333;
	padding: 6px;
}

.condition td {
	border-bottom: 1px dotted #dedede;
	vertical-align: middle;
	text-align: left;
	padding: 6px;
	color:#333;
}

.condition tr:last-child td, .condition tr:last-child th {
	border-bottom: 0;
}

.condition td:last-child {
	border-right: 0;
}

/* 数据展示表格样式 */
.data-list {
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

.data-list th, .data-list td {
	padding: 8px;
	line-height: 1;
	vertical-align: middle;
	cursor: default;
	text-align:left;
	border-bottom:1px dotted #ddd;
	text-overflow: ellipsis; /* for IE */  
    -moz-text-overflow: ellipsis; /* for Firefox,mozilla */  
    overflow: hidden;
    color:#333;
    white-space: nowrap;
}

.data-list th{
	border-bottom:2px solid #ccc;
}

.data-list tr:last-child td{
	border-bottom:0;
}

/* input样式 */
input{vertical-align: middle;}

/* input禁用样式 */
input:disabled, select:disabled{
    border: 1px solid #DDD;
    background-color: #fafafa;
    color:#999;
}

/* label样式 */
label{vertical-align: middle;padding:0 2px;}

/* form元素组样式 */
.form-group{
	position:relative;
}
.form-group>input{
	padding-right:24px;
}
.form-group>i{
	position:absolute;
	top:12px;
	right:12px;
	color:#999;
}
.form-group-left{
	position:relative;
}
.form-group-left>input{
	padding-left:24px;
}
.form-group-left>i{
	position:absolute;
	top:12px;
	left:12px;
	color:#999;
}

div.form-group{
	display:inline-block;
}
div.form-group>i{
	top:6px;
	right:8px;
}
div.form-group-left>i{
	top:6px;
	left:8px;
}

/* 文本框样式 */
.ec-text {
	display:inline-block;
    width: 100%;
    /* height: 24px; */
    padding: 0 8px;
    box-sizing: border-box;
    font-size: 12pt; /* 12px; */
    line-height: 1.428571429;
    /* color: #444; */
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    font-family: "微软雅黑", Tahoma, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.ec-text:-moz-placeholder {
	color: #aaa;
}

.ec-text::-moz-placeholder {
	color: #aaa;
	opacity: 1;
}

.ec-text:-ms-input-placeholder {
	color: #aaa;
}

.ec-text::-webkit-input-placeholder {
	color: #aaa;
}

/* 文本区域样式 */
.ec-textarea {
	display:inline-block;
    width: 100%;
    padding: 4px 8px;
    box-sizing: border-box;
    font-size: 12pt; /* 12px; */
    line-height: 1.428571429;
    /* color: #444; */
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-family: "微软雅黑", Tahoma, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
	overflow: auto;
	resize: none;
}

/* 下拉框样式 */
.ec-select {
	width: 100%;
    height: 31px;/* height: 24px; */
    padding: 0 8px;
    margin:0;
    font-size: 12pt; /* 12px; */
    line-height: 1.428571429;
    /* color: #444; */
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-family: "微软雅黑", Tahoma, "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
}

/* 文本动画样式 */
.ec-select:focus, .ec-text:focus, .ec-textarea:focus {
	border-color: #51a6ee;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}

/* 文本样式 */
.text-info {
	color: #2faae3;
}
a.text-info:hover {
	color: #2faae3;
}

.text-primary {
	color: #2494F2;
}
a.text-primary:hover {
	color: #157ed6;
}

.text-success {
	color: #31da24;
}
a.text-success:hover {
	color: #31da24;
}

.text-warning {
	color: #e2d836;
}
a.text-warning:hover {
	color: #e2d836;
}

.text-danger {
	color: #e62929;
}
a.text-danger:hover {
	color: #e62929;
}

/* 选择树样式 */
.select-tree{
	display:none;position: absolute;z-index:9;background:white;border:1px solid #d0d0d0;height:200px;overflow:auto;
	-webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
	-moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
	box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}
.select-tree .ztree{
	margin-top:0;
}


/* select2组件样式调整 */
.select2-selection--single{
    height: 31px !important;
    font-size: 12pt;
}
.select2-search{
	border-bottom: 1px solid #aaa;
	padding: 10px 4px;
}
.select2-search__field{
    height: 31px;
    font-size: 12pt;
}
.select2-results ul li{
	font-size: 12pt;
	min-height: 31px;
}


/* grid */
.ui-jqgrid-sdiv tr.footrow{
	height: 35px;
}
.ui-jqgrid-sdiv tr.footrow td{
	background-color: #C9E6FF/* #2494F2 */;