.header-container {
  height: 62px;
  background: rgb(255, 255, 255);
  box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  padding-left: 58px;
  font-size: 18px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background 0.3s;
  justify-content: space-between;
  min-width: 1440px;
}
.header-container p {
  margin: 0;
  padding: 0;
}
.header-container .header-list {
  display: flex;
  align-items: center;
}
.header-container .header-list .text-item {
  padding: 0 24px;
  position: relative;
  height: 60px;
  line-height: 60px;
  white-space: nowrap;
}
.header-container .header-list .text-item:hover .header-text {
  color: #E91717;
}
.header-container .header-list .text-item .header-text {
  display: block;
}
.header-container .header-list .text-item-active {
  color: #DF0000;
  font-weight: bold;
  cursor: default;
}
.header-container .header-list .text-item-active .header-text {
  color: #DF0000;
  cursor: default;
  font-weight: bold;
}
.header-container .header-list .text-item-active:after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: #E91717;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.header-container .header-list .hot-item:before {
  content: " ";
  display: block;
  width: 40px;
  height: 21px;
  background-image: url("../../img/home-img/hot.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: -18px;
  top: 10px;
}
.header-container .h-right {
  display: flex;
  align-items: center;
}
.header-container .header-right-btn {
  margin-left: 20px;
  height: 62px;
  text-align: center;
  line-height: 62px;
  font-size: 12px;
  cursor: pointer;
}
.header-container .header-right-btn .workbench-btn {
  color: #fff;
  background-color: #F53E2B;
  width: 80px;
  display: block;
  height: 100%;
}
.header-container .header-right-btn .user-avatar {
  width: 40px;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-container .header-right-btn .user-avatar-img {
  width: 28px;
  height: 28px;
}
.header-container .header-right {
  padding-right: 10px;
}
.header-container .header-right.haslogin {
  padding-right: 61px;
}
.header-container .header-right .search {
  display: flex;
  align-items: center;
  color: #000000;
  cursor: pointer;
  white-space: nowrap;
}
.header-container .header-right .search-active {
  background: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  display: none;
  position: relative;
  border: 1px solid #cecece;
}
.header-container .header-right .search-active .header-search-data {
  display: none;
  position: absolute;
  top: 42px;
  background-color: #fff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.11);
  border-radius: 2px;
  padding: 12px 6px 0 6px;
  width: 100%;
  left: 0;
  z-index: 999;
  max-height: 300px;
  overflow: auto;
  overscroll-behavior: contain;
}
.header-container .header-right .search-active .header-search-data::-webkit-scrollbar {
  width: 6px;
}
.header-container .header-right .search-active .header-search-data::-webkit-scrollbar-thumb {
  background-color: #E5E5E5;
  border-radius: 4px;
}
.header-container .header-right .search-active .search-data-item {
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.header-container .header-right .search-active .search-data-item .title {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 12px;
}
.header-container .header-right .search-active .search-data-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.header-container .header-right .search-active .search-data-item .data-li {
  font-size: 14px;
  font-weight: 400;
  color: #191919;
  margin-bottom: 12px;
  display: block;
  width: 228px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}
.header-container .header-right .search-active .search-data-item .data-li:last-child {
  margin-bottom: 0;
}
.header-container .header-right .search-active .search-data-item .data-li:hover {
  color: #C72C1D;
}
.header-container .header-right .search-active .clear-data {
  display: none;
  height: 16px;
  width: 16px;
  background-image: url("../../img/home-img/close.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.header-container .header-right .search-active .clear-data:hover {
  background-image: url("../../img/home-img/close-active.png");
}
.header-container .header-right .search-active .loading-data {
  display: none;
  height: 16px;
  width: 16px;
  background-image: url("../../img/loading.gif");
  background-size: cover;
  background-repeat: no-repeat;
}
.header-container .header-right .header-input {
  border: none;
  background: #fff;
  color: #333333;
}
.header-container .product-center-popover {
  position: absolute;
  top: 55px;
  width: 820px;
  height: 379px;
  background-image: url("../../img/home-img/product-center-bg.png");
  background-size: cover;
  padding: 40px 0px 40px 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  color: #191919;
  display: none;
  cursor: default;
}
.header-container .product-center-popover .product-center-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  height: 100%;
  overflow: auto;
  margin-right: 20px;
  padding-right: 60px;
}
.header-container .product-center-popover .product-center-wrap::-webkit-scrollbar {
  width: 6px;
}
.header-container .product-center-popover .product-center-wrap::-webkit-scrollbar-thumb {
  background-color: #E5E5E5;
  border-radius: 4px;
}
.header-container .product-center-popover .popver-item:last-child {
  margin-right: 0;
}
.header-container .product-center-popover .popver-item .title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 20px;
  display: block;
}
.header-container .product-center-popover .popver-item .title > a {
  font-weight: bold;
  color: #191919;
}
.header-container .product-center-popover .popver-item .title > a:hover {
  color: #E91717;
}
.header-container .product-center-popover .popver-item .title .hover-title {
  color: #E91717;
}
.header-container .product-center-popover .popver-item .product-list-wrap {
  margin-bottom: 18px;
}
.header-container .product-center-popover .popver-item .normal-desc {
  color: #191919;
  font-size: 16px;
  text-indent: 10px;
  line-height: normal;
  font-weight: normal;
  cursor: default;
}
.header-container .product-center-popover .product-item {
  font-size: 16px;
  line-height: 30px;
  display: block;
  color: #191919;
  font-weight: normal;
  text-indent: 10px;
}
.header-container .product-center-popover .product-item:hover {
  color: #E91717;
}

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