123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /* 消息列表 */
- .list {
- position: relative;
- height: 194rpx;
- width: 690rpx;
- box-sizing: border-box;
- border-radius: 16rpx;
- overflow: hidden;
- background: #ffffff;
- margin: 20rpx auto 0;
- padding: 20rpx 30rpx;
- .title {
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .content {
- width: 620rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- margin-top: 12rpx;
- }
- .time {
- font-size: 20rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin-top: 16rpx;
- .tag {
- margin-right: 10rpx;
- }
- }
- .unread-item {
- position: absolute;
- width: 16rpx;
- height: 16rpx;
- background: var(--error);
- border-radius: 50%;
- top: 6rpx;
- right: 6rpx;
- }
- }
|