/* 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;
}
/* 自定义 */
* {
  box-sizing: border-box;
  font-family: "微软雅黑";
  transition: 0.2s;
}
body {
  background: #ffffff;
  min-width: 1200px;
}
.textOverflowOne {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.textOverflowTwo {
  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;
}

header {
  width: 100%;
  height: 80px;
  line-height: 79px;
}
header .logo {
  width: 140px;
  height: 36px;
  float: left;
  margin-top: 13px;
}
header nav {
  float: right;
}
header nav a {
  font-size: 14px;
  color: #424242;
  margin-left: 80px;
}
header nav a:hover {
  color: #FE7326;
}

footer {
  width: 100%;
  height: 138px;
  padding-top: 40px;
  color: #FFFFFF;
  font-size: 12px;
  background: #2B3139;
}
footer .left {
  float: left;
  width: 400px;
}
footer .left .title {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 24px;
  letter-spacing: 1.6px;
}
footer .left .title img {
  width: 22px;
  height: 22px;
  float: left;
  margin: 0 14px 4px 0;
}
footer .left .desc {
  line-height: 16px;
  letter-spacing: 1px;
}
footer .left .desc span,
footer .left .desc a {
  color: rgba(255, 255, 255, 0.5);
}
footer .left .desc a:hover {
  color: #FE7326;
}
footer ul {
  -ms-flex-direction: column;
  flex-direction: column;
  float: right;
  height: 83px;
  margin: 3px 130px 0 0;
}
footer ul li {
  margin: 0 43px 15px 0;
}
footer ul li a {
  color: #ffffff
}
footer ul li a:hover {
  color: #FE7326;
}

.banner {
  height: 240px;
  margin: 30px auto 40px;
  padding: 34px 0 0 103px;
  color: #ffffff;
  background: url("../imgs/helpBanner.png") no-repeat center;
  display: block;
}
.banner h2 {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 2px;
}
.banner h3 {
  font-size: 18px;
  line-height: 23px;
  margin: 18px 0 25px;
  font-weight: 400;
  width: 540px;
  letter-spacing: 0.8px;
}
.banner .btn {
  display: block;
  width: 180px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(180deg, #FFFFFF 0%, #8BEAFF 100%);
  border-radius: 40px;
  color: #239CF7;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-left: -2px;
}
.banner .btn:hover {
  box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.1600);
}

/* 图标 */
.time {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../imgs/icons.png") -48px -10px;
  margin: 0px 3px -2px 0;
}
.eye {
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url("../imgs/icons.png") -10px -50px;
  margin: 0 3px -1px 7px;
}

/* 面包屑 */
.head-links {
  color: #212121;
  font-size: 14px;
  line-height: 20px;
  margin: -20px auto 28px;
  width: 1200px;
}
.head-links a {
  color: #666666;
}
.head-links a:hover {
  color: #FE7326;
}
.head-links .link-split {
  color: #666666;
  margin: 0 2px;
}

.friendlyLinks {
  width: 1200px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  padding: 23px 0 29px;
  border-top: 1px solid #4c535b;
}
.friendlyLinks a {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.5);
}
.friendlyLinks a:hover {
  color: #FE7326;
}
footer {
  height: auto;
}
footer .container {
  height: 113px;
}