/* carousel start */
body {
	background: none;
	font-size: 14px;
}
.carousel {
	position: relative;
}
.carousel-inner {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.carousel-inner > .item {
	display: none;
	position: relative;

	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both; 
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	left: 0;
}



.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
	line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
	.carousel-inner > .item {
		-webkit-transition: -webkit-transform 0.6s ease-in-out;
		-o-transition: -o-transform 0.6s ease-in-out;
		transition: transform 0.6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px;
	}
	.carousel-inner > .item.next,
	.carousel-inner > .item.active.right {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		left: 0;
	}
	.carousel-inner > .item.prev,
	.carousel-inner > .item.active.left {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		left: 0;
	}
	.carousel-inner > .item.next.left,
	.carousel-inner > .item.prev.right,
	.carousel-inner > .item.active {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		left: 0;
	}
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
	display: block;
}
.carousel-inner > .item.active {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadeOut {
	from {
		opacity:0.5;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 0.5;
		left: -100%;
	}

	to {
		opacity: 0;
	}
}
.carousel-inner > .next,
.carousel-inner > .prev {
	position: absolute;
	top: 0;
	width: 100%;
}
.carousel-inner > .next {
	left: 100%;
}
.carousel-inner > .prev {
	left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
	left: 0;
}
.carousel-inner > .active.left {
	left: -100%;
}
.carousel-inner > .active.right {
	left: 100%;
}
.carousel-control {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 15%;
	opacity: 0.5;
	filter: alpha(opacity=50);
	font-size: 20px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
	background-color: rgba(0, 0, 0, 0);
}
.carousel-control.left {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
	left: auto;
	right: 0;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
	outline: 0;
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
	filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 5;
	display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
	left: 50%;
	margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
	right: 50%;
	margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
	width: 20px;
	height: 20px;
	line-height: 1;
	font-family: serif;
}
.carousel-control .icon-prev:before {
	content: '\2039';
}
.carousel-control .icon-next:before {
	content: '\203a';
}
.carousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 0;
	display: block;
	right: 0;
	margin-left: -1px;
	text-align: center;
	z-index: 15;
	list-style: none;
}
.carousel-indicators li {
	display: inline-block;
	text-indent: -999px;
	/* border-radius: 50%;*/
	cursor: pointer;
	background-color: #000 \9;
	background-color: rgba(0, 0, 0, 0);
}
.carousel-caption {
	position: absolute;
	left: 15%;
	right: 15%;
	bottom: 20px;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
	text-shadow: none;
}
.carousel-indicators li{
	margin: 0 5px;
}
@media screen and (min-width: 768px) {
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-prev,
	.carousel-control .icon-next {
		width: 30px;
		height: 30px;
		margin-top: -10px;
		font-size: 30px;
	}
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .icon-prev {
		margin-left: -10px;
	}
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next {
		margin-right: -10px;
	}
	.carousel-caption {
		left: 20%;
		right: 20%;
		padding-bottom: 30px;
	}
	.carousel-indicators {
		bottom: 20px;
	}
}
/* carousel end */
/* fancybox start */
.fancybox-overlay .fancybox-close {
	background:url("../images/news/close.png") no-repeat center center;
	width: 87px;
	height: 87px;
	top: 0;
	right: -83px;
}
.fancybox-overlay .fancybox-next span,
.fancybox-overlay .fancybox-prev span {
	width: 50px;
	height: 45px;
	margin-top: -23px;
}
.fancybox-overlay .fancybox-next span {
	background:url("../images/news/next.png") no-repeat center center;
	right: 0;
}
.fancybox-overlay .fancybox-prev span {
	background:url("../images/news/prev.png") no-repeat center center;
	left: 0;
}
.fancybox-overlay .fancybox-skin {
	background: #2a2a2a;
}
/* fancybox end */

