-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.wxss
110 lines (94 loc) · 1.67 KB
/
app.wxss
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
/**app.wxss**/
@import "colorui/main.wxss";
@import "colorui/icon.wxss";
@import 'miniprogram_npm/weui-miniprogram/weui-wxss/dist/style/weui.wxss';
.container {
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 200rpx 0;
box-sizing: border-box;
}
.nav-list {
display: flex;
flex-wrap: wrap;
padding: 0px 40rpx 0px;
justify-content: space-between;
}
.nav-li {
padding: 30rpx;
border-radius: 12rpx;
width: 45%;
margin: 0 2.5% 40rpx;
background-image: url(https://image.weilanwl.com/color2.0/cardBg.png);
background-size: cover;
background-position: center;
position: relative;
z-index: 1;
}
.nav-li::after {
content: "";
position: absolute;
z-index: -1;
background-color: inherit;
width: 100%;
height: 100%;
left: 0;
bottom: -10%;
border-radius: 10rpx;
opacity: 0.2;
transform: scale(0.9, 0.9);
}
.nav-li.cur {
color: #fff;
background: rgb(94, 185, 94);
box-shadow: 4rpx 4rpx 6rpx rgba(94, 185, 94, 0.4);
}
.text-light {
font-weight: 300;
}
.imageBener {
width: 100%;
height: 100%;
}
.card {
margin: 10px;
background-color: #fff;
border-radius: 10px;
padding: 10px;
}
.portraitTime {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.portrait {
width: 20px;
height: 20px;
border-radius: 50px;
}
.time {
flex: 1;
text-align: right;
}
.title {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
margin-top: 5px;
font-size: 16px;
}
.chapterName{
flex: 1;
font-size: 12px;
color: #1B82D1;
margin-top: 5px;
}
.collect{
width: 44rpx;
height: 44rpx;
}