wujingjing
2025-04-10 8aa7ffddc511138d61d64029157c11cfccc5431d
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
.container {
    position: absolute;
    width: 100%;
    max-height: 40vh;
    padding: 0 8px 8px;
    left: 0px;
    border-radius: 12px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 8px 25px 0px #0000000d;
    display: flex;
    flex-direction: column;
    z-index: 990;
    &_header {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 6px;
        color: #060607;
        .question {
            font-size: 14px;
            color: #060607;
            font-weight: 600;
            line-height: 20px;
            letter-spacing: 0.25px;
            flex-grow: 1;
            display: flex;
        }
    }
    &_content {
        width: 100%;
        max-height: 35vh;
        height: fit-content;
        overflow-y: auto;
        .set_phrases {
            outline: none;
            overflow-y: auto;
            position: relative;
            transition: height 0.1s linear;
            .phase_item {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                padding: 6px 8px;
                flex-shrink: 0;
                background: #fff;
                border-radius: 8px;
                width: 100%;
                &:hover {
                    background: #e5e7ed;
                }
                .question {
                    font-size: 14px;
                    color: #8d8e99;
                    font-weight: 400;
                    font-style: normal;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    &:hover {
                        color: #060607;
                    }
                }
 
                .content {
                    font-size: 12px;
                    color: #5e6772;
                    font-family: PingFang SC;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }
            }
        }
    }
    &_add {
        display: flex;
        flex-direction: row;
        align-items: center;
        cursor: pointer;
        padding: 6px 8px;
        background: #fff;
        border-radius: 8px;
        &:hover {
            background: #e5e7ed;
        }
    }
}