| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .item {
- display: flex;
- position: relative;
- width: 690rpx;
- background: #FFFFFF;
- border-radius: 8rpx;
- margin: 20rpx auto 0;
- padding: 20rpx;
- box-sizing: border-box;
- .user {
- flex: 1;
- .name {
- font-size: 30rpx;
- color: #333333;
- }
- .text {
- font-size: 24rpx;
- color: #999999;
- }
- }
- .template {
- display: flex;
- height: 80rpx;
- align-items: center;
- flex-shrink: 0;
- text {
- background: #F0F3FF;
- border-radius: 8rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #3874F6;
- padding: 8rpx 16rpx;
- }
- }
- .badge {
- position: absolute;
- top: 0;
- right: 0;
- width: 16rpx;
- height: 16rpx;
- background: #FF3B30;
- border-radius: 50%;
- }
- }
|