xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
/* components/file/index.wxss */
.file {
    background-color: #f2f2f2;
    font-size: 28rpx;
    padding: 24rpx;
    margin-bottom: 16rpx;
    border-radius: var(--border-radius-card);
}
 
.file-header {
    display: flex;
    justify-content: space-between;
  align-items: center;
  line-height: 44rpx;
}
 
.file-header-link {
    color: var(--main-color);
  font-size: 24rpx;
}
 
.file-main {
    display: flex;
    justify-content: space-between;
    margin-top: 8rpx;
  font-size: 24rpx;
  line-height: 40rpx;
}
 
.file-main-content {
    overflow: hidden;
    display: flex;
    align-items: center;
  flex: 1;
  justify-content: flex-end;
  padding-left: 32rpx;
}
 
.file-main-content-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}