community.wxss
1.4 KB
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
/* pages/community/community.wxss */
page {
background: #fafafa;
}
.banner_box {
background: #fff;
padding: 30rpx;
/* position: fixed; */
}
.title {
font-size: 48rpx;
font-weight: bold;
color: #1a1a1a;
}
.banner_img {
width: 100%;
height: 340rpx;
display: flex;
align-items: center;
justify-content: center;
margin-top: 34rpx;
border-radius: 10rpx;
overflow: hidden;
}
.banner_img image {
width: 100%;
height: 100%;
}
.content_box {
background: #fff;
padding: 0 30rpx;
margin-top: 20rpx;
}
.tab_content{
padding: 0 20rpx;
}
.tab_box {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid #ebebeb;
padding: 30rpx 100rpx;
}
.tab_item {
font-size: 28rpx;
color: #666;
position: relative;
}
.tab_item.active {
font-size: 32rpx;
color: #1db9fa;
}
.tab_item.active::after {
content: "";
width: 62rpx;
height: 8rpx;
background: rgba(29, 185, 250, 1);
border-radius: 3rpx;
position: absolute;
bottom: -30rpx;
left: 50%;
transform: translateX(-50%);
}
.item_list {
background: rgba(245, 248, 252, 1);
border-radius: 10rpx;
margin-top: 20rpx;
font-size: 28rpx;
color: #000000;
display: flex;
align-items: center;
justify-content: space-between;
padding: 30rpx;
}
.date{
font-size: 28rpx;
color: #999999;
margin-top: 10rpx;
}
.icon-jiantouarrow487{
color: #ccc;
}
.content_item{
padding-bottom: 20rpx;
}