riku
2026-01-21 a2c5def7cf9562312a54216bc195a6ea071a26c5
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
.uploader-preview__file {
  --default-bg-color: #888888;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--default-bg-color);
  color: white;
  height: 100%;
  font-size: 12px;
}
 
.wrap {
  /* background-color: rgb(109, 109, 4); */
  height: 3em;
  line-height: 1.5;
  overflow: hidden;
  margin: 8rpx 8rpx 0 8rpx;
}
 
.wrap .txt {
  display: block;
  max-height: 3em;
  /* margin: 8rpx 8rpx 0 8rpx; */
}
 
.wrap .filename {
  position: relative;
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; */
  /* display: none; */
  top: -3em;
  background-color: rgb(115, 172, 118);
  /* background-color: var(--default-bg-color); */
  overflow: hidden;
  /* text-overflow: ellipsis; */
  text-align: justify;
  /* white-space: nowrap; */
  /* margin: 8rpx 8rpx 0 8rpx; */
}
 
.filename::before {
  content: attr(data-title);
  width: 100%;
  float: right;
  margin-top: 1.5em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  /* background-color: rgb(141, 141, 3); */
  background-color: var(--default-bg-color);
}
 
.unit {
  margin: 0rpx 8rpx 8rpx 8rpx;
}
 
.file_xlsx {}
 
.file_word {}
 
.file_pdf {}
 
.file_ppt {}