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
| .top{
| height: 50px;
| position: fixed;
| top:0px;
| left: 0px;
| width: 100%;
| white-space: nowrap;
| z-index: 999999;
| background: #f7f7f7;
|
| }
| .cate-item{
| height: 30px;
| overflow: hidden;
| padding: 5px 10px;
| color: #999;
| display: inline-block;
| line-height: 40px;
| font-size: 14px;
|
| }
|
| .service-wrap{
| margin: 0 auto;
| width: 95%;
| border-radius: 5px;
| background: #fff;
| overflow:hidden;
| }
| .service-wrap:first-of-type{
| margin-top:50px;
| }
|
|
| .inner-wrap{
| border-bottom: 1px solid #efefef;
| width: 95%;
| height: 60px;
| }
| .content-wrap{
| margin: 10px;
| margin-top: 20px;
| height: 60px;
| width: 100%;
| position: relative;
| }
|
| .content-wrap image{
| width: 40px;
| height: 40px;
| float: left;
| }
| .m-info{
| float: left;
| width: 60%;
| margin-left: 10px;
| margin-top: 28rpx;
|
| }
|
| .s-info{
| float: right;
| margin-top: 15px;
| color: #aeaeae;
| }
|
| .s-time{
| font-size:13px;
| }
| .active{
| color: #00C085;
| border-bottom: 1px solid #00C085;
| }
| .price{
| font-size: 12px;
| }
|
|