wangzhibo
2026-07-16 b57020623cf0c946706573bf102e548c3a544423
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
.plugins {
    padding: 10px;
 
    &__wrapper {
        background-color: var(--el-bg-color);
    }
 
    .cl-select-button {
        margin-bottom: 10px;
    }
 
    .scope {
        border-radius: 8px;
        margin-bottom: 10px;
        border: 1px solid var(--el-border-color-light);
        height: 200px;
        width: 100%;
        box-sizing: border-box;
        cursor: pointer;
 
        .c {
            display: flex;
            box-sizing: border-box;
            padding: 15px;
            position: relative;
 
            .set {
                position: absolute;
                right: 10px;
                top: 10px;
                font-size: 18px;
                color: var(--el-color-info);
            }
 
            .logo {
                height: 40px;
                width: 40px;
                margin-right: 15px;
            }
 
            .det {
                display: flex;
                flex-direction: column;
                flex: 1;
 
                .tag {
                    display: flex;
                    flex-wrap: wrap;
                    margin-bottom: 10px;
 
                    .el-tag {
                        margin-right: 5px;
                    }
                }
 
                .title {
                    display: flex;
                    align-items: center;
                    margin-bottom: 5px;
                    font-size: 14px;
                    line-height: 1;
                    font-weight: bold;
                }
 
                .desc {
                    font-size: 12px;
                    color: var(--el-text-color-regular);
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    height: 36px;
                    margin-bottom: 20px;
                }
 
                .link {
                    display: flex;
                    align-items: center;
                }
 
                .author {
                    font-size: 12px;
                    color: var(--el-text-color-secondary);
                }
            }
        }
 
        .f {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
 
            .el-button {
                font-size: 12px;
                height: 28px;
            }
        }
 
        &.is-add {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: var(--el-disabled-bg-color);
            border-color: var(--el-disabled-bg-color);
            width: 180px;
 
            .el-icon {
                font-size: 36px;
                color: #666;
            }
        }
 
        &:not(.is-add):hover {
            box-shadow: 0px 0px 10px 1px var(--el-color-info-light-9);
        }
    }
}