* {
	margin: 0;
	padding: 0;
}
/* 导航 */
.crumbs {
	width: 1200px;
	height: 41px;
	margin: 40px auto 18px;
	font-size: 20px;
}

.clear {
	content: "";
	overflow: hidden;
	clear: both;
}

.crumbs>div:first-child {
	width: 18px;
	height: 18px;
	border: 1px solid #ff2020;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 50%;
	margin-right: 5px;
	margin-top: 5px;
}

.crumbs>div:first-child span {
	display: block;
	width: 10px;
	height: 10px;
	background: #ff2020;
	margin-top: 3px;
	border-radius: 50%;
	margin-left: 3px;
}

.left {
	float: left;
}


.container {
	width: 1200px;
	overflow: hidden;
	margin: 20px auto 0;
}

.content-type {
	position: relative;
	/*width: 870px;*/
	flex: 1;
	margin-bottom: 60px;
}

.content-type .info {
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
	padding-top: 30px;
	border-top: 1px solid #FF2020;
}

.content-type .title {
	font-size: 22px;
	color: #333;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

.content-type .source {
	font-size: 14px;
	text-align: center;
}

.content-type .forward {
	height: 30px;
	width: 100%;
	left: 0;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 20px;
}

.content-type .forward span {
	color: #c6c6c6;
	font-size: 16px;
}

.content-type .forward img {
	margin-right: 20px;
	cursor: pointer;
}

.img {
	text-align: center;
}
.report-img{
	margin: 0 auto;
}

p#back-to-top {
  position: fixed;
  bottom: 250px;
  right: 30px;
}
p#back-to-top a {
  text-align: center;
  text-decoration: none;
  color: #d1d1d1;
  display: block;
  width: 80px;

  /*使用CSS3中的transition属性给跳转链接中的文字添加渐变效果*/

  -moz-transition: color 0.5s;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
}
p#back-to-top a:hover {
  color: #979797;
}
p#back-to-top a span {
  background: url('../../images/up.png') no-repeat center center;
  background-size: 100% 100%;
  display: block;
  height: 50px;
  width: 50px;
  margin-bottom: 5px;

  /*使用CSS3中的transition属性给<span>标签背景颜色添加渐变效果*/

  -moz-transition: background 0.5s;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
}