1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
.campus-nav-box {
    position: fixed;
    top: 20%;
    left: 20%;
    width: 320px;
    min-height: 186px;
    max-height: 546px;
    z-index: 99;
    color: #fff;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px 2px #dddddd;
 
    .header {
        position: relative;
        border-radius: 8px 8px 0 0;
        width: 100%;
        height: 36px;
        line-height: 36px;
        background-color: #2196f3;
 
        .title {
            padding-left: 10px;
 
            img {
                width: 20px;
                height: 20px;
                vertical-align: middle;
            }
 
            span {
                margin-left: 6px;
                display: inline-block;
                vertical-align: middle;
                color: #fff;
            }
        }
 
        .close {
            position: absolute;
            right: 6px;
            top: 0;
            left: auto;
            bottom: 0;
            margin: auto;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
    }
 
    .content {
        height: calc(100% - 36px);
 
        .tab {
            height: 44px;
            line-height: 44px;
 
            ul {
                display: flex;
 
                li {
                    text-align: center;
                    flex: 1;
                    color: #337ab7;
                    cursor: pointer;
                    border-bottom: 1px solid #ccc;
 
                    i {
                        display: inline-block;
                        width: 16px;
                        height: 16px;
                        vertical-align: text-bottom;
                    }
                }
 
                li:nth-child(1) {
                    border-right: 1px solid #ccc;
 
                    i {
                        background: url(/img/navicon/walk-one.png) no-repeat;
                        background-size: 100% 100%;
                    }
                }
 
                li:nth-child(2) {
                    i {
                        background: url(/img/navicon/drive-one.png) no-repeat;
                        background-size: 100% 100%;
                    }
                }
 
                li.on {
                    color: #a40000;
                    border-bottom: none;
                }
 
                li.on:nth-child(1) {
                    i {
                        background: url(/img/navicon/walk-two.png) no-repeat;
                        background-size: 100% 100%;
                    }
                }
 
                li.on:nth-child(2) {
                    i {
                        background: url(/img/navicon/drive-two.png) no-repeat;
                        background-size: 100% 100%;
                    }
                }
            }
        }
 
        .container {
            position: relative;
            padding: 0 10px;
            display: flex;
            align-items: center;
            height: calc(100% - 44px);
 
            &>div:nth-child(1) {
                display: flex;
                flex-direction: column;
                align-items: center;
                height: 100%;
 
                &>div {
                    flex: 1;
                    line-height: 53px;
                }
            }
 
            &>div:nth-child(2) {
                width: 100px;
                text-align: center;
            }
 
            .toname-value-box,
            .comename-value-box {
                position: absolute;
                top: 48px;
                left: 65px;
                width: auto;
                min-width: 160px;
                max-height: 520px;
                color: #2c3e50;
                background: #fff;
                overflow-y: auto;
                box-shadow: 0 0 14px 2px rgb(221, 221, 221);
                border-radius: 5px;
                z-index: 11;
 
                ul {
                    li {
                        padding-left: 20px;
                        height: 36px;
                        line-height: 36px;
                        cursor: pointer;
                    }
 
                    li:hover {
                        background: #f5f5f5;
                    }
                }
            }
 
            .comename-value-box {
                top: 100px;
            }
        }
 
        .path-box {
            margin: 2.5px 10px 9px 10px;
            max-height: 348px;
            box-sizing: border-box;
            overflow-y: auto;
            color: #000;
            border-radius: 8px;
            box-shadow: 0 0 4px 1px #dddddd;
 
            li {
                padding: 0 10px;
                line-height: 36px;
            }
 
        }
 
    }
 
}
 
.el-input-group__prepend {
    cursor: pointer;
 
    &:hover {
        .mydingwei.el-icon-location {
            font-size: 25px;
        }
    }
}