/* packageI/newRetailInventoryDetails/newRetailInventoryDetails.wxss */ .list-row { flex-wrap: wrap; display: flex; align-items: center; padding: 12rpx 28rpx; background: #fff; position: relative; } .list-row .list-col { width: 50%; line-height: 44rpx; overflow: hidden; /* 超出部分隐藏 */ text-overflow: ellipsis; /* 超出部分显示省略号 */ white-space: nowrap; /* 规定段落中的文本不进行换行 */ } .list-row .text-right { text-align: right; } .list-row .text-left { text-align: left; } .list-row .text-time { font-size: 28rpx; } .list-row .font-color { color: #999; } .list-row .red-color { color: #f14e4e; } .list-row::after { height: 1rpx; position: absolute; z-index: 0; bottom: 0; left: 0; content: ""; width: 100%; background-image: linear-gradient(0deg, #ececec 50%, transparent 0); }