index.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. page {
  2. height: 100vh;
  3. overflow: hidden;
  4. }
  5. .unread {
  6. height: 64rpx;
  7. line-height: 64rpx;
  8. padding-left: 30rpx;
  9. font-size: 24rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #666666;
  12. }
  13. .item {
  14. background-color: #fff;
  15. margin-bottom: 20rpx;
  16. .top {
  17. padding: 20rpx 30rpx;
  18. box-sizing: border-box;
  19. font-size: 28rpx;
  20. font-family: PingFang SC-Bold, PingFang SC;
  21. font-weight: bold;
  22. color: #333333;
  23. border-bottom: 1rpx solid #ddd;
  24. .time {
  25. display: flex;
  26. justify-content: space-between;
  27. height: 34rpx;
  28. font-size: 24rpx;
  29. font-weight: normal;
  30. color: #888888;
  31. margin-top: 20rpx;
  32. }
  33. }
  34. .bottom {
  35. display: flex;
  36. align-items: center;
  37. justify-content: center;
  38. width: 100vw;
  39. height: 90rpx;
  40. font-size: 28rpx;
  41. font-family: PingFang SC-Regular, PingFang SC;
  42. color: #5C5C5C;
  43. image {
  44. height: 40rpx;
  45. margin-right: 10rpx;
  46. }
  47. }
  48. }