/* 菜单 */
.menu {
  text-align: center;
  line-height: 36px;
  font-size: 20px;
  background: #eee;
  z-index: 1;
  width: 22%;
  position: fixed;
  top: 6px;
  border-radius: 18px;
  height: 36px;
  cursor: pointer;
}
.menu-icon {
  margin-left: 16px;
}
.menu-items {
  position: absolute;
  left: 0;
  top: 36px;
  right: 0;
  background: #fff;
  border: 1px solid #fefefe;
  padding: 8px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.29);
  border-radius: 6px;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}
.menu:hover .menu-items {
  display: block;
}
.menu-item {
  display: block;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}
.menu-item.active {
  color: #337ab7;
}
.menu-item:hover {
  background-color: #eee;
  color: #337ab7;
}
/* 导航栏 */
.nav-fixed {
  top: 48px;
  z-index: 0;
}
/* 接口标题 */
.action h4.action-heading .name {
  float: none;
  margin-left: 12px;
}
.params-inner {
  line-height: 1.5;
}

/* 左侧 */
.resource-group.is-empty .collapse-content {
  height: 0 !important;
}
.resource-group.is-empty .chevron {
  display: none;
}
.resource-group.is-empty .heading a {
  border-bottom: 0 !important;
}
/* 右侧 */
.content .collapse-content {
  margin-bottom: 10px;
}

/* simple uri */
.item-wrapper {
  margin-right: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.uri-simple {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 10px;
  color: #b93d6a;
}

