index.html 4.0 KB

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