searchHistory.less
1.17 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
@charset "UTF-8";
.search-history-com {
background-color: #ffffff;
width: 100%;
height: auto;
min-height: calc(100vh - 104px);
.title {
margin: 0 auto;
padding: 30px 0 20px 0;
color: #898989;
font-size: 28px;
width: 690px;
height: auto;
}
.box {
margin: 0 auto;
width: 690px;
height: auto;
.list-box {
.item {
background-color: #F9F9F9;
margin-top: 10px;
margin-right: 30px;
color: #666666;
font-size: 26px;
width: 150px;
height: 58px;
border-radius: 10px;
float: left;
&:nth-child(4n) {
margin-right: 0;
}
.text {
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
width: 120px;
height: 58px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}
}
}
.line {
clear: both;
margin: 0 auto;
width: 690px;
height: 30px;
border-bottom: 1px solid #F2F2F2;
}
.buttons-box {
clear: both;
display: flex;
justify-content: center;
align-items: center;
margin: 30px auto;
width: 690px;
height: auto;
.btn {
&.btn-primary {
color: #F5A623;
font-size: 26px;
font-weight: 400;
}
}
}
}