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
| /*head部分*/
| .am-header-default {
| background-color: #3bb4f2;
| height: 150px;
| }
|
| .boxes .box {
| height: 110px;
| color: #000;
| border: 1px solid #eee;
| text-align: center;
| transition: all .2s ease;
| padding-top: 6%;
| border-right: 0;
| border-top: 0;
| position:relative;
| }
|
| .content {
|
| }
|
| .boxes .box:hover {
| background: #eee;
| }
|
| .box img {
| width: 40px;
| height: 40px;
| }
|
| .boxs {
| color: #666;
| }
|
| .font-icon {
| width: 18px;
| height: 18px;
| font-size: 14px;
| line-height: 18px;
|
| position: absolute;
|
| }
|
|