style.less 835 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
@import "~antd/lib/style/themes/default.less";

.stepForm {
  margin: 40px auto;
  max-width: 500px;
}

.stepFormText {
  :global {
    .ant-form-item-label,
    .ant-form-item-control {
      line-height: 22px;
    }
  }
}

.result {
  margin: 0 auto;
  max-width: 520px;
  padding: 32px 0;
}

.desc {
  h3 {
    font-size: 14px;
    margin: 8px 0;
    color: @text-color-secondary;
  }
  h4 {
    margin: 2px 0;
    color: @text-color-secondary;
  }
  p {
    margin-bottom: 16px;
  }
  padding: 0 34px;
  color: @text-color-secondary;
  font-size: 12px;
}

.information {
  line-height: 22px;
  :global {
    .ant-row:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .label {
    font-weight: 500;
    text-align: right;
    padding-right: 8px;
  }
}

.money {
  font-weight: 500;
  font-size: 20px;
afc163's avatar
afc163 committed
58
  line-height: 14px;
59
}