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
| .file-show {
| &-main {
| position: relative;
| // width: 118px;
| height: 70px;
| flex: 1;
| border-radius: 5px 5px 0 0;
| padding: 15px;
| background-color: #d3e7fc;
| &-img {
| // max-width: 54px;
| max-width: 118px;
| opacity: 0.8;
| &-camera {
| max-width: 56px;
| position: absolute;
| left: 46px;
| top: 24px;
| }
| }
|
| &-del {
| width: 27px;
| position: absolute;
| right: 0;
| top: 0px;
| background: #f5222d;
| border-radius: 0px 0px 0px 30px;
| }
|
| &-showImg {
| max-height: 70px;
| max-width: 118px;
| min-width: 118px;
| }
|
| &-title {
| position: absolute;
| bottom: -28px;
| left: 0;
| color: #171a1d;
| opacity: 0.8;
| width: 100%;
| height: 28px;
| background: #f2f2f2;
| font-size: 12px;
| line-height: 28px;
| text-align: center;
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| border-radius: 0 0 5px 5px;
| }
| }
| }
|
|