71 lines
1.2 KiB
Plaintext
71 lines
1.2 KiB
Plaintext
/* packageI/warehouseFarm/warehouseFarmInventory/warehouseFarmInventory.wxss */
|
|
view {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.top-box {
|
|
padding: 36rpx;
|
|
background: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: left;
|
|
}
|
|
|
|
.page-title {
|
|
height: 72rpx;
|
|
line-height: 72rpx;
|
|
background: #f1f1f1;
|
|
padding: 0 32rpx;
|
|
text-align: left;
|
|
color: #828282;
|
|
}
|
|
|
|
.list {
|
|
background: #fff;
|
|
}
|
|
|
|
.list .list-item {
|
|
border-bottom: 1rpx solid #f1f1f1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: left;
|
|
height: 112rpx;
|
|
padding: 20rpx 32rpx;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.list .list-item:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.list .list-item .list-item-top {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.list .list-item .list-item-top .name {
|
|
color: #3a3a3a;
|
|
width: 60%;
|
|
overflow: hidden;
|
|
|
|
/* 超出部分隐藏 */
|
|
text-overflow: ellipsis;
|
|
|
|
/* 超出部分显示省略号 */
|
|
white-space: nowrap;
|
|
|
|
/* 规定段落中的文本不进行换行 */
|
|
}
|
|
|
|
.list .list-item .list-item-top .num {
|
|
color: #f14e4e;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.list .list-item .list-item-bottom .time {
|
|
color: #666;
|
|
font-size: 10px;
|
|
}
|