﻿body,
div,
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body {
	font-family: "微软雅黑", Arial, Helvetica, sans-serif;
	color: #333333;
	line-height: 25px;
	font-size: 14px;
}

a:link,
a:visited {
	text-decoration: none;
	color: #333333;
}


/*

  2017年12月19日
  清除浮动用的，把想清除浮动的元素写上类名就清除了。
 */
@charset "utf-8";
.clearfix:after,
.clearfix:before {
	content: '';
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

.cl {
	zoom: 1;
}
/*通用居中样式，给类名就好使*/
.center{
	margin-left: auto;
	margin-right:auto;
	display: block;
}
 
/*头部*/

.col960 {
	margin-top: 20px;
	width: 100%;
	min-width: 1024px;
}


nav{
	width: 100%;
	min-width: 1024px;
	
	/*background: pink;*/
}
.nav{
	width: 1024px;
	padding:10px 0;
}
.nav_list{
	width: 100%;
}
.nav_list>li{
	float: left;
	padding:  8px 12px;
	border-radius: 5px;
	position: relative;
	z-index: 66;
	/*background: red;*/
}
.nav_list>li+li{
	margin-left: 30px;
}
.nav_list>li+li:hover{
	background: #b70005;
}
.nav_list>li+li:hover >a{
	color: #fff;
}
.nav_list>li>a{
	width: 100%;
	height: 100%;
	font-size: 18px;
	transition: .35s;
}
.list_lost{
	width: 100%;
	position: absolute;
	left: 0;
	top: 38px;
	z-index: 70;
	background: rgba(255,255,255,1);
	display: none;
	border-radius: 0 0 5px 5px;

}
.list_lost>li{
	text-align: center;
	padding:  8px 12px;
	border-radius: 5px;

}
.list_lost>li>a{
	font-size: 14px;
}