-
zhangwei
2024-08-21 4abaa346a1593d0721bc1aa0989f1007e16d3301
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
/*!
 * hide v1.0.0 (https://doc.firstui.cn)
 * Copyright 2024 FirstUI.
 * Licensed under the Apache license
 */
.fs-hide{
    position: absolute;
    left: -6666px;
    top: -6666px;
    opacity: 0;
    /* #ifndef APP-NVUE */
    visibility: hidden;
    z-index: -1;
    /* #endif */
    overflow: hidden;
}
 
/* #ifndef APP-NVUE */
.fs-display__none { 
    display: none !important 
}
/* #endif */
 
.fs-ellipsis{
    /* #ifndef APP-NVUE */
    white-space: nowrap;
    /* #endif */
    overflow: hidden;
    text-overflow: ellipsis;
    /* #ifdef APP-NVUE */
    lines:1;
    /* #endif */
}
.fs-ellipsis__2{
    /* #ifndef APP-NVUE */
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* #endif */
    overflow: hidden;
    text-overflow: ellipsis;
    /* #ifdef APP-NVUE */
    lines:2;
    /* #endif */
}