103 lines
1.7 KiB
Plaintext
103 lines
1.7 KiB
Plaintext
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.fui-cell-title {
|
|
display: flex;
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
}
|
|
|
|
.fui-cell-title .inner {
|
|
flex: 1;
|
|
}
|
|
|
|
.fui-cell-content {
|
|
background: #f9f9f9;
|
|
height: 130rpx;
|
|
margin-bottom: 5rpx;
|
|
display: flex;
|
|
padding: 0 24rpx;
|
|
}
|
|
|
|
.fui-cell-content .img {
|
|
height: auto;
|
|
}
|
|
|
|
.fui-cell-content .inner {
|
|
flex: 1;
|
|
padding-left: 16rpx;
|
|
font-size: 24rpx;
|
|
color: #333;
|
|
position: relative;
|
|
}
|
|
|
|
.fui-cell-content .inner .title {
|
|
width: 580rpx;
|
|
margin-bottom: 10rpx;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.fui-cell-content .inner .subtitle {
|
|
display: flex;
|
|
}
|
|
|
|
.fui-cell-content .inner .subtitle .text {
|
|
color: #999;
|
|
flex: 1;
|
|
font-size: 22rpx;
|
|
margin-bottom: 10rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.fui-cell-content .inner .subtitle .num {
|
|
color: #999;
|
|
width: 216rpx;
|
|
font-size: 22rpx;
|
|
margin-bottom: 10rpx;
|
|
text-align: left;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.fui-cell-content .remark {
|
|
width: 100rpx;
|
|
padding-left: 16rpx;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
text-align: right;
|
|
position: relative;
|
|
}
|
|
|
|
.fui-cell-content .remark::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 20rpx;
|
|
bottom: 20rpx;
|
|
border-left: 1rpx solid #ededed;
|
|
}
|
|
|
|
.fui-cell-content .remark .text {
|
|
color: #333;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.status {
|
|
color: #cfa943!important;
|
|
}
|
|
|
|
.fui-cell-footbar {
|
|
padding: 20rpx 24rpx;
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
line-height: 40rpx;
|
|
} |