contacts.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .contacts {
  2. .title {
  3. line-height: 38rpx;
  4. font-family: Microsoft YaHei, Microsoft YaHei;
  5. font-weight: bold;
  6. font-size: 28rpx;
  7. color: #333333;
  8. margin-bottom: -20rpx;
  9. }
  10. .item {
  11. display: flex;
  12. border-radius: 8rpx;
  13. padding: 10rpx 0;
  14. margin-top: 30rpx;
  15. .left {
  16. flex-shrink: 0;
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. width: 80rpx;
  21. height: 80rpx;
  22. border-radius: 40rpx;
  23. background: #3874F6;
  24. font-family: PingFang SC, PingFang SC;
  25. font-size: 28rpx;
  26. color: #FFFFFF;
  27. margin-right: 20rpx;
  28. }
  29. .right {
  30. .name {
  31. line-height: 42rpx;
  32. font-family: PingFang SC, PingFang SC;
  33. font-size: 30rpx;
  34. color: #333333;
  35. }
  36. .bottom {
  37. display: flex;
  38. margin-top: 4rpx;
  39. view {
  40. flex-shrink: 0;
  41. line-height: 34rpx;
  42. font-family: PingFang SC, PingFang SC;
  43. font-size: 24rpx;
  44. color: #999999;
  45. }
  46. }
  47. }
  48. }
  49. }