index.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  6. <title>数据中心</title>
  7. <link rel="shortcut icon" type="image/x-icon" href="./cloud.ico" />
  8. <style>
  9. .toolbar {
  10. background: #fff!important;
  11. }
  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. ul, ol {
  78. list-style: none;
  79. padding: 0;
  80. margin: 0;
  81. }
  82. .mint-toast {
  83. z-index: 99999999!important;
  84. }
  85. .mint-indicator-wrapper {
  86. z-index: 9999999!important;
  87. }
  88. </style>
  89. </head>
  90. <body>
  91. <div id="app"></div>
  92. <!-- 引入Vue.js -->
  93. <!-- <script src="https://cdn.staticfile.org/vue/2.4.3/vue.min.js"></script> -->
  94. <!-- 引入vuex.js -->
  95. <!-- <script src="https://cdn.staticfile.org/vuex/3.0.0/vuex.min.js"></script> -->
  96. <!-- 引入echarts -->
  97. <!-- <script src="https://cdn.staticfile.org/echarts/4.1.0/echarts.min.js"></script> -->
  98. </body>
  99. </html>