bug
zhangzeli
2022-01-10 9252ac63bade4c0e155b2c5a2882fdfda863ee96
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
 
.card {
    margin: 10px 25px 10px 0;
    width: 290px;
    :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: 117px;
                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;
                height: 45px;
                word-break: break-all;
                color: rgba(0, 0, 0, .45);
            }
            .info {
                font-size: 12px;
                color: rgba(0, 0, 0, .45);
                overflow: hidden;
                text-overflow: ellipsis;
                height: 36px;
                word-break: break-all;
            }
        }
        .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%;
            }
        }
    }
    .project {
        display: flex;
        flex-direction: column;
        .img {
            height: 135px;
            object-fit: cover;
        }
        .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;
                height: 45px;
                word-break: break-all;
                color: rgba(0, 0, 0, .45);
            }
            .info {
                font-size: 12px;
                color: rgba(0, 0, 0, .45);
                overflow: hidden;
                text-overflow: ellipsis;
                height: 36px;
                word-break: break-all;
            }
        }
        .content {
            display: flex;
            height: 135px;
            padding: 16px;
            .title {
                font-size: 16px;
                text-overflow: ellipsis;
                overflow: hidden;
                white-space: nowrap;
                color: rgba(0, 0, 0, .85);
                font-weight: 500;
                margin-bottom: 4px;
            }
            .desc {
                height: 45px;
                position: relative;
                overflow: hidden;
                text-overflow: ellipsis;
                color: rgba(0, 0, 0, .45);
                line-height: 22px;
            }
            .info {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 10px;
                height: 20px;
                .time {
                    color: rgba(0, 0, 0, .45);
                    flex: 1 1;
                    font-size: 12px;
                }
            }
            .avatar {
                .item {
                    display: inline-block;
                    margin-left: -8px;
                    .c {
                        border: 1px solid #fff;
                    }
                }
            }
        }
    }
}