searchBar.less
1.19 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
@charset "UTF-8";
.search-bar {
.box {
width: 100%;
height: 66px;
margin: 0 auto;
.search-form {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 66px;
background-color: #EAEAEA;
border-radius: 32px;
.left {
display: flex;
align-items: center;
width: calc(100% - 50px);
height: 100%;
.icon {
display: flex;
justify-content: center;
align-items: center;
margin-left: 50px;
width: 34px;
height: 34px;
.img {
display: block;
width: 34px;
height: 34px;
}
}
.input-box {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
height: 100%;
font-size: 34px;
padding-left: 18px;
.search-input-view {
color: #B2B2B2;
width: 100%;
}
.search-input {
color: #000000;
width: 100%;
}
}
}
.right {
display: flex;
align-items: center;
width: 50px;
height: 100%;
.clear-input {
margin-right: 14px;
width: 36px;
height: 36px;
.img {
display: block;
width: 36px;
height: 36px;
}
}
}
}
}
}