@import "common/var";

.zte-form {
  background-color: #fff;
  width: 100%;
  &.border {
    .el-form {
      margin: 0;
      .group-title {
        margin-bottom: 0;
        border-right: 1px solid #cee2eb;
        border-bottom: 1px solid #cee2eb;
      }

      .el-form-item {
        border: 1px solid #fff;
        border-top: 0;
        border-left: 0;
        margin: 0;
        &.el-form-item--small {
          .el-form-item__content {
            height: 42px;
          }
        }

        .el-form-item__label {
          padding: 5px 0;
          border-right: 1px solid #fff;
          background-color: rgba($--color-primary, .2);
          text-align: center;
        }
        .el-form-item__content {
          padding: 5px 10px;
          height: 50px;
          background-color: rgba($--color-primary, .06);
        }
      }
    }
  }

  .el-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    .group-title {
      width: 100%;
      height: 30px;
      line-height: 30px;
      border-bottom: 1px solid #dcdfe6;
      margin-bottom: 20px;;
    }

    &.el-form--label-top {
      .el-form-item {
        padding: 0 15px;
      }
    }

    .content {
      width: 100%;
      margin-bottom: 22px;
    }

    &>.el-form-item {
      margin-right: 0;
      min-width: 300px;
      &.image .el-form-item__content {
        line-height: 1;
      }
    }
    .button-list {
      flex: 1 0 auto;
      text-align: right;
      position: relative;
      min-height: 40px;

      .el-form-item__content {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-left: 0px !important;
      }
    }
  }
}