.headerschool {
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 30px;
  z-index: 999;
  border-bottom: 0px solid #0177cf;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}

.headerschool h1 {
  font-size: 24px;
  font-weight: bold;
  line-height: 64px;
  color: #0177cf;
  vertical-align: middle;
  /* margin-left: 24px; */
}

.headerschool a {
  display: flex;
  justify-content: space-between;
  margin-left: 8px;
}

.headerschool img {
  /* width: 100%; */
  height: 36px;
  margin-right: 2px;
  vertical-align: middle;
  margin-top: 14px;
  /* margin-left: 6px; */
}

@media screen and (max-width: 980px) {
  .headerschool img {
    display: none;
  }
}

@media screen and (max-width: 736px) {
  .headerschool img {
    display: none;
  }

  .headerschool {
    height: 44px;
  }

  .headerschool h1 {
    font-size: 22px;
    margin-left: 16px;
    display: none;
  }
}
/*header menu END*/
.menu {
  overflow: hidden;
  display: flex;
}

.menu > li {
  list-style: none;
}

.menu > li div {
  line-height: 66px;
  height: 60px;
  color: #666;
  padding: 0 32px;
  font-size: 18px;
  transition: all 0.3s;
  border-bottom: 2px solid #fff;
}

.menu > li div:hover {
  color: #0177cf;
}

.menu_ok {
  color: #0177cf !important;
  /* border-bottom: 2px solid #ffd900 !important; */
}

@media screen and (max-width: 980px) {
  .menu > li div {
    padding: 0 24px;
  }

  .menu > li span {
    display: none;
  }
}

@media screen and (max-width: 736px) {
  .menu {
    width: 100%;
    padding: 0;
  }

  .menu > li {
    /* width: calc(100% / 3); */
    width: calc(100% / 4);
    /* width: calc(100% / 5); */
    border-right: 0px solid #eee;
  }

  .menu > li:last-child {
    border-right: 0px solid #eee;
  }

  .menu > li div {
    font-size: 16px;
    text-align: center;
    line-height: 46px;
    height: 44px;
    padding: 0 0px;
  }

  .menu > li span {
    display: none;
  }
}
