12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .incidental {
- display: flex;
- justify-content: space-between;
- height: 36rpx;
- width: 630rpx;
- margin-top: 10rpx;
- &_l {
- display: flex;
- align-items: center;
- .tag {
- max-width: 100rpx;
- 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;
- }
- }
- }
|