index.html 2.6 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. .leaflet-popup-content-wrapper{
  21. padding: 0px!important;
  22. border-radius: 0px!important;
  23. box-shadow: none!important;
  24. }
  25. .leaflet-popup-content-wrapper .leaflet-popup-content {
  26. margin: 0!important;
  27. min-width: 250px;
  28. background: rgba(255, 255, 255, 0.5);
  29. }
  30. .leaflet-mypopup-content {
  31. padding: 8px 12px!important;
  32. }
  33. .leaflet-mypopup-content .title{
  34. margin-bottom: 12px;
  35. }
  36. .leaflet-mypopup-content .title span{
  37. font-size: 14px;
  38. font-weight: bold;
  39. }
  40. .leaflet-mypopup-content .line {
  41. margin-bottom: 12px;
  42. }
  43. .leaflet-mypopup-content .line span{
  44. margin-right: 10px;
  45. }
  46. .leaflet-mypopup-content .line span:nth-of-type(1){
  47. font-size: 12px;
  48. color: #8D9399;
  49. }
  50. .leaflet-mypopup-content .line span:nth-of-type(2){
  51. font-size: 16px;
  52. color: #1F2429;
  53. }
  54. .leaflet-mypopup-content .line span:nth-of-type(3) i{
  55. display: inline-block;
  56. width: 16px;
  57. height: 16px;
  58. border-radius: 8px;
  59. color: #F54E45;
  60. }
  61. .leaflet-mypopup-content .line span:nth-of-type(3) em{
  62. font-size: 12px;
  63. color: #F54E45;
  64. }
  65. </style>
  66. <script>
  67. var remHandle = function () {
  68. var html = document.documentElement;
  69. var width = html.clientWidth;
  70. html.style.fontSize = width / 192 + 'px';
  71. }
  72. remHandle();
  73. window.onresize = function () {
  74. remHandle();
  75. }
  76. </script>
  77. </head>
  78. <body>
  79. <noscript>
  80. <strong>We're sorry but wandaspecificationofsanming doesn't work properly without JavaScript enabled. Please enable
  81. it to continue.</strong>
  82. </noscript>
  83. <div id="app"></div>
  84. </body>
  85. </html>