zhengyiming
2025-02-10 0f686ea1fe4700a909a6159efcf1fcb0e1f88a17
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
@import '@/styles/common.scss';
 
.detail-page-avatar-wrapper {
  display: flex;
  align-items: center;
 
  .detail-page-time {
    font-weight: 400;
    font-size: 24px;
    color: boleGetCssVar('text-color', 'secondary');
    line-height: 34px;
    margin-left: 12px;
  }
}
 
.detail-info-list {
  margin-bottom: 16px;
  .detail-info-list-item {
    display: flex;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 28px;
 
    line-height: 40px;
 
    &:last-child {
      margin-bottom: 0;
    }
 
    .detail-info-list-item-label {
      color: boleGetCssVar('text-color', 'regular');
      margin-right: 8px;
    }
 
    .detail-info-list-item-content {
      color: boleGetCssVar('text-color', 'primary');
      flex: 1;
      min-width: 0;
      // @include ellipsis;
    }
  }
}
 
.detail-introduction {
  font-weight: 400;
  font-size: 28px;
  color: boleGetCssVar('text-color', 'primary');
  line-height: 40px;
  word-break: break-all;
  white-space: pre-line;
  font-size: 30px;
  line-height: 50px;
}
 
.safe-cell-title-wrapper {
  display: flex;
  align-items: center;
 
  .safe-cell-title-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
 
    .safe-cell-title {
      font-weight: 600;
      font-size: 28px;
      color: boleGetCssVar('text-color', 'primary');
      line-height: 40px;
    }
  }
}
 
.safe-cell-content {
  font-size: 24px;
  color: boleGetCssVar('text-color', 'secondary');
  line-height: 30px;
  text-align: left;
  word-break: break-all;
  line-height: 34px;
 
  .safe-cell-content-btn {
    color: boleGetCssVar('color', 'primary');
    display: inline;
  }
}
 
.orderDetail-industryTypeName {
  font-weight: 400;
  font-size: 28px;
  color: boleGetCssVar('text-color', 'regular');
  line-height: 40px;
  margin-bottom: 32px;
}