distribution.scss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .box {
  2. width: 100vw;
  3. background-color: #fff;
  4. box-sizing: border-box;
  5. .item {
  6. display: flex;
  7. width: 100%;
  8. padding-left: 30rpx;
  9. box-sizing: border-box;
  10. .user {
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. height: 120rpx;
  15. border-bottom: 1px solid #ddd;
  16. box-sizing: border-box;
  17. .portrait {
  18. width: 80rpx;
  19. height: 80rpx;
  20. background: #3874F6;
  21. border-radius: 50%;
  22. text-align: center;
  23. line-height: 80rpx;
  24. font-size: 28rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. color: #FFFFFF;
  27. flex-shrink: 0;
  28. overflow: hidden;
  29. image{
  30. width: 100%;
  31. height: 100%;
  32. }
  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. }
  52. }