| 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
 | |   |  |   |  | .boxes .box { |  |   height: 90px; |  |   color: #000; |  |   border:1px solid #eee; |  |    |  |   text-align: center; |  |    |  |   border-right: 0; |  |   border-top: 0; |  |   padding-top: 1.5rem; |  | } |  | .content{ |  |      |  | } |  | .boxes .box:hover{ |  |    |  |   background: #eee; |  | } |  |   |  | .box img{ |  |   width:40px; |  |   height:40px; |  | } |  | .boxs{ |  |   color:#666; |  | } |  | /*会员等级信息*/ |  | .down{ |  |   background: url(../images/dingImg/down.png)  ; |  |   background-position: 60% 60%; |  |     background-size: 100%; |  |     display: block; |  |     position: relative; |  |     bottom:15px; |  |     height:10px; |  |     width: 15px; |  |     float:right; |  |     transition: 0.2s linear; |  | } |  | .am-list{ |  |  margin: 0px; |  | } |  | .am-list li{ |  |     border:0; |  | } |  | .am-panel{ |  |   margin-bottom: 0px; |  |   border-color: #E0CCB1; |  | } |  | .am-table{ |  |   margin: 0px; |  | } |  | .vipMsg{ |  |   display:none; |  | } |  | .restart{ |  |   position: relative; |  |    |  |    |  |   display: inline; |  | } |  | .am-panel-secondary>.am-panel-hd{ |  |     color: #555; |  |     background-color: #E0CCB1; |  |     border-color: rgb(224, 204, 177); |  | } |  | /*会员等级信息结束*/ |  |   |  | /*foot部分*/ |  |   |  | .am-navbar-default a{ |  |   color:#707070; |  | } |  | .am-navbar-default .am-navbar-nav { |  |   background: #fff; |  |   border-top:1px solid #aaa; |  | } |  | .customer{ |  |   color:#0e90d2; |  | } |  | /*foot结束*/ |  | .am-panel-hd { |  |     border-bottom: 2px solid transparent; |  | } | 
 |