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
| /* pages/AIAide/index.wxss */
|
| .card {
| padding: 24rpx;
| height: 100%;
| background-color: #fff;
| position: relative;
| }
|
| .card_main {
| background-color: #F6F7FB;
| border-radius: 8px;
| }
|
| .flex_end {
| /* position: fixed;
| bottom: 40rpx; */
| color: rgba(23, 26, 29, 0.24);
| font-size: 28rpx;
| /* padding: 0 52rpx; */
| text-align: center;
| padding: 24rpx 0;
| }
|
| .caseList {
| border-radius: 4px;
| background-color: #fff;
| padding: 24rpx;
| margin: 0 24rpx 16rpx 24rpx;
| }
|
| .caseList_flex {
| display: flex;
| justify-content: space-between;
| margin-bottom: 8rpx;
| }
|
| .cell-arrow {
| width: 16px;
| height: 16px;
| background: #f6f7fb;
| border-radius: 50%;
| display: flex;
| justify-content: center;
| align-items: center;
| padding: 6rpx;
| }
|
| .caseList_title {
| color: rgba(23, 26, 29, 0.60);
| font-size: 24rpx;
| line-height: 40rpx;
| }
|
| .caseList_head {
| display: flex;
| gap: 8rpx;
| padding: 24rpx 24rpx;
| margin-top: 24rpx;
| }
|
| .line {
| border: 1px dashed #e5e6eb;
| margin: 32rpx 24rpx 0;
| }
|
| .assess {
| display: flex;
| gap: 32rpx;
| justify-content: flex-end;
| padding: 12rpx 24rpx 32rpx;
| }
|
| .ellipsis {
| overflow: hidden;
| /* 确保超出容器的文本会被裁剪 */
| white-space: nowrap;
| /* 保证文本在一行内显示 */
| text-overflow: ellipsis;
| /* 使用省略号表示文本超出 */
| }
|
| .show-line {
| margin: 24rpx 0;
| border-top: 1px solid #F0F0F0;
| }
|
| .show-Law {
| color: var(--main-color);
| }
|
|