-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathapp.wxss
168 lines (150 loc) · 2.48 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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/**app.wxss**/
.page {
min-height: 100%;
flex: 1;
background-color: #FBF9FE;
font-size: 14px;
font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
overflow: hidden;
line-height: 1.6;
}
.active{
color:#d81e06;
border-bottom: 2rpx solid #d81e06;
}
/** global weui article **/
.articles{
background-color: #fff;
}
.article__item{
display: flex;
padding: 30rpx 20rpx;
align-items: center;
border-bottom: 1rpx solid #eee;
position: relative;
padding-bottom: 20rpx;
}
.article__thumb{
width: 160rpx;
height: 140rpx;
margin-right: 20rpx;
}
.article__image{
width:160rpx;
height: 140rpx;
}
.article__info{
flex: 1;
}
.article__title{
font-weight: 400;
font-size: 26rpx;
text-overflow: ellipsis;
display: block;
width: 100%;
margin-bottom: 20rpx;
overflow: hidden;
}
/* 支持多行 */
.article__title__large{
}
.article__desc{
color: #999;
font-size: 24rpx;
line-height: 1.2;
width: 100%;
}
.article__item__cover{
display: block;
}
.article__cover{
padding-bottom: 10rpx;
overflow: hidden;
}
.article__ad{
width: 100%;
height: 240rpx;
border-radius: 10rpx;
}
.article__remark{
bottom: 0;
width: 750rpx;
display: block;
font-size: 28rpx;
}
.article__source{
color:#d81e06;
border:1rpx solid #d81e06;
padding: 2rpx 10rpx;
border-radius: 4rpx;
font-size:20rpx;
margin-right: 20rpx;
}
.article__time{
margin-right: 10rpx;
}
.article__count{
float: right;
display: flex;
align-items: center;
color:#333;
font-size: 20rpx;
font-weight: 500;
}
.article__icon{
width: 29rpx;
height: 29rpx;
margin-left: 15rpx;
margin-right: 6rpx;
}
.article__imgview{
width: 200rpx;
height: 142rpx;
padding: 15rpx;
}
.weui-footer {
color: #999999;
font-size: 14px;
text-align: center;
background-color: #fff;
padding: 20rpx;
}
.weui-footer_fixed-bottom {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.weui-footer__links {
font-size: 0;
}
.weui-footer__link {
padding-top: 20rpx;
display: inline-block;
vertical-align: top;
margin: 0 .62em;
position: relative;
font-size: 14px;
color: #586C94;
margin-bottom: 22rpx;
}
.weui-footer__link:before {
content: " ";
position: absolute;
left: 0;
top: 0;
width: 1px;
bottom: 0;
border-left: 1rpx solid #C7C7C7;
color: #C7C7C7;
left: -0.65em;
top: .36em;
bottom: .36em;
}
.weui-footer__link:first-child:before {
display: none;
}
.weui-footer__text {
padding: 0 .34em;
font-size: 12px;
}