64 lines
1007 B
Plaintext
64 lines
1007 B
Plaintext
|
|
.container {
|
|
align-items: center;
|
|
width: 90%;
|
|
height: 100vh;
|
|
margin: 0 auto;
|
|
}
|
|
.history-list {
|
|
width: 95%;
|
|
background-color: #fff;
|
|
margin-bottom: 5px;
|
|
border-radius: 15px;
|
|
padding: 10px;
|
|
}
|
|
.history-item {
|
|
margin-top: 30rpx;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
.history-img {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%; /* 设置为正圆形 */
|
|
margin-right: 10px;
|
|
padding-right: 50px;
|
|
}
|
|
.history-info {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.nameTime {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.history-title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
width: 170px;
|
|
}
|
|
.time {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
padding-top: 5px;
|
|
}
|
|
.star {
|
|
display: inline-block;
|
|
line-height: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
}
|
|
.history-sale {
|
|
font-size: 30rpx;
|
|
color: #000;
|
|
float: right;
|
|
display: inline-block;
|
|
line-height: 15px;
|
|
font-weight: 700;
|
|
}
|
|
.extend {
|
|
font-size: 30rpx;
|
|
color: #000;
|
|
padding-top: 10px;
|
|
}
|