@charset "utf-8";
/*Unicode字体编码*/
/*微软雅黑*/
.clearfix {
	content: "";
	display: block;
	visibility: hidden;
	clear: both;
}
/*清除浮动*/
.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
}
/*样式控制字符长度，需指定宽度*/
/*引入常量文件*/
/*页面基本设置*/
* {
	word-wrap: break-word;
}
*::-moz-selection {
	background-color: #1a94e6;
	color: #fff;
}
*::selection {
	background-color: #1a94e6;
	color: #fff;
}
body,
div,
ol,
ul,
li,
p,
input,
textarea,
form,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
img,
select,
table,
tr,
td,
fieldset,
legend,
table,
tr,
td,
th {
	margin: 0;
	padding: 0;
}
body {
	font: normal normal normal 14px/24px \5FAE\8F6F\96C5\9ED1,Microsoft YaHei;
}
li {
	list-style: none;
}
a {
	text-decoration: none;
	outline: none;
	color:#333333;
}
img {
	border: none;
}
input,
textarea {
	outline: none;
}

/* 禁止双击选中 */
.no-copy{
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* 分页样式 */
.list-page{
	overflow: auto;
	line-height: 60px;
	text-align: center;
	/* 禁止双击选中 */
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.list-page a{
	border:#ccc 1px solid;
	padding:8px 20px;
	border-radius: 4px;
}
.list-page a:hover{
	color:#FFFFFF;
	background: #4285f4;
	border:#4285f4 1px solid;
}
.list-page .now_page{
	background: #0066CC;
	color:#FFFFFF;
	border:#0066CC 1px solid;
}
/* 404样式 */
.tips-404{ padding:150px 30px; width:100%; height:70%; box-sizing:border-box; text-align:center; border-top: #ccc 1px solid;}
.tips-404 span{ font-size:6em; line-height:1em; display:block; font-weight:bold; color:#000;}
.tips-404 strong{ font-size:2em; line-height:1.4em; color:#000;}
.tips-404 p{ margin: 1.4em 0 2em 0; color:#666666; line-height: 1.8em; font-size:1.2em; }
.tips-404 a{ font-size:1.2em; padding:0.5em 2em; background:#666; color:#FFFFFF; border-radius:26px; text-decoration:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: transparent;}
.tips-404 a:active{ background:#333;}