@charset "utf-8";
/* 公用css */
/* 重置页面高度，使其和窗口高度保持一致（适用于不分屏页面，如平台、登录页面、后台） */
/* html,body{ height:100%;} */
/* 重置内外边距，使各个浏览器样式的表现位置保持一致 */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	margin: 0;
	padding: 0;
}
html { font-size: 20px;}
body {
	font: 1.8rem/1.5 "微软雅黑",Helvetica,Arial,sans-serif;
	color: #000;
}
body * { box-sizing: border-box;}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display: block;}

/* HTML5 媒体文件跟 img 保持一致 */
audio,canvas,video{ display: inline-block;}
/* 表单元素并不继承父级 font 的属性，重设表单元素属性 */
input,select,textarea {
	font-size: 100%;
	text-indent: .2em;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align*/
th { text-align: inherit;}

/* 去除默认边框 */
fieldset,img { border: 0;}

/* 去除默认列属性 */
ul,li,h3,p,fieldset,legend,dd,dt { list-style: none;}

/* 设置a标签文字颜色,去掉下划线*/
a {
	color: #333;
	text-decoration: none;
}
a:hover { color:#f00;} 
 
/* 公用css */
.b-left { float: left !important;}
.b-right { float: right !important;}
.b-clear:after {
	content: '';
	display: block;
	width: 100%;
	height: 0px;
	margin: 0px ;
	padding: 0px;
	line-height: 0px;
	overflow: hidden;
}
.b-hide { display: none !important;}
.b-show { display: block !important;}
.b-ellipsis {
	white-space: nowrap !important;
	text-overflow: ellipsis !important;
	overflow: hidden !important;	
}
.b-shadow {
	position: relative;
	box-shadow: 0 0 5px rgba(0,0,0,.6);
}
.b-radius {
	position: relative;
	border-radius: 3px;
}

.b-flex { display: flex;}
.b-flex.b-flex-column { flex-flow: column;}
.b-flex > .b-flex-item { flex: 1;}
.b-flex.b-flex-midle { align-items: center;}
.b-flex-stretch { align-items: stretch;}

.b-mar-t-1 { margin-top: 1rem !important;}
.b-mar-b-1 { margin-bottom: 1rem !important;}
.b-mar-b-1p5 { margin-bottom: 1.5rem !important;}
.b-mar-b-2 { margin-bottom: 2rem !important;}
.b-mar-l-1 { margin-left: 1rem !important;}
.b-mar-r-1 { margin-right: 1rem !important;}
.b-mar-lr-1 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}
.b-mar-lr-1p5 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.b-pad-t-1 { padding-top: 1rem !important;}
.b-pad-b-1 { padding-bottom: 1rem !important;}
.b-pad-lr-1 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}
.b-pad-lr-1p5 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.b-c-g { color: #348c08 !important;}
.b-c-r { color: #fc0000 !important;}