123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <!-- <meta name="viewport" content="width=device-width,initial-scale=1.0"> -->
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title>云塑网移动端</title>
- <link rel="stylesheet" href="http://at.alicdn.com/t/font_1456778_1mgn5degp7t.css">
- <script src="https://cdn.bootcss.com/axios/0.19.0-beta.1/axios.min.js"></script>
- <!-- 高德地图 -->
- <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.15&key=362cff852a3a37d328f9697352eebacd"></script>
- <!-- 高德地图UI组件库 1.0 -->
- <script src="//webapi.amap.com/ui/1.0/main.js"></script>
- <!--微信js sdk-->
- <script src="http://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
- <style>
- /* 地图弹窗样式 */
- .window {
- background: #fff;
- padding: 0px 0px 10px;
- border:1px solid silver;
- border-radius: 5px;
- }
- .info-top {
- position: relative;
- background: none repeat scroll 0 0 #F9F9F9;
- border-bottom: 1px solid #CCC;
- border-radius: 5px 5px 0 0;
- }
- div.info-top div {
- display: inline-block;
- color: #333333;
- font-size: 14px;
- font-weight: bold;
- line-height: 31px;
- padding: 0 10px;
- }
- div.info-top div span {
- font-size:11px;
- color:#F00;
- }
- div.info-top i {
- position: absolute;
- top: 10px;
- right: 10px;
- transition-duration: 0.25s;
- cursor: pointer;
- }
- div.info-middle {
- font-size: 12px;
- padding: 10px 6px;
- line-height: 20px;
- background-color: #fff;
- }
- div.info-item {
- width: 300px;
- height: 30px;
- line-height: 30px;
- padding:0 8px;
- }
- div.info-item a {
- color: #20a0ff;
- cursor: pointer;
- }
- span.info-state {
- float:right;
- }
- span.info-ball {
- display: inline-block;
- width:10px;
- height:10px;
- border-radius: 50%;
- margin-right: 10px;
- line-height: 30px;
- }
-
- .customWidth {
- width: 675px!important;
- }
- .activeNames .el-collapse-item__wrap {
- border-bottom: none;
- }
- /* 滚动条样式修改 */
- /*滚动条凹槽的颜色,还可以设置边框属性 */
- ::-webkit-scrollbar-track-piece {
- background-color:#f8f8f8;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;
- }
- /*滚动条的宽度*/
- ::-webkit-scrollbar {
- width:9px;
- height: 9px;}
- /*滚动条的设置*/
- ::-webkit-scrollbar-thumb {
- background-color:#dddddd;
- background-clip:padding-box;
- -webkit-border-radius: 2em;
- -moz-border-radius: 2em;
- border-radius: 2em;}
- /*滚动条鼠标移上去*/
- ::-webkit-scrollbar-thumb:hover {
- background-color:#bbb;
- }
- /*取消消息列表弹出框的内边距*/
- .popover-self {
- padding: 0 !important;
- }
- </style>
- </head>
- <body >
- <noscript>
- <strong>非常抱歉,网页丢了</strong>
- </noscript>
- <div id="app"></div>
- </body>
- </html>
|