46 lines
824 B
Plaintext
46 lines
824 B
Plaintext
.page{
|
|
height:100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.searchWrap {
|
|
padding: 20rpx 40rpx;
|
|
display: flex;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 100;
|
|
box-sizing: border-box;
|
|
background: #efefef;
|
|
}
|
|
.searchInput{
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
padding: 10rpx 20rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 35rpx;
|
|
background-color: #ffffff;
|
|
}
|
|
.searchBtn{
|
|
flex-shrink:0;
|
|
width: 120rpx;
|
|
text-align: center;
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
}
|
|
.lists{
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: scroll;
|
|
padding-top: 120rpx;
|
|
background: #ffffff;
|
|
box-sizing: border-box;
|
|
padding: 120rpx 20rpx 20rpx 20rpx;
|
|
}
|
|
.listItem{
|
|
border-bottom: 1rpx solid #dddddd;
|
|
line-height: 80rpx;
|
|
overflow:hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
-o-text-overflow:ellipsis;
|
|
} |