290144e9
易尊强
第一次
|
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
|
/* 搜索 */
.search-head {
position: fixed;
left: 0;
// top: 86rpx;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
/* #ifdef APP-PLUS */
// height: calc(120rpx + var(--status-bar-height));
/* #endif */
padding: 20rpx;
background-color: #F4F4F4;
.search {
display: flex;
align-items: center;
width: 100%;
height: 80rpx;
background: rgba(255, 255, 255, 1);
border: 0;
border-radius: 30rpx;
padding:0 25rpx;
image {
width: 34rpx;
height: 34rpx;
}
text{
width: 2rpx;
height: 24rpx;
background-color:#D8D8D8;
margin: 0 18rpx;
}
input {
width: 58%;
height: 100%;
font-size: 28rpx;
color: #646464;
}
}
.btn {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: 30rpx;
background-color: #D32D25;
border-radius: 100rpx;
padding: 12rpx 25rpx;
text {
font-size: 28rpx;
color: #fff;
}
}
}
/* 文章数据 */
.article-data{
width: 100%;
// margin-top: 150rpx;
/* #ifdef APP-PLUS */
// margin-top: calc(150rpx + var(--status-bar-height));
/* #endif */
|
290144e9
易尊强
第一次
|
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
|
.article-list{
padding: 0 4%;
margin: 30rpx auto;
.list{
display: flex;
width: 100%;
background-color: #FFFFFF;
border-radius: 20rpx;
margin-bottom: 30rpx;
border-bottom: 2rpx solid #F4F4F4;
padding-bottom: 30rpx;
.item{
display: flex;
flex-direction: column;
justify-content: space-between;
width: 68%;
height: 100%;
margin-right: 2%;
.title{
display: flex;
margin-bottom: 20rpx;
text{
color: #212121;
font-size: 30rpx;
line-height: 50rpx;
}
}
.find-collect{
display: flex;
align-items: center;
.find{
display: flex;
align-items: center;
margin-right: 20rpx;
.iconfont{
font-size: 34rpx;
margin-right: 10rpx;
}
text{
color: #9FABB5;
font-size: 28rpx;
}
}
}
}
.thumb{
image{
width: 250rpx;
height: 150rpx;
border-radius: 10rpx;
}
}
}
}
}
.postCon{
margin: 0 auto;
margin-top: 140rpx;
margin-bottom: 20rpx;
text-align: center;
width: 90%;
background-color: gray;
border-radius: 20rpx;
padding: 10rpx;
color: white;
}
|