-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.wxss
120 lines (119 loc) · 1.87 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
page{
height: 100%;
}
.search{
display: flex;
background: white;
width: 100%;
}
/*.search_fixed{
position: fixed;
top: 0;
display: flex;
}*/
.search_input{
border: 1px solid #aaa;
height: 70rpx;
box-shadow: 0 0 3px #008B8B inset;
padding: 0 20rpx;
font-size: 30rpx;
flex: 9;
position: relative;
}
.search_button{
flex: 1;
height: 70rpx;
border: 1px solid #008B8B;
}
.auto_complete_box{
z-index: 1;
position:absolute;
top:70rpx;
width:90%;
background:white;
box-sizing: border-box;
border-radius:0 0 3px 3px;
box-shadow: 0 0 3px #008B8B inset;
}
.auto_complete_box_hidden{
display: none;
}
.auto_complete_box_height{
height: 385rpx;
}
.auto_complete_line{
height: 70rpx;
overflow: hidden;
}
.auto_complete_line image{
width:30rpx;
height:30rpx;
margin:20rpx;
display:block;
float:left;
}
.auto_complete_line text{
line-height:70rpx;
font-size:30rpx;
color:#888;
}
.book{
height:300rpx;
border-bottom:1px solid #eee;
background: white;
}
.book image{
height:250rpx;
width:175rpx;
margin:25rpx;
box-shadow:0 0 10px #000;
}
.book_info{
float:right;
height:100%;
width:70%;
}
.title{
font-size: 30rpx;
font-weight: bold;
display: block;
margin: 26rpx 0 10rpx 0;
}
.author{
font-size: 24rpx;
color: #888;
display: block;
margin-bottom: 10rpx;
font-style: italic;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.intro{
font-size: 24rpx;
color: #333;
height: 105rpx;
ext-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
line-height: 35rpx;
}
.follower_outter{
margin-top: 16rpx;
color: #333;
font-size: 24rpx;
}
.follower_inner{
color: red;
font-size: 24rpx;
font-style: italic;
}
.loading{
width: 100%;
height: 100rpx;
line-height: 100rpx;
text-align: center;
font-size: 30rpx;
}