410 lines
8.1 KiB
Plaintext
410 lines
8.1 KiB
Plaintext
/* list */
|
|
.irent-list-box {
|
|
/* background: #f2f2f2; */
|
|
min-height: 100vh;
|
|
padding-bottom: 80rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
|
|
.house-list {
|
|
padding: 40rpx 30rpx 0;
|
|
color: #333;
|
|
|
|
}
|
|
|
|
/* .house-list .point view:nth-child(3n+1){
|
|
background: #e0ebf6;
|
|
color: #649cd4;
|
|
}
|
|
.house-list .point view:nth-child(3n+2){
|
|
background: #fbe5e4;
|
|
color: #eb7b78;
|
|
}
|
|
.house-list .point view:nth-child(3n+3){
|
|
background: #e4f2e9;
|
|
color: #7abe8f;
|
|
} */
|
|
.hover {
|
|
background: transparent
|
|
}
|
|
|
|
.bottom-already {
|
|
/* padding: 68rpx 0 0rpx; */
|
|
padding: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.bottom-already .text {
|
|
color: #999;
|
|
font-size: 24rpx;
|
|
|
|
}
|
|
|
|
.bottom-already .text::before,
|
|
.bottom-already .text::after {
|
|
display: inline-block;
|
|
content: "";
|
|
width: 64rpx;
|
|
height: 1px;
|
|
background: #b9b9b9;
|
|
vertical-align: middle;
|
|
margin: 0 32rpx;
|
|
}
|
|
|
|
.bottom-already .more {
|
|
padding: 52rpx 0 0;
|
|
color: #333;
|
|
font-size: 26rpx;
|
|
line-height: 42rpx;
|
|
}
|
|
|
|
.bottom-already .more .name {
|
|
display: inline-block;
|
|
margin-left: 6rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bottom-already .more .btn {
|
|
margin: 28rpx auto 0;
|
|
width: 192rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
border-radius: 60rpx;
|
|
background: #a8bed9;
|
|
color: #FFF;
|
|
}
|
|
|
|
.bottom-already .more .btn-a {
|
|
background: #669bd0;
|
|
|
|
}
|
|
|
|
|
|
.nearby-school {
|
|
height: 112rpx;
|
|
width: 100vw;
|
|
display: flex;
|
|
font-size: 26rpx;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.nearby-school .name {
|
|
height: 112rpx;
|
|
display: inline-flex;
|
|
padding-left: 30rpx;
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
font-weight: bold;
|
|
width: 190rpx;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.nearby-school .school-list {
|
|
height: 112rpx;
|
|
display: inline-flex;
|
|
flex: 1;
|
|
width: calc(100% - 190rpx);
|
|
align-items: center;
|
|
}
|
|
|
|
.nearby-school .school-list .inner {
|
|
display: block;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
box-sizing: border-box;
|
|
padding-right: 22rpx;
|
|
height: 112rpx;
|
|
}
|
|
|
|
.nearby-school .school-list .inner .item {
|
|
display: inline-block;
|
|
margin: 30rpx 8rpx;
|
|
padding: 0 20rpx;
|
|
height: 52rpx;
|
|
line-height: 52rpx;
|
|
border-radius: 26rpx;
|
|
color: #666;
|
|
|
|
|
|
}
|
|
|
|
.nearby-school .school-list .inner .item.active {
|
|
background: #f2f2f2;
|
|
color: rgb(255, 192, 95);
|
|
}
|
|
|
|
|
|
.condition-box {
|
|
display: flex;
|
|
padding: 50rpx 30rpx 40rpx;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-bottom: 10rpx solid #f5f5f5;
|
|
|
|
height: 84rpx;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1002;
|
|
background: #fff;
|
|
}
|
|
|
|
.condition-box .condition-tab {
|
|
display: flex;
|
|
flex: 1;
|
|
height: 80rpx;
|
|
border: 1px solid #e8e8e8;
|
|
border-radius: 10rpx;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.condition-box .condition-tab .divide {
|
|
display: inline-flex;
|
|
flex: 0 0 2rpx;
|
|
height: 26rpx;
|
|
background: rgb(225, 225, 225)
|
|
}
|
|
|
|
.condition-box .tab .tobottom {
|
|
width: 12rpx;
|
|
height: 7rpx;
|
|
margin-left: 8rpx;
|
|
/* transform: rotateZ(180deg) */
|
|
}
|
|
|
|
.condition-box .tab .filtrate {
|
|
width: 16rpx;
|
|
height: 18rpx;
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
.condition-box .tab .order {
|
|
width: 18rpx;
|
|
height: 20rpx;
|
|
margin-left: 8rpx;
|
|
}
|
|
|
|
.condition-box .tab.active .tobottom {
|
|
transform: rotateZ(0)
|
|
}
|
|
|
|
.condition-box .tab {
|
|
display: inline-flex;
|
|
position: relative;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #666;
|
|
font-size: 24rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.condition-box .tab.active {
|
|
font-weight: bold;
|
|
color: #333;
|
|
font-size: 22rpx;
|
|
}
|
|
|
|
.triangle {
|
|
display: inline-flex;
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.triangle.descend {
|
|
transform: rotateZ(180deg)
|
|
}
|
|
|
|
.condition-box .more {
|
|
display: inline-flex;
|
|
flex: 0 0 138rpx;
|
|
height: 80rpx;
|
|
align-items: center;
|
|
justify-content: center;
|
|
/* background: #f2f2f2; */
|
|
border-radius: 80rpx;
|
|
font-size: 30rpx;
|
|
box-sizing: border-box;
|
|
border: 1px solid #e8e8e8;
|
|
}
|
|
|
|
.condition-box .more image {
|
|
display: inline-flex;
|
|
width: 26rpx;
|
|
height: 26rpx;
|
|
margin-left: 4rpx;
|
|
}
|
|
|
|
.condition-box .more.hascondition {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.nocontent {
|
|
text-align: center;
|
|
font-size: 28rpx;
|
|
padding: 200rpx 0;
|
|
color: #999
|
|
}
|
|
|
|
.nocontent .file {
|
|
width: 40rpx;
|
|
height: 46rpx;
|
|
display: block;
|
|
margin: 0 auto 20rpx;
|
|
}
|
|
|
|
.irenCouponReceive {
|
|
position: fixed;
|
|
right: 10rpx;
|
|
bottom: 220rpx;
|
|
z-index: 1003;
|
|
}
|
|
|
|
.irenCouponReceive .img {
|
|
display: block;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
margin: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.apartment-list {
|
|
background-color: rgba(246, 246, 246, 1);
|
|
border-radius: 60rpx 60rpx 0 0;
|
|
}
|
|
|
|
.apartment-list .apartment-item {
|
|
width: 690rpx;
|
|
margin-bottom: 36rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-top {
|
|
height: 459rpx;
|
|
width: 100%;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-top .apartment-name {
|
|
height: 48rpx;
|
|
font-size: 30rpx;
|
|
font-weight: 650;
|
|
color: #000000;
|
|
padding: 0 25rpx;
|
|
border-radius: 25rpx;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
z-index: 1;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-top .apartment-icon {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 18rpx;
|
|
position: absolute;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom {
|
|
position: relative;
|
|
margin-top: -109.5rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-introduce {
|
|
background-color: rgba(0, 0, 0, 0.63921568627451);
|
|
height: 48rpx;
|
|
width: 630rpx;
|
|
margin: -48rpx auto 0;
|
|
padding: 0 12rpx;
|
|
border-radius: 24rpx 24rpx 0 0;
|
|
color: #D7D7D7;
|
|
font-size: 21rpx;
|
|
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-tag {
|
|
padding: 0 15rpx;
|
|
border-radius: 12rpx;
|
|
height: 33rpx;
|
|
border: 1rpx solid rgba(121, 121, 121, 1);
|
|
margin-right: 15rpx;
|
|
color: #FDDA55;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-content {
|
|
border-radius: 12rpx;
|
|
background-color: #fff;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-content {
|
|
padding: 27rpx 24rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-quantity {
|
|
color: #7F7F7F;
|
|
font-size: 21rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-message {
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-place {
|
|
color: #555555;
|
|
font-size: 23rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-place-icon {
|
|
width: 27rpx;
|
|
height: 27rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price {
|
|
padding: 0 14rpx;
|
|
background: rgba(246, 246, 246, 1);
|
|
border-radius: 18rpx;
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-item {
|
|
height: 81rpx;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-item:not(:last-of-type) {
|
|
border-bottom: 1rpx solid #ebebeb;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-name {
|
|
color: #000000;
|
|
font-size: 23rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-symbol {
|
|
font-weight: 900;
|
|
color: #000000;
|
|
font-size: 21rpx;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-price {
|
|
color: #F95D5D;
|
|
font-size: 30rpx;
|
|
font-weight: 900;
|
|
margin: 0 10rpx ;
|
|
}
|
|
|
|
.apartment-list .apartment-item .apartment-bottom .apartment-price-unit {
|
|
color: #555555;
|
|
font-size: 21rpx;
|
|
} |