@charset "utf-8";
/* CSS Document */
.box1 {
	background-image: url(../images/banner_a.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	width: auto;
	height: 200px;
	margin-top: 100px;
	-webkit-animation: bgMove 5s linear;
	-moz-animation: bgMove 5s linear;
	-ms-animation: bgMove 5s linear;
	-o-animation: bgMove 5s linear;
	animation: bgMove 5s linear;
}
@-webkit-keyframes bgMove {
 from {
 background-position: bottom left;
}
 to {
 background-position: center;
}
}
@-moz-keyframes bgMove {
 from {
 background-position: bottom left;
}
 to {
 background-position: center;
}
}
@-ms-keyframes bgMove {
 from {
 background-position: bottom left;
}
 to {
 background-position: center;
}
}
@-o-keyframes bgMove {
 from {
 background-position: bottom left;
}
 to {
 background-position: center;
}
}
@keyframes bgMove {
 from {
 background-position: top center;
}
 to {
 background-position: center;
}
}
.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus{
	background-color: #ff8341;
	border-color:#ff8341;
}
.list_title{
	margin-top: 50px;
	line-height: 50px;
	border-bottom: 1px solid orange;
	position: relative;
	text-indent: 20px;
}
.list_title:before{
	content:"";
	display: block;
	width:10px;
	height:30px;
	background: orange;
	position: absolute;
	top:10px;
	border-radius: 5px ;
}
.newsbox {
	background-color: white;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
	margin-top: 20px;
}
.newslist {
	padding-left: 0px;
	margin-left: 10px;
	list-style: none;
        font-size:16px;
}
.newslist>li {
	width:95%;
	font-size: 16px;
    padding:15px 20px 15px 0px;
	border-bottom: 1px dashed #efefef;
	background: url(../images/orangepoint.png) no-repeat left center;
	padding-left: 30px;
}
.newslist>li>span {
	color: darkgray;
	font-size: 14px;
	float: right;
	margin-top: 0px;
}
@media (max-width:1199px) {
.box1 {
	margin-top: 0px;
}
}
