#header {
  position: relative;
  width: 100%;
  position: fixed;
  z-index: 1500;
  background-color: white;
}
#header .container {
  height: 100px;
  background: white;
  width: 1315px;
  z-index: 10;
}
#header .container .menubox_logo img {
  width: 450px;
}
#header .container .menubox_main {
  height: 100px;
}
#header .container .menubox_main .menubox_link {
  height: 100%;
  display: flex;
}
#header .container .menubox_main .menubox_link a {
  display: inline-block;
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  margin-left: 20px;
  line-height: 32px;
  height: 42px;
  border-bottom: 3px #fff solid;
  cursor: pointer;
}
#header .container .menubox_main .menubox_link div {
  height: 100%;
  display: flex;
  align-items: center;
}
#header .container .menubox_main .menubox_link div:hover a {
  border-color: #0080cc;
  color: #0080cc;
}
#header .secondmenu {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  height: 50px;
  overflow: hidden;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  color: #333333;
  transform: translateY(-10%);
}
#header .secondmenu ul {
  height: 100%;
  display: flex;
  align-items: center;
}
#header .secondmenu ul li {
  margin-right: 30px;
  cursor: pointer;
  background: url('../assets/img/marrow.png') left center no-repeat;
  padding-left: 17px;
}
#header .secondmenu ul li:hover {
  color: #0077cb;
}
#header .secondmenu.active {
  transform: translateY(100%);
}
#header .secondmenu:hover {
  transform: translateY(100%);
}
