/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

.menu {
  /*position: sticky;
  top: 0;
  left: 0;
  background: #000;
  display: flex;
  justify-content: center;*/
  width: 100%;
  line-height: 95px;

}
.menu * {
 
}
.menu .center {
  width: 1200px;
}
.menu .ul-list {
  display: flex;
}
.menu .ul-list > li {
  flex: 1;
  border-right: 0px solid #333;
  /*position: relative;*/
  text-align: center;
}
.menu .ul-list > li:last-child {
  border-right: none;
}
.menu .ul-list > li > a {
  height: 35px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  color: #fff;
  /*background: #222;*/
}
.menu .ul-list > li > span {
  color: #fff;
  font-size: 14px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #222;*/
}
.menu .ul-list > li:hover .ol-list {
  display: block;
}
.menu .ol-list {
  display: none;
  position: absolute;
  top: 93px;
  /*left: 0;*/
  z-index: 999;
  background: #309ee5;
  width: 103px;
}
.menu .ol-list > li > a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #309ee5;
  justify-content: center;
}

