peng
2026-03-24 05c7478c26954ee6031f98fce6c8c9901abb98a0
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
/deep/ .ant-modal {
    background: rgba(17, 20, 26, 0.9);
    border: 1px solid rgba(91, 129, 249, 0.5);
    box-shadow: 0px 3px 14px 0px rgba(91, 129, 249, 0.2);
    border-radius: 10px;
}
 
/deep/.ant-modal-header {
    border-bottom: 1px solid RGBA(61, 85, 160, 1);
    background-color: RGBA(61, 85, 160, 1);
}
 
/deep/ .ant-modal-title {
    color: #fff;
}
 
 
// 修改弹窗表格滚动条
/deep/ .ant-table-fixed-header .ant-table-scroll .ant-table-header {
    overflow: hidden !important;
    height: 49px;
    border-right: 1px solid #494e60;
    border-top-right-radius: 5px;
}
 
/deep/ ant-table-body {
    &::-webkit-scrollbar {
        height: 5px;
        width: 10px;
        overflow-y: auto;
    }
 
    &::-webkit-scrollbar-thumb {
        border-radius: 5px;
        -webkit-box-shadow: inset 0 0 5px rgba(89, 89, 89, 0.2);
        background: #939392;
    }
 
    &::-webkit-scrollbar-track {
        -webkit-box-shadow: 0;
        border-radius: 0;
        background: #f0f2f5;
    }
}