*{
	margin:0px;
	padding:0px;
	list-style:none;
	border:0px;
	box-sizing:border-box;
}
html{
    font-family: 'microsoft Yahei','SimSun',Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}
body{
	font-family:'microsoft Yahei','SimSun',Arial, Helvetica, sans-serif;
	color:#212121;
	line-height:24px;
	font-size:14px;
	background:#f5f5f5;
	
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{
    display: block
}
@font-face {
  font-family: 'iconfont';
  src: url('../fonts/iconfont.eot');
  src: url('../fonts/iconfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/iconfont.woff') format('woff'),
  url('../fonts/iconfont.ttf') format('truetype'),
  url('../fonts/iconfont.svg#iconfont') format('svg');
}
.iconfont {
          font-family:"iconfont" !important;
          font-style:normal;
          -webkit-font-smoothing: antialiased;
          -webkit-text-stroke-width: 0.2px;
          -moz-osx-font-smoothing: grayscale;
}
a{
	color:#666;
	text-decoration:none;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
a: active,a: hover{
    outline: 0
}
em{
	font-style: inherit;
}
img{
	max-width:100%;
	width:auto;
	height:auto;
	border:none;
}
.f_l{
	float:left;
}
.f_r{
	float:right;
}
.block{
	display:block;
}
.hide{
	display:none
}
.text-left{
	text-align:left !important;
}
.text-center{
	text-align:center !important;
}
.text-right{
	text-align:right !important;
}
/*字体颜色*/
.font-6f{
	color: #6f6f6f;
}
.font-red{
	color: #e80b0b;
}
.font-blue{
	color: #00c2de;
}
/*按钮*/
.btn{
	padding: 0 20px;
	display: inline-block;
	height: 35px;
	line-height: 35px;
	text-align: center;
	font-size: 15px;	
	cursor: pointer;
	font-family:'microsoft Yahei','SimSun',Arial, Helvetica, sans-serif;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    outline:none;
    -moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.green-btn{
	color: #fff;
	background: #00c2de;
}
.green-btn:hover{
	background: #00b7d3;
}
.gray-btn{
	color: #fff;
	background: #ccc;
}
.gray-btn:hover{
	background: #bfbdbd;
}
.orange-btn{
	color: #fff;
	background: #ff6501;
}

/*表单样式*/
.form-control{
	padding: 5px 8px;
	width: 100%;
	height: 35px;
	font-size: 13px;
	color: #333;
	border: #ccc 1px solid;
	font-family: 'microsoft Yahei','SimSun',Arial, Helvetica, sans-serif;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    outline:none;
}
input[type='text']::-webkit-input-placeholder { color:#a6a6a6; opacity:1 }
input[type='text']::-moz-placeholder { color:#a6a6a6; opacity:1} /* firefox 19+ */
input[type='text']:-ms-input-placeholder { color:#a6a6a6; opacity:1} /* ie */
input[type='text']:-moz-placeholder { color:#a6a6a6;opacity:1 }
.form-group{
	display: table;
	margin-bottom: 16px;
	width: 100%;
}
.form-group .control-label{
	display: inline-block;
	margin-right: 5px;
	width: 145px;
	text-align: right;
	color: #6f6f6f;
	vertical-align: middle;
}
.form-group .input-group{
/*	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;*/
   display: table;
   width: 100%;
}
.form-group .inline-form{
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}
.form-group .input-group-addon{	
	display: inline-block;
	padding: 0 10px;	
	height: 35px;
	line-height: 35px;
	text-align: center;
	vertical-align: middle;
	/*-webkit-flex-shrink: 0;
    flex-shrink: 0;*/
}   
/*单选多选样式*/
.check-box , .radio-box{font-size:12px;cursor:pointer;}
.check-box input[type="checkbox"],.radio-box input[type="radio"] {display:none;} 
.check-box i , .radio-box i{
	position:relative;
	font-size:12px;
	font-style:normal;
	display:inline-block;
	width:18px;
	height:18px;
	text-align:center;
	line-height:12px;	
	vertical-align:middle;
	margin:-2px 2px 1px 0px;
	border:#00c2de 1px solid;
	background:#fff;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
	}
.check-box input[type="checkbox"]:checked + i , .radio-box input[type="radio"]:checked + i{
	background:#e6f9fc;	
}
.check-box input[type="checkbox"]:checked + i:after{
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-4px;
	margin-left:-6px;
	content:"";
	width:10px;
	height:4px;
	border:#00c2de 2px solid;
	border-right:0px solid transparent;
	border-top:0px solid transparent;
	transform:rotate(-45deg);
	-ms-transform:rotate(-45deg); 	/* IE 9 */
	-moz-transform:rotate(-45deg); 	/* Firefox */
	-webkit-transform:rotate(-45deg); /* Safari 和 Chrome */
	-o-transform:rotate(-45deg);
}
.check-box input[type="checkbox"]:disabled + i,.radio-box input[type="radio"]:disabled + i {background:#f4f4f4;}

.radio-box input[type="radio"] + i{
	border-radius:50%;	
}
.radio-box input[type="radio"]:checked + i:after{
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-4px;
	margin-left:-4px;
	content:"";
	width:8px;
	height:8px;
	background:#fff;
	border-radius:50%;	
}
/*表格*/
table{
  border-collapse: collapse;
  border-spacing: 0;
}
table th , table td{
	padding: 5px 10px;
	height: 40px;
	text-align: center;
	border: #f6f6f6 1px solid;	
}
table th{
	font-weight: normal;
}
table td a{
	color: #00c2de;
}
/*整体布局*/
.container{
	padding:0 10px;
	width: 1200px;
	margin-left:auto;
	margin-right:auto;
}
.container:after{
	display:table;
	content:"";
	clear:both;
}