| 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
 | | .container { |  |   height: 100%; |  |   min-height: 100%; |  |   display: flex; |  |   flex-direction: column; |  |   box-sizing: border-box; |  | } |  |   |  | .title { |  |   width: 100%; |  |   height: 88rpx; |  |   background: white; |  |   display: flex; |  |   align-items: center; |  |   justify-content: space-around; |  | } |  |   |  | .title-sel { |  |   color: #24272c; |  |   font-size: 32rpx; |  |   display: flex; |  |   flex-direction: column; |  |   align-items: center; |  | } |  |   |  | .title-sel  .line-style{ |  |   background: #fff; |  |   height: 6rpx; |  |   width: 40rpx; |  |   position: relative; |  |   margin-top: 10rpx; |  | } |  |   |  | .title-sel-selected{ |  |   color: #00C085; |  |   font-size: 32rpx; |  |   display: flex; |  |   flex-direction: column; |  |   align-items: center; |  | } |  | .title-sel-selected .line-style{ |  |   background: #00C085; |  |   height: 4rpx; |  |   width: 90rpx; |  |   position: relative; |  |   margin-top: 10rpx; |  | } |  |   |  | .swiper { |  |   width: 90%; |  |   flex: 1; |  |   overflow: scroll; |  |   margin: 0 auto; |  | } |  |   |  | .record-item { |  |   margin-top: 10rpx; |  |   background-color: white; |  |   padding-bottom: 5rpx; |  |   padding-top: 5rpx; |  |   font-size: 30rpx; |  | } |  |    |  | .top{ |  |   height: 50px; |  |   width: 100%; |  |   white-space: nowrap; |  |   z-index: 999999; |  |   background: #f7f7f7; |  | } |  | .cate-item{ |  | height: 20px; |  | overflow: hidden; |  | padding: 5px 10px; |  | color: #999; |  | display: inline-block; |  | line-height: 20px; |  | font-size: 14px; |  | margin: 10px 2px 10px 2px; |  | text-align: center; |  |   |  |   |  | } |  |   |  | .active{ |  |  color: #ffffff; |  | background: #00C085; |  | border-radius: 30rpx; |  | } |  |   |  | .service-wrap{ |  |   overflow: hidden; |  |   background: #ffffff; |  |   border-radius: 20rpx; |  |   margin-bottom: 20rpx; |  |   |  |   |  | } |  |   |  | .simg{ |  |   width: 100%; |  | } |  |   |  | .ser-title{ |  |   font-size: 16px; |  |   margin: 20rpx 0rpx 20rpx 20rpx; |  | } |  |   |  | .s-info{ |  |   color: #aeaeae; |  |   font-size: 14px; |  | } |  |   |  | .iconshijian{ |  |   margin-right: 3rpx; |  |   margin-left: 20rpx; |  | } |  |   |  | .price-info{ |  |   margin-top: 20rpx; |  | } |  |   |  | .price-info .price{ |  |   |  |     float: left; |  |     margin-left: 20rpx; |  |    |  | } |  |   |  | .yy{ |  |  float: right; |  | padding: 5rpx 35rpx; |  | border: 1px solid #00C085; |  | border-radius: 60rpx; |  | margin: -10rpx 20rpx 20rpx 0rpx; |  | overflow: hidden; |  | } | 
 |