index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. .toolbar {
  13. background: #fff!important;
  14. }
  15. /* 地图弹窗样式 */
  16. .window {
  17. background: #fff;
  18. padding: 0px 0px 10px;
  19. border:1px solid silver;
  20. border-radius: 5px;
  21. }
  22. .info-top {
  23. position: relative;
  24. background: none repeat scroll 0 0 #F9F9F9;
  25. border-bottom: 1px solid #CCC;
  26. border-radius: 5px 5px 0 0;
  27. }
  28. div.info-top div {
  29. display: inline-block;
  30. color: #333333;
  31. font-size: 14px;
  32. font-weight: bold;
  33. line-height: 31px;
  34. padding: 0 10px;
  35. }
  36. div.info-top div span {
  37. font-size:11px;
  38. color:#F00;
  39. }
  40. div.info-top i {
  41. position: absolute;
  42. top: 10px;
  43. right: 10px;
  44. transition-duration: 0.25s;
  45. cursor: pointer;
  46. }
  47. div.info-middle {
  48. font-size: 12px;
  49. padding: 10px 6px;
  50. line-height: 20px;
  51. background-color: #fff;
  52. }
  53. div.info-item {
  54. width: 300px;
  55. height: 30px;
  56. line-height: 30px;
  57. padding:0 8px;
  58. }
  59. div.info-item a {
  60. color: #20a0ff;
  61. cursor: pointer;
  62. }
  63. span.info-state {
  64. float:right;
  65. }
  66. span.info-ball {
  67. display: inline-block;
  68. width:10px;
  69. height:10px;
  70. border-radius: 50%;
  71. margin-right: 10px;
  72. line-height: 30px;
  73. }
  74. .customWidth {
  75. width: 675px!important;
  76. }
  77. .activeNames .el-collapse-item__wrap {
  78. border-bottom: none;
  79. }
  80. /* 滚动条样式修改 */
  81. /*滚动条凹槽的颜色,还可以设置边框属性 */
  82. ::-webkit-scrollbar-track-piece {
  83. background-color:#f8f8f8;
  84. -webkit-border-radius: 2em;
  85. -moz-border-radius: 2em;
  86. border-radius: 2em;
  87. }
  88. /*滚动条的宽度*/
  89. ::-webkit-scrollbar {
  90. width:9px;
  91. height: 9px;}
  92. /*滚动条的设置*/
  93. ::-webkit-scrollbar-thumb {
  94. background-color:#dddddd;
  95. background-clip:padding-box;
  96. -webkit-border-radius: 2em;
  97. -moz-border-radius: 2em;
  98. border-radius: 2em;}
  99. /*滚动条鼠标移上去*/
  100. ::-webkit-scrollbar-thumb:hover {
  101. background-color:#bbb;
  102. }
  103. /*取消消息列表弹出框的内边距*/
  104. .popover-self {
  105. padding: 0 !important;
  106. }
  107. </style>
  108. </head>
  109. <body>
  110. <div id="app"></div>
  111. </body>
  112. </html>