style.less 2.0 KB
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
.warp {
  position: relative;

  &:before {
    display: block;
    height: 100%;
    width: 1px;
    background: #e8e8e8;
    position: absolute;
    top: 0;
    left: 50%;

  }

  .title {
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
  }

  .body {
    max-width: 100%;
    min-height: 480px;
    overflow: auto;
    background-color: #fff;
  }

  .step {
    background: #F5F5F5;
    padding: 16px 16px 16px 80px;

    .step-title {
      font-weight: normal;

      .name {
        color: #0F91FF;
      }

      .date {
        font-size: 12px;
        color: #999999;
        display: inline-block;
        float: right;
        margin-top: 2px;
      }
    }

    .description {
      font-size: 12px;
      line-height: 20px;

      .date {
        font-size: 12px;
        color: #999999;
        display: inline-block;
        margin-top: 2px;
      }
    }

    :global {
      .ant-steps-item-content {
        //width: unset;
      }
      .ant-steps-item-title {
        display: block;
        font-size: 14px;
      }

      .ant-steps-dot .ant-steps-item-icon {
        width: 12px;
        height: 12px;
      }

      .ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
        background: -moz-linear-gradient(to right, #1C89E0 0%, #B53CED 100%);
        background: -webkit-gradient(to right, #1C89E0 0%, #B53CED 100%);
        background: -webkit-linear-gradient(to right, #1C89E0 0%, #B53CED 100%);
        background: -o-linear-gradient(to right, #1C89E0 0%, #B53CED 100%);
        background: -ms-linear-gradient(to right, #1C89E0 0%, #B53CED 100%);
        background: linear-gradient(to left, #1C89E0 0%, #B53CED 100%);
      }

      .ant-steps-item-icon > .ant-steps-icon {
        right: 2px;
      }
    }
  }


}

.modal-warp {
  :global {
    .ant-modal-header {
      background: #EAF5FF;
    }
    .ant-modal-body{
      padding-left: 0;
      padding-right: 0;
    }
  }
}
.image-warp{
  text-align: center;
  position: relative;
}

.image-modal-warp {
  img {
    max-width: 100%;
  }
}