zengh
2022-05-16 63ad2c3598400370dd7da5534659fd7e768a0a4a
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
body {
    padding: 0;
    margin: 0;
}
 
html, body, #mapVue {
    width: 100%;
    height: 100%;
}
 
#map {
    width: 100%;
    height: 50%;
}
 
#mapVue {
    overflow: hidden;
    /* border: solid 1px springgreen; */
}
 
#seedata {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: 400;
    background-color: #fff;
    /* opacity: 0.9; */
    display: flex;
    flex-direction: column;
    border-radius: 60px 60px 0 0;
}
 
.title {
    width: 100%;
    height: 14%;
    /* border: 1px solid springgreen; */
    border-radius: 60px 60px 0 0;
    position: relative;
    /* top: -3%; */
    background-color: #fff;
    z-index: 401;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.title-span{
    height: 15%;
}
 
/* .title::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: springgreen solid 1px;
} */
 
.main {
    display: flex;
    justify-content: center;
}