liuyg
2021-07-02 ef1b3b4c73bb1b30e945ec1c8b1ec0f342f790f9
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
page {
    width: 100%;
    height: 100%;
    background-color: rgb(138, 138, 138, 0.1);
}
 
body {
    padding: 0;
    margin: 0;
}
 
html,
body,
#mapVue {
    width: 100%;
    height: 100%;
}
 
#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}
 
#mapVue {
    overflow: hidden;
    /* border: solid 1px springgreen; */
}
 
.dingwei {
    position: fixed;
    width: 38px;
    height: 38px;
    bottom: 8.5rem;
    right: 0;
    z-index: 100;
    background-color: #fff;
    border-radius: 40%;
    opacity: 0.8;
    /* border: 1px solid gray; */
    display: flex;
    align-items: center;
    justify-content: center;
}
 
#Dmain{
    position: fixed;
    width: 95%;
    margin-left: 2.5%;
    height: 7.5rem;
    bottom: 0;
    z-index: 10;
    /* border: #0000FF 1px solid; */
    background-color: #fff;
    border-radius: 1rem;
}
#title{
    /* border: #0000FF 1px solid; */
    display: flex;
    align-items: center;
    height: 3.5rem;
}
.t-fz,.t-mi{
    margin-left: 1rem;
}
 
#bot{
    /* border: #0000FF 1px solid; */
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#bot button{
    width: 80%;
    height: 2.8rem;
    border: none;
    border-radius: 1rem;
    background-color: #169BD5;
    color: #fff;
}
 
#bot button:hover{
    background-color: #1abbff;
}