* {
	margin: 0;
	padding: 0;
}
ul {
	list-style: none;
}
h1, h2, h3, h4, h5 {
	font-weight: normal;
	font-family: "microsoft yahei";
}
.search {
	width: 100%;
	height: 80px;
	background: rgb(54, 71, 79);
	display: flex;
}
.search-box {
	width: 680px;
	height: 40px;
	background: #fff;
	border: none;
	margin: 0 auto;
	border-radius: 5px;
	align-self: center;
}
.search-btn {
	width: 10%;
	height: 40px;
	border: none;
	border-radius: 5px;
	background: url(search.png) -10px no-repeat;
	float: left;
}
.input button {
	width: 90%;
	height: 40px;
	border: none;
	border-radius: 5px;
	float: right;
	font-size: 14px;
	font-family: "microsoft yahei";
	outline:none;
}
.content {
	width: 100%;
	max-width: 1200px;
	min-height: 676px;
	margin: 0 auto 40px;
}
.content:after{ content:''; display:block; clear:both;}
.content *{ box-sizing:border-box;}
 .path {
	width: 100%;
	height: 40px;
	line-height: 40px;
	margin: 0 0 20px;
	font-size: 15px;
}
.path span a {	
	color: #9a9a9a;
	text-decoration: none;
}
.column {
	float: left;
	width: 220px;
	border: 1px solid #ddd;
}
.column li {
	width: 100%;
	height: auto;
	line-height: 35px;
}
.column>li {
	margin-top: 3px;
	background: rgb(244, 245, 247);
}
.column>li:first-child{
	margin-top:0;
}
.column li a {
	height: 40px;
	line-height: 40px;
	display: block;
	color: rgb(50, 51, 53);
	font-size: 15px;
	padding:0 10px;
	cursor: pointer;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.column li .inactive:after {
	content: '';
	display:block;
	float: right;
	width: 20px;
	height: 20px;
	background: url('on.png') center no-repeat;
	margin-top:10px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.column li .inactives:after {
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}
.subcolumn {
	background: #FFFFFF;
	padding:0 5%;
}
.subcolumn li {
	width: 100%;
	border-bottom: 1px solid #eee;
}
.subcolumn li:last-child{
	border-bottom:0;
}
.subcolumn li a {
	font-size: 14px;
	color: #333;
}		
.subcolumn li .active,
.subcolumn li a:hover{
	color: rgb(0,192,254);
}