quickly.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .search {
  2. border-top: 1rpx solid #ddd !important;
  3. }
  4. .box {
  5. width: 100vw;
  6. background-color: #fff;
  7. box-sizing: border-box;
  8. .item {
  9. display: flex;
  10. width: 100%;
  11. padding-left: 30rpx;
  12. box-sizing: border-box;
  13. .user {
  14. display: flex;
  15. align-items: center;
  16. width: 100%;
  17. height: 120rpx;
  18. border-bottom: 1px solid #ddd;
  19. box-sizing: border-box;
  20. .portrait {
  21. width: 80rpx;
  22. height: 80rpx;
  23. background: #3874F6;
  24. border-radius: 50%;
  25. text-align: center;
  26. line-height: 80rpx;
  27. font-size: 28rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #FFFFFF;
  30. flex-shrink: 0;
  31. }
  32. .exp {
  33. width: 0;
  34. flex: 1;
  35. margin-left: 20rpx;
  36. .line-1 {
  37. height: 42rpx;
  38. font-size: 30rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. color: #333333;
  41. }
  42. .phone {
  43. font-size: 24rpx;
  44. font-family: PingFang SC-Regular, PingFang SC;
  45. color: #999999;
  46. margin-top: 4rpx;
  47. }
  48. }
  49. }
  50. }
  51. }