index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>云塑网后台管理系统</title>
  6. <link rel="shortcut icon" type="image/x-icon" href="./cloud.ico" />
  7. <!-- 高德地图 -->
  8. <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=362cff852a3a37d328f9697352eebacd"></script>
  9. <!-- 高德地图UI组件库 1.0 -->
  10. <script src="//webapi.amap.com/ui/1.0/main.js"></script>
  11. <style>
  12. /* 地图弹窗样式 */
  13. .window {
  14. background: #fff;
  15. padding: 0px 0px 10px;
  16. border:1px solid silver;
  17. border-radius: 5px;
  18. }
  19. .info-top {
  20. position: relative;
  21. background: none repeat scroll 0 0 #F9F9F9;
  22. border-bottom: 1px solid #CCC;
  23. border-radius: 5px 5px 0 0;
  24. }
  25. div.info-top div {
  26. display: inline-block;
  27. color: #333333;
  28. font-size: 14px;
  29. font-weight: bold;
  30. line-height: 31px;
  31. padding: 0 10px;
  32. }
  33. div.info-top div span {
  34. font-size:11px;
  35. color:#F00;
  36. }
  37. div.info-top i {
  38. position: absolute;
  39. top: 10px;
  40. right: 10px;
  41. transition-duration: 0.25s;
  42. cursor: pointer;
  43. }
  44. div.info-middle {
  45. font-size: 12px;
  46. padding: 10px 6px;
  47. line-height: 20px;
  48. background-color: #fff;
  49. }
  50. div.info-item {
  51. width: 300px;
  52. height: 30px;
  53. line-height: 30px;
  54. padding:0 8px;
  55. }
  56. div.info-item a {
  57. color: #20a0ff;
  58. cursor: pointer;
  59. }
  60. span.info-state {
  61. float:right;
  62. }
  63. span.info-ball {
  64. display: inline-block;
  65. width:10px;
  66. height:10px;
  67. border-radius: 50%;
  68. margin-right: 10px;
  69. line-height: 30px;
  70. }
  71. .customWidth {
  72. width: 675px!important;
  73. }
  74. .activeNames .el-collapse-item__wrap {
  75. border-bottom: none;
  76. }
  77. /* 滚动条样式修改 */
  78. /*滚动条凹槽的颜色,还可以设置边框属性 */
  79. ::-webkit-scrollbar-track-piece {
  80. background-color:#f8f8f8;
  81. -webkit-border-radius: 2em;
  82. -moz-border-radius: 2em;
  83. border-radius: 2em;
  84. }
  85. /*滚动条的宽度*/
  86. ::-webkit-scrollbar {
  87. width:9px;
  88. height: 9px;}
  89. /*滚动条的设置*/
  90. ::-webkit-scrollbar-thumb {
  91. background-color:#dddddd;
  92. background-clip:padding-box;
  93. -webkit-border-radius: 2em;
  94. -moz-border-radius: 2em;
  95. border-radius: 2em;}
  96. /*滚动条鼠标移上去*/
  97. ::-webkit-scrollbar-thumb:hover {
  98. background-color:#bbb;
  99. }
  100. /*取消消息列表弹出框的内边距*/
  101. .popover-self {
  102. padding: 0 !important;
  103. }
  104. </style>
  105. </head>
  106. <body>
  107. <div id="app"></div>
  108. </body>
  109. </html>