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
| .title {
| width: 100%;
| height: 42px;
| background: #f0f3fd;
| border-radius: 5px 5px 5px 5px;
| opacity: 1;
| font-size: 16px;
| font-family: PingFang SC, PingFang SC;
| font-weight: bold;
| color: #333;
| padding: 9px 22px 11px 22px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
| .label {
| word-break: keep-all;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
| .desc {
| height: 17px;
| font-size: 12px;
| font-family: PingFang SC, PingFang SC;
| font-weight: 400;
| color: #35363b;
| overflow: hidden;
| white-space: nowrap;
| text-overflow: ellipsis;
| }
|
|