12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // @import '/static/unread.wxss';
- /* 未读 */
- .unread {
- width: 750rpx;
- height: 34rpx;
- text-align: center;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- margin: 12rpx 0 -5rpx 0;
- }
- 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;
- }
- }
|