| 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
 | | @import "../../icon/iconfont.wxss"; |  | @import "../../common/css/common.wxss"; |  | @import "groupDetails.wxss"; |  |   |  | .bar-box { |  |   height: 100rpx; |  | } |  |   |  | .bar-box view { |  |   float: left; |  |   width: 50%; |  |   text-align: center; |  |   font: 13pt; |  |   line-height: 100rpx; |  |   border-bottom: 1px solid #efefef; |  | } |  |   |  | .active { |  |   color: red; |  |   border-bottom: 1px solid #e00 !important; |  | } |  |   |  | .title-box { |  |   overflow: hidden; |  |   padding-left: 20rpx; |  | } |  |   |  | .gd-title { |  |   height: 70rpx; |  |   display: -webkit-box; |  |   -webkit-box-orient: vertical; |  |   -webkit-line-clamp: 2; |  |   overflow: hidden; |  | } | 
 |