/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   */

   html, body, div, span, applet, object, iframe,
   h1, h2, h3, h4, h5, h6, p, blockquote, pre,
   a, abbr, acronym, address, big, cite, code,
   del, dfn, em, img, ins, kbd, q, s, samp,
   small, strike, strong, sub, sup, tt, var,
   b, u, i, center,
   dl, dt, dd, ol, ul, li,
   fieldset, form, label, legend,
   table, caption, tbody, tfoot, thead, tr, th, td,
   article, aside, canvas, details, embed,
   figure, figcaption, footer, header, hgroup,
   menu, nav, output, ruby, section, summary,
   time, mark, audio, video, input {
   	margin: 0;
   	padding: 0;
   	border: 0;
   	font-size: 100%;
   	font: inherit;
   	vertical-align: baseline;
   	font-style: normal;
   }

   /* HTML5 display-role reset for older browsers */
   article, aside, details, figcaption, figure,
   footer, header, hgroup, menu, nav, section {
   	display: block;
   }

   ol, ul, dl {
   	list-style: none;
   }

   blockquote, q {
   	quotes: none;
   }

   blockquote:before, blockquote:after,
   q:before, q:after {
   	content: '';
   	content: none;
   }

   table {
   	border-collapse: collapse;
   	border-spacing: 0;
   }

   table tr {
   	height: 32px;
   }

   table tr:nth-child(even) {
   	/*偶数行tr添加背景颜色*/
   	background-color: #F8FbF8;
   }

   table tr:hover {
   	background-color: #EEEEEE;
   }

