guanqb
2022-10-14 06fc4198230dfa0b5c4aa2fb2770bf95c00a04a1
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
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html,
body {
    width: 100%;
    height: 100%;
}
 
ul {
    li {
        list-style: none;
    }
}
 
.deblurring {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
 
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: none;
}
 
// hsla(0, 0%, 84.7%, 0.6);
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(7, 22, 37, 0.8);
    padding-left: 2px;
    padding-right: 2px;
}
 
::-webkit-scrollbar-track {
    background-color: #fff;
}
 
::-webkit-scrollbar-thumb:window-inactive {
    background-color: rgba(7, 22, 37, 0.8);
}
 
:not(select)::-webkit-scrollbar {
    background-color: hsla(0, 0%, 84.7%, 0.2);
}
 
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(7, 22, 37, 0.8);
}
 
.car-video-box {
    .el-dialog {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        width: 720px;
        height: 480px;
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%);
 
        .el-dialog__body {
            flex: 1;
        }
    }
}
 
.police-affairs-details-box {
    .el-dialog {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        width: 540px;
        height: 420px;
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%);
 
        .el-dialog__body {
            flex: 1;
        }
    }
}
 
.resident-details-box {
    .el-dialog {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        width: 320px;
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%);
 
        .el-dialog__body {
            flex: 1;
        }
    }
}
 
.phone-details-box {
    .el-dialog {
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        width: 320px;
        height: 220px;
        top: 50%;
        left: 50% !important;
        transform: translate(-50%, -50%);
 
        .el-dialog__body {
            flex: 1;
        }
    }
}