| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 | // @import '/static/unread.wxss';.tab-active-class {    color: var(--assist) !important;    font-size: 28rpx !important;    font-family: PingFang SC-Bold, PingFang SC !important;    font-weight: bold !important;}/* 消息列表 */.list {    position: relative;    min-height: 194rpx;    width: 690rpx;    box-sizing: border-box;    border-radius: 16rpx;    overflow: hidden;    background: #ffffff;    margin: 0 auto 20rpx;    padding: 30rpx;    .title {        height: 40rpx;        font-size: 28rpx;        font-family: PingFang SC-Medium, PingFang SC;        font-weight: 500;        color: #333333;    }    .content {        width: 620rpx;        line-height: 34rpx;        font-size: 24rpx;        font-family: PingFang SC-Regular, PingFang SC;        color: #666666;        margin-top: 16rpx;    }    .time {        height: 28rpx;        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;    }}
 |