@charset "utf-8";

/* CSS Document */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	font-weight: normal;
	vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1.5;
}

ol,
ul,
li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	border: 0;
	max-width: 100%;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

* {
	margin: 0;
	padding: 0;
}

input,
textarea {
	outline: none;
}


/*定义盒子模型*/

* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
}


/*清除浮动*/

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	visibility: hidden;
	height: 0;
}

.clearfix {
	*zoom: 1;
	*overflow: hidden;
}

.fl {
	float: left;
}

.fr {
	float: right;
}


/*定位顶端、底端*/

.fixed_top {
	position: fixed;
	top: 0;
	z-index: 9999;
}

.fixed_bottom {
	position: fixed;
	bottom: 0;
	z-index: 9999;
}


/*pages*/

.pages {
	margin: 0 auto;
	margin-top: 2em;
	text-align: center
}

.pages a,
.pages span,
.pages input {
	background: #fff;
	border: 1px solid #ddd;
	color: #ccc;
	display: inline-block;
	padding: 0 .5em;
	margin: 0 .2em;
}

.pages a:active,
.pages span {
	background: #008fdb;
	border-color: #008fdb;
	color: #fff;
}


/*IE低版本提示*/

.unsupported-browser {
	text-align: center;
	padding: 10px;
	width: 100%;
	clear: both;
	color: #fff;
	background: red;
	font-weight: bold
}

.unsupported-browser a,
.unsupported-browser a:visited,
.unsupported-browser a:focus,
.unsupported-browser a:active {
	color: #fff;
	text-decoration: underline
}