| 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
 | |   |  |   |  | .boxes .box { |  |   height: 90px; |  |   color: #000; |  |   border:1px solid #eee; |  |    |  |   text-align: center; |  |    |  |   transition: all .2s ease; |  |   padding-top: 4%; |  | } |  |   |  | .boxes .box:hover { |  |    |  |   background: #eee; |  | } |  |   |  | .box img{ |  |   width:40px; |  |   height:40px; |  | } |  | .boxs{ |  |   color:#666; |  | } |  | /*foot部分*/ |  | .am-navbar-default a{ |  |   color:#707070; |  | } |  | .am-navbar-default .am-navbar-nav { |  |   background: #fff; |  |   border-top:1px solid #aaa; |  | } |  | .customer{ |  |   color:#00A0C3; |  | } |  | /*foot结束*/ | 
 |