  @import (less) '../../utils/themes.less';
  .suo-mobile-workflow-form {
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    .apply-id-wrapper {
      height: 35px;
      line-height: 35px;
      color: #aaa;
      font-size: var(--content-default-size, 15px);
      background: #f7f7f7;
      display: flex;
      align-items: center;
      .icon {
        background-image: url('../../assets/images/icon_apply_id.svg');
        background-size: 14px 15px;
        width: 14px;
        height: 15px;
        margin: 0 8px 0 16px;
      }
    }
  
    .form-list {
      box-sizing: border-box;
      width: 100%;
      flex: 1;
      overflow-x: hidden;
      overflow-y: auto;
    }
  
    .form-content {
      padding: 15px 15px 0 15px;
    }
  
    .line-dotted {
      position: relative;
      &::after {
        content: ' ';
        position: absolute;
        display: block;
        box-sizing: border-box;
        z-index: 1;
        top: auto;
        right: auto;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed #dfdfdf;
        transform-origin: 50% 100%;
        transform: scaleY(0.5);
      }
    }
  }
  