index.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. .el-rate:focus {
  89. outline-width: 0;
  90. }
  91. .el-rate__icon {
  92. font-size: 0.25rem;
  93. border: none!important;
  94. outline: 0!important;
  95. box-shadow: none!important;
  96. -webkit-box-shadow: none!important;
  97. }
  98. .el-rate__item {
  99. border: none!important;
  100. outline: 0!important;
  101. box-shadow: none!important;
  102. }
  103. .el-rate__item:focus.is-active.is-focus:not(:active) {
  104. -webkit-box-shadow: none;
  105. box-shadow: none;
  106. }
  107. </style>
  108. </head>
  109. <body>
  110. <div id="app"></div>
  111. <!-- 引入Vue.js -->
  112. <!-- <script src="https://cdn.staticfile.org/vue/2.4.3/vue.min.js"></script> -->
  113. <!-- 引入vuex.js -->
  114. <!-- <script src="https://cdn.staticfile.org/vuex/3.0.0/vuex.min.js"></script> -->
  115. <!-- 引入echarts -->
  116. <!-- <script src="https://cdn.staticfile.org/echarts/4.1.0/echarts.min.js"></script> -->
  117. <!-- 引入组件库 -->
  118. <!-- <script src="https://cdn.staticfile.org/element-ui/2.4.3/index.js"></script> -->
  119. </body>
  120. </html>