location-view.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .uni-system-open-location {
  2. display: block;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. width: 100%;
  7. height: 100%;
  8. background: #f8f8f8;
  9. z-index: 999;
  10. }
  11. .uni-system-open-location .map {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. width: 100%;
  16. bottom: 80px;
  17. height: auto;
  18. }
  19. .uni-system-open-location .info {
  20. position: absolute;
  21. bottom: 0;
  22. left: 0;
  23. width: 100%;
  24. height: 80px;
  25. background-color: white;
  26. padding: 15px;
  27. box-sizing: border-box;
  28. line-height: 1.5;
  29. }
  30. .uni-system-open-location .info>.name {
  31. font-size: 17px;
  32. color: #111111;
  33. }
  34. .uni-system-open-location .info>.address {
  35. font-size: 14px;
  36. color: #666666;
  37. }
  38. .uni-system-open-location .info>.nav {
  39. position: absolute;
  40. top: 50%;
  41. right: 15px;
  42. width: 50px;
  43. height: 50px;
  44. border-radius: 50%;
  45. margin-top: -25px;
  46. background-color: #007aff;
  47. }
  48. .uni-system-open-location .info>.nav>svg {
  49. display: block;
  50. width: 100%;
  51. height: 100%;
  52. padding: 10px;
  53. box-sizing: border-box;
  54. }
  55. .uni-system-open-location .map-move {
  56. position: absolute;
  57. bottom: 50px;
  58. right: 10px;
  59. width: 40px;
  60. height: 40px;
  61. box-sizing: border-box;
  62. line-height: 40px;
  63. background-color: white;
  64. border-radius: 50%;
  65. pointer-events: auto;
  66. cursor: pointer;
  67. box-shadow: 0px 0 5px 1px rgba(0, 0, 0, 0.3);
  68. }
  69. .uni-system-open-location .map-move>svg {
  70. display: block;
  71. width: 100%;
  72. height: 100%;
  73. box-sizing: border-box;
  74. padding: 8px;
  75. }
  76. .uni-system-open-location .nav-btn-back {
  77. position: absolute;
  78. box-sizing: border-box;
  79. top: 0;
  80. left: 0;
  81. width: 44px;
  82. height: 44px;
  83. padding: 6px;
  84. cursor: pointer;
  85. }
  86. .uni-system-open-location .nav-btn-back>svg {
  87. display: block;
  88. width: 100%;
  89. height: 100%;
  90. border-radius: 50%;
  91. background-color: rgba(0, 0, 0, 0.5);
  92. padding: 3px;
  93. box-sizing: border-box;
  94. }
  95. .uni-system-open-location .map-content {
  96. position: absolute;
  97. left: 0;
  98. top: 0px;
  99. width: 100%;
  100. bottom: 0;
  101. overflow: hidden;
  102. }
  103. .uni-system-open-location .map-content.fix-position {
  104. top: -74px;
  105. bottom: -44px;
  106. }
  107. .uni-system-open-location .map-content>iframe {
  108. width: 100%;
  109. height: 100%;
  110. border: none;
  111. }
  112. .uni-system-open-location .actTonav {
  113. position: absolute;
  114. right: 16px;
  115. bottom: 56px;
  116. width: 60px;
  117. height: 60px;
  118. border-radius: 60px;
  119. }