ul {
  margin: 0;
  padding: 0;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  box-sizing: border-box;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background-color: #fff;
  z-index: 200;
  box-shadow: 0px 2px 5px #ccc;
}
header .logo {
  margin-left: 60px;
}
header .top-nav-bar .dropdown-toggle::after {
  display: none;
}
header .top-nav-bar .level-one {
  width: 100%;
  display: flex;
  align-items: center;
}
header .top-nav-bar .level-one > ul > li.active {
  border-bottom: 3px solid #D80C18;
}
header .top-nav-bar .level-one > ul > li.active a {
  color: #D80C18 !important;
}
header .top-nav-bar .level-one .level-one-li {
  position: relative;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
}
header .top-nav-bar .level-one .level-one-li a {
  font-size: 16px;
  color: #333333;
}
header .top-nav-bar .level-one .level-one-li.on >a,
header .top-nav-bar .level-one .level-one-li a:hover {
  color: #D80C18;
}
header .top-nav-bar .level-one .level-one-li .hid {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0;
}
header .top-nav-bar .level-one .level-one-li ul {
  position: absolute;
  z-index: 10;
  background: #ffffff;
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.5);
  border-top: 0;
  top: 60px;
}
header .top-nav-bar .level-one .level-one-li ul::before {
  content: " ";
  display: block;
  height: 2px;
  overflow: hidden;
  background-color: #D80C18;
  margin-bottom: 8px;
}
header .top-nav-bar .level-one .level-one-li ul li {
  width: 150px;
  height: 32px;
  line-height: 32px;
  padding: 0 15px;
}
header .top-nav-bar .level-one .level-one-li ul li a {
  font-size: 16px;
}
header .top-nav-bar .level-one .level-one-li.open .hid {
  transition: 0.4s;
  max-height: 200px;
  padding: 0 0 10px;
}
header .lang {
  position: absolute;
  right: 150px;
  color: #A1A1A1;
  font-size: 22px;
}
header .lang .active {
  color: #DB1C27;
}
header .search {
  border: 1px solid red;
  width: 80px;
  height: 100%;
  margin-right: 0;
}
header .search .search-input-container {
  position: absolute;
  z-index: 10;
  top: 60px;
  right: 0;
  width: 30%;
  height: 60px;
  overflow: hidden;
  transition: 0.3s;
}
header .search .search-input-container input {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 0;
  height: 60px;
  padding: 0 15px;
  border: 1px solid #eaeaea;
}
header .search .search-input-container input:focus {
  color: #cccccc;
}
header .search .search-input-container span {
  position: absolute;
  z-index: 20;
  top: 50%;
  right: 20px;
  font-size: 20px;
  height: 20px;
  margin-top: -8px;
  line-height: 1;
}
header .search .search-input-container span:hover {
  cursor: pointer;
}
header .search .search-container {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #DB1C27;
  width: 80px;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
header .search .search-container .search-icon {
  display: block;
  line-height: 60px;
  color: white;
  font-size: 35px;
  width: 80px;
}
header .search .search-container .mobile {
  display: none;
}
@media (max-width: 1200px) {
  header {
    height: 60px;
  }
  header .logo {
    margin-left: 15px;
  }
  header .logo img {
    max-width: 35vw;
  }
  header .top-nav-bar {
    position: absolute;
    top: 60px;
    width: 100%;
    background-color: white;
    z-index: 500;
  }
  header .top-nav-bar .level-one {
    display: block;
    padding: 0;
  }
  header .top-nav-bar .level-one .level-one-li {
    height: auto;
    line-height: 50px;
    padding: 0;
    text-align: center;
  }
  header .top-nav-bar .level-one .level-one-li ul {
    position: static;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.01);
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0);
    border-top: 0px #D80C18 solid;
  }
  header .top-nav-bar .level-one .level-one-li ul li {
    width: auto;
    height: 32px;
    line-height: 32px;
    text-align: center;
    padding: 0 15px;
  }
  header .top-nav-bar .level-one .level-one-li ul li a {
    font-size: 16px;
  }
  header .lang {
    right: 60px;
  }
  header .search .search-container {
    background-color: white;
  }
  header .search .search-container .pc {
    display: none;
  }
  header .search .search-container .mobile {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 10px;
    display: block;
    color: #333333;
    line-height: 60px;
    width: auto;
    font-size: 24px;
  }
}
