118 lines
2.0 KiB
Plaintext
118 lines
2.0 KiB
Plaintext
/* packageG/independent_store/search/search.wxss */
|
|
.search-page {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #fff;
|
|
}
|
|
|
|
.top-area {
|
|
overflow: hidden;
|
|
background: #fff;
|
|
border-bottom: 2rpx solid #f5f5f5;
|
|
width: 100%;
|
|
display: flex;
|
|
padding-bottom: 10rpx;
|
|
}
|
|
|
|
.noscroll {
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
z-index: 0;
|
|
}
|
|
|
|
.top-area .searchBox {
|
|
position: relative;
|
|
font-size: 13px;
|
|
display: flex;
|
|
margin-left: 2%;
|
|
background: #f2f2f2 none;
|
|
border-radius: 30rpx;
|
|
width: 568rpx;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.top-area .searchBox .van-cell {
|
|
padding: 0;
|
|
background-color: inherit;
|
|
width: 500rpx;
|
|
}
|
|
|
|
.top-area .left {
|
|
margin-left: 30rpx;
|
|
display: flex;
|
|
}
|
|
|
|
.top-area .right {
|
|
margin-left: 50rpx;
|
|
display: flex;
|
|
text-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.top-area .right icon {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.top-area .searchBox input {
|
|
vertical-align: middle;
|
|
border: none;
|
|
outline: 0;
|
|
padding: 6rpx 20rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
color: #8c8c8c;
|
|
font-size: 13px;
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
.top-area .searchBox .img-icon {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
margin-left: 10rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.top-area .searchBox .img-icon .img-icon-btn {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
background: url("https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/search.png") no-repeat center center;
|
|
background-size: 80% 80%;
|
|
}
|
|
|
|
.history-list {
|
|
margin-top: 30rpx;
|
|
padding: 0 30rpx;
|
|
}
|
|
|
|
.history-list .history-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.history-list .history-head .title {
|
|
font-size: 15px;
|
|
color: #1b1b1b;
|
|
}
|
|
|
|
.history-list .history-head .icon-del {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.history-list .tag {
|
|
display: inline-block;
|
|
margin: 10rpx 20rpx 0 0;
|
|
padding: 5rpx 34rpx;
|
|
background-color: #f5f5f5;
|
|
border-radius: 25rpx;
|
|
}
|