/* http://meyerweb.com/eric/tools/css/reset/ 
  v2.0 | 20110126
  License: none (public domain)
*/
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, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
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%;
	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;
}
ol, ul {
	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;
}
a {
  text-decoration: none;
}
a:active {
  background-color: transparent;
}
/* 自定义 */
* {
  box-sizing: border-box;
  font-family: "微软雅黑";
  transition: 0.2s;
}
body {
  background: #ffffff;
  min-width: 1200px;
}
.overflow-one {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.overflow-two {
  overflow: hidden;
  text-overflow: ellipsis; 
  display: -webkit-box; 
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all; 
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
a:hover {
  color: #FE7326;
}

header {
  width: 100%;
  min-width: 1200px;
  height: 71px;
  line-height: 70px;
  border-bottom: 1px solid #eeeeee;
  background-color: #ffffff;
}
header .logo {
  width: 181px;
  height: 40px;
  float: left;
  margin: 15px 76px 0 0;
}
header nav {
  float: left;
}
header nav a {
  font-size: 14px;
  color: #424242;
  margin-left: 55px;
}

footer {
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 12px;
  color: #666666;
  background: #131317;
  text-align: center;
}
footer a {
  color: #666666;
}
footer a:hover {
  color: #666666;
  text-decoration: underline;
}

/* 图标 */
.time {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../imgs/time.png") no-repeat center;
  margin: 0px 3px -2px 0;
}
.eye {
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url("../imgs/see.png") no-repeat center;
  margin: 0 3px -1px 7px;
}

/* 分页 */
.pageContainer {
  text-align: center;
}
.pagination {
  height: 32px;
  margin: 40px 0;
  display: inline-block;
  font-size: 14px;
}
.pagination {
  overflow: hidden;
}
.pagination li {
  float: left;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 4px;
  text-align: center;
  color: #666666;
  margin: 0 3px;
  list-style: none;
}
.pagination li a {
  color: #666666;
  display: block;
}
.pagination li:not(.disabled):hover, .pagination .active {
  background-color: #FE7326;
  color: #ffffff;
}
.pagination li:not(.disabled):hover a {
  color: #ffffff;
}
.pagination .disabled {
  color: #DDDDDD;
  cursor: not-allowed;
}