/**
 * 导航 Navigation
 *   - 面包屑  Breadcrumb
 *   - 下拉菜单 Dropdown
 *   - 菜单 Menu
 *   - 页头 PageHeader
 *   - 分页 Pagination
 *   - 步骤条 Steps
 */


/**
 * 面包屑  Breadcrumb
*/
.zwx-breadcrumb > .el-breadcrumb__item:not(:last-of-type) .el-breadcrumb__inner {
  height: 14px !important;
  line-height: 14px !important;
  font-size: 14px !important;
  color: rgba(31, 45, 61, 0.6) !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  cursor: pointer !important;
}

.zwx-breadcrumb > .el-breadcrumb__item:not(:last-of-type) .el-breadcrumb__inner:hover {
  color: #1f2d3d !important;
}

.zwx-breadcrumb > .el-breadcrumb__item:last-of-type .el-breadcrumb__inner {
  height: 14px !important;
  line-height: 44px !important;
  font-size: 14px !important;
  color: #1f2d3d !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  cursor: default !important;
}

.zwx-breadcrumb .el-breadcrumb__separator {
  line-height: 44px !important;
  font-size: 14px !important;
  color: rgba(31, 45, 61, 0.5) !important;
  margin: 0 6px !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/**
 * 页头 PageHeader
*/
.el-header {
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 4px rgba(222, 227, 236, 0.8);
  z-index: 2;

  .header-icon {
    float: left;
    margin-top: 8px;
    margin-left: 20px;
    height: 40px;
    width: 40px;
  }

  .header-title {
    margin-left: 12px;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .header-right {
    display: flex;
    float: right;
    height: 100%;
    align-items: center;
  }
}

.page-header.header-64 {
  height: 64px !important;
}

.page-header.header-85 {
  height: 85px !important;
}