shuishen
2022-07-29 71ac571768baab6ca36057be77075b80cfe74739
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
.flash-flood-risk {
    display: flex;
    position: absolute;
    z-index: 101;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #606266;
 
    &>.content-box {
       
        &>.risk-content {
 
            .risk-table {
                .el-date-editor {
                    margin-right: 5px;
                    width: calc(100% - 62px)
                }
                .el-button {
                    padding-left: 10px !important;
                    padding-right: 10px !important;
                }
            }
 
            div.content {
                position: relative;
                height: calc(100% - 44px);
 
                p {
                    position: absolute;
                    top: 0;
                    left: 0;
                    padding: 5px;
                    margin: 0;
                    height: 100%;
                    word-wrap: break-word;
                    box-sizing: border-box;
                    overflow-y: auto;
                    font-size: 16px;
                    line-height: 24px;
                    letter-spacing: 1.2px;
                    text-indent: 2em;
                    word-break: break-all;
                    scrollbar-width: thin;
 
                    span {
                        color: red;
 
                        i {
                            font-style: normal;
                            color: #606266;
                        }
 
                        strong {
                            font-weight: normal;
                            cursor: pointer;
                        }
                    }
 
                    span[ii="0"],
                    span[ii="1"],
                    span[ii="2"],
                    span[ii="3"],
                    span[ii="4"] {
                        cursor: pointer;
                    }
 
                    .text-tab {
                        color: red;
                        cursor: pointer;
                        font-weight: normal;
                    }
 
                    .text-tab:hover {
                        border-bottom: 1px solid red;
                    }
                }
            }
 
        }
    }
 
    .risk-detail-popup {
        position: fixed;
        z-index: 9999;
        padding: 10px;
        background: rgba(0, 0, 0, .7);
        color: #fff;
        border-radius: 10px;
        height: auto;
 
        ul {
            margin: 0;
            padding: 0;
 
            li {
                line-height: 36px;
            }
        }
 
    }
 
    .forecast-box {
        .el-dialog {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto !important;
            width: 540px !important;
            height: 360px !important;
            background: #C1E6F3;
 
            color: #606266;
 
            .el-dialog__header {
                padding: 10px 20px;
 
                .el-dialog__title {
 
                    color: #606266 !important;
                }
 
                .el-dialog__close {
                    color: #606266 !important;
 
                }
 
                .el-dialog__headerbtn {
                    top: 14px;
 
                }
 
            }
 
            .el-dialog__body {
                padding: 10px 20px 10px 20px;
                background: #fff;
                color: #606266;
 
                height: calc(100% - 44px);
 
                .container {
 
                    height: calc(100%);
 
                    display: flex;
                    flex-direction: column;
                    justify-content: space-around;
 
                    &>div {
                        height: 40px;
 
                        &>.el-select,
                        &>.el-input {
 
                            width: calc(100% - 46px);
 
                        }
                    }
 
                    &>.el-button {
                        height: 40px;
                    }
 
                }
            }
        }
    }
 
    .el-select-dropdown {
        .el-select-dropdown__item {
            font-size: 12px;
        }
    }
 
}