Blame view

css/common.css 3.51 KB
a1e647d3   liuqimichale   first
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  html,body{
      width: 100%;
      height: 100%;
      min-width: 1000px;
  
      min-height: 600px;
      box-sizing:border-box;
      -moz-box-sizing:border-box; /* Firefox */
      -webkit-box-sizing:border-box; /* Safari */
      font-family: "Microsoft YaHei";
  }
  input,button,select,textarea{outline:none;}
  ul{
      padding-left: 0;
  }
  body,ul,li{
      list-style:none;
  }
  .fl{
      float: left;
  }
  .fr{
      float: right;
  }
  a{
      text-decoration:none;
  }
  a:link{
      text-decoration:none;
  }
  a:visited{
      text-decoration:none;
  }
  a:hover{
      text-decoration:none;
  }
  a:active{
      text-decoration:none;
  }
  /*头部 sta*/
  .model-top{
      height: 80px;
      width: 100%;
      min-width: 1000px;
      background: url("../img/top_bgline.png") repeat-x;
      background-size: 100% 100%;
      position: absolute;
      top: 0;
      z-index: 1;
  }
  .head-line{
      float: left;
      width: 30%;
      height: 80px;
      background: url("../img/index_headlr.png") no-repeat;
      background-size: 100% 100%;
  }
  .headbg{
      float: left;
      width: 40%;
      height: 80px;
      background: url("../img/index_headmid.png") no-repeat;
      background-size: 100% 100%;
  }
  .headbg .headtit{
      width: 337px;
      height: 49px;
      background: url("../img/index_titbg.png") no-repeat;
      background-size: 100% 100%;
      position: absolute;
      top:10px;
      left: 50%;
      margin-left: -168.5px;
  }
  .floatr{
      float: right;
      width: 165px;
      margin-top: 20px;
      margin-right: 15px;
      height: 50px;
  }
  .head-line .headright-time{
      width: 165px;
      height: 30px;
      line-height: 30px;
      color: #fff;
      font-size: 24px;
      text-align: right;
      letter-spacing:4px;
  }
  .head-line .headright-date{
      width: 165px;
      height: 16px;
      line-height: 16px;
      color: #fff;
      font-size: 14px;
      text-align: right;
  }
  /*底部 sta */
  .model-foot{
      height: 75px;
      width: 100%;
      min-width: 1000px;
      background: url("../img/bottom_bgline.png") repeat-x;
      background-size: 100% 100%;
      font-size: 40px;
      position: fixed;
      bottom: 0;
      padding-top: 12px;
  }
  .foot-line{
      float: left;
      height: 63px;
      width: 25%;
      background: url("../img/foot_linebg.png") repeat-x;
      background-size: 100% 100%;
  }
  .foot-line .foot-logo{
      height: 22px;
      width: 209px;
      background: url("../img/zte_itslogo.png") no-repeat;
      background-size: 100% 100%;
      margin-left: 15px;
      margin-top: 18px;
  }
  .foot-menu{
      width:50%;
      float: left;
      height: 63px;
  }
  .menu-arrow{
      float: left;
      width: 121px;
      height: 63px;
  }
  .arrowleft{
      background: url("../img/foot_arrowl.png") no-repeat;
      background-size: 100% 100%;
  }
  .arrowright{
      background: url("../img/foot_arrowr.png") no-repeat;
      background-size: 100% 100%;
  }
  .menu-bar{
      float: left;
      width: calc(100% - 242px);
      width: -webkit-calc(100% - 242px);
      width: -mos-calc(100% - 242px);
      width: -moz-calc(100% - 242px);
      width: -o-calc(100% - 242px);
      background: url("../img/foot_menubg.png") no-repeat;
      background-size: 100% 100%;
      height: 63px;
      margin:0 !important;
      display: -webkit-flex; /* Safari */
      display: flex;
      padding: 0 10px;
  }
  .menu-bar .common-menu{
      font-size: 16px;
      flex: 1;
      height: 63px;
      line-height: 63px;
      text-align: center;
      color:#fff;
      cursor: pointer;
  }
  .menu-bar li span{
      display: inline-block;
      padding: 0 10px;
      color:#fff;
  }
  /*去掉百度地图logo*/
  #allmap label{max-width:none;}
  .BMap_cpyCtrl
  {
      display:none;
  }
  .anchorBL{
      display:none;
  }
  .BMap_Marker:hover{
      width: 32px !important;
      height: 27px !important;
  }