
/* 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: "微软雅黑", "microsoft yahei", 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 {
	display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
body {
	background: #fff;
	color: #666;
	font-size: 0.24rem;
	line-height: 2;
}
a,
fieldset {
	border: 0;
}
img {
	border: 0;
	vertical-align: top;
}
ul ,dl {
	display: block;
}
li, dt, dd {
	list-style-type: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
	-webkit-appearance: none; /*去掉苹果的默认UI来渲染按钮*/
}
h1,
.h1 { 
	font-size: 0.30rem;
}
h2,
.h2 { 
	font-size: 0.24rem;
}
h3,
.h3 { 
	font-size: 0.26rem;
}
h4,
.h4 { 
	font-size: 0.24rem;
}
h5,
.h5 { 
	font-size: 0.20rem;
}
h6,
.h6 { 
	font-size: 12px;
}
p {
	display: block;
	margin: 0;
	padding: 0;
}
.container {
	width: 100%;
	padding-right: 0.10rem;
	padding-left: 0.10rem;
	margin-right: auto;
	margin-left: auto;
}
.row {
	margin-left: -0.10rem;
	margin-right: -0.10rem;	
}
.row:before, .row:after, .container:before, .container:after, .clear-fix:before, .clear-fix:after {
	display: table;
	content: '';
}
.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;
}
.z-img {
	display: block;
	width: 100%;
}

/* 图片 */
.img-responsive {
	display: block;
	height: auto;
	max-width: 100%;
}
.img-circle {
	-webkit-border-radius: 50%;
	-o-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}
.img-center {
	display: block;
	margin: 0 auto;
}
.hide {
	overflow: hidden;	
}

/* 清除浮动 */
.clear-fix:after, .row:after {
	clear: both;
}
.clear-fix {
	*zoom: 1;
}
.clear {
	display: block;
	clear: both;
	height: 0;
	width: 100%;
	overflow: hidden;
}

/* 超出文本显示省略号 */
.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 #fff;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-bottom: 0;
}

/* 过渡 */
.transition {
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

/* 动画 @-moz-keyframes */
/*@keyframes myAnimation {
			0% {transform: translateX(-50%);opacity: 0;}
			25% {transform: translateX(25%);}
			50% {transform: translateX(-15%);}
			75% {transform: translateX(5%);}
			100% {transform: translateX(0);opacity: 1;}
		} 
*/

/* 媒体查询 */
@media (min-width: 576px) {
	.container {
    	width: 540px;
  	}
}
@media (min-width: 768px) {
	.container {
    	width: 720px;
  	}
}
@media (min-width: 992px) {
	.container {
  		width: 960px;
  	}
}
@media (min-width: 1200px) {
	.container {
  		width: 1200px;
  	}
}
@media (min-width: 1300px) {
	.container {
  		width: 1300px;
  	}
}