index.scss 802 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* 联系人 */
  2. .contacts {
  3. display: flex;
  4. align-items: center;
  5. width: 100vw;
  6. height: 112rpx;
  7. background-color: #ffffff;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. .circle {
  11. width: 64rpx;
  12. height: 64rpx;
  13. line-height: 64rpx;
  14. text-align: center;
  15. border-radius: 50%;
  16. background-color: #3874F6;
  17. font-size: 26rpx;
  18. font-family: PingFang SC-Regular, PingFang SC;
  19. color: #FFFFFF;
  20. margin-right: 20rpx;
  21. }
  22. .text {
  23. flex: 1;
  24. font-size: 30rpx;
  25. font-family: PingFang SC-Regular, PingFang SC;
  26. color: #333333;
  27. .tag {
  28. height: 48rpx;
  29. padding: 0 15rpx;
  30. margin-right: 10rpx;
  31. border-radius: 24rpx;
  32. }
  33. }
  34. }