@charset "UTF-8";
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  font-size: 16px;
}
header nav {
  height: 80px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  position: relative;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
header nav svg {
  fill: #941203;
  transition: all 0.5s;
}
header nav .logo {
  display: inline-block;
  vertical-align: middle;
  margin-right: 67px;
}
header nav .logo svg {
  height: 42px;
  width: 187px;
}
header nav ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  height: 100%;
  margin: 0;
}
header nav ul li {
  display: inline-block;
  height: 100%;
  line-height: 80px;
  min-width: 60px;
  margin-right: 10px;
  text-align: center;
}
header nav ul li.active > a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  border-radius: 2px;
  height: 2px;
  background: #941203;
}
header nav ul li > a {
  position: relative;
}
header nav ul li span, header nav ul li a {
  text-decoration: none;
  color: #333;
}
header nav ul li span:hover, header nav ul li a:hover {
  color: #941203;
}
header nav ul li.border-left {
  position: relative;
  padding-left: 20px;
}
header nav ul li.border-left:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #D8D8D8;
  width: 2px;
  height: 2em;
  line-height: 1em;
}
header nav ul li.lang-select {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
header nav ul li.lang-select .lang-list {
  display: none;
  width: 144px;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: #ffffff;
  padding: 10px 0px;
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
}
header nav ul li.lang-select .lang-list .lang-item {
  font-size: 16px;
  padding: 0 20px;
  line-height: 40px;
  position: relative;
  color: #333333;
  cursor: pointer;
}
header nav ul li.lang-select .lang-list .lang-item a {
  color: #333333;
}
header nav ul li.lang-select .lang-list .lang-item:hover {
  background-color: #cccccc;
}
header nav ul li.lang-select .lang-list .lang-item.active {
  color: #941203;
}
header nav ul li.lang-select .lang-list .lang-item.active a {
  color: #941203;
}
header nav ul li.lang-select .lang-list .lang-item.active::after {
  content: "✓";
  position: absolute;
  display: block;
  right: 20px;
  top: 0;
}
header nav ul li.lang-select:hover .lang-list {
  display: block;
}
header nav ul li.search .search-wrapper {
  width: 200px;
  height: 44px;
  background: #F0EFEF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid transparent;
  padding: 0 10px;
}
header nav ul li.search .search-wrapper input {
  flex: 1;
  outline: none;
  border: none;
  background: transparent;
  font-size: 16px;
}
header nav ul li.search .search-wrapper input::placeholder {
  color: #999999;
}
header nav ul li.search .search-btn {
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
header nav ul li .product-dropmenu {
  display: none;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  left: 0;
  top: 80px;
  padding: 22px 0;
  border-radius: 0px 0px 20px 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}
header nav ul li .product-dropmenu .left-title {
  line-height: normal;
  text-align: right;
  margin-right: 20px;
  flex: 1;
}
header nav ul li .product-dropmenu .left-title .left-wrapper {
  width: 134px;
  display: inline-block;
  text-align: left;
}
header nav ul li .product-dropmenu .left-title .left-wrapper .main-title {
  font-size: 24px;
  width: 134px;
  border-bottom: 2px solid #D8D8D8;
  padding-bottom: 16px;
  color: #333333;
  margin-bottom: 10px;
  display: inline-block;
}
header nav ul li .product-dropmenu .left-title .left-wrapper .tip-title {
  width: 134px;
  font-size: 16px;
  color: #999999;
}
header nav ul li .product-dropmenu .right-content {
  flex: 2;
}
header nav ul li .product-dropmenu .right-content .product-list {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
header nav ul li .product-dropmenu .right-content .product-list .product-item {
  width: 186px;
  height: 130px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
header nav ul li .product-dropmenu .right-content .product-list .product-item:not(:last-child) {
  margin-right: 14px;
}
header nav ul li .product-dropmenu .right-content .product-list .product-item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
header nav ul li .product-dropmenu .right-content .product-list .product-item .product-name {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: #ffffff;
}
header nav ul li .product-dropmenu .right-content .product-list .product-item:hover img {
  transform: scale(1.1);
}
header nav ul li:hover .product-dropmenu {
  display: flex;
}
header nav ul li:last-child {
  margin-right: 0;
}
header nav .svg-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/*# sourceMappingURL=header.css.map */