/*table tr:nth-child(odd){
	基数行tr添加背景颜色
	background-color: #EEE;
	}*/
	table tr td, table tr th {
		word-break: break-all; /*文本强制换行显示*/
		vertical-align: middle;
		border: 1px solid #ccc;
		line-height: 1.4;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
	}

	/* add */
	body {
		font-size: 14px;
		margin: 0;
		padding: 0;
		background: #fff;
		color: #333333;
		line-height: 1;
		font-family: "Microsoft YaHei", "Helvetica Neue", serif, sans-serif, Helvetica, Arial;
		/*font-family: "Microsoft YaHei","serif";*/
	   	/*-webkit-touch-callout: none;
		-khtml-user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		整个网页禁止选中*/
	}

	img {
		border: 0;
	}

	h1, h2, h3, h4, h5, h6 {
		font-size: 100%;
		font-weight: normal;
	}

	b, strong {
		font-weight: bold;
	}

	i, em {
		font-style: italic;
	}

	a {
		color: #337ab7;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		-ms-transition: all .3s;
		transition: all .3s;
	}

	a:hover {
		color: #23527c;
	}

	a, a:hover {
		text-decoration: none;
	}

	select, input, button, textarea {
		vertical-align: middle;
		font-family: "Microsoft YaHei";
		outline: none;
	}

	span, img, input, label, select {
		vertical-align: middle;
		outline: none;
	}

	input[type="button"], input[type="submit"], input[type="reset"] {
		cursor: pointer;
		outline: none;
		font-family: "Microsoft YaHei";
		font-size: 14px;
	}

	textarea {
		resize: none; /*文本域不可拖拽*/
		font-family: "Microsoft YaHei";
		vertical-align: middle;
		outline: none; /*input、a点击取消边线*/
		width: 100%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		text-indent: 2em;
		padding: 5px;
	}

	.clearFix:after, .clear:after {
		content: "";
		width: 0;
		height: 0;
		display: block;
		clear: both;
		visibility: hidden;	/*伪元素不可见*/
	}

	.text-primary, .text-hover-primary {
		color: #337ab7;
	}

	.text-hover-primary:hover {
		color: #2e70a8;
	}

	.text-danger, .text-hover-danger {
		color: #b82e2a;
	}

	.text-hover-danger:hover {
		color: #ab2b2a;
	}

	.text-info, .text-hover-info {
		color: #31708f;
	}

	.text-hover-info:hover {
		color: #2e5f7e;
	}

	.text-warning, .text-hover-warning {
		color: #F0AD4E;
	}

	.text-hover-warning:hover {
		color: #e2a349;
	}

	.text-success, .text-hover-success {
		color: #3c763d;
	}

	.text-hover-success:hover {
		color: #356836;
	}

	.text-black {
		color: #425561;
	}

	.text-orange, .text-hover-orange {
		color: #ea6154;
	}

	.text-hover-orange:hover {
		color: #d3574c;
	}

	.text-hospital, .text-hover-hospital {
		color: #00a2a0;
	}

	.text-hover-hospital {
		color: #008987;
	}

	.text-left {
		text-align: left !important;
	}

	.text-right {
		text-align: right !important;
	}

	.text-center {
		text-align: center !important;
	}

	.text-bold {
		font-weight: bold !important;
	}

	.text-normal {
		font-weight: normal !important;
		font-style: normal !important;
	}

	.text-block {
		display: block !important;
	}

	.text-inline-block {
		display: inline-block !important;
	}

	.text-primary, .text-hover-primary {
		color: #337ab7;
	}

	.text-hover-primary:hover {
		color: #2e70a8;
	}

	.text-cursor {
		cursor: pointer !important;
	}

	.bg-danger {
		background: #f2dede;
	}

	.bg-primary {
		background: #337ab7;
	}

	.bg-info {
		background: #d9edf7;
	}

	.bg-warning {
		background: #fcf8e3;
	}

	.bg-success {
		background: #dff0d8;
	}

	.bg-gary {
		background: gainsboro;
	}

	.fl {
		float: left;
	}

	.fr {
		float: right;
	}

	.show {
		display: block !important;
	}

	.hide, .hidden {
		display: none !important;
	}

	.wAuto {
		width: auto !important;
	}

	.hAuto {
		height: auto !important;
	}


	/*form表单基本元素样式*/
	.form-control {
		display: inline-block;
		width: 100%;
		height: 34px;
		padding: 6px 12px;
		font-size: 14px;
		line-height: 1.42857143;
		color: #555;
		background-color: #fff;
		background-image: none;
		border: 1px solid #ccc;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		-o-border-radius: 4px;
		-ms-border-radius: 4px;
		border-radius: 4px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		-ms-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, -webkit-box-shadow ease-in-out .15s;
		-moz-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;
		-ms-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;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	.input-sm {
		height: 30px;
		padding: 4px 6px;
	}

	.input-xs {
		height: 26px;
		padding: 1px 5px;
	}

	.btn {
		display: inline-block;
		padding: 6px 12px;
		margin-bottom: 0;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.42857143;
		text-align: center;
		white-space: nowrap;
		vertical-align: middle;
		-webkit-touch-action: manipulation;
		-moz-touch-action: manipulation;
		-o-touch-action: manipulation;
		-ms-touch-action: manipulation;
		touch-action: manipulation;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-o-user-select: none;
		-ms-user-select: none;
		user-select: none;
		background-image: none;
		border: 1px solid transparent;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		-o-border-radius: 4px;
		-ms-border-radius: 4px;
		border-radius: 4px;
		outline: none;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
		-ms-transition: all .3s;
		transition: all .3s;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.btn-lg {
		padding: 10px 16px;
		font-size: 18px;
		line-height: 1.3333333;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		-o-border-radius: 6px;
		-ms-border-radius: 6px;
		border-radius: 6px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	.btn-sm {
		padding: 5px 10px;
		font-size: 12px;
		line-height: 1.5;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	.btn-xs {
		padding: 1px 5px;
		font-size: 12px;
		line-height: 1.5;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		-o-border-radius: 3px;
		-ms-border-radius: 3px;
		border-radius: 3px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	.btn-success {
		color: #fff;
		background-color: #5cb85c;
		border-color: #4cae4c;
	}

	.btn-success:hover {
		color: #fff;
		background-color: #449d44;
		border-color: #398439;
	}

	.btn-primary {
		color: #fff;
		background-color: #337ab7;
		border-color: #2e6da4;
	}

	.btn-primary:hover {
		color: #fff;
		background-color: #286090;
		border-color: #204d74;
	}

	.btn-danger {
		color: #fff;
		background-color: #d9534f;
		border-color: #d43f3a;
	}

	.btn-danger:hover {
		color: #fff;
		background-color: #c9302c;
		border-color: #ac2925;
	}

	.btn-warning {
		color: #fff;
		background-color: #f0ad4e;
		border-color: #eea236;
	}

	.btn-warning:hover {
		color: #fff;
		background-color: #ec971f;
		border-color: #d58512;
	}

	.btn-info {
		color: #fff;
		background-color: #5bc0de;
		border-color: #46b8da;
	}

	.btn-info:hover {
		color: #fff;
		background-color: #31b0d5;
		border-color: #269abc;
	}

	.btn-black {
		color: #fff;
		background-color: #4F616D;
		border-color: #465763;
	}

	.btn-black:hover {
		color: #fff;
		background-color: #414f5b;
		border-color: #343f4b;
	}

	.btn-orange {
		color: #fff;
		background-color: #F86255;
		border-color: #ea6154;
	}

	.btn-orange:hover {
		color: #fff;
		background-color: #db5c4e;
		border-color: #c05447;
	}

	.btn-hospital {
		color: #fff;
		background-color: #02C3C3;
		border-color: #00a2a0;
	}

	.btn-hospital:hover {
		color: #fff;
		background-color: #02a6a6;
		border-color: #029595;
	}

	.btn-default {
		color: #333;
		background-color: #fff;
		border-color: #ccc;
	}

	.btn-default:hover {
		color: #333;
		background-color: #e6e6e6;
		border-color: #adadad;
	}

	.btn-default-success {
		color: #5cb85c;
		background-color: transparent;
		border-color: #4cae4c;
	}

	.btn-default-success:hover {
		color: #449d44;
		background-color: transparent;
		border-color: #398439;
	}

	.btn-default-primary {
		color: #337ab7;
		background-color: transparent;
		border-color: #2e6da4;
	}

	.btn-default-primary:hover {
		color: #286090;
		background-color: transparent;
		border-color: #204d74;
	}

	.btn-default-danger {
		color: #d9534f;
		background-color: transparent;
		border-color: #d43f3a;
	}

	.btn-default-danger:hover {
		color: #c9302c;
		background-color: transparent;
		border-color: #ac2925;
	}

	.btn-default-warning {
		color: #f0ad4e;
		background-color: transparent;
		border-color: #eea236;
	}

	.btn-default-warning:hover {
		color: #ec971f;
		background-color: transparent;
		border-color: #d58512;
	}

	.btn-default-info {
		color: #5bc0de;
		background-color: transparent;
		border-color: #46b8da;
	}

	.btn-default-info:hover {
		color: #31b0d5;
		background-color: transparent;
		border-color: #269abc;
	}

	.btn-default-black {
		color: #4F616D;
		background-color: transparent;
		border-color: #465763;
	}

	.btn-default-black:hover {
		color: #414f5b;
		background-color: transparent;
		border-color: #343f4b;
	}

	.btn-default-orange {
		color: #F86255;
		background-color: transparent;
		border-color: #ea6154;
	}

	.btn-default-orange:hover {
		color: #db5c4e;
		background-color: transparent;
		border-color: #c05447;
	}

	.btn-default-hospital {
		color: #02C3C3;
		background-color: transparent;
		border-color: #00a2a0;
	}

	.btn-default-hospital:hover {
		color: #02a6a6;
		background-color: transparent;
		border-color: #029595;
	}

	.no-selected {
		-khtml-user-select: none;
		-webkit-user-select: none;
		-moz-user-select: -moz-none;
		-o-user-select: -moz-none;
		-ms-user-select: none;
		user-select: none;
		/*禁止选中*/
	}

	.hideBox {
		display: none;
	}

	.hideBoxCon {
		position: fixed;
		top: 20px;
		left: 50%;
		min-width: 160px;
		padding: 5px 10px;
		margin: 2px 0 0;
		font-size: 14px;
		text-align: left;
		background-color: #fff;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: 1px solid #ccc;
		border: 1px solid rgba(0, 0, 0, .15);
		border-radius: 4px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
		z-index: 999;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-o-box-sizing: border-box;
		box-sizing: border-box;
	}

	.hideBoxBg {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background: rgba(0,0,0,.5);
		filter: progid:DXImageTransForm.Microsoft.gradient(startColorstr=#50000000, endColorstr=#50000000);
		filter:alpha(opacity=50);
		z-index: 998;

	}

/*
file {
	filter:alpha(opacity=0);	支持IE8及以下透明度写法-注：opacit的值为0-100
	opacity:0;
}
*/

/**
 * 文本超出隐藏
 * {overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
 *
 * 透明度
 * filter: progid:DXImageTransForm.Microsoft.gradient(startColorstr=#801368da, endColorstr=#801368da);
 * IE8及以下的透明写法，切记filter行不能换行
 */



