73 lines
1.1 KiB
CSS

.container {
background: #F9F9F9;
overflow: hidden;
}
.main {
margin-top: 7rpx;
margin-bottom: 50rpx;
background: #FFFFFF;
}
.item {
height: 129rpx;
display: flex;
align-items: center;
margin: 0 20rpx;
border-bottom: 1rpx solid #E6E6E6;
}
.no_border {
border-bottom: none;
}
.left_pic {
width: 60rpx;
height: 60rpx;
margin-right: 21rpx;
}
.center {
width: 428rpx;
}
.title {
white-space: nowrap; /* 强制文本在一行内显示 */
overflow: hidden; /* 隐藏超出容器的文本 */
text-overflow: ellipsis;
font-weight: 400;
font-size: 26rpx;
color: #222222;
}
.center_bottom {
margin-top: 10rpx;
display: flex;
justify-content: space-between;
}
.center_bottom_item {
display: flex;
align-items: center;
}
.center_bottom_item_pic {
width: 24rpx;
height: 24rpx;
margin-right: 10rpx;
}
.center_bottom_item_desc {
font-weight: 400;
font-size: 22rpx;
color: #999999;
}
.right {
flex: 1;
display: flex;
justify-content: flex-end;
}
.right_pic {
width: 12rpx;
height: 26rpx;
margin-right: 21rpx;
}