* {
  box-sizing: border-box;
  font-family: "微软雅黑";
}
.menu {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #2068b0;
  display: flex;
  justify-content: center;
}
.menu * {
  box-sizing: border-box;
}
.menu .center {
  width: 1300px;
}
.menu .ul-list {
  display: flex;
margin-left:-40px;
}
.menu .ul-list > li {
  flex: 1;
  border-right: 1px solid #fff;
  position: relative;
}
.menu .ul-list > li:last-child {
  border-right: none;
}
.menu .ul-list > li > a {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  background: #2068b0;
font-weight: bold;
}
.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: 50px;
  left: 0;
  z-index: 999;
  background: #2068b0;
  width: 100%;
}
.menu .ol-list > li > a {
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu .ol-list > li > a:hover {
  background: #eb9419;
}