brandSearch.wxss
1.96 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
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
.searchContainer {
position: fixed;
top: 0rpx;
left: 0rx;
width: 100%;
height: 88rpx;
background-color: white;
display: flex;
align-items: center;
}
.search {
margin-left: 15rpx;
background-color: #f0f0f0;
border-radius: 10rpx;
height: 56rpx;
display: flex;
align-items: center;
width: 96%;
}
.serachIcon {
width: 25rpx;
height: 25rpx;
margin-left: 20rpx;
}
.serachInput {
display: block;
color: black;
font-size: 24rpx;
font-family: PingFang SC;
padding-left: 10rpx;
width: 92%;
}
.placeholder {
font-family: PingFang SC;
font-size: 24rpx;
color: #cccccc;
}
.cancelButton {
width: 80rpx;
height: 40rpx;
margin-left: 40rpx;
margin-right: 21rpx;
font-family: PingFang SC Regular;
font-size: 30rpx;
color: #b0b0b0;
}
.searchResult {
margin-top: 88rpx;
width: 100%;
}
.searchResult .noResult {
text-align: center;
font-size: 40rpx;
color: #999999;
font-weight: bold;
margin-top: 200rpx;
display: flex;
justify-content: center;
}
.row {
height: 140rpx;
width: 100%;
background: white;
}
.row .content {
display: flex;
align-items: center;
height: 139rpx;
width: 100%;
}
.row .brand-icon {
width: 200rpx;
height: 100rpx;
margin: 20rpx 20rpx 20rpx 30rpx;
}
.row .rowContent {
display: flex;
flex-direction: column;
justify-content: center;
height: 139rpx;
width: 460rpx;
}
.row .rowContent .title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-family: SanFranciscoText-Bold;
font-weight: bold;
font-size: 32rpx;
color: #444444;
letter-spacing: -0.38px;
}
.row .rowContent .location {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
font-family: PingFang-SC-Regular;
font-size: 24rpx;
color: #B0B0B0;
letter-spacing: -0.29px;
margin-top: 14rpx;
}
.row .spaceLine {
height: 1rpx;
width: 690rpx;
margin-left: 30rpx;
background: #E0E0E0;
}