index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .group-box {
  2. display: flex;
  3. align-items: center;
  4. width: 100%;
  5. height: 60rpx;
  6. .label {
  7. height: 34rpx;
  8. font-size: 24rpx;
  9. font-family: PingFang SC-Regular, PingFang SC;
  10. color: #666666;
  11. flex-shrink: 0;
  12. }
  13. .list {
  14. display: flex;
  15. overflow: hidden;
  16. max-width: 100%;
  17. .item {
  18. position: relative;
  19. width: 64rpx;
  20. height: 64rpx;
  21. flex-shrink: 0;
  22. margin-right: 8rpx;
  23. >view {
  24. width: 100%;
  25. height: 100%;
  26. text-align: center;
  27. line-height: 64rpx;
  28. background-color: #3874F6;
  29. font-size: 28rpx;
  30. font-family: PingFang SC-Regular, PingFang SC;
  31. color: #FFFFFF;
  32. border-radius: 50%;
  33. }
  34. >image {
  35. width: 100%;
  36. height: 100%;
  37. border-radius: 50%;
  38. }
  39. .iconfont {
  40. position: absolute;
  41. color: #F5D400;
  42. bottom: 0;
  43. right: 0;
  44. font-size: 26rpx;
  45. }
  46. }
  47. }
  48. .right {
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. flex-shrink: 0;
  53. width: 60rpx;
  54. height: 64rpx;
  55. border-radius: 32rpx;
  56. >view {
  57. display: flex;
  58. align-items: center;
  59. justify-content: center;
  60. width: 32rpx;
  61. height: 32rpx;
  62. border-radius: 50%;
  63. background: #E7EEFF;
  64. color: #3874F6;
  65. }
  66. }
  67. }