.menuPage {
  height: 41px;
  margin: 23px 0 0px;
}
.menuBox {
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #eef3f8;
  width: 1580px;
  
}
.menuBox .menuItem{
  padding:0 15px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  font-size: 18px;
  color:#333;
  position: relative;
  cursor: pointer;
  flex:1;
}
.menuBox .menuItem a {
  color:#333 !important;
}
.menuBox .active a {
  color:#0066cd !important;

}

.menuBox .menuItem a:hover,.menuBox .menuItem a:focus {
  text-decoration: none !important;
}

.menuBox .active:after{
  content:'';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #0066cd;
  width:60px;
  height: 2px;

}