history.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .user {
  2. display: flex;
  3. align-items: center;
  4. height: 104rpx;
  5. width: 100vw;
  6. box-sizing: border-box;
  7. background-color: #fff;
  8. padding: 20rpx 30rpx;
  9. .portrait {
  10. width: 64rpx;
  11. height: 64rpx;
  12. border-radius: 50%;
  13. margin-right: 20rpx;
  14. flex-shrink: 0;
  15. overflow: hidden;
  16. .name {
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. width: 100%;
  21. height: 100%;
  22. background-color: #3874F6;
  23. font-size: 24rpx;
  24. font-family: PingFang SC-Regular, PingFang SC;
  25. color: #FFFFFF;
  26. }
  27. }
  28. .userInfo {
  29. display: flex;
  30. justify-content: space-between;
  31. width: 100%;
  32. font-size: 24rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #333333;
  35. }
  36. }
  37. .exp {
  38. width: 100vw;
  39. padding: 0 30rpx 10rpx;
  40. box-sizing: border-box;
  41. background-color: #fff;
  42. font-size: 24rpx;
  43. font-family: PingFang SC-Regular, PingFang SC;
  44. color: #333333;
  45. }
  46. .client {
  47. display: flex;
  48. align-items: center;
  49. background-color: #fff;
  50. box-sizing: border-box;
  51. padding: 10rpx 30rpx;
  52. .tag {
  53. height: 40rpx;
  54. line-height: 40rpx;
  55. padding: 0 10rpx;
  56. background: #FAAB16;
  57. border-radius: 20rpx;
  58. font-size: 20rpx;
  59. font-family: PingFang SC-Regular, PingFang SC;
  60. color: #FFFFFF;
  61. flex-shrink: 0;
  62. }
  63. .name {
  64. flex: 1;
  65. font-size: 28rpx;
  66. font-family: PingFang SC-Bold, PingFang SC;
  67. font-weight: bold;
  68. color: #333333;
  69. margin-left: 20rpx;
  70. }
  71. .state {
  72. height: 34rpx;
  73. font-size: 24rpx;
  74. font-family: PingFang SC-Regular, PingFang SC;
  75. color: #666666;
  76. flex-shrink: 0;
  77. margin-left: 20rpx;
  78. }
  79. }