123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- .uni-system-open-location {
- display: block;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: #f8f8f8;
- z-index: 999;
- }
- .uni-system-open-location .map {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- bottom: 80px;
- height: auto;
- }
- .uni-system-open-location .info {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 80px;
- background-color: white;
- padding: 15px;
- box-sizing: border-box;
- line-height: 1.5;
- }
- .uni-system-open-location .info>.name {
- font-size: 17px;
- color: #111111;
- }
- .uni-system-open-location .info>.address {
- font-size: 14px;
- color: #666666;
- }
- .uni-system-open-location .info>.nav {
- position: absolute;
- top: 50%;
- right: 15px;
- width: 50px;
- height: 50px;
- border-radius: 50%;
- margin-top: -25px;
- background-color: #007aff;
- }
- .uni-system-open-location .info>.nav>svg {
- display: block;
- width: 100%;
- height: 100%;
- padding: 10px;
- box-sizing: border-box;
- }
- .uni-system-open-location .map-move {
- position: absolute;
- bottom: 50px;
- right: 10px;
- width: 40px;
- height: 40px;
- box-sizing: border-box;
- line-height: 40px;
- background-color: white;
- border-radius: 50%;
- pointer-events: auto;
- cursor: pointer;
- box-shadow: 0px 0 5px 1px rgba(0, 0, 0, 0.3);
- }
- .uni-system-open-location .map-move>svg {
- display: block;
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- padding: 8px;
- }
- .uni-system-open-location .nav-btn-back {
- position: absolute;
- box-sizing: border-box;
- top: 0;
- left: 0;
- width: 44px;
- height: 44px;
- padding: 6px;
- cursor: pointer;
- }
- .uni-system-open-location .nav-btn-back>svg {
- display: block;
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background-color: rgba(0, 0, 0, 0.5);
- padding: 3px;
- box-sizing: border-box;
- }
- .uni-system-open-location .map-content {
- position: absolute;
- left: 0;
- top: 0px;
- width: 100%;
- bottom: 0;
- overflow: hidden;
- }
- .uni-system-open-location .map-content.fix-position {
- top: -74px;
- bottom: -44px;
- }
- .uni-system-open-location .map-content>iframe {
- width: 100%;
- height: 100%;
- border: none;
- }
- .uni-system-open-location .actTonav {
- position: absolute;
- right: 16px;
- bottom: 56px;
- width: 60px;
- height: 60px;
- border-radius: 60px;
- }
|