@charset "utf-8";

/*-- 全局reset
-------------------------------------------*/
html, body, div, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd,
	ul, ol, li, pre, form, fieldset, object, code, legend, button, input,
	textarea, label, th, td, a, img {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

body {
	font: 12px/1.5 'Helvetica Neue', 'Helvetica', 'Arial',
		'\5FAE\8F6F\96C5\9ED1', 'Microsoft YaHei', 'Tahoma',
		'Hiragino sans gb', 'SimSun', 'Sans-serif';
	color: #333;
	/**特殊日期黑白
	filter: grayscale(100%);
	*/
}

/*清除内外边距*/
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-size: 100%;
}

/*设置默认字体*/
:focus {
	outline: 0;
}

ul, ol {
	list-style: none;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input, button, textarea, select {
	*font-size: 100%;
	outline: none;
}

textarea {
	resize: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

a:hover {
	text-decoration: none;
}

body a {
	color: #000;
	text-decoration: none;
}

/*--清除浮动
-------------------------------------------*/
.cf:before, .cf:after, .clearfix:before, .clearfix:after {
	content: "";
	display: table;
}

.cf:after, .clearfix:after {
	clear: both;
}

.cf, .clearfix {
	clear: both;
	*zoom: 1;
}

/* 隐藏 居中 */
.tc {
	text-align: center;
}

.tr {
	text-align: right;
}

.show {
	display: block;
}

.hide {
	display: none !important;
}

.none {
	display: none;
}

.clear {
	clear: both;
}

.container {
	margin: 0 auto;
}

.inner {
	margin: 0 auto;
}

.footer {
	background-image: url(/media/image/footer.png);
	background-position: center;
	background-repeat: no-repeat;
	color: white;
}

.footer_line a {
	color: white;
}

/**==================    PC端           =================*/
@media screen and (min-width: 992px) {
	.inner {
		width: 1280px;
	}
	.footer {
		width: 100%;
		font-size: 12px;
		padding: 20px 0;
	}
	.footer_line {
		padding-top: 10px;
	}
	.footer_line span {
		padding: 0 10px;
	}
}

/**==================    手机端           =================*/
@media screen and (max-width: 992px) {
	body {
		width: 100%;
		height: 100%;
	}
	.inner {
		width: 90%;
		margin: 0 auto;
	}
	.footer {
		width: 100%;
		font-size: .12rem;
		padding: .2rem 0;
	}
	.footer_line {
		padding-top: .1rem;
	}
	.footer_line span {
		padding: 0 .1rem;
	}
}