53 lines
809 B
CSS
53 lines
809 B
CSS
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: 'Alibaba PuHuiTi R';
|
|
height: 98%;
|
|
}
|
|
|
|
.layout {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#main-box {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 1% 1% 0 1%;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
border-radius: 5px;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#map-box {
|
|
width: 100%;
|
|
height: calc(100% - 100px);
|
|
}
|
|
|
|
.btn-box {
|
|
width: 100%;
|
|
height: 80px;
|
|
margin-top: 10px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.save {
|
|
background-color: #00377A;
|
|
}
|
|
|
|
/** 去除百度地图的水印和logo */
|
|
.BMap_cpyCtrl,
|
|
.anchorBL {
|
|
display: none;
|
|
} |