/* CSS reset */
/*body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}*/
* {
	margin: 0;
	padding: 0;
	font-family: "微软雅黑";
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q:before,
q:after {
	content: '';
}

input,
button {
	border: none;
	font-family: '微软雅黑';
}

button {
	background-color: transparent;
	cursor: pointer;
}

input:focus {
	box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px;
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 0px 0px 3px;
}

input,
button:focus {
	outline: none;
}

input,
textarea,
select {
	border: 0;
	-webkit-appearance: none;
	border-radius: 0;
}


/* 定位  浮动*/
.tl {
	text-align: left;
}

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}

.bc {
	margin-left: auto;
	margin-right: auto;
}

.fl {
	float: left;
	display: block;
}

/* 可修复IE6中双倍边距bug */
.fr {
	float: right;
	display: block;
}

.cb {
	clear: both;
}

.cl {
	clear: left;
}

.cr {
	clear: right;
}

.clearfix:after {
	content: '.';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.zoom {
	zoom: 1;
}

.none {
	display: none;
}

/*
@功能：全局css定义
*/
body {
	font-size: 16px;
	color: #333333;
	font-family: "微软雅黑";
	min-width: 1200px;
	max-width: 1920px;
	margin: 0 auto;
}

a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

/*去除input的默认样式  number的箭头*/
/*在chrome下：*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0;
}

.search input::-webkit-input-placeholder {
	color: #999;
	font-size: 14px;
	text-align: right;
}

.search input:-moz-placeholder {
	color: #999;
	font-size: 14px;
	text-align: right;
}

.search input::-moz-placeholder{
	color: #999;
	font-size: 14px;
	text-align: right;
}

.search input:-ms-input-placeholder {
	color: #999;
	font-size: 14px;
	text-align: right;
}

/*Firefox下：*/
input[type="number"] {
	-moz-appearance: textfield;
}
.row::after{content: '.';display: block;height: 0;clear: both;visibility: hidden;}
.container{width: 1200px;margin: 0 auto;box-sizing: border-box;}
.container::after{content: '.';display: block;height: 0;clear: both;visibility: hidden;}
.imgBox img{display: block;width: 100%;height: 100%;}