index.html 2.7 KB

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