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
| /**
| * cBaiduMap
| * @author chensi
| */
|
| @import "../../common/sassMixin";
|
| .c-baidu-map {
| width: 100%;
| height: 100%;
| position: relative;
| display: block;
|
| .map {
| width: 100%;
| height: 100%;
| display: block;
| }
|
| .map-controls {
| position: absolute;
| bottom: 0;
| left: 0;
| right: 0;
| background: rgba(255, 255, 255, 0.9);
| z-index: 100;
|
| .map-controls-top {
| display: flex;
| width: 100%;
| justify-content: space-between;
| align-items: center;
| height: 100px;
| padding: 0 20px;
| box-sizing: border-box;
| .at-button {
| width: calc(50% - 6px);
| height: 76px !important;
| line-height: 72px;
| font-size: 40px;
| margin: 0;
| }
| }
| .map-controls-bottom {
| display: flex;
| width: 100%;
| height: 88px;
| padding: 0 20px;
| box-sizing: border-box;
| .at-button {
| width: 100%;
| height: 76px !important;
| line-height: 72px;
| font-size: 40px;
| margin: 0;
| }
| }
| }
| }
|
|