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.
59 lines
1009 B
59 lines
1009 B
5 years ago
|
/* pages/rent/index.wxss */
|
||
|
@import '../../../style/font.wxss';
|
||
|
.main{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
padding-top: 30rpx;
|
||
|
}
|
||
|
.box{
|
||
|
width:90%;
|
||
|
height:450rpx;
|
||
|
background-color: White;
|
||
|
margin-bottom:30rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
/* justify-content: center; */
|
||
|
flex-direction: column;
|
||
|
border-top-left-radius: 5px;
|
||
|
border-top-right-radius: 5px;
|
||
|
border-bottom-left-radius: 5px;
|
||
|
border-bottom-right-radius: 5px;
|
||
|
box-shadow:0px 2px 4px 2px rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
|
||
|
|
||
|
.image{
|
||
|
height:350rpx;
|
||
|
width: 100%;
|
||
|
border-top-left-radius: 5px;
|
||
|
border-top-right-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.title{
|
||
|
font-size: 50rpx;
|
||
|
color: white;
|
||
|
padding-left: 15px;
|
||
|
padding-top: 250rpx;
|
||
|
}
|
||
|
|
||
|
.content{
|
||
|
height:80rpx;
|
||
|
width:90%;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: space-between;
|
||
|
margin-top: 10rpx;
|
||
|
/* font-family: SimHei; */
|
||
|
font-size: 29rpx;
|
||
|
font-weight: bold;
|
||
|
color:#979797;
|
||
|
}
|
||
|
|
||
|
.address{
|
||
|
margin-left: 8px;
|
||
|
font-size: 27rpx;
|
||
|
}
|
||
|
|
||
|
|