
/* CSS 重置 */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-family: "微软雅黑", Arial, Helvetica, sans-serif;
	-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;	
}
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, button, blockquote, caption, th, td, img, article, aside, address, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	margin: 0;
	padding: 0;
}
article, aside, address, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, ul, dl {
	display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
body {
	background: #FFF;
	color: #666;
	font-size: 12px;
	line-height: 1.8;
}
a,
fieldset {
	border: 0;
}
img {
	border: 0;
	vertical-align: top;
}
li {
	list-style-type: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-appearance: none; /*去掉苹果的默认UI来渲染按钮*/
}
h1,
.h1 { 
	font-size: 36px;
}
h2,
.h2 { 
	font-size: 30px;
}
h3,
.h3 { 
	font-size: 24px;
}
h4,
.h4 { 
	font-size: 16px;
}
h5,
.h5 { 
	font-size: 14px;
}
h6,
.h6 { 
	font-size: 12px;
}
p {
	display: block;
	margin: 0;
	padding: 0;
}
.container {
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
}
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.row {
	margin-left: -10px;
	margin-right: -10px;	
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.z-block {
	display: block;
}
.hide {
	overflow: hidden;
}
/* 图片 */
.img-responsive {
	display: block;
	height: auto;
	max-width: 100%;
}
.img-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.img-circle {
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
/* 清除浮动 */
.clear-fix:before {
	display: table;
	content: '';
}
.clear-fix:after {
	display: table;
	content: '';
	clear: both;
	height: 0;
	visibility: hidden;
	overflow: hidden;
}
.clear-fix {
	*zoom: 1;
}
.clear-both {
	display: block;
	clear: both;
	height: 0;
	overflow: hidden;
	width: 100%;
}
/* 超出文本显示省略号 */
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	/* height: 50px;
	line-height: 50px;*/
}
/* 三角小图标 */
.caret {
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	margin-left: 5px;
	border-top: 4px solid gray;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 0;
}
/* 过渡 */
.transition, .product-category a, a.more {
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.bgf{ background: #00CC33;}
