64 lines
1.1 KiB
Plaintext
64 lines
1.1 KiB
Plaintext
.page{
|
|
height:100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.searchWrap {
|
|
padding: 20rpx;
|
|
display: flex;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 100;
|
|
box-sizing: border-box;
|
|
background: #efefef;
|
|
justify-content: space-between;
|
|
}
|
|
.pickers{
|
|
width: 200rpx;
|
|
border-radius: 40rpx;
|
|
background: #ffffff;
|
|
}
|
|
.picker{
|
|
height: 70rpx;
|
|
color: blue;
|
|
line-height: 70rpx;
|
|
text-align: center;
|
|
}
|
|
.searchInput{
|
|
width: 60%;
|
|
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;
|
|
}
|
|
.toptip{
|
|
color:blue;
|
|
border:1rpx solid blue;
|
|
font-size:10px;
|
|
display: inline-block;
|
|
padding: 2rpx 8rpx 1rpx 8rpx;
|
|
border-radius: 4rpx;
|
|
vertical-align:top;
|
|
}
|
|
.listItemLable{
|
|
width:160rpx;
|
|
display: inline-block;
|
|
} |