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
| body {
| padding: 0;
| margin: 0;
| }
|
| html,
| body,
| #mapVue {
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
|
| #map {
| width: 100%;
| height: 80%;
| }
|
| #seedata {
| position: relative;
| width: 100%;
| height: 20%;
| z-index: 401;
| /* background-color: #007AFF; */
| opacity: 0.9;
| display: flex;
| flex-direction: column;
| /* border-radius: 60px; */
| }
|
| .main {
| /* display: flex; */
| justify-content: center;
| border-top: 1px solid rgb(138, 138, 138);
| }
|
| .f-m-once {
| width: 100%;
| height: 40px;
| position: relative;
| top: 15px;
| left: 15px;
| }
|
| .f-m-o-title {
| font-weight: 550;
| font-size: 14px;
| }
|
| .f-m-once input {
| width: 200px;
| height: 20px;
| position: relative;
| left: 73px;
| top: -21px;
| border: none;
| font-size: 14px;
| font-family: "微软雅黑";
| }
|
| .f-m-once img {
| position: relative;
| left: 85px;
| top: -22px;
| width: 25px;
| height: 25px;
| }
|
| .f-m-once textarea {
| position: relative;
| height: 45px;
| line-height: 1.5;
| width: 200px;
| left: 73px;
| top: -21px;
| font-size: 14px;
| font-family: "微软雅黑";
| border: none;
| }
|
| .btn {
| width: 90px;
| height: 90px;
| border-radius: 100px;
| border: none;
| color: #FFFFFF;
| background-color: #007AFF;
| position: relative;
| left: 140px;
| top: 45px;
| letter-spacing: 1px;
| }
|
| #routeBtn {
| background-color: cornflowerblue;
| }
|
| #areaBtn {
| background-color: darkgrey;
| }
|
| .route-area-tab {
| width: 100%;
| height: 40px;
| position: absolute;
| bottom: 0;
| z-index: 999;
| }
|
| .route-span {
| width: 30%;
| height: 100%;
| background-color: #007AFF;
| float: left;
| font-size: 16px;
| font-weight: 550;
| text-align: center;
| line-height: 40px;
| border-radius: 20px 20px 0px 0px;
| }
|
| .area-span {
| width: 30%;
| height: 100%;
| background-color: darkgrey;
| float: left;
| font-size: 16px;
| font-weight: 550;
| text-align: center;
| line-height: 40px;
| border-radius: 20px 20px 0px 0px;
| }
|
|