You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
1.8 KiB
107 lines
1.8 KiB
/* subpages/searchResult/pages/searchResult/searchResult.wxss */
|
|
page {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
overflow: hidden;
|
|
background-color: #f7f7f7;
|
|
}
|
|
.header {
|
|
width: 100%;
|
|
height: 532rpx;
|
|
background: linear-gradient(180deg, #7DB5FF 0%, #E8F2FF 66%, #F7F7F7 100%);
|
|
}
|
|
|
|
.header .header-bg {
|
|
width: 100%;
|
|
height: 100%;
|
|
/* position: absolute;
|
|
z-index: 10;
|
|
left: 0;
|
|
top: 0; */
|
|
position: absolute;
|
|
height: 100%;
|
|
z-index: -999;
|
|
}
|
|
|
|
.header .navigation {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 32rpx;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
.back {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
margin-left: 20rpx;
|
|
position: absolute;
|
|
margin-top: 20rpx;
|
|
border-radius: 0rpx;
|
|
z-index: 2;
|
|
}
|
|
|
|
|
|
.content{
|
|
height: auto;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
top: -350rpx;
|
|
padding: 0 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.content .scroll {
|
|
height: calc(100vh - 150rpx);
|
|
overflow-y: scroll;
|
|
}
|
|
.content .scroll .card{
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
padding: 0 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.content .card .list_card{
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 30rpx 0;
|
|
align-items: center;
|
|
color: #333333;
|
|
border-top: 1px solid #EAEAEA;
|
|
}
|
|
.content .card .list_card .left{
|
|
flex: 1;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.content .card .list_card .left .address{
|
|
/* font-size: 28rpx; */
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #999999;
|
|
}
|
|
|
|
.flex-sb {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.time {
|
|
color: #999;
|
|
margin: 10rpx 0;
|
|
/* font-size: 28rpx; */
|
|
}
|
|
|
|
.name {
|
|
font-size: 32rpx;
|
|
/* font-size: 28rpx; */
|
|
}
|