forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-03 6276d75443ec3cacf34d11632ed99c90fd35d3d3
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
.wantUserTag {
    display: inline-block;
 
    &-wantUser {
        background: #ebeaea;
        border-radius: 15px;
        padding: 3px 8px 3px 3px;
        display: flex;
        align-items: center;
        position: relative;
 
        &-left {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            color: #ffffff;
            line-height: 26px;
            text-align: center;
        }
 
        &-right {
            margin-left: 8px;
        }
 
        &-close {
            position: absolute;
            font-size: 12px;
            top: -10px;
            right: 0;
        }
    }
 
    &-wantHandleUser{
        display:flex;
        padding: 5px 8px;
        border: 1px solid rgba(229,230,235,1);
        align-items: center;
        border-radius: 2px;
 
        &-right {
            margin-left: 8px;
        }
 
        &-icon{
            color: #1D2129;
        }
    }
 
    &-green {
        background: linear-gradient(135deg, #05aeae, rgba(5, 174, 174, 0.85) 100%);
    }
 
    &-orange {
        background: linear-gradient(135deg, #ff5500, rgba(255, 85, 0, 0.85) 100%);
    }
}