| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | 
.incidental {    display: flex;    justify-content: space-between;    height: 36rpx;    width: 630rpx;    margin-top: 10rpx;    &_l {        display: flex;        align-items: center;        .tag {            height: 36rpx;            line-height: 36rpx;            padding: 0 10rpx;            margin-right: 10rpx;            font-size: 20rpx;            font-family: PingFangSC-Regular-, PingFangSC-Regular;            font-weight: normal;        }        .time {            font-size: 20rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #999999;            margin-top: 10rpx;        }    }    &_r {        display: flex;        align-items: center;        font-size: 20rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #999999;        margin-top: 10rpx;        &_item {            margin-right: 30rpx;            height: 28rpx;            display: flex;            align-items: center;            text {                margin-right: 10rpx;            }        }        &_item:last-child {            margin-right: 0;        }    }}
 |