Blame view

src/styles/reset.css 2.89 KB
52c50939   liuqimichale   init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  /* http://meyerweb.com/eric/tools/css/reset/
     v4.0 | 20180602
     License: none (public domain)
  */
  
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  main, menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }
  
  /* HTML5 display-role reset for older browsers */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, main, menu, nav, section {
    display: block;
  }
  
  /* HTML5 hidden-attribute fix for newer browsers */
  *[hidden] {
    display: none;
  }
  
  body {
    line-height: 1;
  }
  
1fcc8b10   liuqimichale   打包
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  /*html, body {*/
    /*width: 100%;*/
    /*height: 100%;*/
    /*background: url("../assets/img/bg.jpg") no-repeat;*/
    /*background-size: 100% 100%;*/
    /*overflow: hidden;*/
  /*}*/
  
  html, body{
    height: 100%;width: 100%;
    font-family: "Microsoft YaHei";
  
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
  }
29f62e58   liuqimichale   打包
60
  
1fcc8b10   liuqimichale   打包
61
  
667dd190   liuqimichale   地磁
62
63
64
65
66
67
  html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
52c50939   liuqimichale   init
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  
  ol, ul {
    list-style: none;
  }
  
  blockquote, q {
    quotes: none;
  }
  
  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /*清除浮动*/
  .clearfix:before,
  .clearfix:after {
    content: " ";
    display: inline-block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  
  .clearfix {
    *zoom: 1;
  }
  
  /*隐藏*/
  .dn {
    display: none;
  }
  
  .margin0-12 {
    margin: 0 12px;
  }
  
  .margin12-0 {
    margin: 12px 0;
  }
eb6d1150   liuqimichale   title 总计 简单封装
114
115
  .flexfm{
    flex: 1;
eb6d1150   liuqimichale   title 总计 简单封装
116
  }
52c50939   liuqimichale   init
117
  
78a3ba7b   liuqimichale   泊位
118
119
120
121
122
123
124
  .pos-rel{
    position: relative;
  }
  .pos-abs{
    position: absolute;
  }
  
1179eb82   liuqimichale   地图覆盖物
125
  .dislog-wrap{
adf82b69   liuqimichale   调取接口
126
    width:100px;
1179eb82   liuqimichale   地图覆盖物
127
128
129
130
    height: 47px;
    border-radius:2px;
  }
  .dialog-header{
adf82b69   liuqimichale   调取接口
131
    width: 100px;
1179eb82   liuqimichale   地图覆盖物
132
133
134
135
136
137
138
139
140
    height:14px;
    line-height: 14px;
    font-size: 12px;
    font-weight:400;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color:rgba(255,255,255,1);
adf82b69   liuqimichale   调取接口
141
    background:rgba(68,182,255,1);
b850acb7   liuqimichale   地图覆盖物
142
  }
48c2893f   liuqimichale   地图覆盖物
143
144
  .dislog-body{
    display: flex;
adf82b69   liuqimichale   调取接口
145
    background:rgba(1,172,254,.8);
48c2893f   liuqimichale   地图覆盖物
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  }
  .dislog-body li{
    text-align: center;
    color: #fff;
  }
  .dislog-body li:nth-of-type(1),.dislog-body li:nth-of-type(3){
    flex: 1;
  }
  .dislog-body li:nth-of-type(2){
    width: 12px;
  }
  .dislog-body li:nth-of-type(1) div:nth-of-type(1){
    font-size: 14px;
    color: #32F532;
  }
  .dislog-body li:nth-of-type(3) div:nth-of-type(1){
    font-size: 14px;
    color: #fff;
  }
  
4d91ea5c   liuqimichale   地图覆盖物
166
167
  .anchorBL{display:none;}  /*去掉百度地图logo*/
  
d59dfa16   liuqimichale   地图覆盖物
168
169
170
171
172
173
  /*.BMap_Marker{*/
    /*z-index: 1!important;*/
  /*}*/
  /*.BMapLabel{*/
    /*z-index: 2!important;*/
  /*}*/
b850acb7   liuqimichale   地图覆盖物