index.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <link rel="stylesheet" type="text/css" href="./static/custom-picker.css" />
  9. <!-- 引入mui -->
  10. <!-- <script src="/static/mui.min.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. ul, ol {
  81. list-style: none;
  82. padding: 0;
  83. margin: 0;
  84. }
  85. .mint-toast {
  86. z-index: 99999999!important;
  87. }
  88. .mint-indicator-wrapper {
  89. z-index: 9999999!important;
  90. }
  91. </style>
  92. </head>
  93. <body>
  94. <div id="app"></div>
  95. </body>
  96. </html>