/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
/* remember to define focus styles! */
:focus {
  outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}
.header {
  width: 100%;
  height: 170px;
  max-width: 1920px;
  min-width: 1280px;
  margin: 0 auto;
  background: #fff;
  border-bottom: 6px solid #bc5844;
  position: relative;
  background: url("/statics/images/zms/header-bg.png") no-repeat #fff;
  background-size: 100% 100%;
}
.header .logo-box {
  width: 90%;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 60px;
  box-sizing: border-box;
}
.header .logo-box .right {
  display: flex;
  align-items: center;
}
.header .logo-box .right img {
  margin-right: 10px;
}
.header .logo-box .right span {
  margin-right: 10px;
  font-size: 18px;
}
.header .logo-box .right .red {
  color: red;
  font-weight: bold;
}
.header .menu {
  width: 1280px;
  position: absolute;
  height: 60px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
}
.header .menu .nav{ 
font-size: 22px;
color: #020202;
  height: 60px;   
  min-width: 120px;
  text-align:center; 
  margin-bottom: -10px;
  position: relative;
}

.header .menu .name{
	 font-size: 22px;
   color: #020202;
   height: 60px;
   line-height: 50px;
   display: block;  
   text-decoration: none
 } 
 .header .menu .nav .active{
  color: #BC5844;
  font-weight: bold;
}
 .header .menu .name:hover{color: #BC5844;}
 .header .menu .name.active{color: #BC5844;}
.header .menu .list{
	position: absolute;
	width: 150px; 
	left: -14px;
  top:60px;
	display: none;
	background: #fff;
}
.header .menu .list a{
	height: 45px;
	color: #020202;
	display: block;  
   text-decoration: none;
	line-height: 45px;
	font-size: 18px;
	text-align: center;
	
}
.header .menu .list a:hover{
  color: #fff;
  background: #BC5844;


} 