index.scss 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .item {
  2. width: 100vw;
  3. padding-left: 30rpx;
  4. box-sizing: border-box;
  5. background-color: #ffffff;
  6. .content {
  7. padding: 20rpx 0;
  8. border-bottom: 1px solid #DDD;
  9. .user {
  10. display: flex;
  11. width: 100%;
  12. .portrait {
  13. width: 64rpx;
  14. height: 64rpx;
  15. text-align: center;
  16. line-height: 64rpx;
  17. background: #3874F6;
  18. border-radius: 50%;
  19. margin-top: 16rpx;
  20. margin-right: 10rpx;
  21. flex-shrink: 0;
  22. font-size: 24rpx;
  23. font-family: PingFang SC-Regular, PingFang SC;
  24. color: #FFFFFF;
  25. }
  26. .right {
  27. flex: 1;
  28. .title {
  29. height: 42rpx;
  30. line-height: 42rpx;
  31. font-size: 30rpx;
  32. font-family: PingFang SC-Regular, PingFang SC;
  33. color: #333333;
  34. text {
  35. margin-left: 20rpx;
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #999999;
  39. }
  40. }
  41. .tap {
  42. text {
  43. display: inline-block;
  44. font-size: 20rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #FA8C16;
  47. padding: 0 10rpx;
  48. height: 40rpx;
  49. line-height: 38rpx;
  50. background: #FFEFD9;
  51. border-radius: 20rpx;
  52. margin-right: 10rpx;
  53. }
  54. }
  55. }
  56. }
  57. .exp {
  58. font-size: 24rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #333333;
  61. }
  62. }
  63. }