  .xd-base-field {
    & .jfb-hidden ,& .jfb-icon-hidden {
      display: none!important;
    }

    & ::v-deep .el-form-item {
      &.cus-inline{
        & .el-form-item__label {
          width: auto!important;
          float: left;
          text-align: left;
        }
      }

      &.cus-indent {
        padding-left: 40px;
      }
    }

    .el-title {
      border-radius: 4px;
      background: #F5F7FA;
      padding: 10px;
      color: rgba(144, 147, 153, 1);
      margin: 20px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;

      &-icon {
        cursor: pointer;
      }

      &:first-child {
        margin-top: 0 !important;
      }

      &.default {
        padding: 15px 20px;
      }

      &.mini {
        padding: 10px 20px;
      }

      &.small {
        padding: 10px 20px;
        font-size: 14px;
      }
    }

    &__box.is_inline {
      display: flex;
      justify-content: flex-start;
      align-items: center;

      & .xd-form-notice {
        margin-left: 10px;
        line-height: 22px;
        font-size: 12px;
        color: #999;
      }
    }

    &__box.is_block {
      & .xd-form-notice {
        margin-top: 6px;
        line-height: 22px;
        font-size: 12px;
        color: #999;
      }
    }

    .input100 {
      width: 100%;
    }

    .input80 {
      width: 80%;
    }

    .input70 {
      width: 70%;
    }

    .input60 {
      width: 60%;
    }

    .input50 {
      width: 50%;
    }

    .input40 {
      width: 40%;
    }

    .input30 {
      width: 30%;
    }

    .input20 {
      width: 20%;
    }

    &__upload {
      border: #999 dashed 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      border-radius: 6px;

      &-input {
        margin-bottom: 10px;
      }

      &-icon {
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
      }

      & > img {
        max-width: 100%;
        max-height: 100%;
      }

      &:hover, &:hover.has {
        border: #42B983 dashed 2px;
      }

      &:hover.has &-icon {
        color: rgba(255, 255, 255, .7) !important;
        background: rgba(0, 0, 0, .05);
      }
    }

    & ::v-deep .el-form-item.unit .el-form-item__content {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    & ::v-deep .xd-html {
      margin-bottom: 0 !important;
    }

    .line-x {
      width: 100%;
      height: 24px;
      line-height: 24px;
      color: $blue;
      padding: 0 10px;
      font-size: 13px;
      position: relative;
      border-bottom: 1px solid $blue;


      & span {
        min-width: 60px;
        text-align: center;
        display: inline-block;
        line-height: 26px;
        height: 24px;
        overflow: hidden;
        background: #fff;
        position: relative;
        font-weight: bold;
        z-index: 1;
        padding: 0 10px;
        border-radius: 4px 4px 0 0;
        border: 1px solid $blue;
        border-bottom: 0;
      }
    }
  }

  @media screen and (max-width: 768px) {
    .xd-base-field {
      .el-title {
        border-radius: 0;
        margin: 10px 0;
        padding: 5px;
        font-size: 1.3rem;

        &:first-child {
          margin-top: 0 !important;
        }

        &.default, &.mini, &.small {
          padding: 8px 10px;
          margin: 5px 0 10px;
        }
      }

      &__box.is_inline {
        display: block;
        justify-content: normal;
        align-items: normal;

        & .xd-form-notice {
          margin-left: 0;
          margin-top: 8px;
          line-height: 22px;
          font-size: 12px;
          color: #999;
        }
      }

      .input100, .input20, .input30, .input40, .input50, .input60, .input80, .input70 {
        width: 100%;
      }

      .el-form-item {
        margin-bottom: 20px;

        & .el-date-editor {
          width: 100% !important;
        }
      }
    }
  }
