index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>云塑网后台管理系统</title>
  6. <!-- 高德地图 -->
  7. <script type="text/javascript"
  8. src="https://webapi.amap.com/maps?v=1.4.15&key=362cff852a3a37d328f9697352eebacd"></script>
  9. <style>
  10. /* 地图弹窗样式 */
  11. .window {
  12. background: #fff;
  13. padding: 0px 0px 10px;
  14. border: 1px solid silver;
  15. border-radius: 5px;
  16. }
  17. .info-top {
  18. position: relative;
  19. background: none repeat scroll 0 0 #F9F9F9;
  20. border-bottom: 1px solid #CCC;
  21. border-radius: 5px 5px 0 0;
  22. }
  23. div.info-top div {
  24. display: inline-block;
  25. color: #333333;
  26. font-size: 14px;
  27. font-weight: bold;
  28. line-height: 31px;
  29. padding: 0 10px;
  30. }
  31. div.info-top div span {
  32. font-size: 11px;
  33. color: #F00;
  34. }
  35. div.info-top i {
  36. position: absolute;
  37. top: 10px;
  38. right: 10px;
  39. transition-duration: 0.25s;
  40. cursor: pointer;
  41. }
  42. div.info-middle {
  43. font-size: 12px;
  44. padding: 10px 6px;
  45. line-height: 20px;
  46. background-color: #fff;
  47. }
  48. .customWidth {
  49. width: 675px !important;
  50. }
  51. /* 滚动条样式修改 */
  52. /*滚动条凹槽的颜色,还可以设置边框属性 */
  53. ::-webkit-scrollbar-track-piece {
  54. background-color: #f8f8f8;
  55. -webkit-border-radius: 2em;
  56. -moz-border-radius: 2em;
  57. border-radius: 2em;
  58. }
  59. /*滚动条的宽度*/
  60. ::-webkit-scrollbar {
  61. width: 9px;
  62. }
  63. /*滚动条的设置*/
  64. ::-webkit-scrollbar-thumb {
  65. background-color: #dddddd;
  66. background-clip: padding-box;
  67. -webkit-border-radius: 2em;
  68. -moz-border-radius: 2em;
  69. border-radius: 2em;
  70. }
  71. /*滚动条鼠标移上去*/
  72. ::-webkit-scrollbar-thumb:hover {
  73. background-color: #bbb;
  74. }
  75. /*取消消息列表弹出框的内边距*/
  76. .popover-self {
  77. padding: 0 !important;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82. <div id="app"></div>
  83. <!-- built files will be auto injected -->
  84. </body>
  85. </html>