97 lines
1.5 KiB
Plaintext
97 lines
1.5 KiB
Plaintext
/* packageD/auction/auction-mine/auction_deposit/auction_deposit.wxss */
|
|
.page {
|
|
background-color: #fff;
|
|
height: 100vh;
|
|
}
|
|
|
|
.content {
|
|
background-color: #fff;
|
|
padding: 0 24rpx;
|
|
padding-top: 0.75rem;
|
|
}
|
|
|
|
.content .list {
|
|
display: flex;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.content .list .image {
|
|
display: flex;
|
|
width: 254rpx;
|
|
height: 256rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.content .list .image image {
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.content .list .right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 0.5rem;
|
|
flex: 1;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.content .list .right .title {
|
|
text-align: left;
|
|
font-size: 14px;
|
|
color: #000;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.content .list .right .bottom {
|
|
text-align: left;
|
|
}
|
|
|
|
.content .list .right .bottom .cash {
|
|
display: flex;
|
|
font-size: 20rpx;
|
|
color: #f01818;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.content .list .right .bottom .cash view:nth-child(2) {
|
|
margin-left: 7rpx;
|
|
}
|
|
|
|
.content .list .right .bottom .time {
|
|
/* margin: 0.75rem 0; */
|
|
margin-bottom: 20rpx;
|
|
font-size: 20rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.content .list:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.content .blank {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.content .blank img {
|
|
width: 6rem;
|
|
height: 6rem;
|
|
}
|
|
|
|
.content .blank span {
|
|
margin-top: 15px;
|
|
color: #ccc;
|
|
font-size: 14px;
|
|
}
|