.headw{
  padding: 0 78px;
}
.head{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 20;
  justify-content: space-between;
  width: 100%;
  min-width: 1200px;
  height: 66px;
  line-height: 66px;
  background: linear-gradient(90deg, #092817 0%, #092817 0%, #0A271C 26%, #0B2627 58%, #0A1D22 99%, #0A1D22 100%);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .2);
}
.head .left{
  width: 40%;
}
.head .right{
  display: flex;
  width: 60%;
  color: #fff;
}
.head .right div{
  flex: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.head .right .active{
  color:#FB9852;
}
.head img{
  width: 56px;
  height: 53px;
}
.head img,
.head .title{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.head .title{
  left: 160px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
.pop{
  position: relative;
}
.popup{
  position: absolute;
  display: none;
  top: 83px;
  left: 50%;
  transform: translate(-50%);
  background-color: rgba(255,255,255,.9);
}
.pop:hover .popup{
  display: block;
  animation: .3s show linear;
}
.popup_item:hover{
  color: #FB9852;
}
@keyframes show {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.popup .active{
  color: #FB9852;
}
.popup::before{
  position: absolute;
  content: '';
  left: 50%;
  top: -26px;
  transform: translate(-50%);
  width: 0px;
  height: 0px;
  border: 13px solid transparent;
  border-bottom: 13px solid rgba(255,255,255,.9);
}
.popup_item{
  white-space: nowrap;
  padding: 0 20px;
  color: #0b2426;
}
