172 lines
3.3 KiB
Plaintext
172 lines
3.3 KiB
Plaintext
/* template/filtrate/filtrate.wxss */
|
|
.text{
|
|
line-height: 80rpx;
|
|
}
|
|
.more-condition{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 1002
|
|
}
|
|
.more-condition .black-box{
|
|
position: fixed;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 1003;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
}
|
|
.more-condition .inner-box{
|
|
position: fixed;
|
|
left: 0;
|
|
bottom:0;
|
|
width: 100vw;
|
|
box-sizing: border-box;
|
|
z-index: 1004;
|
|
background: #fff;
|
|
}
|
|
.ul{
|
|
max-height:calc(100vh - 450rpx);
|
|
box-sizing: border-box;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
.more-condition .item{
|
|
padding: 17rpx 30rpx;
|
|
}
|
|
.more-condition .item .title{
|
|
font-size: 28rpx;
|
|
color: #000;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
.more-condition .item .box{
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
color: #666;
|
|
white-space: normal;
|
|
word-break: break-all;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
|
|
}
|
|
.more-condition .item .box .i{
|
|
display: inline-flex;
|
|
margin:0 0 20rpx 0;
|
|
padding: 0 10rpx;
|
|
width: calc(33% - 10rpx);
|
|
height:72rpx;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #f0f0f0;
|
|
box-sizing: border-box;
|
|
border-radius: 10rpx;
|
|
font-size: 24rpx;
|
|
border:1px solid #f0f0f0;
|
|
}
|
|
.more-condition .item .box .i:nth-child(3n+2){
|
|
margin: 0 15rpx 20rpx;
|
|
}
|
|
.more-condition .item .box .i.nohouse{
|
|
color: #dbdbdb;
|
|
background: #fafafa;
|
|
border-color: #fafafa;
|
|
}
|
|
.more-condition .item .box .i.active{
|
|
color: #bc302e;
|
|
border-color: #bc302e;
|
|
background: #fff;
|
|
}
|
|
.more-condition .item .price{
|
|
justify-content: flex-start;
|
|
margin-bottom: 16rpx;
|
|
}
|
|
.placeholder{
|
|
color: #ccc;
|
|
}
|
|
.more-condition input{
|
|
vertical-align: middle;
|
|
border-radius: 10rpx;
|
|
background: #fff;
|
|
text-align: center;
|
|
width: 218rpx;
|
|
height: 70rpx;
|
|
border:1px solid #b3b3b3;
|
|
margin-right: 10rpx;
|
|
|
|
}
|
|
.form{
|
|
color: #666;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.more-condition .min,.more-condition .max{
|
|
display: inline-flex;
|
|
width: 200rpx;
|
|
height: 60rpx;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #fff;
|
|
border:1px solid #e8e8e8;
|
|
padding:0 16rpx;
|
|
border-radius: 50rpx;
|
|
font-size: 26rpx;
|
|
}
|
|
.more-condition .to{
|
|
display: inline-flex;
|
|
align-items: center;
|
|
width: 10%;
|
|
justify-content: center;
|
|
/* height: 1px; */
|
|
/* background: #e4e4e4; */
|
|
}
|
|
.more-condition .submit {
|
|
padding: 40rpx 30rpx;
|
|
border-top: 1px solid #e8e8e8;
|
|
|
|
width: 100vw;
|
|
background: #fff;
|
|
|
|
}
|
|
.more-condition .submit .btn{
|
|
width: 100%;
|
|
height: 88rpx;
|
|
line-height: 88rpx;
|
|
border-radius: 10rpx;
|
|
background:rgb(188, 48, 46);
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
margin: 0 auto;
|
|
letter-spacing: 1px;
|
|
}
|
|
.more-title{
|
|
position: relative;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
font-size: 34rpx;
|
|
color: #000;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
/* padding: 37rpx 0 20rpx; */
|
|
overflow: hidden;
|
|
}
|
|
.close-box{
|
|
position: absolute;
|
|
right: -52rpx;
|
|
top: -52rpx;
|
|
width: 104rpx;
|
|
height: 104rpx;
|
|
border-radius: 50%;
|
|
background-color: rgb(188, 48, 46);
|
|
}
|
|
.close-box image{
|
|
position: absolute;
|
|
left: 24rpx;
|
|
bottom: 24rpx;
|
|
width: 16rpx;
|
|
height: 16rpx;
|
|
} |