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
.content-container {
    position: relative;
    display: flex;
    height: 100%;
 
    .map-scene {
        flex: 1;
        // position: relative;
        // top: 0;
        // left: 0;
        height: 100%;
 
        // z-index: 1;
        &>div {
            position: relative;
            width: 100%;
            height: 100%;
        }
 
        .tool-content {
            position: absolute;
            top: 90px;
            right: 11px;
            height: auto;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 5px;
            color: #666;
            cursor: pointer;
            background: #fff;
            z-index: 99;
            box-shadow: 0px 0px 4px 1px #ccc;
        }
 
        #map {
            .ol-layer {
                canvas {
                    width: 100% !important;
                    height: 100% !important;
                }
            }
 
            .ol-attribution {
                display: none;
            }
 
            .cesium-credit-logoContainer {
                display: none !important;
            }
        }
    }
 
    .main-content {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
 
        // z-index: 99;
        .el-card {
            box-sizing: border-box;
        }
    }
 
    .bulletin-btn {
        padding: 0 2px;
        position: fixed;
        top: 302px;
        right: 10px;
        background: #C1E6F3;
        border-color: #C1E6F3;
        color: #606266;
        width: 32px;
        height: 64px;
        text-align: center;
        line-height: 32px;
        border-radius: 5px;
        white-space: inherit !important;
        box-shadow: 0px 0px 4px 1px #ccc;
    }
 
    .flexible-btn {
        padding: 0 2px;
        position: fixed;
        top: 50%;
        left: 0px;
        z-index: 11;
        width: 32px;
        height: 64px;
        color: #606266;
        background: #C1E6F3;
        border-color: #C1E6F3;
        text-align: center;
        line-height: 32px;
        border-radius: 0 5px 5px 0;
        white-space: inherit !important;
        box-shadow: 1px 0px 4px 1px #ccc;
        transform: translate(0px, -50%);
        i {
            font-size: 16px;
        }
    }
 
    .modele-name {
        position: fixed;
        top: 60px;
        left: 0;
        width: 54px;
        height: auto;
        padding: 20px;
        font-size: $font48;
        text-align: center;
        z-index: 11;
    }
 
    .general-situation-box {
        padding: 24px;
        position: fixed;
        top: 90px;
        right: 52px;
        width: 30%;
        height: auto;
        z-index: 11;
        border-radius: 10px;
        font-size: $font30;
        color: #000;
        background: rgba(255, 255, 255, 0.5);
        letter-spacing: 2px;
        word-break: break-all;
 
        span {
            margin: 0;
            width: 100%;
            overflow-y: auto;
            text-indent: 2em;
            font-size: $font30;
            line-height: 40px;
 
            i {
                font-style: normal;
            }
        }
 
        .el-button {
            padding: 0px;
            border: 0px;
            span {
                color: #03a9f4;
                font-size: $font28;
            }
        }
 
        .el-button:hover,
        .el-button:focus {
            background: transparent;
            border: 0px;
        }
    }
 
    .general-situation-box:hover {
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0px 0px 16px 2px #999;
    }
 
    .el-button:hover {
        color: #FFF;
        background-color: #409EFF;
        border-color: #409EFF;
    }
 
}