schangxiang@126.com
2025-05-21 496f78c085e7f8c5ba261835f9b8bda99c25b4cb
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
.processStep {
  width: 100%;
  // padding: 8px 8px 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  overflow-y: auto;
  // height: 134px;
  box-sizing: border-box;
  .stepItem {
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 75px;
    background: #ffffff;
    border-radius: 2px 2px 2px 2px;
    opacity: 1;
    border: 1px solid #d1d1d1;
    .stepName {
      font-size: 14px;
      display: -webkit-box; /* 必须指定display属性 */
      overflow: hidden; /* 必须指定overflow属性 */
      text-overflow: ellipsis; /* 显示省略号 */
      line-height: 1.5em; /* 每行的高度 */
      max-height: 4.5em; /* 最多显示四行(包括第四行) */
      -webkit-line-clamp: 3; /* 只显示前三行 */
      -webkit-box-orient: vertical; /* 垂直布局 */
    }
  }
  .stepIcon {
    display: block;
    margin: 0 10px;
    &:last-child {
      display: none;
    }
  }
}