index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .box {
  2. width: 100vw;
  3. background-color: #ffffff;
  4. box-sizing: border-box;
  5. padding: 20rpx 0 0 30rpx;
  6. .head {
  7. display: flex;
  8. .portrait {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. width: 80rpx;
  13. height: 80rpx;
  14. background: #3874F6;
  15. border-radius: 50%;
  16. font-size: 28rpx;
  17. font-family: PingFang SC-Regular, PingFang SC;
  18. color: #FFFFFF;
  19. margin-right: 20rpx;
  20. flex-shrink: 0;
  21. }
  22. .content {
  23. .title {
  24. font-size: 30rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. color: #333333;
  27. text {
  28. font-size: 24rpx;
  29. font-family: PingFang SC-Regular, PingFang SC;
  30. color: #999999;
  31. margin-left: 20rpx;
  32. }
  33. }
  34. .time {
  35. font-size: 24rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #999999;
  38. margin-top: 8rpx;
  39. }
  40. }
  41. }
  42. }