searchCom.less
1.62 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
@charset "UTF-8";
.search-com {
background-color: transparent;
padding: 14px 0 20px 0;
width: 750px;
height: auto;
.box {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 690px;
height: auto;
.search-group {
display: flex;
justify-content: space-between;
align-items: center;
background-color: transparent;
width: 600px;
border: 3px solid #f9f9ff;
border-radius: 32px;
overflow: hidden;
.left-box {
width: 544px;
.search-form {
display: flex;
align-items: center;
.search-icon {
margin: 16px 20px 16px 30px;
width: 32px;
height: 32px;
.search-img {
display: block;
width: 32px;
height: 32px;
}
}
.line {
background-color: #858585;
margin-right: 20px;
width: 0;
height: 22px;
border-left: 1px solid #858585;
}
.input-box {
width: 440px;
height: 64px;
.keyword {
display: block;
background-color: transparent;
padding: 0;
color: #333333;
font-size: 26px;
width: 100%;
height: 100%;
border: none;
outline: none;
&::placeholder {
color: #C8C8C8;
font-size: 26px;
}
&::-webkit-search-cancel-button {
display: none;
}
}
}
}
}
.right-box {
width: 46px;
.clear-input-box {
// margin-right: 20px;
width: 26px;
height: 26px;
.clear-input-img {
display: block;
width: 26px;
height: 26px;
}
}
}
}
.buttons-box {
}
}
}