index.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <!-- <meta name="viewport" content="width=device-width,initial-scale=1.0"> -->
  7. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
  8. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  9. <title>云塑网移动端</title>
  10. <link rel="stylesheet" href="http://at.alicdn.com/t/font_1456778_1mgn5degp7t.css">
  11. <script src="https://cdn.bootcss.com/axios/0.19.0-beta.1/axios.min.js"></script>
  12. <!-- 高德地图 -->
  13. <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=362cff852a3a37d328f9697352eebacd"></script>
  14. <!-- 高德地图UI组件库 1.0 -->
  15. <script src="//webapi.amap.com/ui/1.0/main.js"></script>
  16. <!--微信js sdk-->
  17. <script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
  18. <style>
  19. /* 地图弹窗样式 */
  20. .window {
  21. background: #fff;
  22. padding: 0px 0px 10px;
  23. border:1px solid silver;
  24. border-radius: 5px;
  25. }
  26. .info-top {
  27. position: relative;
  28. background: none repeat scroll 0 0 #F9F9F9;
  29. border-bottom: 1px solid #CCC;
  30. border-radius: 5px 5px 0 0;
  31. }
  32. div.info-top div {
  33. display: inline-block;
  34. color: #333333;
  35. font-size: 14px;
  36. font-weight: bold;
  37. line-height: 31px;
  38. padding: 0 10px;
  39. }
  40. div.info-top div span {
  41. font-size:11px;
  42. color:#F00;
  43. }
  44. div.info-top i {
  45. position: absolute;
  46. top: 10px;
  47. right: 10px;
  48. transition-duration: 0.25s;
  49. cursor: pointer;
  50. }
  51. div.info-middle {
  52. font-size: 12px;
  53. padding: 10px 6px;
  54. line-height: 20px;
  55. background-color: #fff;
  56. }
  57. div.info-item {
  58. width: 300px;
  59. height: 30px;
  60. line-height: 30px;
  61. padding:0 8px;
  62. }
  63. div.info-item a {
  64. color: #20a0ff;
  65. cursor: pointer;
  66. }
  67. span.info-state {
  68. float:right;
  69. }
  70. span.info-ball {
  71. display: inline-block;
  72. width:10px;
  73. height:10px;
  74. border-radius: 50%;
  75. margin-right: 10px;
  76. line-height: 30px;
  77. }
  78. .customWidth {
  79. width: 675px!important;
  80. }
  81. .activeNames .el-collapse-item__wrap {
  82. border-bottom: none;
  83. }
  84. /* 滚动条样式修改 */
  85. /*滚动条凹槽的颜色,还可以设置边框属性 */
  86. ::-webkit-scrollbar-track-piece {
  87. background-color:#f8f8f8;
  88. -webkit-border-radius: 2em;
  89. -moz-border-radius: 2em;
  90. border-radius: 2em;
  91. }
  92. /*滚动条的宽度*/
  93. ::-webkit-scrollbar {
  94. width:9px;
  95. height: 9px;}
  96. /*滚动条的设置*/
  97. ::-webkit-scrollbar-thumb {
  98. background-color:#dddddd;
  99. background-clip:padding-box;
  100. -webkit-border-radius: 2em;
  101. -moz-border-radius: 2em;
  102. border-radius: 2em;}
  103. /*滚动条鼠标移上去*/
  104. ::-webkit-scrollbar-thumb:hover {
  105. background-color:#bbb;
  106. }
  107. /*取消消息列表弹出框的内边距*/
  108. .popover-self {
  109. padding: 0 !important;
  110. }
  111. </style>
  112. </head>
  113. <body >
  114. <noscript>
  115. <strong>非常抱歉,网页丢了</strong>
  116. </noscript>
  117. <div id="app"></div>
  118. </body>
  119. </html>