36 lines
688 B
CSS
36 lines
688 B
CSS
.search_input {
|
|
font-size: 0;
|
|
display: flex;
|
|
height: 0.88rem;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
padding: 0 0.3rem;
|
|
position: fixed;
|
|
width: 100%;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
}
|
|
.search_input input{
|
|
width: 80%;
|
|
border: none;
|
|
outline: none;
|
|
height: 0.6rem;
|
|
padding-left: 0.3rem;
|
|
border-radius: 0.6rem;
|
|
box-sizing: border-box;
|
|
font-size: 0.26rem;
|
|
}
|
|
.search_input i {
|
|
color: #fff;
|
|
font-size: 0.32rem;
|
|
font-weight: bolder;
|
|
}
|
|
.search_list ul .nodata{
|
|
font-size: 0.26rem;
|
|
width: 100%;
|
|
text-align: center;
|
|
color: #666;
|
|
margin-top: 0.4rem;
|
|
} |