search.wxss
1.59 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
/* stylelint-disable-next-line */
page {
background-color: #ebebeb;
}
.eps {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.search-page {
width: 100%;
max-width: 750rpx;
overflow: hidden;
position: relative;
margin: 0 auto;
color: #444;
}
.search-page .search {
width: 750rpx;
height: 104rpx;
background-color: #fff;
box-sizing: border-box;
padding: 16rpx 30rpx;
}
.search-page .search input {
height: 72rpx;
line-height: 12rpx;
background-color: #f8f8f8;
border-radius: 30rpx;
width: 604rpx;
float: left;
padding-left: 30rpx;
box-sizing: border-box;
font-size: 28rpx;
}
.search-page .search text {
text-align: right;
width: 86rpx;
float: left;
line-height: 72rpx;
font-size: 28rpx;
}
.search-result {
background-color: #fff;
margin-top: 20rpx;
}
.search-result .result-item {
margin-left: 30rpx;
height: 160rpx;
background-color: #fff;
box-sizing: border-box;
padding: 32rpx 30rpx 28rpx 0;
border-bottom: solid 1rpx #e0e0e0;
}
.search-result .result-item:last-child {
border-bottom: 0;
}
.search-result .result-item image {
height: 100rpx;
width: 100rpx;
float: left;
margin-right: 30rpx;
}
.search-result .result-item text {
height: 100rpx;
line-height: 100rpx;
display: block;
float: left;
font-size: 28rpx;
width: 560rpx;
}
.search-page .no-result {
margin-top: 100rpx;
}
.search-page .no-result view {
text-align: center;
font-size: 28rpx;
line-height: 40rpx;
color: #b0b0b0;
}