/**
 * 导航 Navigation
 *   - 面包屑  Breadcrumb
 *   - 下拉菜单 Dropdown
 *   - 菜单 Menu
 *   - 页头 PageHeader
 *   - 分页 Pagination
 *   - 步骤条 Steps
 */


/**
 * 面包屑  Breadcrumb
*/
.zwx-breadcrumb {
  display: inline-block !important;
  margin-left: 14px !important;
}

.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;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: url('./images/header_bg_r.png') no-repeat left,
  url('./images/hearder_bg_l.png') no-repeat right,
  linear-gradient(270deg, #3c98f7, #1f87ef 50%, #256fe4);
  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: 20px;
    height: 100%;
    display: flex;
    align-items: center;

  }
  .logo-text {
    font-family: 'Harmony Medium', serif;
    font-size: 28px;
    line-height: 18px;
    color: #FFFFFF;
  }
  .header-center {
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);


    &-box {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      font-size: 14px;
      font-weight: 500;
      color: #3d3f44;
      padding: 0 16px;
      cursor: pointer;
    }

    &-box.is-active {
      color: #2A5CEC;
      border-bottom: 2px solid;
      border-top: 2px solid #FFF;
    }

    &-box:hover {
      color: #2A5CEC;
    }
  }

  .right-navbar {
    line-height: 22px;
    display: flex;
  }

  .header-right {
    display: flex;
    float: right;
    height: 100%;
    align-items: center;

    .avatar-icon {
      width: 32px;
      height: 32px;
      margin-right: 8px;
      overflow: hidden;
      background-color: #fff;
      border: 1px solid #fff;
      border-radius: 50%;
      content: url("./images/header_avatar.png");
    }
  }

}

.page-header.header-64 {
  height: 64px !important;
}

.page-header.header-85 {
  height: 85px !important;
}