.theme-jihe {
  $textColor: #F4F4F4;
  $inputHeight: 26px;
  color: $textColor;

  .dialog-content {
    .el-tabs__item {
      color: $textColor;
    }
  }

  .el-form-item {
    margin-bottom: 14px;
  }

  .el-form-item__label {
    line-height: 32px;
    height: $inputHeight;
    overflow: hidden;
    color: #3DE8FF;
  }

  .el-form-item__content {
    color: $textColor;
    // height: $inputHeight;
  }

  .el-input {
    width: 100%;
  }

  .el-input__inner {
    padding: 0 8px;
    background-color: #0D5F79;
    color: $textColor;
    border-radius: 2px;
    line-height: $inputHeight;
    height: $inputHeight;
    font-size: 15px;
    border: 0;

    &::placeholder {
      color: $textColor;
    }
    &[disabled]{
      color:#667 !important;
    }
  }

  .el-checkbox-group {
    .el-checkbox__label {
      color: $textColor;
    }

    .el-checkbox {
      .el-checkbox__inner {
        width: 20px;
        height: 20px;
        border: 1px solid #00B3CC;
        background-color: #0D5F79;
      }

      ::after {
        width: 6px;
        height: 10px;
        border-width: 2px;
        left: 5px;
      }
    }

    .el-checkbox.is-checked {
      .el-checkbox__inner {
        border: 1px solid #00B3CC;
        background-color: #00B3CC;
      }
    }
  }

  .el-input-number {
    margin-right: 10px;
    height: $inputHeight;
    line-height: $inputHeight;
    padding: 0;
    width: 100%;

    .el-input-number__decrease,
    .el-input-number__increase {
      width: 22px;
      height: $inputHeight;
      background-color: #004A69;
      border: none;
      color: #FFF;

      &.is-disabled {
        color: #006A99;
      }
    }

    .el-input {
      margin: 0;
    }
  }

  .el-radio-button {
    margin-right: 10px;

    .el-radio-button__inner {
      background-color: #0D5F79;
      border: 1px solid #00B3CC;
      color: $textColor;
      height: 26px;
      padding: 0 10px;
      line-height: 24px;
      border-radius: 2px;
      font-weight: 400;
      box-shadow: none;
      transition: none;
    }

    &.is-active {

      .el-radio-button__inner {
        background-image: linear-gradient(180deg, #37E7FF 0%, #009BCC 100%);
        color: $textColor;
        border: none;
        height: 26px;
        padding: 0 11px;
      }
    }
  }
  
  // 导航菜单
  .el-menu--popup {
    border-radius: 0;
    background: linear-gradient(180deg, rgba(6, 66, 88, 0.5) 0%, #064258 93%);
    border: 1px solid;
    border-image: linear-gradient(0deg, rgba(55, 231, 255, 0.5), rgba(55, 231, 255, 0)) 10 10;
    .el-submenu__title {}

    .el-submenu__icon-arrow {}

    .el-menu-item, .el-submenu__title{
      text-align: center;
        background: none;
        font-size: 16px;
        font-weight: bold;
        color: #00D1FF;
        border: 1px solid transparent;
        transition: none;

        .el-submenu__icon-arrow{
          color: #00D1FF;
        }
      
        &:hover {
          color: #fff;
          background: linear-gradient(90deg, rgba(164, 255, 250, 0) 0%, rgba(164, 255, 250, 0.42) 50%, rgba(164, 255, 250, 0) 100%);
          border: 1px solid;
          border-image: linear-gradient(90deg, rgba(190, 255, 246, 0.03) 0%, rgba(190, 255, 246, 1) 50%, rgba(190, 255, 246, 0.03) 100%) 1 1;
        }
        p{
          color: #FFF;
        }
    }
    .el-menu-item.is-active, .el-submenu__title.is-active{
        color: #FFF;
    }
  }
  .el-menu--popup-bottom-start {
    margin-top: 16px;
  }
}