index.html 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!--
  2. * @Author: your name
  3. * @Date: 2020-06-28 13:40:38
  4. * @LastEditTime: 2020-07-16 16:19:35
  5. * @LastEditors: Please set LastEditors
  6. * @Description: In User Settings Edit
  7. * @FilePath: \wanda-bm-guide\public\index.html
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  15. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  16. <script src="<%= BASE_URL %>systemConf.js"></script>
  17. <script src="<%= BASE_URL %>g.js"></script>
  18. <title>万达广场管理说明书</title>
  19. <style>
  20. .map-p-label{
  21. background-color:transparent!important;
  22. border:none!important;
  23. box-shadow:none!important;
  24. }
  25. .leaflet-popup-close-button{
  26. display: none;
  27. }
  28. .leaflet-container{
  29. background: #f7f9fa!important;
  30. }
  31. .my-leaflet-div-icon{
  32. white-space: nowrap;
  33. }
  34. .leaflet-popup-content-wrapper{
  35. padding: 0px!important;
  36. border-radius: 0px!important;
  37. box-shadow: none!important;
  38. }
  39. .leaflet-popup-content-wrapper .leaflet-popup-content {
  40. margin: 0!important;
  41. min-width: 250px;
  42. background: rgba(255, 255, 255, 0.5);
  43. }
  44. .leaflet-mypopup-content {
  45. padding: 8px 12px!important;
  46. }
  47. .leaflet-mypopup-content .title{
  48. margin-bottom: 12px;
  49. }
  50. .leaflet-mypopup-content .title span{
  51. font-size: 14px;
  52. font-weight: bold;
  53. }
  54. .leaflet-mypopup-content .line {
  55. margin-bottom: 12px;
  56. }
  57. .leaflet-mypopup-content .line span{
  58. margin-right: 10px;
  59. }
  60. .leaflet-mypopup-content .line span:nth-of-type(1){
  61. font-size: 12px;
  62. color: #8D9399;
  63. }
  64. .leaflet-mypopup-content .line span:nth-of-type(2){
  65. font-size: 16px;
  66. color: #1F2429;
  67. }
  68. .leaflet-mypopup-content .line span:nth-of-type(3) i{
  69. display: inline-block;
  70. width: 16px;
  71. height: 16px;
  72. border-radius: 8px;
  73. color: #F54E45;
  74. }
  75. .leaflet-mypopup-content .line span:nth-of-type(3) em{
  76. font-size: 12px;
  77. color: #F54E45;
  78. }
  79. </style>
  80. <script>
  81. var remHandle = function () {
  82. var html = document.documentElement;
  83. var width = html.clientWidth;
  84. html.style.fontSize = width / 192 + 'px';
  85. }
  86. remHandle();
  87. window.onresize = function () {
  88. remHandle();
  89. }
  90. </script>
  91. </head>
  92. <body>
  93. <noscript>
  94. <strong>We're sorry but wandaspecificationofsanming doesn't work properly without JavaScript enabled. Please enable
  95. it to continue.</strong>
  96. </noscript>
  97. <div id="app"></div>
  98. </body>
  99. </html>