﻿.navbar .container {
  margin: 0;
  padding: 0;
  width: 100%;
}

#navbar {
  background-color: #fff;
  height: 88px;
}

#navbar .container {
  width: 1440px;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#navbar .container::before, #navbar .container::after {
  content: none;
}

#navbar .container .navbar_logo {
  display: flex;
}

#navbar .container .navbar_logo .top_logo {
  width: 263px;
  height: 88px;
  display: flex;
  align-items: center;
}

#navbar .container .navbar_logo .top_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#navbar .container .navbar_logo .top_menu {
  display: none;
}

#navbar .container .navbar_list {
  height: 100%;
}

#navbar .container .navbar_list > ul {
  display: flex;
  height: 100%;
}

#navbar .container .navbar_list > ul > li {
  margin-left: 76px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

#navbar .container .navbar_list > ul > li::before {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #0076C1;
  border-radius: 2px 2px 2px 2px;
  transition: all 0.2s ease-in-out;
}

#navbar .container .navbar_list > ul > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #333333;
  line-height: 24px;
  -webkit-background-clip: text;
  transition: all 0.2s ease-in-out;
  padding: 0 30px;
  padding-bottom: 10px;
}

#navbar .container .navbar_list > ul > li ul {
  display: flex;
  height: 0;
  flex-direction: column;
  min-width: 150px;
  padding: 0 14px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: none;
  overflow: hidden;
}

#navbar .container .navbar_list > ul > li ul::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  top: -30px;
  left: 0;
  background-color: transparent;
}

#navbar .container .navbar_list > ul > li ul li {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#navbar .container .navbar_list > ul > li ul li:last-child {
  border-bottom: none;
}

#navbar .container .navbar_list > ul > li ul li a {
  font-size: 15px;
  font-family: PingFang SC-Regular, PingFang SC;
  font-weight: 400;
  color: #fff;
  line-height: 15px;
  position: relative;
  padding: 0;
}

#navbar .container .navbar_list > ul > li ul li a:hover {
  background-color: transparent;
  font-weight: bold;
}

#navbar .container .navbar_list > ul > li ul li a:hover::before {
  width: 100%;
}

#navbar .container .navbar_list > ul > li ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease-in-out;
}

#navbar .container .navbar_list > ul > li ul li.active {
  background-color: transparent;
  font-weight: bold;
}

#navbar .container .navbar_list > ul > li ul li.active a {
  background-color: transparent;
}

#navbar .container .navbar_list > ul > li:hover::before {
  width: 30px;
}

#navbar .container .navbar_list > ul > li:hover > ul {
  height: auto;
  overflow: initial;
}

#navbar .container .navbar_list > ul > li:hover > a {
  font-weight: 600;
}

#navbar .container .navbar_list > ul > li.active::before {
  width: 30px;
}

#navbar .container .navbar_list > ul > li.active > a {
  font-weight: bold;
}

#navbar .container .navbar_list .arrow {
  display: none;
}

@media screen and (max-width: 767px) {
  #navbar {
    width: 100%;
    height: 60rem;
    padding-top: 60rem;
  }
  #navbar .container {
    width: 100%;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    height: 60rem;
  }
  #navbar .container .navbar_logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20rem;
    height: 60rem;
    box-shadow: 0rem 4rem 10rem 0rem rgba(0, 0, 0, 0.05);
    background-color: #fff;
    z-index: 10000;
  }
  #navbar .container .navbar_logo .top_logo {
    width: 180rem;
    height: 60rem;
  }
  #navbar .container .navbar_logo .top_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #navbar .container .navbar_logo .top_menu div {
    width: 28rem;
    height: 2rem;
    margin-bottom: 8rem;
    background-color: #333333;
    transform: rotate3d(0, 0, 0, 0);
  }
  #navbar .container .navbar_logo .top_menu.transform div {
    background-color: transparent;
  }
  #navbar .container .navbar_logo .top_menu.transform div:first-of-type {
    top: 10rem;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  #navbar .container .navbar_logo .top_menu.transform div:last-of-type {
    bottom: 10rem;
    transform: rotate3d(0, 0, 1, -45deg);
  }
  #navbar .container .navbar_logo .top_menu.transform div:first-of-type,
  #navbar .container .navbar_logo .top_menu.transform div:last-of-type {
    transition: transform .4s .3s ease, background-color 250ms ease-in;
    background-color: #333333;
  }
  #navbar .container .navbar_logo .top_menu div:first-of-type,
  #navbar .container .navbar_logo .top_menu div:last-of-type {
    transition: transform .3s ease .0s, background-color 0ms ease-out;
    position: relative;
  }
  #navbar .container .navbar_list {
    position: absolute;
    top: 60rem;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
    display: none;
    overflow: hidden;
    padding: 12rem 0;
  }
  #navbar .container .navbar_list ul {
    width: 100%;
    flex-direction: column;
  }
  #navbar .container .navbar_list ul li {
    margin-left: 0;
    height: auto;
    padding: 12rem 16rem 0;
  }
  #navbar .container .navbar_list ul li::before {
    content: none;
  }
  #navbar .container .navbar_list ul li a {
    display: inline-block;
    width: auto;
    height: auto;
    font-size: 18rem;
    color: #999999;
    line-height: 18rem;
  }
  #navbar .container .navbar_list ul li ul {
    position: relative;
    flex-direction: column;
    transform: none;
    left: -16rem;
    top: 0;
    width: 100vw;
    background-color: #FAFAFA;
    border-top: 1rem solid #DDDDDD;
    border-bottom: 1rem solid #DDDDDD;
    padding: 12rem 0;
    height: auto;
    display: none;
  }
  #navbar .container .navbar_list ul li ul li {
    border-bottom: none;
    justify-content: flex-start;
    height: 28rem;
    padding: 0 16rem 0;
    margin-bottom: 8rem;
  }
  #navbar .container .navbar_list ul li ul li:last-child {
    margin-bottom: 0;
  }
  #navbar .container .navbar_list ul li ul li a {
    padding: 0;
    font-size: 16rem;
    line-height: 16rem;
    color: #999999;
  }
  #navbar .container .navbar_list ul li ul::before {
    content: none;
  }
  #navbar .container .navbar_list ul li .arrow {
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    right: 16rem;
  }
  #navbar .container .navbar_list ul .active > a {
    color: #2A42AF;
  }
  #navbar .container .navbar_list > ul > li {
    flex-direction: column;
    align-items: flex-start;
  }
  #navbar .container .navbar_list > ul > li > a {
    padding: 0 0 12rem 0;
    font-size: 18rem;
    line-height: 18rem;
  }
  #navbar .container .navbar_list > ul > li:hover a {
    font-weight: normal;
  }
  #navbar .container .navbar_list > ul > li:hover a:hover {
    font-weight: normal;
  }
  #navbar .container .navbar_list > ul > li.active .arrow {
    transform: rotate(180deg);
  }
  #navbar .container .navbar_list > ul > li.active ul {
    display: flex;
  }
  #navbar .container .navbar_list > ul > li.active a {
    font-weight: 400;
  }
  #navbar .container .navbar_list > ul > li.openMenu .arrow {
    transform: rotate(180deg);
  }
  #navbar .container .navbar_list > ul > li.openMenu ul {
    display: flex;
  }
  #navbar .container .navbar_list .dropdown-custom a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
  }
}

.dropdown-backdrop {
  display: none !important;
}