.nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-wrap .navitems {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.nav-wrap .suppliers-box {
  width: 150px;
  height: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.nav-wrap .suppliers-box:hover .suppliers {
  display: block;
}
.nav-wrap .suppliers-box > span i {
  margin-left: 5px;
  font-size: 18px;
}
.nav-wrap .suppliers {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  background-color: #fff;
  z-index: 1;
}
.nav-wrap .suppliers a {
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  text-overflow: ellipsis;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-wrap .suppliers a:hover {
  color: #D80A26;
}