﻿
.menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #215F90;
  display: flex;
  justify-content: center;
  position:relative;
  z-index:10000;
}
.menu * {
  box-sizing: border-box;
}
.menu .center {
  width: 1200px;
}
.menu .ul-list {
	list-style:none;
}
.menu .ul-list > li {
  flex: 1;
  border-right: 0px solid #DDD;
  position: relative;
  float:left;
  padding:0 8px;
  
  
}
.menu .ul-list > li:last-child {
  border-right: none;
}
.menu .ul-list > li:nth-child(4) {
	width:260px!important;
}
.menu .ul-list > li > a {
 height:58px;
 line-height:58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: #215F90;
  white-space:nowrap;
  padding:0 16px;
}
.menu .ul-list > li > a:hover {
  background: #38BFEF;
}


.menu .ul-list > li > span {
  color: #fff;
  font-size: 14px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #215F90;
}
.menu .ul-list > li:hover .ol-list {
  display: block;
  list-style:none;
}
.menu .ol-list {
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  z-index: 999;
  background: #215F90;
  width: 100%;
}
.menu .ol-list > li > a {
	clear:both;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CCC;
  justify-content: center;
}
.menu .ol-list > li > a:hover {
  background: #38BFEF;
}

