/* 导航栏 */
.paper-meuns {
  padding: 20px 0;
  position: fixed;
  top: 86px;
  background: #F2F2F2;
  z-index: 100;
  width: 1180px;
}
.paper-meuns .paper-meuns-item {
  width: 228px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 6px 6px 6px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.paper-meuns .paper-meuns-item >i {
  font-size: 26px;
  margin-right: 12px;
  color: #0D7BFF;
}
.paper-meuns .active {
  background: #0D7BFF;
  color: #FFFFFF;
}
.paper-meuns .active >i {
  color: #FFFFFF;
}
.paper-meuns .paper-meuns-item:hover {
  border: 1px solid #0D7BFF;
}
.paper-meuns .paper-meuns-item .hot{
  position: absolute;
  top: -10px;
  right: -5px;
}
.paper-meuns .paper-meuns-item .hot >i {
  font-size: 20px;
  color: #FF0606;
}
.paper-meuns .paper-meuns-item .hot >span {
  position: absolute;
  left: 0px;
  top: 5px;
  font-size: 12px;
  transform: scale(.7);
  display: inline-block;
  z-index: 2;
  color: #FFFFFF;
}
.paper-meuns .paper-meuns-item.disabled {
  color: #ccc;
}
.paper-meuns .paper-meuns-item.disabled:hover {
  border:0
}
/* 导航栏 */