backSearchBox.less
1.05 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
@charset "UTF-8";
.back-search-box {
background-color: transparent;
width: 100%;
height: 93px;
.box {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
width: auto;
height: 100%;
padding: 0 30px;
.buttons-box {
display: flex;
justify-content: space-between;
align-items: center;
// width: 100%;
height: 100%;
.back {
display: block;
width: 38px;
height: 38px;
}
}
.search-container {
background-color: #F6F6F6;
border-radius: 28.5px;
width: 642px;
height: 58px;
.search-box {
display: flex;
justify-content: flex-start;
align-items: center;
margin: 0 auto;
width: 602px;
height: 100%;
.icon-box {
width: 32px;
height: 32px;
.icon-search {
display: block;
width: 32px;
height: 32px;
}
}
.line {
background-color: #999999;
margin: 0 20px;
width: 1px;
height: 22px;
}
.text {
color: #B4B4B4;
font-size: 26px;
font-weight: 400;
}
}
}
}
}