html {
	font-size: 62.5%
}
@media only screen and (min-width:321px) {
	html {
		font-size: 62.5%!important
	}
}
@media only screen and (min-width:361px) {
	html {
		font-size: 70.31%!important
	}
}
@media only screen and (min-width:376px) {
	html {
		font-size: 78.24%!important
	}
}
@media only screen and (min-width:481px) {
	html {
		font-size: 94%!important
	}
}
@media only screen and (min-width:561px) {
	html {
		font-size: 109%!important
	}
}
@media only screen and (min-width:641px) {
	html {
		font-size: 125%!important
	}
}
html {
	zoom: 1;
}
html * {
	outline: 0;
	zoom: 1;
}
html button::-moz-focus-inner {
	border-color: transparent!important;
}
body {
	overflow-x: hidden;
	
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
input,
textarea,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}
a img {
	border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}
li {
	list-style: none;
}
caption,
th {
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}
body,
input,
textarea,
button,
select,
pre,
code {
	color: #333;
	font-size: 1.2rem;
	line-height: 1.7;
}
body {
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	max-width: 640px;
	min-width: 320px;
	margin: 0 auto;
}
/****引用样式*****/
q:before,
q:after {
	content: '';
}
a {
	outline: none;
	text-decoration: none;
	color: #1570A6;
}
a:hover {
	text-decoration: underline;
	/*color: #24459a;*/
}
hr {
	border: none;
	clear: both;
	height: 0;
	background: none;
	margin: 0;
	padding: 0;
	border-bottom: #eee solid 1px;
	margin: 0.5rem 0;
}
img {
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
	-webkit-touch-callout: none
}
/* 清除浮动*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: block;
}
.clear {
	clear: both;
}
/* 高度自适应 */
.gaodu {
	overflow: hidden;
	zoom: 1/*for ie*/	;
	margin: 0.25rem auto;
}
.strong {
	font-weight: bold;
}
.left {
	float: left;
}
.right {
	float: right;
}
.scenter {
	margin: 0 auto;
	text-align: center;
}
.center {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	/* 水平居中*/
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-pack: center;
	/* IE 10 */
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;
	/* IE 11+,Firefox 22+,Chrome 29+,Opera 12.1*/
	/* 垂直居中 */
	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-align: center;
	/* IE 10 */
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}
.show {
	display: block;
	visibility: visible;
}
.hide {
	display: none !important;
	/*visibility:hidden;*/
}
.block {
	display: block;
}
.inline {
	display: inline;
}
/*副标题*/
small {
	/*color: #999999;*/
	font-size: 80%;
}
/* 固定不动 */
.fixed {
	position: fixed;
	_position: absolute;
	width: 100%;
	/* 底部 */
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: 0 auto;
}
/* 圆角 */
.radius {
	-webkit-border-radius: 4px;
	/*只支持webkit内核的浏览器*/
	border-radius: 4px;
	/*只支持IE内核的浏览器（IE>=7)*/
	-moz-border-radius: 4px;
	/*只支持Mozilla内核的浏览器*/
	border: #ddd solid 1px;
	padding: 4px;
}
/* 解决ie下连接加粗的鼠标样式问题*/
a strong {
	cursor: pointer;
}
/* 表单定义*/
input,
select,
textarea,
button {
	vertical-align: middle;
	border-radius: 0px; /**在IOS下有默认的圆角样式,这里定义清除一下**/
}
/*input[type=text],
textarea,
.txt,
.txts {
	border: #ccc solid 1px;
	padding: 5px 20px;
}*/
label {
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}
input[type=button],
input[type=submit] {
	cursor: pointer;
	/*background: #03a9f4;
	color: #fff;
	font-weight: bold;
	padding: 0.6rem 0;
	width: 100%;
	font-size: 1.2rem;*/
	border: 0;
}
input[type=radio]+ label {
	background: #eee;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 1.3rem;
	cursor: pointer;
	display: inline-block;
}
input[type=radio]:checked+ label {
	background: #03a9f4;
}
/*input[type=checkbox] {
	display: none;
}*/
input[type=checkbox]+ label {
	background: #eee;
	width: 1.3rem;
	height: 1.3rem;
	cursor: pointer;
	display: inline-block;
}
input[type=checkbox]:checked+ label {
	background: #03a9f4;
}
