@import '../../styles/theme.scss';

.renderer-container {
  display         : flex;
  flex-direction  : column;
  position        : relative;
  background-color: #F1F1F1;

  // height          : 100vh; // 兼容 h5

  .submit-btn {
    width: 100%;
  }
}

.list-item-container {
  margin-bottom: 20px;

  .list-item-wrap {
    display       : flex;
    flex-direction: row;
    align-items   : center;
    padding       : 28px 0 28px 30px;
    height        : 112px;
    background    : $white;

    .list-item-text {
      font-size     : $font-size-lg;
      color         : $black;
      // opacity    : .7;
      line-height   : 2;
      margin-right  : 10px;
    }

    .list-item-icon-wrap {
      position   : relative;
      top        : 0;
      line-height: 1.5;

      .list-item-icon {
        display           : flex;
        justify-content   : center;
        align-items       : center;
        width             : 32px;
        height            : 32px;
        // z-index        : 999;
      }
    }
  }
}