-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJSON
63 lines (62 loc) · 1.67 KB
/
JSON
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
.container {
display: flex;
flex-direction: column;
align-items: center;
font-size: 12px; }
.container .logo {
width: 225px;
height: 65px;
margin: 50px 0; }
.container .box .tabs {
display: flex; }
.container .box .tabs > div {
width: 55px;
height: 23px;
line-height: 23px;
text-align: center;
cursor: pointer; }
.container .box .tabs > div:hover {
color: #ff5700;
text-decoration: none; }
.container .box .tabs > div.tab-active {
background-color: #ff5700;
font-weight: bold;
color: white; }
.container .box .tabs > div.tab-active:hover {
color: white; }
.container .box .search-box {
display: flex;
align-items: center; }
.container .box .search-box .ipt {
box-sizing: border-box;
width: 500px;
height: 34px;
line-height: 30px;
margin: 0;
padding: 0 0 0 5px;
outline: none;
border: 2px solid #ff5700; }
.container .box .search-box .btnSearch {
margin: 0;
height: 34px;
line-height: 34px;
border: none;
background-color: #ff5700;
color: white;
letter-spacing: 1em;
text-align: center;
width: 90px;
padding-bottom: 5px;
outline: none;
cursor: pointer; }
.container .box .search-box .btnSearch:hover {
opacity: 0.9; }
.container .box .suggest-list {
border: 1px solid #ccc; }
.container .box .suggest-list .suggest-item {
line-height: 30px;
padding-left: 5px; }
.container .box .suggest-list .suggest-item:hover {
cursor: pointer;
background-color: #eee; }
/*# sourceMappingURL=JSON.map */