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
| .base_f_c_c {
| display: flex;
| align-items: center;
| justify-content: center;
| }
|
| .ztzf_w_100 {
| width: 100%;
| }
|
| .ztzf_h_100 {
| height: 100%;
| }
|
| .ztzf_parent_disabled {
| cursor: not-allowed !important;
| }
|
| .ztzf_item_disabled {
| opacity: 0.5;
| pointer-events: none;
| }
|
| .ztzf_ellipsis {
| /* 必须有固定宽度 */
| white-space: nowrap;
| /* 不换行 */
| overflow: hidden;
| /* 超出隐藏 */
| text-overflow: ellipsis;
| /* 超出显示省略号 */
| }
|
|