办学质量监测教学评价系统
shenrongliang
2025-06-13 11d86cc6c26bb4f709e407acadf4805c2024e79f
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
.markdown-body {
    background-color: transparent;
    font-size: 14px;
 
    p {
        white-space: pre-wrap;
    }
 
    ol {
        list-style-type: decimal;
    }
 
    ul {
        list-style-type: disc;
    }
    img{
        max-width: 400px;
    }
 
    pre code,
    pre tt {
        line-height: 1.65;
    }
 
    .highlight pre,
    pre {
        background-color: #fff;
    }
 
    code.hljs {
        padding: 0;
    }
 
    .code-block {
        &-wrapper {
            position: relative;
            padding-top: 24px;
        }
 
        &-header {
            position: absolute;
            top: 5px;
            right: 0;
            width: 100%;
            padding: 0 1rem;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            color: #b3b3b3;
 
            &__copy {
                cursor: pointer;
                margin-left: 0.5rem;
                user-select: none;
 
                &:hover {
                    color: #65a665;
                }
            }
        }
    }
 
 
    &.markdown-body-generate>dd:last-child:after,
    &.markdown-body-generate>dl:last-child:after,
    &.markdown-body-generate>dt:last-child:after,
    &.markdown-body-generate>h1:last-child:after,
    &.markdown-body-generate>h2:last-child:after,
    &.markdown-body-generate>h3:last-child:after,
    &.markdown-body-generate>h4:last-child:after,
    &.markdown-body-generate>h5:last-child:after,
    &.markdown-body-generate>h6:last-child:after,
    &.markdown-body-generate>li:last-child:after,
    &.markdown-body-generate>ol:last-child li:last-child:after,
    &.markdown-body-generate>p:last-child:after,
    &.markdown-body-generate>pre:last-child code:after,
    &.markdown-body-generate>td:last-child:after,
    &.markdown-body-generate>ul:last-child li:last-child:after {
        animation: blink 1s steps(5, start) infinite;
        color: #000;
        content: '_';
        font-weight: 700;
        margin-left: 3px;
        vertical-align: baseline;
    }
 
    @keyframes blink {
        to {
            visibility: hidden;
        }
    }
}
 
html.dark {
 
    .markdown-body {
 
        &.markdown-body-generate>dd:last-child:after,
        &.markdown-body-generate>dl:last-child:after,
        &.markdown-body-generate>dt:last-child:after,
        &.markdown-body-generate>h1:last-child:after,
        &.markdown-body-generate>h2:last-child:after,
        &.markdown-body-generate>h3:last-child:after,
        &.markdown-body-generate>h4:last-child:after,
        &.markdown-body-generate>h5:last-child:after,
        &.markdown-body-generate>h6:last-child:after,
        &.markdown-body-generate>li:last-child:after,
        &.markdown-body-generate>ol:last-child li:last-child:after,
        &.markdown-body-generate>p:last-child:after,
        &.markdown-body-generate>pre:last-child code:after,
        &.markdown-body-generate>td:last-child:after,
        &.markdown-body-generate>ul:last-child li:last-child:after {
            color: #65a665;
        }
    }
 
    .message-reply {
        .whitespace-pre-wrap {
            white-space: pre-wrap;
            color: var(--n-text-color);
        }
    }
 
    .highlight pre,
    pre {
        background-color: #282c34;
    }
}
 
@media screen and (max-width: 533px) {
    .markdown-body .code-block-wrapper {
        padding: unset;
 
        code {
            padding: 24px 16px 16px 16px;
        }
    }
}