123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- page {
- overflow: hidden;
- width: 100%;
- height: 100%;
- }
- .map {
- z-index: 1;
- width: 100%;
- height: 100%;
- }
- .title-bar {
- width: 100%;
- height: 150rpx;
- box-sizing: border-box;
- padding-top: 50rpx;
- position: absolute;
- top: 0;
- z-index: 2;
- background: #5D88FF;
- }
- .title-bar view {
- color: white;
- font-size: 26rpx;
- width: 100%;
- height: 45rpx;
- line-height: 45rpx;
- text-align: center;
- }
- .siteInfo {
- width: 100%;
- z-index: 2;
- box-sizing: border-box;
- padding: 20rpx;
- position: fixed;
- bottom: 0;
- background: white;
- box-shadow: 0 -1rpx 6rpx rgba(0, 0, 0, 0.12);
- }
- .siteInfo .address {
- width: 550rpx;
- font-size: 30rpx;
- color: rgb(100, 100, 100);
- line-height: 40rpx;
- }
- .siteInfo .indate {
- background: rgba(89, 170, 255, 0.2);
- text-align: center;
- font-size: 22rpx;
- color: #2d8cf0;
- position: absolute;
- top: 20rpx;
- border-radius: 20rpx;
- right: 30rpx;
- width: 120rpx;
- height: 40rpx;
- line-height: 40rpx;
- }
- .circle-nav {
- width: 70rpx;
- height: 70rpx;
- box-shadow: 0 0 10rpx 0 rgba(0, 0, 0, 0.2);
- overflow: hidden;
- position: fixed;
- border-radius: 100rpx;
- background: white;
- }
- .circle-nav image {
- display: block;
- margin: 14rpx;
- width: 44rpx;
- height: 44rpx;
- }
- .refresh {
- z-index: 999;
- left: 20rpx;
- bottom: 150rpx;
- }
- .center {
- z-index: 999;
- right: 20rpx;
- bottom: 150rpx;
- }
- .debug {
- border-radius: 10rpx;
- z-index: 99;
- min-height: 270rpx;
- box-sizing: border-box;
- padding: 10rpx;
- width: 280rpx;
- position: absolute;
- top: 160rpx;
- right: 20rpx;
- background: rgba(0, 0, 0, 0.5);
- }
- .debug view {
- color: white;
- width: 100%;
- line-height: 36rpx;
- font-size: 24rpx;
- }
|