index.scss 949 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .item {
  2. display: flex;
  3. position: relative;
  4. width: 690rpx;
  5. background: #FFFFFF;
  6. border-radius: 8rpx;
  7. margin: 20rpx auto 0;
  8. padding: 20rpx;
  9. box-sizing: border-box;
  10. .user {
  11. flex: 1;
  12. .name {
  13. font-size: 30rpx;
  14. color: #333333;
  15. }
  16. .text {
  17. font-size: 24rpx;
  18. color: #999999;
  19. }
  20. }
  21. .template {
  22. display: flex;
  23. height: 80rpx;
  24. align-items: center;
  25. flex-shrink: 0;
  26. text {
  27. background: #F0F3FF;
  28. border-radius: 8rpx;
  29. font-size: 24rpx;
  30. font-family: PingFang SC-Regular, PingFang SC;
  31. color: #3874F6;
  32. padding: 8rpx 16rpx;
  33. }
  34. }
  35. .badge {
  36. position: absolute;
  37. top: 0;
  38. right: 0;
  39. width: 16rpx;
  40. height: 16rpx;
  41. background: #FF3B30;
  42. border-radius: 50%;
  43. }
  44. }