50 lines
892 B
Plaintext
50 lines
892 B
Plaintext
/* components/fuzzySearch/fuzzySearch.wxss */
|
|
@import '../homePage/homePage.wxss';
|
|
|
|
.histroy-box {
|
|
margin:20rpx;
|
|
}
|
|
|
|
.histroy-title-box {
|
|
width:100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.histroy-title-box .title {
|
|
font-weight: 600;
|
|
color: #000;
|
|
font-size: 25rpx;
|
|
}
|
|
|
|
.histroy-title-box text {
|
|
font-size: 40rpx;
|
|
color:#989898;
|
|
}
|
|
|
|
.histroy-empty {
|
|
color: #989898;
|
|
}
|
|
|
|
.histroy-item {
|
|
width:100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
height: auto;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.histroy-info {
|
|
height:50rpx;
|
|
line-height: 50rpx;
|
|
font-size: 25rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 30rpx;
|
|
width:auto;
|
|
padding: 0 30rpx;
|
|
margin: 0 20rpx 20rpx 0;
|
|
} |