12345678910111213141516171819202122232425262728293031 |
- /* pages/commandList/commandList.wxss */
- .item-container {
- padding: 8rpx 28rpx;
- }
- .command-item {
- width: 100%;
- border-bottom: 1rpx rgba(224, 224, 224, 1);
- padding-top: 27rpx;
- padding-bottom: 20rpx;
- }
- .command-title {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: rgba(43, 44, 50, 1);
- line-height: 44rpx;
- }
- .command-status {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(43, 44, 50, 1);
- line-height: 44rpx;
- }
- .command-time {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(43, 44, 50, 1);
- line-height: 44rpx;
- }
|