12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .map_container {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- }
- .map {
- width: 100%;
- height: 100%;
- }
- .map-tab-bar {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 1000;
- font-size: 0;
- background-color: #fff;
- }
- .map-hide {
- display: none;
- }
- .map-foot {
- top: auto;
- bottom: 0;
- padding: 10px 10px;
- }
- .map-storeName {
- height: 80rpx;
- line-height: 80rpx;
- font-size: 35rpx;
- overflow: hidden;
- }
- .map-storeAddress {
- height: auto;
- width: 700rpx;
- display: block;
- white-space: pre-line;
- line-height: 45rpx;
- font-size: 25rpx;
- overflow: hidden;
- }
- .map-distance {
- height: 60rpx;
- line-height: 60rpx;
- font-size: 25rpx;
- overflow: hidden;
- }
|