85 lines
1.3 KiB
Plaintext
85 lines
1.3 KiB
Plaintext
/* 账变记录 */
|
|
.record {}
|
|
|
|
/* 记录列表 */
|
|
|
|
.record-list {
|
|
background-color: #fff;
|
|
border-radius: 10rpx;
|
|
padding: 25rpx;
|
|
box-sizing: border-box;
|
|
margin-bottom: 30rpx;
|
|
}
|
|
|
|
.record-list-img {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
margin-top: 6rpx;
|
|
}
|
|
|
|
.record-list-cont {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.record-list-top {
|
|
display: flex;
|
|
padding-left: 30rpx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.record-list-left {
|
|
flex: 1;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.record-list-time {
|
|
margin-top: 10rpx;
|
|
font-size: 28rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.record-list-right {
|
|
color: red;
|
|
}
|
|
|
|
.record-list-remark {
|
|
color: #333;
|
|
font-size: 28rpx;
|
|
margin: 30rpx 0 0;
|
|
background-color: #f5f5f5;
|
|
padding: 10rpx 15rpx;
|
|
display: inline-block;
|
|
border-radius: 4rpx;
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.record-list-remark::after {
|
|
position: absolute;
|
|
left: 20rpx;
|
|
top: -14rpx;
|
|
content: '';
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 14rpx solid transparent;
|
|
border-right: 14rpx solid transparent;
|
|
border-bottom: 14rpx solid #f5f5f5;
|
|
}
|
|
|
|
|
|
/* 暂无内容 */
|
|
.recommend-hint {
|
|
text-align: center;
|
|
color: #999;
|
|
padding: 100rpx 0;
|
|
}
|
|
|
|
.recommend-hint image {
|
|
width: 200rpx;
|
|
height: 200rpx;
|
|
border-radius: 50%;
|
|
margin-bottom: 20rpx;
|
|
}
|