index.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. page {
  2. overflow: hidden;
  3. width: 100%;
  4. height: 100%;
  5. }
  6. .map {
  7. z-index: 1;
  8. width: 100%;
  9. height: 100%;
  10. }
  11. .title-bar {
  12. width: 100%;
  13. height: 150rpx;
  14. box-sizing: border-box;
  15. padding-top: 50rpx;
  16. position: absolute;
  17. top: 0;
  18. z-index: 2;
  19. background: #5D88FF;
  20. }
  21. .title-bar view {
  22. color: white;
  23. font-size: 26rpx;
  24. width: 100%;
  25. height: 45rpx;
  26. line-height: 45rpx;
  27. text-align: center;
  28. }
  29. .siteInfo {
  30. width: 100%;
  31. z-index: 2;
  32. box-sizing: border-box;
  33. padding: 20rpx;
  34. position: fixed;
  35. bottom: 0;
  36. background: white;
  37. box-shadow: 0 -1rpx 6rpx rgba(0, 0, 0, 0.12);
  38. }
  39. .siteInfo .address {
  40. width: 550rpx;
  41. font-size: 30rpx;
  42. color: rgb(100, 100, 100);
  43. line-height: 40rpx;
  44. }
  45. .siteInfo .indate {
  46. background: rgba(89, 170, 255, 0.2);
  47. text-align: center;
  48. font-size: 22rpx;
  49. color: #2d8cf0;
  50. position: absolute;
  51. top: 20rpx;
  52. border-radius: 20rpx;
  53. right: 30rpx;
  54. width: 120rpx;
  55. height: 40rpx;
  56. line-height: 40rpx;
  57. }
  58. .circle-nav {
  59. width: 70rpx;
  60. height: 70rpx;
  61. box-shadow: 0 0 10rpx 0 rgba(0, 0, 0, 0.2);
  62. overflow: hidden;
  63. position: fixed;
  64. border-radius: 100rpx;
  65. background: white;
  66. }
  67. .circle-nav image {
  68. display: block;
  69. margin: 14rpx;
  70. width: 44rpx;
  71. height: 44rpx;
  72. }
  73. .refresh {
  74. z-index: 999;
  75. left: 20rpx;
  76. bottom: 150rpx;
  77. }
  78. .center {
  79. z-index: 999;
  80. right: 20rpx;
  81. bottom: 150rpx;
  82. }
  83. .debug {
  84. border-radius: 10rpx;
  85. z-index: 99;
  86. min-height: 270rpx;
  87. box-sizing: border-box;
  88. padding: 10rpx;
  89. width: 280rpx;
  90. position: absolute;
  91. top: 160rpx;
  92. right: 20rpx;
  93. background: rgba(0, 0, 0, 0.5);
  94. }
  95. .debug view {
  96. color: white;
  97. width: 100%;
  98. line-height: 36rpx;
  99. font-size: 24rpx;
  100. }