wang-hao-jie
2021-10-19 90251b9eee454b7c2941ed2c083291f7f83588fe
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
.oss-wrapper {
    display: flex;
    flex-wrap: wrap;
}
 
.oss-card {
    margin: 10px 0 10px 0;
    width: 100%;
 
    :hover {
        .content .other .name {
            color: #1890ff;
            transition: color .3s;
        }
    }
 
    cursor: pointer;
 
    .ivu-card-body {
        padding: 0;
    }
 
    .content {
        display: flex;
        flex-direction: column;
 
        :hover {
            .play {
                transition: opacity .3s;
                opacity: 1 !important;
            }
        }
 
        .img {
            height: 135px;
            object-fit: cover;
        }
 
        .video {
            height: 135px;
            position: relative;
 
            .cover {
                height: 100%;
                width: 100%;
                object-fit: fill;
            }
 
            .play {
                position: absolute;
                top: 43px;
                left: calc(50% - 25px);
                height: 50px;
                width: 50px;
                opacity: 0.8;
            }
        }
 
        .other {
            padding: 16px;
            height: 135px;
 
            .name {
                font-size: 16px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                color: rgba(0, 0, 0, .85);
                font-weight: 500;
                margin-bottom: 4px;
            }
 
            .key {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                word-break: break-all;
                height: 45px;
                color: rgba(0, 0, 0, .45);
            }
 
            .info {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                height: 36px;
                font-size: 12px;
                color: rgba(0, 0, 0, .45);
            }
        }
 
        .actions {
            display: flex;
            align-items: center;
            height: 50px;
            background: #f7f9fa;
            border-top: 1px solid #e8e8e8;
 
            i:hover {
                color: #1890ff;
            }
 
            .btn {
                display: flex;
                justify-content: center;
                width: 25%;
                border-right: 1px solid #e8e8e8;
            }
 
            .btn-no {
                display: flex;
                justify-content: center;
                width: 25%;
            }
        }
    }
}