synchronization.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .total {
  2. height: 64rpx;
  3. line-height: 64rpx;
  4. font-size: 24rpx;
  5. font-family: PingFang SC-Regular, PingFang SC;
  6. color: #666666;
  7. background: #F4F5F7;
  8. padding-left: 30rpx;
  9. }
  10. .item {
  11. width: 100%;
  12. padding-left: 30rpx;
  13. box-sizing: border-box;
  14. background-color: #fff;
  15. margin-bottom: 20rpx;
  16. .user {
  17. display: flex;
  18. align-items: center;
  19. width: 100%;
  20. height: 120rpx;
  21. box-sizing: border-box;
  22. .portrait {
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #3874F6;
  26. border-radius: 50%;
  27. text-align: center;
  28. line-height: 80rpx;
  29. font-size: 28rpx;
  30. font-family: PingFang SC-Regular, PingFang SC;
  31. color: #FFFFFF;
  32. flex-shrink: 0;
  33. }
  34. .exp {
  35. width: 100%;
  36. margin-left: 20rpx;
  37. .line-1 {
  38. height: 42rpx;
  39. font-size: 30rpx;
  40. font-family: PingFang SC-Regular, PingFang SC;
  41. color: #333333;
  42. }
  43. .phone {
  44. font-size: 24rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #999999;
  47. margin-top: 4rpx;
  48. }
  49. }
  50. }
  51. .type {
  52. font-size: 26rpx;
  53. display: flex;
  54. justify-content: space-between;
  55. width: 100%;
  56. color: #333333;
  57. &-item {
  58. width: 48%;
  59. color: #000;
  60. }
  61. }
  62. .content {
  63. font-size: 26rpx;
  64. color: #333333;
  65. margin-top: 8rpx;
  66. }
  67. .time {
  68. margin-top: 20rpx;
  69. padding: 20rpx;
  70. font-size: 24rpx;
  71. color: #999;
  72. box-sizing: border-box;
  73. border-top: 1px solid #ddd;
  74. margin-left: -30rpx;
  75. }
  76. }