1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- map{
- height: 40vh;
- width: 100vw;
- }
- .map{
- height: 40vh;
- width: 100vw;
- position: relative;
- }
- .map canvas{
- width:100%;
- height: 100%;
- }
- .map_view{
- margin: 30rpx 30rpx;
- }
- .map_view view{
- display: flex;
- flex-direction: row;
- font-size: 34rpx;
- line-height: 50rpx;
- padding-bottom: 10rpx;
- }
- .map_view view span{
- width: 240rpx;
- text-align: right;
- color: #181818;
- }
- .map_view view i{
- color: rgb(146, 146, 146);
- white-space:normal;
- word-break:break-all;
- word-wrap:break-word
- }
- .map_btn{
- background: rgba(0, 0, 0, 0.479);
- display: flex;
- flex-direction: row;
- width: 220rpx;
- height: 70rpx;
- position: absolute;
- right:20rpx;
- bottom:20rpx;
- z-index: 99999;
- border-radius: 50rpx;
- justify-content: space-evenly;
- align-items: center;
- }
- .map_btn .iconfont{
- color: #fff;
- font-size: 50rpx;
- }
- .logo-text{
- display: none;
- }
|