绚火健康

This commit is contained in:
2023-08-15 17:18:15 +08:00
commit 32cc588ae7
200 changed files with 8924 additions and 0 deletions

79
pages/search/search.wxss Normal file
View File

@@ -0,0 +1,79 @@
/* 搜索 */
.search {
padding: 30rpx;
box-sizing: border-box;
position: relative;
left: 0;
top: 0;
width: 100%;
background: #fff;
color: #999;
z-index: 999;
}
.search-input {
display: flex;
width: 100%;
height: 90rpx;
line-height: 90rpx;
background: #f7f7f7;
}
.search-input input {
padding: 0 30rpx;
box-sizing: border-box;
height: 90rpx;
color: #000;
font-size: 28rpx;
flex: 1;
width: calc(100% - 150rpx);
}
.search-btn {
font-size: 28rpx;
background: #f1f1f1;
color: #4c4c4c;
width: 150rpx !important;
padding: 0 !important;
line-height: 90rpx;
border-radius: 0;
}
.search-btn::after {
border: none;
}
/* 搜索历史 */
.search-history{
padding: 20rpx 20rpx 0 20rpx;
}
.search-history-title{
padding: 0 10rpx 20rpx 10rpx;
}
.search-history-title text{
float: right;
font-size: 26rpx;
color: #a2a7ba;
}
.search-history-tag{
overflow: hidden;
}
.search-history-tag view{
display: inline-block;
margin: 0 10rpx 20rpx 10rpx;
background: #f5f6fa;
padding: 10rpx 20rpx;
font-size: 26rpx;
}
.search-history-null{
text-align: center;
padding: 50rpx 0;
color: #747788;
}