39 lines
733 B
CSS
39 lines
733 B
CSS
.header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #e2e2e2;
|
|
height: 45px;
|
|
}
|
|
.header .submitSearch{
|
|
width: 55px;
|
|
height: 33px;
|
|
background: #ff4c39;
|
|
border-radius: 2px;
|
|
color: #fff;
|
|
font-size: 15px;
|
|
box-sizing: border-box;
|
|
line-height: 33px;
|
|
text-align: center;
|
|
}
|
|
.header a {
|
|
display: inline-block;
|
|
width: 44px;
|
|
}
|
|
.header input {
|
|
height: 32px;
|
|
background: #eee;
|
|
border-radius: 2px;
|
|
color: #333;
|
|
font-size: 14px;
|
|
width: 75%;
|
|
box-sizing: border-box;
|
|
display: block;
|
|
padding: 4px 8px;
|
|
line-height: 24px;
|
|
margin-right: 10px;
|
|
}
|
|
.nodata {
|
|
font-size: 14px;
|
|
margin: 0 auto;
|
|
} |