| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 | @import '/static/unread.wxss';page {    padding: 0 !important;    overflow: hidden !important;}.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;    height: 194rpx;    width: 690rpx;    box-sizing: border-box;    border-radius: 16rpx;    overflow: hidden;    background: #ffffff;    margin: 20rpx auto 0;    padding: 30rpx;    .title {        height: 40rpx;        font-size: 28rpx;        font-family: PingFang SC-Medium, PingFang SC;        font-weight: 500;        color: #333333;    }    .content {        width: 620rpx;        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;    }}
 |