#header {
  position: fixed;
  width: 100%;
  top: 0;
  height: 64px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 5px 48px !important;
  box-shadow: 0px 2px 4px 0px rgba(18, 18, 18, 0.08);
  z-index: 1000;
}

#header>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 40px;
}

#header .logo {
  height: 60px;
  margin-right: 60px;
}

#header .logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
}

#header .menu {
  flex: 1 1 0%;
  display: flex;
}

#header .menu .menu-item a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  padding: 0px 16px;
  color: rgba(0, 0, 0, 0.88);
}

#header .menu .menu-item a:hover {
  color: #5596f2;
}

#header .menu .menu-item .active {
  color: #1677ff;
  background-color: transparent;
}

#header .menu .menu-item .active::after {
  position: absolute;
  inset-inline: 16px;
  bottom: 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-bottom-width: 2px;
  border-bottom-color: #1677ff;
  content: "";
}

.setBOX {
  position: relative !important;
  top: 0px !important;
  right: 0px !important;
}
.TabBar {
  display: none;
}

@media (max-width: 768px) {
  #header {
    padding: 5px 0px !important;
  }

  #header>.container::before,
  #header>.container::after {
    display: none;
  }

  #header .menu {
    display: none;
  }

  #header .logo {
    height: 54px;
    margin-right: 0px;
    margin-top: -9px;
  }

  #header .navbar-toggle {
    display: none;
    margin-right: 0px;
  }

  #header .navbar-toggle .icon-bar {
    background-color: #666666;
  }

  #header #timeline {
    display: none;
  }

  #header #setBOX .setBOX_line:last-of-type {
    display: none;
  }

  .TabBar {
    display: block;
    width: 100%;
    height: 64px;
    background-color: #fff;
    left: 0;
    bottom: 0;
    position: fixed;
    z-index: 9999;
    -webkit-box-shadow: 0 0 6px rgba(0, 204, 204, .5);
    -moz-box-shadow: 0 0 6px rgba(0, 204, 204, .5);
    box-shadow: 0 0 6px rgba(0, 204, 204, .5);
  }

  .TabBar ul {
    width: 100%;
    min-height: 1px;
    overflow: hidden;
  }

  .TabBar,
  ul,
  li {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .TabBar ul li a {
    width: 25%;
    height: 100%;
    float: left;
    text-align: center;
    text-decoration: none;
    padding: 6px 0px;
    color: #363637;
  }

  /*.TabBar ul li a:hover{
    color:#c91d15;
    text-decoration: none;
  }*/
  .TabBar ul li a.active {
    color: #1677ff;
    text-decoration: none;
  }

  .TabBar ul li a.homea.active {
    background: #1677ff;
    color: #fff;
    text-decoration: none;
  }

  .TabBar ul li a i {
    font-size: 24px;
    line-height: 24px;
  }

  .TabBar ul li a span {
    font-size: 12px;
    line-height: 12px;
  }

  .TabBar ul li a.homea.active span {
    background: #1677ff;
    color: #fff !important;
  }

  .TabBar ul li a.active span {
    color: #1677ff;
  }
}