* {
	margin: 0;
	padding: 0;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

.news-main {
}

.news-main h3 {
	background: url(../images/news/bg-title.png) 50% 50% no-repeat;
	width: 710px;
	height: 60px;
	margin: 0 auto;
	line-height: 60px;
	font-size: 24px;
	color: #666d70;
	letter-spacing: 10px;
	text-align: center;
	margin-bottom: 50px;
}

.pic-time {
	height: 38px;
	width: 980px;
	margin: 0 0 60px 2px;
	position: relative;
}
.pic-time .btnPrev, .pic-time .btnNext {
	width: 40px;
	height: 38px;
	background-color: #1890BD;
	position: absolute;
	cursor: pointer;
}
.pic-time .btnPrev {
	left: 0;
	top: 0;
}
.pic-time .btnNext {
	right: 0;
	top: 0;
}
.pic-time .btnPrev:after, .pic-time .btnNext:after {
	border: 8px solid transparent;
	content:'';
	height: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	margin-left: -14px;
	border-right-color:  #DFDFDF;
	border-right-width: 12px; 
} 
.pic-time .btnNext:after {
	border-right-color:  transparent;
	border-left-color:  #DFDFDF;
	margin-left: -6px;
	border-left-width: 12px;
}
.scroll-list {
	width: 880px;
	margin: 0 auto;
	overflow: hidden;
}
.scroll-list ul {

	height: 38px;
	width: 2000px;	
}
.scroll-list li {
	list-style: none;
	display: block;
	float: left;
	margin: 0 4px;
	height: 38px;
	width: 212px;
	background-color: #0A131B;
	color: #B0B0B0;
	line-height: 38px;
	text-align: center;
	font-size: 16px;
	cursor: pointer;
	letter-spacing: 2px;
}
.scroll-list li:hover {
	background-color: #1890BD;
	color: #fff;
}
.scroll-list li.active {
	background-color: #1890BD;
	color: #fff;
	cursor: default;
}





.main-events, .main-video{
	background-color: #0c1620
}
.main-weibo, .main-picture{
	background-color: #0f1215;
	min-height: 636px;
}
.main-weibo{
	background-image: url(../images/news/bg-main-footer.png);
	background-repeat: repeat-x;
	background-position:  50% 100%
}
.bd-en .main-video{
	background: #0c1620 url(../images/recap/bg-main-footer.png) repeat-x scroll 0 100%;
	overflow: hidden;
	padding-bottom: 100px;
}
.news-main .item-block {
	margin: 0 auto;
	width: 997px;
	clear: both;
	overflow: hidden;
	padding: 70px 0;
}

.news-main .item-block h2{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 25px;
	color: #8295a9;
}

.news-wrapper {
}

.weibo-left {
	border:1px solid #172a3d;
	width: 480px;
	float: left;
}

.weibo-right {
	border:1px solid #172a3d;
	width: 480px;
	float: right;
}

.picture-block .carousel-picture {
	padding-bottom: 60px;
}

.picture-block .carousel-inner {
	text-align: left;
}


.carousel-indicators li,
.carousel-indicators li.active {
	width: 12px;
	height:12px;
	border-radius: 50%;
}
.carousel-indicators li {
	background-color: #292e37;
	border: none;
}
.carousel-indicators li:before {
	content: '\2000';
	text-indent: -9999;
}
.carousel-indicators li.active {
	background-color: #0cb6e7;
	background-color: rgba(12, 182, 231, 0.75);
}
.picture-block .carousel-picture{
	margin-left: -26px;
}
.picture-block .picture {
	display: inline-block;
	font-size: 0;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
	margin-left: 26px;
	vertical-align: top;
}
.picture-block .picture a{
	display: block;
	padding:4px;
	border: 1px solid #122134;
}
.picture-block .picture a:hover{
	box-shadow: 1px 2px 6px #000;
	-moz-box-shadow: 1px 2px 6px #000;
	-webkit-box-shadow: 1px 2px 6px #000;
	border-color: #1a90be
}

.picture-block .picture img {
	width: 215px;
	height: 148px;
}

.picture-block .picture p {
	font-size: 14px;
	color: #666d70;
	line-height: 1.2;
	padding-top: 20px;
	height: 40px;
	display: block;
	text-align: center;
	word-wrap: break-word;
	word-break: normal; 
	width: 220px;
}



.video-block .picture {
	display: inline-block;
	font-size: 0;
	margin-bottom: 20px;
	position: relative;
	cursor: pointer;
	vertical-align: top;
}

.video-block .picture img {
	width: 236px;
	height: 131px;
}
.video-block .carousel-video{
	margin-left: -10px;
}
.video-block .picture{
	margin-left: 10px;
}
.video-block .picture a{
	border: 1px solid  rgba(18, 31, 46, 0.0);
	display: block;
	position: relative;
}
.video-block .picture a.video i.play,
.video-block .picture a.active i.play{
	background: url(../images/news/btn-play.png) 50% 50% no-repeat;
	position: absolute;
	left: 0%;
	top: 0%;
	right: 0;
	bottom: 0;
	background-color:  rgba(0, 0, 0, 0.7);
	display: none;
}
.video-block .picture a.video:hover i.play{
	display: block;
}
.video-block .picture a.video:hover,
.video-block .picture a.active{
	display: block;
	border-color: #207192;
}
.video-block .picture p {
	font-size: 14px;
	color: #666d70;
	line-height: 16px;
	margin-top: 15px;
	display: block;
	width: 236px;
	word-wrap: break-word;
	word-break: normal; 
	text-align: center;
}

.video-block .video-rec {
	background-color: rgba(18, 31, 46, 0.75);
	margin: 0 auto 20px;
}
.video-block .video-box h4.video-title{
	text-align: center;
	color: #666d70;
	font-size: 18px;
	padding: 0 0 24px 0;
	margin-top: -15px;
}
.video-block .video-rec,
.video-block .youku_featured {
	width: 997px;
	height: 562px;
}

.news-iframe * {
	margin: 0;
	padding: 0;
}

.news-iframe {
	font-size: 14px;
	clear: both;
	width:997px;
}

.news-iframe,
.news-iframe a,
.news-iframe a:hover {
	color: #666e70;
}

.news-iframe li{
	overflow: hidden;
}
.news-iframe a.title-news {
	display: inline-block;
	text-overflow:ellipsis; 
	white-space:nowrap;
	height: 24px;
	width: 400px;
	overflow:hidden;
	text-decoration: none;
	outline: none;
}

.news-iframe a:hover {
	text-decoration: underline;
}
.news-iframe .link-more,
.news-iframe .link-more:hover{
	color: #207192;
}

.news-iframe .news-index-list {
	line-height: 2;
	float: left;
	width: 512px;
}

.news-iframe .news-index-list ul {
	list-style: none;
}

.news-iframe .news-index-list li {
	line-height: 1.8;
}

.news-iframe .news-index-list li span {
	margin-right: 5px;
}
.news-iframe .news-index-list li span.date{
	float: right;
	color: #666e70;
}
.news-iframe .more-box{
	margin-top: 15px;
}

.news-iframe .headline {
	clear: both;
	overflow: hidden;
	margin-bottom: 10px;
}

.news-iframe .headline h1 {
	font-size: 18px;
	float: left;
}

.news-iframe .headline .link-more {
	float: right;
	margin-top: 10px;
}

.news-iframe .news-pictures {
	float: right;
	margin-top: 7px;
	/*  height: 254px;*/
}

.news-iframe .news-pictures, 
.news-iframe .news-pictures img {
	width: 424px;
}
.news-iframe .news-pictures img {
	height: 244px;
	display: block;
}

.news-iframe .news-pictures .item a.title{

	background-color: #121f2e;
	background-color: rgba(18, 31, 46, 0.9);
	width: 100%;
	color: #666e70;
	display: block;
	line-height: 30px;
	height: 30px;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	text-decoration: none;

}
.news-iframe .news-pictures .item a.title:hover{
	text-decoration: underline;
}

.news-iframe .carousel-indicators {
	width: 100%;
	left: 0;
	bottom: -30px;
}

.main-video .carousel-indicators{
	bottom: -25px;
}
.news-iframe .carousel-news-picture {
	padding-bottom: 40px;
	border: 1px solid #122134;
	padding:4px;
}



/*new list*/
.news-body {
	margin: 0 auto;
	width: 1000px;
}
.news-content ul {
	overflow: hidden;
	margin-left: -84px;
}
.news-content .news-item {
	color: #929395;
	float: left;
	list-style: none;
	margin: 0 0 0px 84px;
	padding: 0 0 20px 0;
	width: 456px;
}
.news-content .news-item .news {
	margin: 0 0 10px 0;
	overflow: hidden;
}
.news-content .news-item .news a{
	display: block;
	border: 1px solid #182c40;
}
.news-content .news-item .news a:hover{
	box-shadow: 1px 2px 6px #000;
	-moz-box-shadow: 1px 2px 6px #000;
	-webkit-box-shadow: 1px 2px 6px #000;
	border-color: #1a90be
}
.news-content .news-item img {
	width: 454px;
	height: 192px;
	vertical-align: middle;
}
.news-content .news-item .title {
	width: 435px;
	word-break: keep-all;
	white-space: nowrap;
	overflow: hidden;
	margin-top: 25px;
	margin-bottom: 10px;
	text-overflow: ellipsis;
}
.news-content .news-item .title a {
	color: #929395;
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
}
.news-content .news-item .title a:hover {
	text-decoration: underline;
}
.news-content .news-item .news-info {
	color: #929395;
	line-height: 20px;
	padding: 8px 0px 0 0;
	height: 62px;
	overflow: hidden;
	margin-bottom: 8px;
	font-size: 14px;
	width: 454px;
}
.news-content-tj .news-content .news-item .news-info,
.news-content-tj .news-content .news-item{
	/*  height: auto;*/
}
/*.news-content-tj .news-content .news-item{
  margin-bottom: 0;
  padding-bottom: 0;
  }*/
  .news-content .news-item .date {
  	color: #e0e0e0;
  	font: 400 16px Arial;
  	padding: 0 0 0 40px;
  	background:url("../images/news/bg-new-date.png") no-repeat 0% 50%;
  	width: 156px;
  	height: 23px;
  	line-height: 23px;
  	margin-bottom: 10px;
  	display:block;
  }
  .news-page {
  	margin: 0px 0;
  	border-top: 1px solid #182c40;
  	padding: 15px 0;
  	text-align: center;
  }
  .news-page a {
  	border: 1px solid #182c40;
  	color: #929395;
  	display: inline-block;
  	font-size: 14px;
  	text-align: center;
  	height: 26px;
  	line-height: 26px;
  	padding: 0 10px;
  	text-decoration: none;
  }
  .news-page a:hover {
  	color: #1a90be;
  }
  .more-new{
  	padding-top: 25px;
  	text-align: center;
  }
  .more-new a{
  	display: inline-block;
  	font-size: 20px;
  	color: #666d70;
  	border:1px solid #666d70;
  	padding: 8px 20px;
  }
  .more-new a:hover{
  	color: #b0b0b0;
  	border-color: #b0b0b0;
  };